-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconftest.py
55 lines (44 loc) · 1.83 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
# -*- coding: utf-8 -*-
# (c) Copyright 2022 Sensirion AG, Switzerland
import pytest
from sensirion_driver_adapters.mocks.mock_shdlc_channel_provider import ShdlcMockPortChannelProvider
from sensirion_driver_adapters.shdlc_adapter.shdlc_serial_channel_provider import ShdlcSerialPortChannelProvider
from sensirion_uart_sfx6xxx.response_provider import Sfx6xxxResponseProvider
def pytest_addoption(parser):
"""
Register command line options
"""
parser.addoption("--serial-port", action="store", type=str)
parser.addoption("--serial-bitrate", action="store", type=int, default=115200)
def _get_serial_port(config, validate=False):
"""
Get the serial port to be used for the tests.
"""
port = config.getoption("--serial-port")
if (validate is True) and (port is None):
raise ValueError("Please specify the serial port to be used with "
"the '--serial-port' argument.")
return port
def _get_serial_bitrate(config):
"""
Get the serial port bitrate to be used for the tests.
"""
return config.getoption("--serial-bitrate")
def pytest_report_header(config):
"""
Add extra information to test report header
"""
lines = [
"SensorBridge serial port: " + str(_get_serial_port(config)),
"SensorBridge serial bitrate: " + str(_get_serial_bitrate(config))
]
return '\n'.join(lines)
@pytest.fixture(scope="session")
def channel_provider(request):
serial_port = _get_serial_port(request.config, validate=False)
serial_bitrate = _get_serial_bitrate(request.config)
if serial_port is not None:
yield ShdlcSerialPortChannelProvider(serial_port=serial_port,
serial_baud_rate=serial_bitrate)
else:
yield ShdlcMockPortChannelProvider(response_provider=Sfx6xxxResponseProvider())