From a285500fbcf69cbedf2df5cf028abeba1108ea50 Mon Sep 17 00:00:00 2001 From: garret Date: Tue, 2 Apr 2024 08:53:55 +0100 Subject: sort out package "building" and metadata --- tests/test_randominfo.py | 14 ++++++++++++++ tests/test_tokens.py | 26 ++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100755 tests/test_randominfo.py create mode 100755 tests/test_tokens.py (limited to 'tests') diff --git a/tests/test_randominfo.py b/tests/test_randominfo.py new file mode 100755 index 0000000..bd71fdc --- /dev/null +++ b/tests/test_randominfo.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python3 +import unittest + +from yt_dlp_plugins.extractor import radiko +from yt_dlp import YoutubeDL + + +ie = radiko._RadikoBaseIE() +ydl = YoutubeDL(auto_init=False) +ie.set_downloader(ydl) + +info = ie._generate_random_info() +print("random device info") +print(info) diff --git a/tests/test_tokens.py b/tests/test_tokens.py new file mode 100755 index 0000000..ba6475f --- /dev/null +++ b/tests/test_tokens.py @@ -0,0 +1,26 @@ +#!/usr/bin/env python3 +import unittest + +from yt_dlp_plugins.extractor import radiko +from yt_dlp import YoutubeDL + + +class test_tokens(unittest.TestCase): + + def setUp(self): + self.ie = radiko._RadikoBaseIE() + ydl = YoutubeDL(auto_init=False) + self.ie.set_downloader(ydl) + + def test_area(self): + # check areas etc work + for i in range(1, 48): + area = "JP" + str(i) + with self.subTest(f"Negotiating token for {area}", area=area): + token = self.ie._negotiate_token(area) + self.assertEqual(token.get("X-Radiko-AreaId"), area) + + +if __name__ == '__main__': + unittest.main() + # may wish to set failfast=True -- cgit v1.2.3-70-g09d2