This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conftest.py
59 lines (45 loc) · 1.6 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
# -*- coding: utf-8 -*-
# (c) Copyright 2021 Sensirion AG, Switzerland
from __future__ import absolute_import, division, print_function
from sensirion_shdlc_driver import ShdlcSerialPort, ShdlcConnection
from sensirion_shdlc_svm41 import Svm41ShdlcDevice
import pytest
def pytest_addoption(parser):
"""
Register command line options
"""
parser.addoption("--serial-port", action="store", type="string")
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 pytest_report_header(config):
"""
Add extra information to test report header
"""
lines = []
lines.append("serial port: " + str(_get_serial_port(config)))
lines.append("serial bitrate: 115200")
lines.append("slave address: 0")
return '\n'.join(lines)
@pytest.fixture(scope="session")
def serial_port(request):
"""
Fixture to get the serial port to be used for the tests.
"""
return _get_serial_port(request.config, validate=True)
@pytest.fixture(scope="session")
def connection(serial_port, serial_bitrate=115200):
with ShdlcSerialPort(serial_port, serial_bitrate) as port:
connection = ShdlcConnection(port)
yield connection
@pytest.fixture
def device(connection, slave_address=0):
device = Svm41ShdlcDevice(connection, slave_address)
device.device_reset()
yield device