you-get/tests/test.py

41 lines
1.0 KiB
Python
Raw Normal View History

2013-02-13 01:04:39 +04:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import unittest
from you_get import *
2013-07-26 06:44:51 +04:00
from you_get.downloader.__main__ import url_to_module
2013-02-13 01:04:39 +04:00
2013-03-01 01:02:12 +04:00
def test_urls(urls):
for url in urls:
url_to_module(url).download(url, info_only = True)
2013-02-13 01:04:39 +04:00
class YouGetTests(unittest.TestCase):
2013-04-10 19:41:23 +04:00
def test_freesound(self):
test_urls([
"http://www.freesound.org/people/Corsica_S/sounds/184419/",
])
2013-02-13 01:04:39 +04:00
def test_mixcloud(self):
2013-03-01 01:02:12 +04:00
test_urls([
2013-02-13 01:04:39 +04:00
"http://www.mixcloud.com/beatbopz/beat-bopz-disco-mix/",
"http://www.mixcloud.com/DJVadim/north-america-are-you-ready/",
2013-03-01 01:02:12 +04:00
])
def test_vimeo(self):
test_urls([
"http://vimeo.com/56810854",
])
2013-02-17 01:35:04 +04:00
2013-02-17 22:39:37 +04:00
def test_xiami(self):
2013-03-01 01:02:12 +04:00
test_urls([
2013-02-17 22:39:37 +04:00
"http://www.xiami.com/song/1769835121",
2013-03-01 01:02:12 +04:00
])
def test_youtube(self):
test_urls([
"http://www.youtube.com/watch?v=pzKerr0JIPA",
"http://youtu.be/pzKerr0JIPA",
])