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
|
# Copyright (c) 2017-2019 David Steele <dsteele@gmail.com>
#
# SPDX-License-Identifier: GPL-2.0-or-later
# License-Filename: LICENSE
import logging
import os
import sys
import textwrap
from unittest.mock import Mock
import pytest
sys.modules["NetworkManager"] = Mock()
from comitup import comitup as ciu # noqa
from comitup import config # noqa
@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.config.CONF_PATH", path)
return path
@pytest.fixture()
def persist_fxt(tmpdir, monkeypatch):
path = os.path.join(tmpdir.__str__(), "persistfile")
monkeypatch.setattr("comitup.comitup.config.PERSIST_PATH", path)
monkeypatch.setattr(
"comitup.comitup.config.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(logging.INFO)
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) = config.load_data()
assert conf.ap_name == "test"
assert os.path.isfile(persist_fxt)
|