pyhamtools/test/test_eqsl.py
2023-12-28 21:02:41 +01:00

29 lines
1,020 B
Python

from .execfile import execfile
import os
import pytest
from pyhamtools.qsl import get_eqsl_users
test_dir = os.path.dirname(os.path.abspath(__file__))
fix_dir = os.path.join(test_dir, 'fixtures')
class Test_eqsl_methods:
def test_check_content_with_mocked_http_server(self, httpserver):
httpserver.serve_content(open(os.path.join(fix_dir, 'eqsl_data.html'), 'rb').read(), headers={'content-type': 'text/plain; charset=ISO-8859-1'})
namespace = {}
execfile(os.path.join(fix_dir,"eqsl_data.py"), namespace)
assert get_eqsl_users(url=httpserver.url) == namespace['eqsl_fixture']
def test_download_lotw_list_and_check_types(self):
data = get_eqsl_users()
assert isinstance(data, list)
for el in data:
assert isinstance(el, str)
assert len(data) > 1000
def test_with_invalid_url(self):
with pytest.raises(IOError):
get_eqsl_users(url="http://www.eqsl.cc/QSLCard/DownloadedFiles/AGMemberlist_my_unit_test.txt")