LoRa_APRS_iGate/HIL/tests/test_basic.py
2022-11-10 22:00:57 +00:00

53 lines
1.2 KiB
Python

from HIL.esp_dut import ESP
from HIL.aprs_con import APRSIS, AprsIs
from pathlib import Path
def test_basic_port(ESP):
ESP.begin()
ESP.openPort()
ESP.closePort()
ESP.end()
def test_flash(ESP):
ESP.begin()
bin_dir = Path("testbinary")
ESP.writeFlash(bin_dir)
ESP.flash.verify("0x1000", bin_dir / 'bootloader_dio_40m.bin')
ESP.flash.verify("0x8000", bin_dir / 'partitions.bin')
ESP.flash.verify("0xe000", bin_dir / 'boot_app0.bin')
ESP.flash.verify("0x10000", bin_dir / 'firmware.bin')
ESP.end()
def test_flash_config(ESP):
ESP.begin()
ESP.config.data["bar"] = "foo"
ESP.config.data["number"] = 123
ESP.writeConfig()
ESP.end()
def test_erase(ESP):
ESP.begin()
ESP.flash.erase()
ESP.end()
def test_aprs_login(APRSIS):
pass
def test_aprs_msg(APRSIS):
aprs = AprsIs("OE5BPA-2", passwd="22948",
host="localhost", port=10152)
aprs.connect()
aprs.send_line("OE5BPA-2>APLG01:=4819.82NL01418.68E&Testing")
for i in range(5):
line = APRSIS.get_line()
for l in line:
if l == "OE5BPA-2>APLG01,TCPIP*,qAC,AT0EST:=4819.82NL01418.68E&Testing":
return
raise