-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest_sampling.py
52 lines (41 loc) · 1.71 KB
/
test_sampling.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
##########################################################################################
# Copyright (c) 2024 Nordic Semiconductor
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
##########################################################################################
import os
from utils.flash_tools import flash_device, reset_device
import sys
import pytest
from utils.flash_tools import flash_device, reset_device
sys.path.append(os.getcwd())
from utils.logger import get_logger
logger = get_logger()
def test_sampling(dut_board, hex_file):
flash_device(os.path.abspath(hex_file))
dut_board.uart.xfactoryreset()
# Log patterns
pattern_location = "location_event_handler: Got location: lat:"
pattern_shadow_poll = "Requesting device shadow from the device"
pattern_environmental = "Environmental values sample request received, getting data"
pattern_fota_poll = "Checking for FOTA job..."
pattern_battery = "State of charge:"
devicetype = os.getenv("DUT_DEVICE_TYPE")
pattern_list = [
pattern_location,
pattern_shadow_poll,
pattern_fota_poll,
]
if devicetype == "thingy91x":
pattern_list.extend([pattern_battery, pattern_environmental])
# Cloud connection
dut_board.uart.flush()
reset_device()
dut_board.uart.wait_for_str("Connected to Cloud", timeout=120)
# Sampling
dut_board.uart.wait_for_str(pattern_list, timeout=120)
# Extract coordinates from UART output
values = dut_board.uart.extract_value( \
r"location_event_handler: Got location: lat: ([\d.]+), lon: ([\d.]+), acc: ([\d.]+), method:")
assert values
lat, lon, acc = values
assert abs(float(lat) - 61.5) < 2 and abs(float(lon) - 10.5) < 1