2014-04-24 14:01:53 +02:00
|
|
|
import pytest
|
|
|
|
|
import tempfile
|
|
|
|
|
import os
|
2014-04-25 23:46:44 +02:00
|
|
|
|
|
|
|
|
|
2014-10-11 23:39:01 +02:00
|
|
|
from apikey import APIKEY, QRZ_USERNAME, QRZ_PWD
|
2014-04-28 01:59:18 +02:00
|
|
|
from pyhamtools import LookupLib
|
|
|
|
|
from pyhamtools import Callinfo
|
2014-04-24 14:01:53 +02:00
|
|
|
|
2014-10-11 23:39:01 +02:00
|
|
|
|
2014-04-24 14:01:53 +02:00
|
|
|
@pytest.fixture(scope="session", params=["a", "", 12.5, -5, {"foo" : "bar"}, [5, "foo"]])
|
|
|
|
|
def fixNonUnsignedInteger(request):
|
|
|
|
|
return request.param
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="session", params=[12.5, -5, 34569, {"foo" : "bar"}, [5, "foo"]])
|
|
|
|
|
def fixNonString(request):
|
|
|
|
|
return request.param
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="session", params=[12.5, -5.5, 34569.0000001])
|
|
|
|
|
def fixFloats(request):
|
|
|
|
|
return request.param
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="session", params=["", "-5.5", "foo bar"])
|
|
|
|
|
def fixStrings(request):
|
|
|
|
|
return request.param
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="session", params=[0, -2322321, 32321321])
|
|
|
|
|
def fixIntegers(request):
|
|
|
|
|
return request.param
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="session", params=[{"foo": "bar"}, {}, {-99.99 : {"foo": 12}}])
|
|
|
|
|
def fixDicts(request):
|
|
|
|
|
return request.param
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="session", params=[["foo", "bar", 99.12], [None, 55, "foo"]])
|
|
|
|
|
def fixLists(request):
|
|
|
|
|
return request.param
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="session", params=[None])
|
|
|
|
|
def fixNone(request):
|
|
|
|
|
return request.param
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
|
|
|
def fixApiKey(request):
|
2014-04-25 23:46:44 +02:00
|
|
|
return(APIKEY)
|
2014-04-24 14:01:53 +02:00
|
|
|
|
|
|
|
|
@pytest.fixture(scope="module", params=["clublogapi", "clublogxml", "countryfile"])
|
|
|
|
|
def fixGeneralApi(request, fixApiKey):
|
|
|
|
|
"""Fixture returning all possible instances of LookupLib"""
|
|
|
|
|
Lib = LookupLib(request.param, fixApiKey)
|
|
|
|
|
# pytest.skip("better later")
|
|
|
|
|
return(Lib)
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
|
|
|
def fixClublogApi(request, fixApiKey):
|
|
|
|
|
Lib = LookupLib("clublogapi", fixApiKey)
|
|
|
|
|
return(Lib)
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
|
|
|
def fixClublogXML(request, fixApiKey):
|
|
|
|
|
Lib = LookupLib("clublogxml", fixApiKey)
|
|
|
|
|
return(Lib)
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
|
|
|
def fixCountryFile(request):
|
|
|
|
|
Lib = LookupLib("countryfile")
|
|
|
|
|
return(Lib)
|
|
|
|
|
|
2014-04-28 01:59:18 +02:00
|
|
|
@pytest.fixture(scope="module", params=["clublogapi", "clublogxml", "countryfile"])
|
|
|
|
|
def fix_callinfo(request, fixApiKey):
|
|
|
|
|
lib = LookupLib(request.param, fixApiKey)
|
|
|
|
|
callinfo = Callinfo(lib)
|
2014-05-08 15:03:16 +02:00
|
|
|
return(callinfo)
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
|
|
|
def fix_redis():
|
|
|
|
|
import redis
|
2014-10-11 23:39:01 +02:00
|
|
|
return LookupLib(lookuptype="redis", redis_instance=redis.Redis(), redis_prefix="clx")
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
|
|
|
def fix_qrz():
|
|
|
|
|
return LookupLib(lookuptype="qrz", username=QRZ_USERNAME, pwd=QRZ_PWD)
|