#!/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_sohu(self): test_urls([ "http://tv.sohu.com/20120522/n343785589.shtml", "http://tv.sohu.com/20130103/n362246415.shtml", "http://tv.sohu.com/20130103/n362251239.shtml", "http://my.tv.sohu.com/us/4559763/51981774.shtml", "http://my.tv.sohu.com/us/47390785/61594248.shtml", ]) 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" ])