diff options
author | Antti Ajanki <antti.ajanki@iki.fi> | 2012-06-02 09:36:33 +0300 |
---|---|---|
committer | Antti Ajanki <antti.ajanki@iki.fi> | 2012-06-02 09:36:33 +0300 |
commit | 926338d8fb01c3ba0ae238dcdda987340f2f7c94 (patch) | |
tree | 0e30050a417456c6d10db44a13dd68f52bb2f376 /src | |
parent | c3c5ed0a8745ff885ac7029b2896bbd83f9b4c71 (diff) | |
download | vdr-plugin-webvideo-926338d8fb01c3ba0ae238dcdda987340f2f7c94.tar.gz vdr-plugin-webvideo-926338d8fb01c3ba0ae238dcdda987340f2f7c94.tar.bz2 |
Remove broken Vimeo module
Diffstat (limited to 'src')
-rw-r--r-- | src/unittest/testwebvi.py | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/src/unittest/testwebvi.py b/src/unittest/testwebvi.py index 8f9430d..9d0382d 100644 --- a/src/unittest/testwebvi.py +++ b/src/unittest/testwebvi.py @@ -217,35 +217,6 @@ class TestServiceModules(unittest.TestCase): self.assertNotEqual(resultref, None) self.downloadAndExtractLinks(resultref, 1, 'search result') - def testVimeo(self): - # Category page - ref = self.getServiceReference('../../templates/vimeo.com') - links = self.downloadAndExtractLinks(ref, 2, 'Vimeo main page') - - # The first "Channels" and the second is "Groups" - channelsref = links[0].ref - groupsref = links[1].ref - - # Channels page - links = self.downloadAndExtractLinks(channelsref, 2, 'channels') - - # Navigation page - links = self.downloadAndExtractLinks(links[0].ref, 2, 'channels navigation') - - # Video link - videolink = links[0] - self.assertNotEqual(videolink.stream, None, 'No media object in a video link') - self.assertNotEqual(videolink.ref, None, 'No description page in a video link') - queries, params = self.extractQueryParams(videolink.stream) - self.assertTrue('srcurl' in queries, 'Required parameter missing in video link') - self.checkMediaUrl(videolink.stream) - - # User groups - links = self.downloadAndExtractLinks(groupsref, 2, 'channel list') - - # Navigation page - links = self.downloadAndExtractLinks(links[0].ref, 2, 'groups navigation') - def testYLEAreena(self): # Category page ref = self.getServiceReference('../../templates/areena.yle.fi') |