mirror of
https://github.com/meshtastic/firmware.git
synced 2026-09-17 00:52:45 -04:00
* test: make every suite run its own binary, and fail the run when it does not PlatformIO links every native test program to the one $BUILD_DIR/$PROGNAME path and attributes Unity output by text alone, never checking that the source file a case came from belongs to the suite it thinks it ran. Both harnesses had been split into a build pass (--without-testing) and a run pass (--without-building), and for a non-embedded platform the run pass never relinks - so all 57 suites executed whichever suite was linked last, each reporting PASSED under its own name. Introduced for CI in4906f8a6and for bin/run-tests.sh in de6b2319; both ran fused, and correctly, before that. Drop --without-building from both run passes. The --without-testing pass stays as a warm-up so no single suite absorbs the whole src compile in its reported duration; with the objects already cached the per-suite step is one test_main.cpp plus a link. Add bin/check-test-attribution.py, which grades the JUnit reports both harnesses already produce. It fails on a test case whose source file lies outside the suite that reported it, and on a suite that was asked to run and produced no cases at all. Wired in three places: bin/run-tests.sh as a RED verdict ahead of the softer ones, per area in CI so a mismatch names its area, and once over the merged report so an area that never executed cannot hide. Suite ownership is matched on whole path segments, so test_mesh does not claim test_mesh_module, and the -f pattern is resolved against the canonical set rather than taken as a literal suite name. * fix(test): pin simradio off for the packet-signing PKI cases [env:coverage] passes -s to the test binary (74e6723ad, #8251), which sets portduino_config.force_simradio. wouldEncryptWithPKC() lists !force_simradio among its preconditions, so perhapsEncode() takes the channel-crypto branch, returns NONE and leaves pki_encrypted false - failing test_B11_normal_unicast_still_uses_pki and test_B12_licensed_receiver_does_not_decrypt_pki, both of which assert the production PKI path. [env:native] passes no such flag, which is the whole of the long-standing "passes under native, fails under coverage" split; it was never gcov, ASan or a host. Save and clear the flag in setUp, restore it in tearDown, so the suite asserts the encode path it is named for under either env's invocation. Same binary, pristine $HOME: 77 tests 0 failures with -s and without, where before -s gave 2 failures. Whether the unit-test binary should run with -s at all is a separate question - it means CI exercises the simradio configuration for every suite - and is left alone here. * fix(router): drive the admin-key fallback budget from the injectable clock The budget is 8 tokens refilling one per 250ms of wall clock, and test_admin_key_fallback_is_rate_limited drains it with eight PKI decodes before asserting the ninth is refused. That gives the drain loop 31ms per iteration, each of which generates a keypair and does three X25519 operations under gcov and ASan. This box runs them in ~4ms; a GitHub runner takes ~38ms, so a token refills mid-drain and the packet the test expects to be blocked decodes. Measured from both runs' own log timestamps, 9.5x apart. Read the bucket through Time::getMillis() instead of millis(), and have the test set and advance the virtual clock rather than sleeping. The subtraction was already wrap-correct, so the deadline guard is unaffected. Restores the clock in tearDown so the rest of the suite is untouched, and drops ~3s of real sleeping from the run. * test: declare the event-channel suites' shared state Both construct a NodeDB, whose constructor persists a default set into an empty prefs directory, so each writes the five prefs protos. Neither was declared, because until suites started running their own binaries nothing had ever observed them writing anything. * test: add a repeat runner for order-independent flakes A single green run says nothing about a real-time race or a slow-host margin: the rate-limit budget above passes here with 7x headroom and still fails on a CI runner. Run one suite N times against a fresh scratch $HOME each time, optionally against CPU contention, and print a flake rate. Failing runs keep their log and their sandbox; passing runs leave nothing. Simradio is taken from the env's own test_testing_command, so a stress run reproduces the real invocation rather than inventing a third one. * fix(test): keep a native test run off the host's radio bin/pio-test-isolate.sh sandboxes $HOME, but portduinoSetup() looks for config in ./config.yaml and /etc/meshtasticd/config.yaml - the second absolute, so no $HOME sandbox can hide it. On a machine running meshtasticd that config selects the real LoRa module and the run continues into GPIO and SPI setup, so ./bin/run-tests.sh -e native would drive the developer's own radio without saying so. -e native is also the faster of the two, and the one reached for when iterating. [env:coverage] already passes -s, which short-circuits ahead of the config search and returns before hardware init. Pass it for [env:native] too. That closes the hazard and, incidentally, makes the two envs invoke the binary identically - they did not, which is the whole of the long-standing "green locally, red in CI" split. * test: run every suite with PKC on, and assert it stays that way force_simradio does two unrelated jobs. It keeps portduinoSetup() off the host's hardware, which every test run wants, and it makes wouldEncryptWithPKC() return false, which no test run wants: the encode path under test then falls back to channel crypto and any case asserting PKI fails, or worse, passes while asserting the wrong thing. Three suites had each worked this out separately and cleared the flag themselves - test_admin_session_repro's comment describes the mechanism exactly. Clear it once in initializeTestEnvironment() instead. By then portduinoSetup() has already skipped the config search and chosen the simulated radio, and it never reconsults the flag, so clearing it cannot bring hardware back; the only remaining readers are the PKC gate and an exit_simulator intercept no test can reach. The per-suite copy added to test_packet_signing for B11/B12 goes away with it. Two asserts, because both invariants were true only by inspection: - No listening sockets. main.cpp's setup()/loop() are compiled out under PIO_UNIT_TESTING, so the phone API, MQTT and the web server never start - but nothing checked. A suite that pulled in a service binding a port would open one on the developer's machine for the length of the run. - force_simradio still clear, before every test rather than once per suite, since a case that restores a struct it snapshotted earlier puts it back and silently disables PKC for everything after it. Named per test, so the report points at the case after the culprit. Both exit rather than TEST_FAIL: they run outside a Unity test frame, and silently repairing either one would leave the suite that broke it passing. Verified by disabling the clear and watching the guard fire on the first case instead of reporting two quiet failures. * test: let the repeat runner vary suite order too Repeating one binary finds races and slow-host margins; it cannot find state that leaks from one suite into the next, because only one suite runs. --shuffle drives run-tests.sh --seed with a fresh seed each iteration and reports which seeds went red, so the shuffle already in the harness yields a flake rate rather than a single sample. Seeds are printed and replayable. * fix(test): baseline the environment from whichever runs first Clearing force_simradio in initializeTestEnvironment() missed the suites that never call it. test_atak is one, and it also pulls in TestUtil.h, so it got the per-test assert without ever getting the baseline and aborted on its first case - caught by CI, which is what the assert is for. test_geocoord_distance, test_meshpacket_serializer and test_utf8 skip the init too, but include no TestUtil.h at all, so nothing reached them either way. Move the clear and the socket check into baselineEnvironment(), called from initializeTestEnvironment() or from the first RUN_TEST, whichever comes first. Suites that initialise are still asserted from their first case; the rest are baselined at case one and asserted from case two. Print the violation on stdout as well as stderr: bin/run-tests.sh filters the program's stderr, so locally the message vanished and the run reported "exit-time abort (likely sanitizer)" - the exit code read as a signal number again, with no sign of the real reason. * test: drop the per-suite simradio exceptions Three suites had each found that force_simradio disables PKC and cleared it themselves. initializeTestEnvironment() now clears it once for every suite, so all six sites are dead code - along with the PortduinoGlue.h include each pulled in for it. test_event_channel_router's is the one worth removing rather than leaving: it snapshotted the flag into SavedGlobals and restored it at teardown, which is exactly the shape the per-test assert exists to catch. Harmless while the snapshot reads false, and a silent PKC-off for every later case if that ever changed. The three suites pass unchanged: 54 cases, attribution clean. * test: tell a deliberate harness abort from a sanitizer fault A guard in TestUtil.cpp that aborts on purpose - a listening socket, or force_simradio put back - exits non-zero with no sanitizer report, so it fell through to the exit-time-abort heuristic and was announced as "RED exit-time abort (tests passed; likely sanitizer)". That is the same trap as the phantom SIGILL two checks above: a verdict line naming a cause it has not established, sending the reader after a memory bug that does not exist. It cost hours in the original investigation and it cost the first read of a test_atak failure today. Match the FATAL line the guards print on stdout for exactly this purpose, and report the reason they gave instead of guessing. * test: say why three suites omit TestUtil.h They are pure-function - no NodeDB, no router, no sockets, no PKC - so the harness-wide guards in TestUtil.h would assert conditions they cannot reach, and initializeTestEnvironment()'s RTC and OSThread setup would pull in portduino globals they otherwise never touch. Suite-level state cleanliness still applies: bin/pio-test-isolate.sh fingerprints the sandbox from outside and wraps every suite regardless. Recorded at the top of each so the omission reads as a decision rather than an oversight - it looked like the latter when the socket and simradio asserts landed. * test(traffic): give every case a primary channel resetTrafficConfig() zeroed channelFile and left channels_count at 0, so the 66 cases that do not install a channel themselves ran against a device with none. Every router lookup then hit Channels::getByIndex()'s out-of-range branch and logged, which is 12106 of the suite's 20088 ERROR lines and tests nothing - a real device always has a primary channel, and no case here asserts channels-unset behaviour. Install the well-known primary the suite already builds for its precision cases. All 85 pass unchanged, and the suite's ERROR output drops to 7985, the remainder being decode failures from test_tm_fuzz_nodenum_blitz's malformed payloads. * test: budget each suite's LOG_ERROR output A suite can pass while emitting six figures of ERROR, which buries a real failure and trains everyone to skim. Count them per suite and grade the count as a second axis, alongside the CLEAN/DIRTY verdict already computed from the same captured log. Declared in the same manifest, as a RANGE rather than a ceiling, because for a fuzz suite the floor is the half that matters: test_fuzz_decode logging ~100k rejections is the suite working, and the same suite logging none means it stopped feeding malformed input while every case still passes. Bounds are wide on purpose - they catch a path that has stopped running, not a drift of a few hundred lines. Undeclared suites get 100, which 50 of 57 already meet. AMBER, not RED. Three log sites - mesh-pb-constants.cpp:28, Channels.cpp:356, MQTT.cpp:92 - account for nearly all the remaining volume, and landing this red before they are demoted would buy exemptions rather than fixes. * test: canary the attribution check, and run the state self-test in CI check-test-attribution.py guards against the false green, and nothing guarded the guard. A checker that has quietly stopped matching looks exactly like a codebase with no problem, which is how the original went unnoticed for three weeks of green runs. The canary reproduces the failure deliberately - two suites run with --without-building, so PlatformIO does not relink and both execute the same leftover binary - and requires the checker to catch it. It also fails if the reproduction stops reproducing: if PlatformIO ever relinks per suite under that flag, the reason both harnesses stopped passing it no longer holds, and the harness should be revisited rather than left on a stale assumption. bin/test-state-check.sh already existed with fixtures asserting CLEAN/CLEAN/DIRTY/MISSING and had never run in CI. Wire it in too - the shared-state checker had the same blind spot, and somebody had already written the test for it. * fix(ci): run the attribution canary where it cannot clobber the daemon The canary relinks $BUILD_DIR/$PROGNAME, and in simulator-tests that replaced the daemon binary with a test suite. The integration test then started it and waited for a listening socket, which a test binary never opens - by assertion, since initializeTestEnvironment() now fails a suite that holds one - so the step sat until its 20s timeout and the job exited 124. The canary itself had already passed. Move it to platformio-tests, where the binary is per-suite already and nothing downstream needs the daemon, and place it after the coverage capture so its extra runs stay out of the numbers. The shared-state self-test stays in simulator-tests; it touches no binary. Fitting failure mode for this branch: one shared program path, two consumers, and the second one silently getting the first one's build. * fix(ci): silence the XXE rule on the attribution checker semgrep blocks xml.etree.ElementTree.parse as XXE-prone. The input here is the JUnit report PlatformIO wrote moments earlier in the same run, and anything able to plant a hostile report is already executing its own code in that job, so parsing it defused changes nothing it could do. defusedxml is in the tree but only under bin/bump_metainfo with its own requirements, and pulling it onto this path would add an install step to every native test job for no reachable threat. Suppressed with a reason at the call site, the same shape as the subprocess-shell-true suppression in extra_scripts/nrf54l15_linker.py. * fix(test): address the review findings on the harness guards Two were real defects rather than style: - state_count_errors() returned "0\n0" for a log with no ERROR lines, because grep -c prints 0 and *then* exits 1, so the `|| printf 0` fallback appended a second one. The classifier threw a syntax error on it. Dormant only because every suite currently emits at least one ERROR line; the planned log-level demotions would have driven most suites to zero and tripped it everywhere, looking like the demotions broke the harness. - check-test-attribution.py returned OK for a report whose cases carry no `file` attribute. It cannot prove ownership in that state, so a changed JUnit format would have restored the exact false green it exists to catch. Now its own finding, listed and fatal. The rest: keep the sandbox when an error budget is breached, since that is the one outcome whose evidence was being deleted; reject a missing or non-numeric option value in stress-suite.sh instead of running an empty loop and reporting 0/0 as a pass; exit on INT/TERM rather than cleaning up and carrying on; drive repetitions through pio-test-isolate.sh so a stress run exercises the real invocation; require the canary to see MISATTRIBUTED rather than any non-zero exit, so an unreadable report cannot read as a caught mismatch; and check for listening sockets before every test, since a listener would be opened by the code under test. resetAdminKeyFallbackBudget() is a new PIO_UNIT_TESTING hook, shaped like the neighbouring resetRoutingAuthEvaluationCount(). The refill stamp is only meaningful against the clock that produced it, so a suite switching timebases leaves a stamp from the other one and the next unsigned subtraction reads as a near-infinite gap - silently refilling the bucket. Also move the semgrep marker onto its own line: buried mid-sentence in a comment it was ignored, and the XXE finding stayed blocking.
546 lines
27 KiB
YAML
546 lines
27 KiB
YAML
name: Run Tests on Native platform
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
suite_order_seed:
|
|
description: >-
|
|
Seed for shuffling the test-area order. Empty (the default) means: fixed declared order on
|
|
pull_request, so a contributor's PR never turns red because of an order they did not
|
|
choose; commit-SHA-derived elsewhere. Set a number to force that exact order anywhere -
|
|
that is how you replay a shuffled failure.
|
|
type: string
|
|
required: false
|
|
default: ""
|
|
workflow_dispatch:
|
|
|
|
permissions: {}
|
|
|
|
env:
|
|
# Only pushes to the default branch (develop) populate the cache; PR / merge_group runs
|
|
# restore it but never save, so they stop filling up the repo's Actions cache storage.
|
|
SAVE_CACHE: ${{ github.event_name == 'push' && github.ref_name == github.event.repository.default_branch }}
|
|
LCOV_CAPTURE_FLAGS: --quiet --capture --include "${PWD}/src/*" --exclude '*/src/mesh/generated/*' --directory .pio/build/coverage/src --base-directory "${PWD}"
|
|
|
|
jobs:
|
|
# Tripwire against the native suite set shrinking by accident. `platformio test` discovers and
|
|
# runs whatever test_* directories exist, and bin/run-tests.sh derives its expected count from
|
|
# the same walk - so a suite directory lost in a bad rebase or an overzealous cleanup just means
|
|
# fewer suites run, and every remaining check stays green. Compare the test_* directory list
|
|
# against the PR's merge base and fail when a suite vanished without the PR saying so: a removed
|
|
# suite's name must appear in the PR title, the PR body, or a commit message in the PR's range.
|
|
# A deliberate removal satisfies that by stating what it removes; an accidental loss cannot.
|
|
# Only pull_request runs have a base to compare against (and PRs are where accidents arrive);
|
|
# every other event skips. No job depends on this one: a skipped job would skip its dependents,
|
|
# and the expensive jobs should not wait on a full-history clone.
|
|
suite-shrinkage-check:
|
|
name: Native Suite Shrinkage
|
|
if: github.event_name == 'pull_request'
|
|
runs-on: ubuntu-slim
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
|
|
with:
|
|
persist-credentials: false
|
|
# Full history: the merge base must be computed, not guessed from a possibly stale
|
|
# event payload, and the acknowledgment scan reads every commit message in the range.
|
|
fetch-depth: 0
|
|
|
|
- name: Fail if a test_* suite vanished unacknowledged
|
|
shell: bash
|
|
# PR title/body are attacker-controlled text; they reach the script through env: only,
|
|
# never spliced into the shell source (same rule as the suite-order seed below).
|
|
env:
|
|
BASE_REF: ${{ github.base_ref }}
|
|
PR_TITLE: ${{ github.event.pull_request.title }}
|
|
PR_BODY: ${{ github.event.pull_request.body }}
|
|
run: |
|
|
set -euo pipefail
|
|
git fetch --quiet origin "$BASE_REF"
|
|
base=$(git merge-base FETCH_HEAD HEAD)
|
|
# Same canonical set every other consumer derives: directories named test_* directly
|
|
# under test/, read from the git trees so the comparison is exact at both endpoints.
|
|
list_suites() { git ls-tree -d --name-only "$1" test/ | sed 's#^test/##' | grep '^test_' | sort; }
|
|
removed=$(comm -23 <(list_suites "$base") <(list_suites HEAD))
|
|
if [[ -z $removed ]]; then
|
|
echo "No suite removed: $(list_suites HEAD | wc -l) test_* directories, none lost since merge base ${base:0:8}."
|
|
exit 0
|
|
fi
|
|
messages=$(git log --format=%B "$base..HEAD")
|
|
fail=0
|
|
while IFS= read -r suite; do
|
|
if printf '%s\n%s\n%s\n' "$PR_TITLE" "$PR_BODY" "$messages" | grep -qF "$suite"; then
|
|
echo "Removed suite $suite is named in the PR title/body or a commit message - acknowledged."
|
|
else
|
|
echo "::error title=Native suite vanished::test/$suite exists on the merge base but is gone from this PR, and nothing in the PR title, body, or commit messages mentions it. If the removal is deliberate, name $suite in the PR description or a commit message; if not, restore the directory - platformio test would silently run without it."
|
|
fail=1
|
|
fi
|
|
done <<<"$removed"
|
|
exit $fail
|
|
|
|
# Reject naive deadline comparisons against the 32-bit uptime clocks. `millis() > deadline` and
|
|
# `deadline < millis()` invert while the deadline sits on the far side of the 32-bit wrap: the
|
|
# action fires immediately, or blocks for about the interval it should have waited. The correct
|
|
# forms are
|
|
# Throttle::isWithinTimespanMs / hasElapsed (elapsed since a stored event) and
|
|
# Throttle::deadlinePassed (an absolute deadline). See .github/copilot-instructions.md.
|
|
millis-deadline-check:
|
|
# Name is load-bearing: upstream branch protection matches the check by name. Widen the guard,
|
|
# not this string.
|
|
name: Naive millis() Deadline Compare
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Reject 32-bit uptime clocks used directly in a deadline comparison
|
|
shell: bash
|
|
run: |
|
|
set -euo pipefail
|
|
allowlist=".github/millis-deadline-allowlist.txt"
|
|
|
|
# Flag millis() or its Time::getMillis() wrapper directly adjacent to a comparison
|
|
# operator, in either order. The correct idioms subtract first, so they are not matched.
|
|
#
|
|
# Line comments are stripped before matching, so prose may name the broken idiom (this
|
|
# guard's own documentation does). Block comments are not stripped; keep `millis() >` out
|
|
# of /* */ blocks. mawk-compatible - ubuntu-latest has no gawk.
|
|
find src -type f \( -name '*.cpp' -o -name '*.h' -o -name '*.hpp' -o -name '*.ino' \) \
|
|
! -path 'src/mesh/generated/*' -print0 |
|
|
xargs -0 awk '
|
|
{
|
|
line = $0
|
|
sub(/\/\/.*/, "", line)
|
|
if (line ~ /((millis|getMillis)\(\)[ \t]*[<>]=?)|([<>]=?[ \t]*(millis|getMillis)\(\))/) {
|
|
code = line
|
|
sub(/^[ \t]+/, "", code); sub(/[ \t]+$/, "", code)
|
|
printf "%s\t%s\t%s\n", FILENAME, FNR, code
|
|
}
|
|
}' > /tmp/millis-hits.tsv
|
|
|
|
# Allowlisted entries are keyed on file + exact source text, deliberately without a line
|
|
# number, so unrelated edits above them do not invalidate the entry.
|
|
: > /tmp/millis-allowed.tsv
|
|
if [[ -f $allowlist ]]; then
|
|
grep -vE '^[[:space:]]*(#|$)' "$allowlist" > /tmp/millis-allowed.tsv || true
|
|
fi
|
|
|
|
violations=0
|
|
while IFS=$'\t' read -r file line code; do
|
|
[[ -n ${file:-} ]] || continue
|
|
if grep -qxF "$(printf '%s\t%s' "$file" "$code")" /tmp/millis-allowed.tsv; then
|
|
continue
|
|
fi
|
|
echo "$file:$line: $code"
|
|
violations=$((violations + 1))
|
|
done < /tmp/millis-hits.tsv
|
|
|
|
if [[ $violations -gt 0 ]]; then
|
|
echo "::error title=Naive uptime deadline compare::$violations line(s) compare a 32-bit uptime clock directly, which inverts while the deadline is on the far side of the 32-bit wrap - the action fires immediately, or blocks for about the interval it should have waited. Use Throttle::deadlinePassed(deadline) for a stored absolute deadline, or Throttle::hasElapsed(lastEvent, intervalMs) for an interval. If a match genuinely is not a deadline test (an uptime threshold, say), add it to $allowlist with a reason."
|
|
exit 1
|
|
fi
|
|
echo "No naive 32-bit uptime deadline comparisons in src/ (allowlist: $(wc -l < /tmp/millis-allowed.tsv) entr(y/ies))."
|
|
|
|
simulator-tests:
|
|
name: Native Simulator Tests
|
|
runs-on: ubuntu-24.04-arm
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Setup native build
|
|
id: base
|
|
uses: ./.github/actions/setup-native
|
|
|
|
- name: Install simulator dependencies
|
|
run: pip install -U dotmap
|
|
|
|
- name: Restore PlatformIO cache
|
|
id: pio-cache
|
|
uses: actions/cache/restore@v6
|
|
with:
|
|
path: ~/.platformio/.cache
|
|
key: pio-simulator-tests-${{ hashFiles('platformio.ini', 'variants/native/portduino.ini', 'variants/native/portduino/platformio.ini') }}
|
|
restore-keys: |
|
|
pio-simulator-tests-
|
|
|
|
# We now run integration test before other build steps (to quickly see runtime failures)
|
|
- name: Build for native/coverage
|
|
run: platformio run -e coverage
|
|
|
|
- name: Save PlatformIO cache
|
|
if: env.SAVE_CACHE == 'true' && steps.pio-cache.outputs.cache-hit != 'true'
|
|
uses: actions/cache/save@v6
|
|
with:
|
|
path: ~/.platformio/.cache
|
|
key: pio-simulator-tests-${{ hashFiles('platformio.ini', 'variants/native/portduino.ini', 'variants/native/portduino/platformio.ini') }}
|
|
|
|
- name: Capture initial coverage information
|
|
shell: bash
|
|
run: |
|
|
sudo apt-get install -y lcov
|
|
lcov ${{ env.LCOV_CAPTURE_FLAGS }} --initial --output-file coverage_base.info
|
|
sed -i -e "s#${PWD}#.#" coverage_base.info # Make paths relative.
|
|
|
|
- name: Config check tests
|
|
# Drives the same binary against test/fixtures/portduino-config: asserts that
|
|
# `--check` reports each planted fault, and that a normal run still refuses the
|
|
# configs it should. Runs before the simulator test because it is seconds long
|
|
# and a failure here explains a lot of downstream weirdness.
|
|
timeout-minutes: 5
|
|
run: ./bin/test-config-check.sh .pio/build/coverage/meshtasticd
|
|
|
|
- name: Shared-state checker self-test
|
|
# Fixtures that write nothing / exactly what they declare / something undeclared /
|
|
# a declared write they never make, asserting CLEAN / CLEAN / DIRTY / MISSING. A
|
|
# checker that has silently stopped matching looks identical to a clean codebase.
|
|
timeout-minutes: 5
|
|
run: ./bin/test-state-check.sh
|
|
|
|
- name: Integration test
|
|
# Cap the whole step: if the simulator ever fails to exit (e.g. the
|
|
# exit_simulator admin path regresses again) the job must fail fast,
|
|
# not run to GitHub's 6-hour limit.
|
|
timeout-minutes: 5
|
|
run: |
|
|
.pio/build/coverage/meshtasticd -s &
|
|
PID=$!
|
|
trap 'kill "$PID" 2>/dev/null || true' EXIT
|
|
timeout 20 bash -c "until ls -al /proc/$PID/fd | grep socket; do sleep 1; done"
|
|
echo "Simulator started, launching python test..."
|
|
python3 -c 'from meshtastic.test import testSimulator; testSimulator()'
|
|
# The Python harness sends exit_simulator and exits; the simulator is
|
|
# expected to terminate on its own. Give it a moment, then verify.
|
|
# If it is still alive the exit handshake is broken - fail loudly and
|
|
# do NOT fall through to `wait`, which would otherwise block until the
|
|
# job's hard timeout.
|
|
for i in $(seq 1 10); do
|
|
kill -0 "$PID" 2>/dev/null || break
|
|
sleep 1
|
|
done
|
|
if kill -0 "$PID" 2>/dev/null; then
|
|
echo "::error title=Simulator did not exit::meshtasticd ignored exit_simulator and is still running after the integration test. The exit_simulator admin path is broken (see AdminModule::handleReceivedProtobuf, ARCH_PORTDUINO bypass). Killing it to avoid a 6-hour CI overrun."
|
|
kill -9 "$PID" 2>/dev/null || true
|
|
wait "$PID" 2>/dev/null || true
|
|
exit 1
|
|
fi
|
|
wait "$PID" 2>/dev/null || true
|
|
|
|
- name: Capture coverage information
|
|
if: always() # run this step even if previous step failed
|
|
run: |
|
|
lcov ${{ env.LCOV_CAPTURE_FLAGS }} --test-name integration --output-file coverage_integration.info
|
|
sed -i -e "s#${PWD}#.#" coverage_integration.info # Make paths relative.
|
|
|
|
- name: Get release version string
|
|
if: always() # run this step even if previous step failed
|
|
run: echo "long=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
|
id: version
|
|
|
|
- name: Save coverage information
|
|
uses: actions/upload-artifact@v7
|
|
if: always() # run this step even if previous step failed
|
|
with:
|
|
name: lcov-coverage-info-native-simulator-test-${{ steps.version.outputs.long }}
|
|
overwrite: true
|
|
path: ./coverage_*.info
|
|
|
|
platformio-tests:
|
|
name: Native PlatformIO Tests
|
|
runs-on: ubuntu-24.04-arm
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Setup native build
|
|
id: base
|
|
uses: ./.github/actions/setup-native
|
|
|
|
- name: Get release version string
|
|
run: echo "long=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
|
id: version
|
|
|
|
# Disable (comment-out) BUILD_EPOCH. It causes a full rebuild between tests and resets the
|
|
# coverage information each time.
|
|
- name: Disable BUILD_EPOCH
|
|
run: sed -i 's/-DBUILD_EPOCH=$UNIX_TIME/#-DBUILD_EPOCH=$UNIX_TIME/' platformio.ini
|
|
|
|
- name: Restore PlatformIO cache
|
|
id: pio-cache
|
|
uses: actions/cache/restore@v6
|
|
with:
|
|
path: ~/.platformio/.cache
|
|
key: pio-coverage-tests-${{ hashFiles('platformio.ini', 'variants/native/portduino.ini', 'variants/native/portduino/platformio.ini') }}
|
|
restore-keys: |
|
|
pio-coverage-tests-
|
|
|
|
- name: Warm the shared test build
|
|
# Compiles src + every test program once so no single area absorbs the whole src build in
|
|
# its reported duration; gcov then accumulates counts into this shared
|
|
# .pio/build/coverage/src as the areas run. NOT a substitute for building in the run step:
|
|
# PlatformIO links every test program to the one .pio/build/coverage/meshtasticd path, so a
|
|
# --without-building run executes whichever suite was linked last under every suite's name.
|
|
run: platformio test -e coverage --without-testing
|
|
|
|
- name: Save PlatformIO cache
|
|
if: env.SAVE_CACHE == 'true' && steps.pio-cache.outputs.cache-hit != 'true'
|
|
uses: actions/cache/save@v6
|
|
with:
|
|
path: ~/.platformio/.cache
|
|
key: pio-coverage-tests-${{ hashFiles('platformio.ini', 'variants/native/portduino.ini', 'variants/native/portduino/platformio.ini') }}
|
|
|
|
- name: Run tests one area at a time
|
|
shell: bash
|
|
# Both values reach the script through env: rather than ${{ }} inside run:, so nothing from
|
|
# the event payload is ever spliced into the shell text.
|
|
env:
|
|
SUITE_ORDER_SEED: ${{ inputs.suite_order_seed }}
|
|
EVENT_NAME: ${{ github.event_name }}
|
|
run: |
|
|
set -uo pipefail
|
|
# One runner, no matrix, no concurrency. Group the test_* suites by area and run each
|
|
# area sequentially, reusing the single build above (--without-building). Each area gets
|
|
# its own JUnit report and its own collapsible log, so a failure lands in a small named
|
|
# section instead of being buried past the log limit. Sequential runs share one build
|
|
# dir, so gcov coverage accumulates and the single capture in the next step has the union.
|
|
|
|
# Ordered area rules "name:ERE"; first match wins. Anything unmatched falls to "misc", so
|
|
# a newly added suite always runs even before it is placed. Add a suite to an area by
|
|
# extending that area's regex; add a new area by inserting a rule line.
|
|
area_rules=(
|
|
"admin:^test_(admin|pki)_"
|
|
"crypto:^test_(crypto|packet_signing)$"
|
|
"routing:^test_(mesh|nexthop|traceroute|hop|traffic|nodedb|warm)_"
|
|
"position:^test_position_"
|
|
"fuzz:^test_fuzz_"
|
|
"packets:^test_(packet|transmit|meshpacket)_"
|
|
"io:^test_(serial|stream|xmodem|http|mqtt)"
|
|
)
|
|
|
|
mapfile -t suites < <(find test -maxdepth 1 -type d -name 'test_*' -printf '%f\n' | sort)
|
|
declare -A group
|
|
for s in "${suites[@]}"; do
|
|
a="misc"
|
|
for rule in "${area_rules[@]}"; do
|
|
if [[ "$s" =~ ${rule#*:} ]]; then a="${rule%%:*}"; break; fi
|
|
done
|
|
group[$a]="${group[$a]:-} -f $s"
|
|
done
|
|
|
|
run_order=()
|
|
for rule in "${area_rules[@]}"; do run_order+=("${rule%%:*}"); done
|
|
run_order+=("misc")
|
|
|
|
# Area order. The rule order above is an accident of how the areas were written, and
|
|
# running it fixed forever means order dependence between areas is never observed - but
|
|
# randomising it on a contributor's PR would turn their run red for an order they did not
|
|
# choose, which is how a randomisation gets reverted instead of the coupling fixed.
|
|
#
|
|
# So: pull_request keeps the fixed declared order. Everywhere else (push, schedule) the
|
|
# order is shuffled, seeded from the commit SHA - deterministic per commit, replayable,
|
|
# attributable, and it never blocks someone else's PR. An explicit seed input overrides
|
|
# both, which is how you replay a specific failing order anywhere.
|
|
#
|
|
# Intra-area order stays PlatformIO's: filters select suites, they do not order them
|
|
# (list_test_names() walks test/ with os.walk()), so controlling it needs one invocation
|
|
# per suite. bin/run-tests.sh --shuffle does exactly that locally.
|
|
seed_input="${SUITE_ORDER_SEED:-}"
|
|
if [ -n "$seed_input" ]; then
|
|
seed="$seed_input"
|
|
echo "area order: shuffled with explicitly supplied seed $seed"
|
|
elif [ "${EVENT_NAME:-}" = "pull_request" ]; then
|
|
seed=""
|
|
echo "area order: fixed declared order (pull_request) - ${run_order[*]}"
|
|
echo " to exercise a different order, re-run this workflow with a suite_order_seed input"
|
|
else
|
|
seed=$((16#${GITHUB_SHA:0:8}))
|
|
echo "area order: shuffled with seed $seed (from ${GITHUB_SHA:0:8})"
|
|
fi
|
|
|
|
if [ -n "$seed" ]; then
|
|
# Same shuffle_suites() bin/run-tests.sh uses, so the replay hint below is true by
|
|
# construction rather than by two copies happening to agree.
|
|
source bin/lib/shuffle.sh
|
|
mapfile -t run_order < <(shuffle_suites "$seed" "${run_order[@]}")
|
|
echo "area order: ${run_order[*]}"
|
|
echo " replay locally: ./bin/run-tests.sh --shuffle --seed $seed"
|
|
fi
|
|
|
|
fail=0
|
|
for a in "${run_order[@]}"; do
|
|
[ -n "${group[$a]:-}" ] || continue
|
|
echo "::group::area $a (${group[$a]# })"
|
|
# Capture platformio's real exit status (not grep's) via a log file, then show the log
|
|
# with the noisy per-variant SKIPPED rows filtered out.
|
|
if ! platformio test -e coverage -v ${group[$a]# } \
|
|
--junit-output-path "testreport-$a.xml" > "area-$a.log" 2>&1; then
|
|
fail=1
|
|
echo "::error::area $a had test failures"
|
|
fi
|
|
# Suites outside this area are reported SKIPPED by design (PlatformIO lists every suite
|
|
# in the env and marks the unselected ones finished), so those rows are noise here. The
|
|
# attribution check below is what catches a suite that was selected and did not run.
|
|
grep -v "[[:space:]]SKIPPED$" "area-$a.log" || true
|
|
# Per area, so a mismatch names the area it happened in rather than the whole run.
|
|
if ! ./bin/check-test-attribution.py --label "area $a" \
|
|
--expect "${group[$a]# }" "testreport-$a.xml"; then
|
|
fail=1
|
|
echo "::error::area $a ran suites that did not match their own test binaries"
|
|
fi
|
|
echo "::endgroup::"
|
|
done
|
|
exit $fail
|
|
|
|
- name: Merge per-area reports into testreport.xml
|
|
# Preserve the single-file JUnit contract that downstream consumers rely on
|
|
# (pr_tests.yml's summary and generate-reports' Test Report both read testreport.xml).
|
|
# The per-area split is only for readable logs; the report stays consolidated.
|
|
if: always() # run even when a chunk failed, so the report captures the failures
|
|
shell: bash
|
|
run: |
|
|
python3 - <<'PY'
|
|
import glob, xml.etree.ElementTree as ET
|
|
out = ET.Element('testsuites')
|
|
for f in sorted(glob.glob('testreport-*.xml')):
|
|
try:
|
|
root = ET.parse(f).getroot()
|
|
except ET.ParseError:
|
|
continue
|
|
# PlatformIO writes a <testsuites> root; fold in a bare <testsuite> too, just in case.
|
|
out.extend(root.findall('testsuite') if root.tag == 'testsuites' else [root])
|
|
ET.ElementTree(out).write('testreport.xml', encoding='utf-8', xml_declaration=True)
|
|
PY
|
|
|
|
- name: Verify every suite ran its own tests
|
|
# Whole-run gate over the merged report: every test_* directory must appear with at least
|
|
# one test case, and every case must come from the suite that reported it. The per-area
|
|
# check above cannot see an area that never executed - this can.
|
|
if: always() # a suite going missing is the finding; do not hide it behind an earlier failure
|
|
shell: bash
|
|
run: |
|
|
set -euo pipefail
|
|
mapfile -t suites < <(find test -maxdepth 1 -type d -name 'test_*' -printf '%f\n' | sort)
|
|
./bin/check-test-attribution.py --label "coverage (all areas)" \
|
|
--expect "${suites[*]}" testreport.xml
|
|
|
|
- name: Capture coverage information
|
|
if: always() # run this step even if previous step failed
|
|
run: |
|
|
sudo apt-get install -y lcov
|
|
lcov ${{ env.LCOV_CAPTURE_FLAGS }} --test-name tests --output-file coverage_tests.info
|
|
sed -i -e "s#${PWD}#.#" coverage_tests.info # Make paths relative.
|
|
|
|
- name: Attribution canary
|
|
# Guards the guard above: runs two suites the broken way (--without-building, so PlatformIO
|
|
# does not relink and both execute the same leftover binary) and requires the checker to
|
|
# catch it. Fails if the checker regressed, or if the reproduction stops reproducing - in
|
|
# which case the reason both harnesses stopped passing that flag no longer holds.
|
|
#
|
|
# Lives in this job, not simulator-tests: it relinks $BUILD_DIR/$PROGNAME, and there that
|
|
# replaced the daemon binary with a test suite, so the integration test waited for a socket
|
|
# a test binary never opens. Here the binary is already per-suite and nothing later needs it.
|
|
timeout-minutes: 15
|
|
run: ./bin/test-attribution-canary.sh -e coverage
|
|
|
|
- name: Event channel policy tests
|
|
run: platformio test -e coverage-event-policy -v --junit-output-path event-policy-testreport.xml
|
|
|
|
- name: Verify the event-policy suites ran their own tests
|
|
# Expected set read through PlatformIO's own config parser, so it cannot drift from the
|
|
# env's test_filter the way a second hand-maintained list would.
|
|
run: |
|
|
set -euo pipefail
|
|
expect=$(python3 -c "from platformio.project.config import ProjectConfig; \
|
|
print(' '.join(ProjectConfig().get('env:coverage-event-policy', 'test_filter', [])))")
|
|
./bin/check-test-attribution.py --label coverage-event-policy \
|
|
--expect "$expect" event-policy-testreport.xml
|
|
|
|
- name: Save test results
|
|
if: always() # run this step even if previous step failed
|
|
uses: actions/upload-artifact@v7
|
|
with:
|
|
name: platformio-test-report-${{ steps.version.outputs.long }}
|
|
overwrite: true
|
|
path: ./*testreport.xml
|
|
|
|
- name: Save coverage information
|
|
uses: actions/upload-artifact@v7
|
|
if: always() # run this step even if previous step failed
|
|
with:
|
|
name: lcov-coverage-info-native-platformio-tests-${{ steps.version.outputs.long }}
|
|
overwrite: true
|
|
path: ./coverage_*.info
|
|
|
|
generate-reports:
|
|
name: Generate Test Reports
|
|
runs-on: ubuntu-latest
|
|
permissions: # Needed for dorny/test-reporter.
|
|
contents: read
|
|
actions: read
|
|
checks: write
|
|
needs:
|
|
- simulator-tests
|
|
- platformio-tests
|
|
# Run this job even if the previous jobs failed, but skip if the workflow was cancelled.
|
|
if: ${{ !cancelled() }}
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
|
|
|
|
- name: Get release version string
|
|
run: echo "long=$(./bin/buildinfo.py long)" >> $GITHUB_OUTPUT
|
|
id: version
|
|
|
|
- name: Download test artifacts
|
|
uses: actions/download-artifact@v8
|
|
with:
|
|
name: platformio-test-report-${{ steps.version.outputs.long }}
|
|
merge-multiple: true
|
|
|
|
- name: Drop no-status testsuites from the report
|
|
# PlatformIO emits a self-closing <testsuite tests="0"/> row for every test_* dir
|
|
# crossed with every hardware variant it cannot run on the native host (~4900 rows).
|
|
# They carry no pass/fail/skip status and bury the suites that actually ran. Strip
|
|
# them so the Test Report lists only suites with a real status. Only the copy the
|
|
# reporter renders is trimmed; the uploaded artifact keeps the full XML.
|
|
run: sed -i -E 's#<testsuite [^>]*tests="0"[^>]*/>##g' testreport.xml
|
|
|
|
- name: Test Report
|
|
uses: dorny/test-reporter@v3.0.0
|
|
with:
|
|
name: PlatformIO Tests
|
|
path: testreport.xml
|
|
reporter: java-junit
|
|
|
|
- name: Download coverage artifacts
|
|
uses: actions/download-artifact@v8
|
|
with:
|
|
pattern: lcov-coverage-info-native-*-${{ steps.version.outputs.long }}
|
|
path: code-coverage-report
|
|
merge-multiple: true
|
|
|
|
- name: Generate Code Coverage Report
|
|
# Merge every tracefile the jobs produced: coverage_base.info (zeroed baseline),
|
|
# coverage_integration.info, and one coverage_tests_<chunk>.info per chunk. lcov
|
|
# sums hit counts across them, so the merged report is the union of all chunks -
|
|
# identical to running the whole suite in one job.
|
|
run: |
|
|
sudo apt-get install -y lcov
|
|
args=()
|
|
for f in code-coverage-report/coverage_*.info; do
|
|
args+=(--add-tracefile "$f")
|
|
done
|
|
lcov --quiet "${args[@]}" --output-file code-coverage-report/coverage_src.info
|
|
genhtml --quiet --legend --prefix "${PWD}" code-coverage-report/coverage_src.info --output-directory code-coverage-report
|
|
|
|
- name: Save Code Coverage Report
|
|
uses: actions/upload-artifact@v7
|
|
with:
|
|
name: code-coverage-report-${{ steps.version.outputs.long }}
|
|
path: code-coverage-report
|