mirror of
https://github.com/soimort/you-get.git
synced 2025-01-23 21:45:02 +03:00
43 lines
1.2 KiB
Python
43 lines
1.2 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import unittest
|
|
|
|
from you_get import *
|
|
from you_get.extractor.__main__ import url_to_module
|
|
|
|
def test_urls(urls):
|
|
for url in urls:
|
|
url_to_module(url).download(url, info_only = True)
|
|
|
|
class YouGetTests(unittest.TestCase):
|
|
|
|
def test_freesound(self):
|
|
test_urls([
|
|
"http://www.freesound.org/people/Corsica_S/sounds/184419/",
|
|
])
|
|
|
|
def test_mixcloud(self):
|
|
test_urls([
|
|
"http://www.mixcloud.com/beatbopz/beat-bopz-disco-mix/",
|
|
"http://www.mixcloud.com/DJVadim/north-america-are-you-ready/",
|
|
])
|
|
|
|
def test_ted(self):
|
|
test_urls([
|
|
"http://www.ted.com/talks/jennifer_lin_improvs_piano_magic.html",
|
|
"http://www.ted.com/talks/derek_paravicini_and_adam_ockelford_in_the_key_of_genius.html",
|
|
])
|
|
|
|
def test_vimeo(self):
|
|
test_urls([
|
|
"http://vimeo.com/56810854",
|
|
])
|
|
|
|
def test_youtube(self):
|
|
test_urls([
|
|
"http://www.youtube.com/watch?v=pzKerr0JIPA",
|
|
"http://youtu.be/pzKerr0JIPA",
|
|
"http://www.youtube.com/attribution_link?u=/watch?v%3DldAKIzq7bvs%26feature%3Dshare"
|
|
])
|