diff options
author | garret <garret@airmail.cc> | 2024-04-02 08:53:55 +0100 |
---|---|---|
committer | garret <garret@airmail.cc> | 2024-04-02 08:53:55 +0100 |
commit | a285500fbcf69cbedf2df5cf028abeba1108ea50 (patch) | |
tree | 90acb655fd74bdb289801855bdcca6c86ab2c899 /test_tokens.py | |
parent | 69fff170663d6e2d258edca7503b2e7897227a76 (diff) | |
download | yt-dlp-rajiko-a285500fbcf69cbedf2df5cf028abeba1108ea50.tar.gz yt-dlp-rajiko-a285500fbcf69cbedf2df5cf028abeba1108ea50.tar.bz2 yt-dlp-rajiko-a285500fbcf69cbedf2df5cf028abeba1108ea50.zip |
sort out package "building" and metadatav1.0
Diffstat (limited to 'test_tokens.py')
-rwxr-xr-x | test_tokens.py | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/test_tokens.py b/test_tokens.py deleted file mode 100755 index ba6475f..0000000 --- a/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 |