diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-04-22 14:32:54 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-04-22 16:54:07 +0530 |
commit | 1bdae7d312ceac9ecef8a9a215d958811a9fb6be (patch) | |
tree | 9a5a8fbbf19bd953c3c95d5d9ae576ac5c4c3f82 /test/test_youtube_misc.py | |
parent | a471f21da628b9526c3f177c59ca2fc076e8b68b (diff) | |
download | hypervideo-pre-1bdae7d312ceac9ecef8a9a215d958811a9fb6be.tar.lz hypervideo-pre-1bdae7d312ceac9ecef8a9a215d958811a9fb6be.tar.xz hypervideo-pre-1bdae7d312ceac9ecef8a9a215d958811a9fb6be.zip |
Update to ytdl-commit-7e8b3f9
[youtube] Remove unused code
https://github.com/ytdl-org/youtube-dl/commit/7e8b3f9439ebefb3a3a4e5da9c0bd2b595976438
Diffstat (limited to 'test/test_youtube_misc.py')
-rw-r--r-- | test/test_youtube_misc.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/test/test_youtube_misc.py b/test/test_youtube_misc.py new file mode 100644 index 000000000..d9bb10d26 --- /dev/null +++ b/test/test_youtube_misc.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python +from __future__ import unicode_literals + +# Allow direct execution +import os +import sys +import unittest +sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) + + +from yt_dlp.extractor import YoutubeIE + + +class TestYoutubeMisc(unittest.TestCase): + def test_youtube_extract(self): + assertExtractId = lambda url, id: self.assertEqual(YoutubeIE.extract_id(url), id) + assertExtractId('http://www.youtube.com/watch?&v=BaW_jenozKc', 'BaW_jenozKc') + assertExtractId('https://www.youtube.com/watch?&v=BaW_jenozKc', 'BaW_jenozKc') + assertExtractId('https://www.youtube.com/watch?feature=player_embedded&v=BaW_jenozKc', 'BaW_jenozKc') + assertExtractId('https://www.youtube.com/watch_popup?v=BaW_jenozKc', 'BaW_jenozKc') + assertExtractId('http://www.youtube.com/watch?v=BaW_jenozKcsharePLED17F32AD9753930', 'BaW_jenozKc') + assertExtractId('BaW_jenozKc', 'BaW_jenozKc') + + +if __name__ == '__main__': + unittest.main() |