-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: David Dilner <[email protected]>
- Loading branch information
David Dilner
committed
Nov 25, 2024
1 parent
b308382
commit 3de8d45
Showing
3 changed files
with
107 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
import pytest | ||
import os | ||
from utils.flash_tools import flash_device, reset_device | ||
import sys | ||
sys.path.append(os.getcwd()) | ||
from utils.logger import get_logger | ||
import requests | ||
import datetime | ||
import time | ||
|
||
MEMFAULT_API = os.getenv('MEMFAULT_API') | ||
MEMFAULT_USER = os.getenv('MEMFAULT_USER') | ||
MEMFAULT_ORG = os.getenv('MEMFAULT_ORGANIZATION_SLUG') | ||
MEMFAULT_PROJ = os.getenv('MEMFAULT_PROJECT_SLUG') | ||
IMEI = os.getenv('IMEI') | ||
MEMFAULT_TIMEOUT = 5 * 60 | ||
|
||
logger = get_logger() | ||
|
||
url = "https://api.memfault.com/api/v0" | ||
auth = (MEMFAULT_USER, MEMFAULT_API) | ||
|
||
def get_event_log(): | ||
response = requests.get(f"{url}/{MEMFAULT_ORG}/{MEMFAULT_PROJ}/event-log", auth=auth) | ||
response.raise_for_status() | ||
return response.json() | ||
|
||
def get_latest_events(event_type, device_id): | ||
data = get_event_log() | ||
latest_events = [ | ||
x | ||
for x in data["data"] | ||
if x["device_serial"] == str(device_id) and x["type"] == event_type | ||
] | ||
return latest_events | ||
|
||
def timestamp(event): | ||
return datetime.datetime.strptime( | ||
event["captured_date"], "%Y-%m-%dT%H:%M:%S.%f%z" | ||
) | ||
|
||
def wait_for_heartbeat(timestamp_old_reboot_evt): | ||
new_heartbeat_found = False | ||
start = time.time() | ||
while time.time() - start < MEMFAULT_TIMEOUT: | ||
logger.debug("Looking for latest heartbeat events") | ||
time.sleep(5) | ||
new_heartbeat_events = get_latest_events("HEARTBEAT", IMEI) | ||
if not new_heartbeat_events: | ||
continue | ||
if not new_heartbeat_events[0]["summary"]["event_info"]["metrics"]["MemfaultSdkMetric_UnexpectedRebootCount"] == 1: | ||
continue | ||
# Check that we have heartbeat event with newer timestamp | ||
if not timestamp_old_reboot_evt: | ||
new_heartbeat_found = True | ||
elif timestamp(new_heartbeat_events[0]) > timestamp_old_reboot_evt and not new_heartbeat_found: | ||
new_heartbeat_found = True | ||
if new_heartbeat_found: | ||
break | ||
else: | ||
raise RuntimeError("No new heartbeat event observed") | ||
|
||
|
||
@pytest.mark.memfault | ||
@pytest.mark.dut1 | ||
def test_memfault(t91x_board, hex_file): | ||
flash_device(os.path.abspath(hex_file)) | ||
t91x_board.uart.xfactoryreset() | ||
patterns_memfault = [ | ||
"Network connectivity established", | ||
"memfault: memfault_task: Memfault module task started", | ||
"memfault: memfault_task: Cloud status received", | ||
] | ||
|
||
# Save timestamp of latest heartbeat event | ||
heartbeat_events = get_latest_events("HEARTBEAT", IMEI) | ||
timestamp_old_reboot_evt = timestamp(heartbeat_events[0]) if heartbeat_events else None | ||
|
||
t91x_board.uart.flush() | ||
reset_device() | ||
t91x_board.uart.wait_for_str(patterns_memfault, timeout=60) | ||
|
||
# Trigger hard fault to generate memfault event | ||
t91x_board.uart.write("mflt test busfault\r\n") | ||
|
||
wait_for_heartbeat(timestamp_old_reboot_evt) |