1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
# Copyright (c) 2017-2019 David Steele <dsteele@gmail.com>
#
# SPDX-License-Identifier: GPL-2.0-or-later
# License-Filename: LICENSE
import pytest
from mock import Mock, patch
import textwrap
import os
from comitup import comitup as ciu
@pytest.fixture()
def conf_fxt(tmpdir, monkeypatch):
path = os.path.join(tmpdir.__str__(), 'conffile')
open(path, 'w').write(textwrap.dedent(
"""
ap_name: test
"""
))
monkeypatch.setattr('comitup.comitup.CONF_PATH', path)
return path
@pytest.fixture()
def persist_fxt(tmpdir, monkeypatch):
path = os.path.join(tmpdir.__str__(), 'persistfile')
monkeypatch.setattr('comitup.comitup.PERSIST_PATH', path)
monkeypatch.setattr(
'comitup.comitup.random.randrange',
Mock(return_value=1234)
)
return path
@pytest.fixture()
def log_fxt(tmpdir, monkeypatch):
path = os.path.join(tmpdir.__str__(), 'logfile')
monkeypatch.setattr('comitup.comitup.LOG_PATH', path)
return path
def test_ciu_deflog(log_fxt):
log = ciu.deflog()
log.info('foo')
txt = open(log_fxt, 'r').read()
assert 'INFO' in txt
assert 'foo' in txt
assert int(txt[:4])
def test_ciu_loadconf(conf_fxt, persist_fxt):
(conf, data) = ciu.load_data()
assert conf.ap_name == 'test'
assert os.path.isfile(persist_fxt)
@pytest.fixture()
def loop_fxt(monkeypatch):
loop = Mock()
monkeypatch.setattr(
'comitup.comitup.MainLoop',
Mock(return_value=loop)
)
return loop
|