1
0
Fork 0
mirror of synced 2024-06-02 02:14:37 +12:00
bulk-downloader-for-reddit/tests/site_downloaders/fallback_downloaders/test_youtubedl_fallback.py

51 lines
1.8 KiB
Python
Raw Normal View History

2021-05-02 21:48:25 +12:00
#!/usr/bin/env python3
from unittest.mock import MagicMock
import pytest
from bdfr.exceptions import NotADownloadableLinkError
2021-05-02 21:48:25 +12:00
from bdfr.resource import Resource
from bdfr.site_downloaders.fallback_downloaders.youtubedl_fallback import YoutubeDlFallback
@pytest.mark.online
@pytest.mark.parametrize(('test_url', 'expected'), (
('https://www.reddit.com/r/specializedtools/comments/n2nw5m/bamboo_splitter/', True),
('https://www.youtube.com/watch?v=P19nvJOmqCc', True),
('https://www.example.com/test', False),
('https://milesmatrix.bandcamp.com/album/la-boum/', False),
2021-05-02 21:48:25 +12:00
))
def test_can_handle_link(test_url: str, expected: bool):
result = YoutubeDlFallback.can_handle_link(test_url)
assert result == expected
@pytest.mark.online
@pytest.mark.parametrize('test_url', (
'https://milesmatrix.bandcamp.com/album/la-boum/',
))
def test_info_extraction_bad(test_url: str):
with pytest.raises(NotADownloadableLinkError):
YoutubeDlFallback.get_video_attributes(test_url)
2021-05-02 21:48:25 +12:00
@pytest.mark.online
@pytest.mark.slow
@pytest.mark.parametrize(('test_url', 'expected_hash'), (
2021-10-02 15:11:53 +13:00
('https://streamable.com/dt46y', 'b7e465adaade5f2b6d8c2b4b7d0a2878'),
2021-05-02 21:48:25 +12:00
('https://streamable.com/t8sem', '49b2d1220c485455548f1edbc05d4ecf'),
('https://www.reddit.com/r/specializedtools/comments/n2nw5m/bamboo_splitter/', '21968d3d92161ea5e0abdcaf6311b06c'),
2021-05-02 22:02:34 +12:00
('https://v.redd.it/9z1dnk3xr5k61', '351a2b57e888df5ccbc508056511f38d'),
2021-05-02 21:48:25 +12:00
))
def test_find_resources(test_url: str, expected_hash: str):
test_submission = MagicMock()
test_submission.url = test_url
downloader = YoutubeDlFallback(test_submission)
resources = downloader.find_resources()
assert len(resources) == 1
assert isinstance(resources[0], Resource)
2021-10-02 15:11:53 +13:00
for res in resources:
res.download()
2021-05-02 21:48:25 +12:00
assert resources[0].hash.hexdigest() == expected_hash