1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-06-27 17:08:32 +00:00

[ie/tbsjp] update tests

This commit is contained in:
garret1317 2025-06-17 05:02:44 +01:00
parent 5759e2604b
commit 2634cff1a5

View File

@ -13,22 +13,28 @@ class TBSJPEpisodeIE(StreaksBaseIE):
_VALID_URL = r'https?://cu\.tbs\.co\.jp/episode/(?P<id>[\d_]+)'
_GEO_BYPASS = False
_TESTS = [{
'url': 'https://cu.tbs.co.jp/episode/23613_2044134_1000049010',
'skip': 'streams geo-restricted, Japan only. Also, will likely expire eventually',
'url': 'https://cu.tbs.co.jp/episode/14694_2090934_1000117476',
'skip': 'geo-blocked to japan + 7-day expiry',
'info_dict': {
'title': 'VIVANT 第三話 誤送金完結へ!絶体絶命の反撃開始',
'id': '23613_2044134_1000049010',
'title': '次世代リアクション王発掘トーナメント',
'id': '14694_2090934_1000117476',
'ext': 'mp4',
'upload_date': '20230728',
'duration': 3517,
'release_timestamp': 1691118230,
'episode': '第三話 誤送金完結へ!絶体絶命の反撃開始',
'release_date': '20230804',
'categories': 'count:11',
'episode_number': 3,
'timestamp': 1690522538,
'description': 'md5:2b796341af1ef772034133174ba4a895',
'series': 'VIVANT',
'display_id': 'ref:14694_2090934_1000117476',
'description': 'md5:63a2f445387f9d8c50f4e76396df968f',
'uploader_id': 'tbs',
'duration': 2761,
'thumbnail': 'md5:5e044cd3431b1301de1a25911a6a9a4e',
'categories': ['エンタメ', '水曜日のダウンタウン', 'ダウンタウン', '浜田雅功', '松本人志', '水ダウ', 'バラエティ', '動画'],
'series': '水曜日のダウンタウン',
'episode': '次世代リアクション王発掘トーナメント',
'episode_number': 335,
'timestamp': 1749547434,
'upload_date': '20250610',
'release_timestamp': 1749646802,
'release_date': '20250611',
'modified_timestamp': 1749647146,
'modified_date': '20250611',
'live_status': 'not_live',
},
}]
@ -59,14 +65,14 @@ def _real_extract(self, url):
class TBSJPProgramIE(InfoExtractor):
_VALID_URL = r'https?://cu\.tbs\.co\.jp/program/(?P<id>\d+)'
_TESTS = [{
'url': 'https://cu.tbs.co.jp/program/23601',
'playlist_mincount': 4,
'url': 'https://cu.tbs.co.jp/program/14694',
'playlist_mincount': 1,
'info_dict': {
'id': '23601',
'categories': ['エンタメ', 'ミライカプセル', '会社', '働く', 'バラエティ', '動画'],
'description': '幼少期の夢は大人になって、どう成長したのだろうか?\nそしてその夢は今後、どのように広がっていくのか?\nいま話題の会社で働く人の「夢の成長」を描く',
'series': 'ミライカプセル -I have a dream-',
'title': 'ミライカプセル -I have a dream-',
'id': '14694',
'title': '水曜日のダウンタウン',
'description': 'md5:cf1d46c76c2755d7f87512498718b837',
'categories': ['エンタメ', '水曜日のダウンタウン', 'ダウンタウン', '浜田雅功', '松本人志', '水ダウ', 'バラエティ', '動画'],
'series': '水曜日のダウンタウン',
},
}]