From dc4500705cd4d0599a95ba954cc980bfedfe2e53 Mon Sep 17 00:00:00 2001 From: garret1317 Date: Sun, 22 Jun 2025 00:38:07 +0100 Subject: rename test-tokens script to test_areas underscore so tab completion is less pain --- misc/test-tokens.py | 26 -------------------------- misc/test_areas.py | 26 ++++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 26 deletions(-) delete mode 100755 misc/test-tokens.py create mode 100755 misc/test_areas.py diff --git a/misc/test-tokens.py b/misc/test-tokens.py deleted file mode 100755 index ba6475f..0000000 --- a/misc/test-tokens.py +++ /dev/null @@ -1,26 +0,0 @@ -#!/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 diff --git a/misc/test_areas.py b/misc/test_areas.py new file mode 100755 index 0000000..ba6475f --- /dev/null +++ b/misc/test_areas.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