fix(wake): B12 beacon-HMAC test skips when openssl unavailable (mirror W3 digest-HMAC guard) — CI-green
Some checks failed
ci/woodpecker/pr/ci Pipeline failed

This commit is contained in:
mosaic-coder
2026-07-25 22:34:20 -05:00
parent ce53b0e646
commit fe923a5977

View File

@@ -296,6 +296,9 @@ echo "== B11: staleness from monitor ingested_ts -> a far-future emit_ts STILL g
) && ok ) && ok
echo "== B12: HMAC-verify at record -> a spoofed (bad-sig) beacon is REJECTED ==" echo "== B12: HMAC-verify at record -> a spoofed (bad-sig) beacon is REJECTED =="
if ! command -v openssl >/dev/null 2>&1; then
echo "SKIP: openssl not available" >&2
else
( (
H="$(fresh_home b12)" H="$(fresh_home b12)"
export WAKE_STATE_HOME="$H" export WAKE_STATE_HOME="$H"
@@ -330,6 +333,7 @@ echo "== B12: HMAC-verify at record -> a spoofed (bad-sig) beacon is REJECTED ==
grep -qF "test-beacon-hmac-key-do-not-echo" "$BEACON" && fail_msg "B12: beacon.sh must NOT inline the HMAC key" grep -qF "test-beacon-hmac-key-do-not-echo" "$BEACON" && fail_msg "B12: beacon.sh must NOT inline the HMAC key"
true true
) && ok ) && ok
fi
echo echo
if [ -s "$FAILFILE" ]; then if [ -s "$FAILFILE" ]; then