mirror of
https://github.com/Hopiu/django-embed-video.git
synced 2026-04-07 06:50:59 +00:00
Add {{ my_video.backend }} containing YoutubeBackend, VimeoBackend or SoundCloudBackend values.
- Fix: SoundClound --> SoundCloud
- added tests for template tags
77 lines
2.9 KiB
Python
77 lines
2.9 KiB
Python
from unittest import TestCase
|
|
|
|
from ..base import detect_backend, YoutubeBackend, VimeoBackend, \
|
|
SoundCloudBackend, UnknownBackendException
|
|
|
|
|
|
class EmbedVideoTestCase(TestCase):
|
|
unknown_backend_urls = (
|
|
'http://myurl.com/?video=http://www.youtube.com/watch?v=jsrRJyHBvzw',
|
|
'http://myurl.com/?video=www.youtube.com/watch?v=jsrRJyHBvzw',
|
|
'http://youtube.com.myurl.com/watch?v=jsrRJyHBvzw',
|
|
'http://vimeo.com.myurl.com/66577491',
|
|
)
|
|
|
|
youtube_urls = (
|
|
('http://www.youtube.com/watch?v=jsrRJyHBvzw', 'jsrRJyHBvzw'),
|
|
('http://youtube.com/watch?v=jsrRJyHBvzw', 'jsrRJyHBvzw'),
|
|
('http://youtu.be/jsrRJyHBvzw', 'jsrRJyHBvzw'),
|
|
('http://www.youtube.com/watch?v=iwGFalTRHDA&feature=related', 'iwGFalTRHDA'),
|
|
('http://youtu.be/n17B_uFF4cA', 'n17B_uFF4cA'),
|
|
('http://www.youtube.com/watch?v=t-ZRX8984sc', 't-ZRX8984sc'),
|
|
('http://youtu.be/t-ZRX8984sc', 't-ZRX8984sc'),
|
|
('http://www.youtube.com/watch?feature=player_embedded&v=2NpZbaAIXag', '2NpZbaAIXag'),
|
|
)
|
|
|
|
vimeo_urls = (
|
|
('http://vimeo.com/66577491', '66577491'),
|
|
('http://www.vimeo.com/66577491', '66577491'),
|
|
)
|
|
|
|
soundcloud_urls = (
|
|
('https://soundcloud.com/glassnote/mumford-sons-i-will-wait', '67129237'),
|
|
('https://soundcloud.com/matej-roman/jaromir-nohavica-karel-plihal-mikymauz', '7834701'),
|
|
('https://soundcloud.com/beny97/sets/jaromir-nohavica-prazska', '960591'),
|
|
('https://soundcloud.com/corbel-keep/norah-jones-come-away-with', '22485933'),
|
|
)
|
|
|
|
def setUp(self):
|
|
from django.conf import settings as django_settings
|
|
self.django_settings = django_settings
|
|
|
|
def test_detect_bad_urls(self):
|
|
for url in self.unknown_backend_urls:
|
|
self.assertRaises(UnknownBackendException, detect_backend, url)
|
|
|
|
def test_detect_youtube(self):
|
|
for url in self.youtube_urls:
|
|
backend = detect_backend(url[0])
|
|
self.assertIsInstance(backend, YoutubeBackend)
|
|
|
|
def test_detect_vimeo(self):
|
|
for url in self.vimeo_urls:
|
|
backend = detect_backend(url[0])
|
|
self.assertIsInstance(backend, VimeoBackend)
|
|
|
|
def test_detect_soundcloud(self):
|
|
for url in self.soundcloud_urls:
|
|
backend = detect_backend(url[0])
|
|
self.assertIsInstance(backend, SoundCloudBackend)
|
|
|
|
def test_code_youtube(self):
|
|
for url in self.youtube_urls:
|
|
backend = YoutubeBackend(url[0])
|
|
code = backend.get_code()
|
|
self.assertEqual(code, url[1])
|
|
|
|
def test_code_vimeo(self):
|
|
for url in self.vimeo_urls:
|
|
backend = VimeoBackend(url[0])
|
|
code = backend.get_code()
|
|
self.assertEqual(code, url[1])
|
|
|
|
def test_code_soundcloud(self):
|
|
for url in self.soundcloud_urls:
|
|
backend = SoundCloudBackend(url[0])
|
|
code = backend.get_code()
|
|
self.assertEqual(code, url[1])
|