2014-01-01 15:50:47 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
# ex:ts=4:sw=4:sts=4:et
|
|
|
|
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
# The unittest framwork doesn't play nice with pylint:
|
|
|
|
# pylint: disable-msg=C0103
|
|
|
|
import unittest
|
2019-08-25 00:40:39 +02:00
|
|
|
|
2014-05-01 22:41:54 +02:00
|
|
|
from svtplay_dl.service.tests import HandlesURLsTestMixin
|
2015-08-24 18:40:59 +02:00
|
|
|
from svtplay_dl.service.twitch import Twitch
|
2014-01-01 15:50:47 +01:00
|
|
|
|
2015-09-15 20:10:32 +02:00
|
|
|
|
2014-05-01 22:41:54 +02:00
|
|
|
class handlesTest(unittest.TestCase, HandlesURLsTestMixin):
|
2015-08-24 18:40:59 +02:00
|
|
|
service = Twitch
|
2014-05-01 22:41:54 +02:00
|
|
|
urls = {
|
2019-08-25 00:27:31 +02:00
|
|
|
"ok": [
|
2014-05-01 22:41:54 +02:00
|
|
|
"http://twitch.tv/foo/c/123456",
|
|
|
|
"http://www.twitch.tv/foo/c/123456",
|
|
|
|
"http://en.www.twitch.tv/foo/c/123456",
|
|
|
|
"http://en.twitch.tv/foo/c/123456",
|
|
|
|
"http://pt-br.twitch.tv/foo/c/123456",
|
2019-08-25 00:27:31 +02:00
|
|
|
"http://pt-br.www.twitch.tv/foo/c/123456",
|
2014-05-01 22:41:54 +02:00
|
|
|
],
|
2019-08-25 00:27:31 +02:00
|
|
|
"bad": [
|
2014-05-01 22:41:54 +02:00
|
|
|
"http://www.dn.se/nyheter/sverige/det-ar-en-dodsfalla",
|
|
|
|
"http://pxt-br.www.twitch.tv/foo/c/123456",
|
|
|
|
"http://pxt-bxr.www.twitch.tv/foo/c/123456",
|
|
|
|
"http://p-r.www.twitch.tv/foo/c/123456",
|
|
|
|
"http://pxx.www.twitch.tv/foo/c/123456",
|
2019-08-25 00:27:31 +02:00
|
|
|
"http://en.wwww.twitch.tv/foo/c/123456",
|
|
|
|
],
|
2014-05-01 22:41:54 +02:00
|
|
|
}
|