1
0
Fork 0
mirror of synced 2024-06-02 02:14:37 +12:00

Add a test for Resource

This commit is contained in:
Serene-Arc 2021-02-26 19:05:19 +10:00 committed by Ali Parlakci
parent 0973e1e451
commit 6fd7aca981

View file

@ -0,0 +1,20 @@
#!/usr/bin/env python3
# coding=utf-8
import pytest
from bulkredditdownloader.resource import Resource
@pytest.mark.parametrize(('test_url', 'expected'), (
('test.png', '.png'),
('another.mp4', '.mp4'),
('test.jpeg', '.jpeg'),
('http://www.random.com/resource.png', '.png'),
('https://www.resource.com/test/example.jpg', '.jpg'),
('hard.png.mp4', '.mp4'),
))
def test_resource_get_extension(test_url: str, expected: str):
test_resource = Resource(None, test_url)
result = test_resource._determine_extension()
assert result == expected