diff options
| author | info@mode42.com <info@mode42.com> | 2026-08-08 03:54:55 +0000 |
|---|---|---|
| committer | info@mode42.com <info@mode42.com> | 2026-08-08 03:54:55 +0000 |
| commit | 20cb29c2f8c5c87bc590896854a20b1473ceb358 (patch) | |
| tree | 2857f41513a56ad41af97b57362639298aa7f033 /scripts/test-ardop-plugin.sh | |
#2
Diffstat (limited to 'scripts/test-ardop-plugin.sh')
| -rwxr-xr-x | scripts/test-ardop-plugin.sh | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/scripts/test-ardop-plugin.sh b/scripts/test-ardop-plugin.sh new file mode 100755 index 0000000..67900f1 --- /dev/null +++ b/scripts/test-ardop-plugin.sh @@ -0,0 +1,89 @@ +#!/usr/bin/env bash +# Local test: mock ARDOPC + HyBBX ardop plugin (no Main circuit required). +set -euo pipefail +ROOT="$(cd "$(dirname "$0")/.." && pwd)" +BUILD="${ROOT}/build" +HYBBX="${BUILD}/src/hybbxd" +MOCK_PORT=18515 +TMPDIR="${ROOT}/local/test-ardop-$$" +mkdir -p "${TMPDIR}" + +cleanup() { + kill "${MOCK_PID:-}" 2>/dev/null || true + kill "${CIRCUIT_PID:-}" 2>/dev/null || true + kill "${HYBBX_PID:-}" 2>/dev/null || true + rm -rf "${TMPDIR}" +} +trap cleanup EXIT + +if [[ ! -x "${HYBBX}" ]]; then + echo "Build hybbx first: cmake --build build" >&2 + exit 1 +fi + +cat > "${TMPDIR}/hybbx.ini" <<EOF +[service] +name = test-ardop + +[storage] +path = ${TMPDIR}/data + +[auth] +auto_login = no + +[networks] +ax25 = no +ardop = yes +circuit = no + +[transport.telnet] +enabled = no + +[transport.ardop] +enabled = yes +ardop_host = 127.0.0.1 +ardop_port = ${MOCK_PORT} +mycall = TEST-0 +radio_profile = cb +arq_bandwidth = 500MAX +listen = yes +circuit_host = 127.0.0.1 +circuit_port = 17323 +link_id = test-ardop +EOF + +python3 "${ROOT}/scripts/mock-ardopc.py" "${MOCK_PORT}" & +MOCK_PID=$! +sleep 0.3 + +# Minimal TCP acceptor so circuit connect does not block startup (no HBX handshake). +nc -l 127.0.0.1 17323 >/dev/null 2>&1 & +CIRCUIT_PID=$! +sleep 0.2 + +LOG="${TMPDIR}/hybbx.log" +stdbuf -oL timeout 5 "${HYBBX}" -c "${TMPDIR}/hybbx.ini" >"${LOG}" 2>&1 & +HYBBX_PID=$! +sleep 3 +kill "${HYBBX_PID}" 2>/dev/null || true +wait "${HYBBX_PID}" 2>/dev/null || true +kill "${CIRCUIT_PID}" 2>/dev/null || true + +grep -q "connected to external ARDOPC" "${LOG}" || { + echo "FAIL: no ARDOPC connect log" >&2 + cat "${LOG}" >&2 + exit 1 +} +grep -q "host init sent" "${LOG}" || { + echo "FAIL: no host init log" >&2 + cat "${LOG}" >&2 + exit 1 +} +grep -q "CB half-duplex profile" "${LOG}" || { + echo "FAIL: no CB profile log" >&2 + cat "${LOG}" >&2 + exit 1 +} + +echo "OK: ardop plugin local test passed" +cat "${LOG}" | grep '\[ardop\]' |
