-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathconftest.py
62 lines (45 loc) · 1.7 KB
/
conftest.py
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
import json
import logging
import os
from labgrid.driver import ShellDriver
import pytest
logger = logging.getLogger(__name__)
@pytest.fixture(scope="function")
def without_internet(strategy):
default_nic = strategy.qemu.nic
if strategy.status.name == "shell":
strategy.transition("off")
strategy.qemu.nic = "user,net=192.168.76.0/24,dhcpstart=192.168.76.10,restrict=yes"
strategy.transition("shell")
yield
strategy.transition("off")
strategy.qemu.nic = default_nic
@pytest.fixture(autouse=True, scope="module")
def restart_qemu(strategy):
"""Use fresh QEMU instance for each module."""
if strategy.status.name == "shell":
logger.info("Restarting QEMU before %s module tests.", strategy.target.name)
strategy.transition("off")
strategy.transition("shell")
@pytest.hookimpl
def pytest_runtest_setup(item):
log_dir = item.config.option.lg_log
if not log_dir:
return
logging_plugin = item.config.pluginmanager.get_plugin("logging-plugin")
log_name = item.nodeid.replace(".py::", "/")
logging_plugin.set_log_path(os.path.join(log_dir, f"{log_name}.log"))
@pytest.fixture
def shell(target, strategy) -> ShellDriver:
"""Fixture for accessing shell."""
strategy.transition("shell")
shell = target.get_driver("ShellDriver")
return shell
@pytest.fixture
def shell_json(target, strategy) -> callable:
"""Fixture for running CLI commands returning JSON string as output."""
strategy.transition("shell")
shell = target.get_driver("ShellDriver")
def get_json_response(command, *, timeout=None) -> dict:
return json.loads("\n".join(shell.run_check(command, timeout=timeout)))
return get_json_response