|
| 1 | +// SPDX-License-Identifier: PMPL-1.0-or-later |
| 2 | + |
| 3 | +/** |
| 4 | + * Anti-Crash Gate Cross-Cutting Tests — aspect-oriented verification of |
| 5 | + * the logical circuit breaker for neural token validation. |
| 6 | + * |
| 7 | + * Tests the full validation pipeline: |
| 8 | + * - Security constraint checking (eval, exec, rm -rf, DROP TABLE, <script>) |
| 9 | + * - Type constraint checking (forbidden patterns, reserved keywords) |
| 10 | + * - Logic constraint checking (boolean contradictions, negations) |
| 11 | + * - Review/approve/reject state machine |
| 12 | + * - Halt/clear lifecycle |
| 13 | + * - Integration with Update cycle |
| 14 | + * - Throughput under adversarial input |
| 15 | + * |
| 16 | + * ReScript compilation notes: |
| 17 | + * processToken returns [state, token | undefined] (tuple → JS array) |
| 18 | + * validate returns "Valid" | { TAG: "Invalid", _0: reason } | { TAG: "RequiresReview", _0: reason } |
| 19 | + */ |
| 20 | + |
| 21 | +import { assertEquals, assert, assertNotEquals } from "jsr:@std/assert"; |
| 22 | +import * as AntiCrash from "../src/core/AntiCrash.res.js"; |
| 23 | +import { init as initModel } from "../src/Model.res.js"; |
| 24 | +import * as Update from "../src/Update.res.js"; |
| 25 | + |
| 26 | +// ─── Helpers ──────────────────────────────────────────────────────────── |
| 27 | + |
| 28 | +const makeToken = (content, confidence = 0.95) => ({ |
| 29 | + content, |
| 30 | + confidence, |
| 31 | + sourcePaneId: "pane-n", |
| 32 | + inferredType: "code", |
| 33 | +}); |
| 34 | + |
| 35 | +const defaultState = () => AntiCrash.init(); |
| 36 | + |
| 37 | +const defaultConstraints = () => [ |
| 38 | + { id: "c1", expression: "type Safe", active: true, pinned: false }, |
| 39 | +]; |
| 40 | + |
| 41 | +// ─── State Machine Initialisation ─────────────────────────────────────── |
| 42 | + |
| 43 | +Deno.test("AntiCrash — init creates enabled, non-halted state", () => { |
| 44 | + const state = defaultState(); |
| 45 | + assertEquals(state.enabled, true); |
| 46 | + assertEquals(state.strictMode, true); |
| 47 | + assertEquals(state.halted, false); |
| 48 | + assertEquals(state.violations.length, 0); |
| 49 | + assertEquals(state.pendingReview, undefined); |
| 50 | +}); |
| 51 | + |
| 52 | +// ─── Security Constraint Checking ─────────────────────────────────────── |
| 53 | + |
| 54 | +Deno.test("AntiCrash — checkSecurityConstraints: eval() detected", () => { |
| 55 | + const token = makeToken("const x = eval('malicious');"); |
| 56 | + const result = AntiCrash.checkSecurityConstraints(token); |
| 57 | + assertNotEquals(result, undefined, "eval should be flagged"); |
| 58 | +}); |
| 59 | + |
| 60 | +Deno.test("AntiCrash — checkSecurityConstraints: exec() detected", () => { |
| 61 | + const token = makeToken("require('child_process').exec('rm -rf /')"); |
| 62 | + const result = AntiCrash.checkSecurityConstraints(token); |
| 63 | + assertNotEquals(result, undefined, "exec should be flagged"); |
| 64 | +}); |
| 65 | + |
| 66 | +Deno.test("AntiCrash — checkSecurityConstraints: DROP TABLE detected", () => { |
| 67 | + const token = makeToken("DROP TABLE users;"); |
| 68 | + const result = AntiCrash.checkSecurityConstraints(token); |
| 69 | + assertNotEquals(result, undefined, "DROP TABLE should be flagged"); |
| 70 | +}); |
| 71 | + |
| 72 | +Deno.test("AntiCrash — checkSecurityConstraints: <script> detected", () => { |
| 73 | + const token = makeToken('<script>alert("xss")</script>'); |
| 74 | + const result = AntiCrash.checkSecurityConstraints(token); |
| 75 | + assertNotEquals(result, undefined, "<script> should be flagged"); |
| 76 | +}); |
| 77 | + |
| 78 | +Deno.test("AntiCrash — checkSecurityConstraints: DELETE FROM detected", () => { |
| 79 | + const token = makeToken("DELETE FROM accounts WHERE id = 1;"); |
| 80 | + const result = AntiCrash.checkSecurityConstraints(token); |
| 81 | + assertNotEquals(result, undefined, "DELETE FROM should be flagged"); |
| 82 | +}); |
| 83 | + |
| 84 | +Deno.test("AntiCrash — checkSecurityConstraints: rm -rf detected", () => { |
| 85 | + const token = makeToken("rm -rf /var/data"); |
| 86 | + const result = AntiCrash.checkSecurityConstraints(token); |
| 87 | + assertNotEquals(result, undefined, "rm -rf should be flagged"); |
| 88 | +}); |
| 89 | + |
| 90 | +Deno.test("AntiCrash — checkSecurityConstraints: safe code passes", () => { |
| 91 | + const token = makeToken("const greeting = 'Hello, world!';"); |
| 92 | + const result = AntiCrash.checkSecurityConstraints(token); |
| 93 | + assertEquals(result, undefined, "Safe code should not be flagged"); |
| 94 | +}); |
| 95 | + |
| 96 | +// ─── Type Constraint Checking ─────────────────────────────────────────── |
| 97 | + |
| 98 | +Deno.test("AntiCrash — checkTypeConstraints: token with constraints passes basic check", () => { |
| 99 | + const token = makeToken("const x: number = 42;"); |
| 100 | + const constraints = [{ id: "c1", expression: "type Safe", active: true, pinned: false }]; |
| 101 | + const result = AntiCrash.checkTypeConstraints(token, constraints); |
| 102 | + // Whether this flags depends on implementation, but should not throw |
| 103 | + assert(result === undefined || typeof result === "object", "Type check returns violation or undefined"); |
| 104 | +}); |
| 105 | + |
| 106 | +// ─── Logic Constraint Checking ────────────────────────────────────────── |
| 107 | + |
| 108 | +Deno.test("AntiCrash — checkLogicConstraints: clean token passes", () => { |
| 109 | + const token = makeToken("const result = a && b;"); |
| 110 | + const constraints = []; |
| 111 | + const result = AntiCrash.checkLogicConstraints(token, constraints); |
| 112 | + assertEquals(result, undefined, "Clean token should pass logic check"); |
| 113 | +}); |
| 114 | + |
| 115 | +// ─── Full Validation Pipeline ─────────────────────────────────────────── |
| 116 | + |
| 117 | +Deno.test("AntiCrash — validate: safe high-confidence token is Valid", () => { |
| 118 | + const token = makeToken("const x = 42;", 0.95); |
| 119 | + const result = AntiCrash.validate(token, defaultConstraints()); |
| 120 | + assertEquals(result, "Valid"); |
| 121 | +}); |
| 122 | + |
| 123 | +Deno.test("AntiCrash — validate: dangerous token is Invalid", () => { |
| 124 | + const token = makeToken("eval('attack');", 0.95); |
| 125 | + const result = AntiCrash.validate(token, defaultConstraints()); |
| 126 | + assertEquals(result.TAG, "Invalid"); |
| 127 | + assert(typeof result._0 === "string", "Invalid has reason string"); |
| 128 | +}); |
| 129 | + |
| 130 | +Deno.test("AntiCrash — validate: low-confidence token RequiresReview", () => { |
| 131 | + const token = makeToken("ambiguous output", 0.4); |
| 132 | + const result = AntiCrash.validate(token, defaultConstraints()); |
| 133 | + // Low confidence should trigger review or validation depending on threshold |
| 134 | + assert( |
| 135 | + result === "Valid" || result.TAG === "RequiresReview" || result.TAG === "Invalid", |
| 136 | + `Expected a valid result type, got: ${JSON.stringify(result)}` |
| 137 | + ); |
| 138 | +}); |
| 139 | + |
| 140 | +// ─── processToken Pipeline ────────────────────────────────────────────── |
| 141 | + |
| 142 | +Deno.test("AntiCrash — processToken: safe token returns [state, validatedToken]", () => { |
| 143 | + const state = defaultState(); |
| 144 | + const token = makeToken("const greeting = 'hi';", 0.95); |
| 145 | + const [newState, validatedToken] = AntiCrash.processToken(token, [], state); |
| 146 | + |
| 147 | + assertNotEquals(validatedToken, undefined, "Safe token should pass through"); |
| 148 | + assertEquals(validatedToken.validated, true); |
| 149 | + assertEquals(newState.halted, false); |
| 150 | +}); |
| 151 | + |
| 152 | +Deno.test("AntiCrash — processToken: dangerous token returns [state, undefined]", () => { |
| 153 | + const state = defaultState(); |
| 154 | + const token = makeToken("eval('rm -rf /')", 0.9); |
| 155 | + const [newState, validatedToken] = AntiCrash.processToken(token, [], state); |
| 156 | + |
| 157 | + assertEquals(validatedToken, undefined, "Dangerous token should be blocked"); |
| 158 | +}); |
| 159 | + |
| 160 | +Deno.test("AntiCrash — processToken: halted state blocks everything", () => { |
| 161 | + const state = { ...defaultState(), halted: true }; |
| 162 | + const token = makeToken("perfectly safe code", 0.99); |
| 163 | + const [_newState, validatedToken] = AntiCrash.processToken(token, [], state); |
| 164 | + |
| 165 | + assertEquals(validatedToken, undefined, "Halted state blocks all tokens"); |
| 166 | +}); |
| 167 | + |
| 168 | +Deno.test("AntiCrash — processToken: disabled state passes everything unvalidated", () => { |
| 169 | + const state = { ...defaultState(), enabled: false }; |
| 170 | + const token = makeToken("eval('dangerous')", 0.5); |
| 171 | + const [_newState, validatedToken] = AntiCrash.processToken(token, [], state); |
| 172 | + |
| 173 | + assertNotEquals(validatedToken, undefined, "Disabled gate passes tokens"); |
| 174 | + assertEquals(validatedToken.validated, false, "Passed tokens are not validated"); |
| 175 | +}); |
| 176 | + |
| 177 | +// ─── Review State Machine ─────────────────────────────────────────────── |
| 178 | + |
| 179 | +Deno.test("AntiCrash — low confidence token sets pendingReview", () => { |
| 180 | + const state = defaultState(); |
| 181 | + const token = makeToken("uncertain output", 0.3); |
| 182 | + const [newState, _validatedToken] = AntiCrash.processToken(token, [], state); |
| 183 | + |
| 184 | + // Either pendingReview is set (RequiresReview) or token was rejected |
| 185 | + // Depends on the exact confidence threshold in implementation |
| 186 | + assert( |
| 187 | + newState.pendingReview !== undefined || _validatedToken === undefined, |
| 188 | + "Low confidence should either set pendingReview or block" |
| 189 | + ); |
| 190 | +}); |
| 191 | + |
| 192 | +Deno.test("AntiCrash — approveReview releases pending token", () => { |
| 193 | + // Create state with pending review |
| 194 | + const state = { |
| 195 | + ...defaultState(), |
| 196 | + pendingReview: makeToken("reviewed output", 0.5), |
| 197 | + }; |
| 198 | + |
| 199 | + const [newState, approvedToken] = AntiCrash.approveReview(state); |
| 200 | + assertEquals(newState.pendingReview, undefined, "Pending review cleared"); |
| 201 | + assertNotEquals(approvedToken, undefined, "Approved token should be returned"); |
| 202 | +}); |
| 203 | + |
| 204 | +Deno.test("AntiCrash — rejectReview clears pending without releasing", () => { |
| 205 | + const state = { |
| 206 | + ...defaultState(), |
| 207 | + pendingReview: makeToken("rejected output", 0.5), |
| 208 | + }; |
| 209 | + |
| 210 | + const newState = AntiCrash.rejectReview(state); |
| 211 | + assertEquals(newState.pendingReview, undefined, "Pending review cleared"); |
| 212 | +}); |
| 213 | + |
| 214 | +Deno.test("AntiCrash — clearHalt resets halt and pendingReview", () => { |
| 215 | + const state = { |
| 216 | + ...defaultState(), |
| 217 | + halted: true, |
| 218 | + pendingReview: makeToken("stuck", 0.5), |
| 219 | + }; |
| 220 | + |
| 221 | + const newState = AntiCrash.clearHalt(state); |
| 222 | + assertEquals(newState.halted, false); |
| 223 | + assertEquals(newState.pendingReview, undefined); |
| 224 | +}); |
| 225 | + |
| 226 | +// ─── Cross-Cutting: AntiCrash in the Update Cycle ─────────────────────── |
| 227 | + |
| 228 | +Deno.test("Cross-cutting — ValidationPassed adds validated token to PaneN", () => { |
| 229 | + const m = initModel(); |
| 230 | + const token = { content: "safe output", timestamp: Date.now(), confidence: 0.95, validated: false }; |
| 231 | + const [newModel] = Update.update(m, { |
| 232 | + TAG: "AntiCrash", |
| 233 | + _0: { TAG: "ValidationPassed", _0: token }, |
| 234 | + }); |
| 235 | + |
| 236 | + const lastToken = newModel.paneN.tokens[newModel.paneN.tokens.length - 1]; |
| 237 | + assertEquals(lastToken.content, "safe output"); |
| 238 | + assertEquals(lastToken.validated, true); |
| 239 | +}); |
| 240 | + |
| 241 | +Deno.test("Cross-cutting — ValidationFailed in strict mode halts system", () => { |
| 242 | + const m = initModel(); |
| 243 | + const [newModel] = Update.update(m, { |
| 244 | + TAG: "AntiCrash", |
| 245 | + _0: { TAG: "ValidationFailed", _0: makeToken("bad"), _1: "Security violation" }, |
| 246 | + }); |
| 247 | + |
| 248 | + assertEquals(newModel.antiCrash.halted, true); |
| 249 | + assertEquals(newModel.antiCrash.violations.length, 1); |
| 250 | +}); |
| 251 | + |
| 252 | +Deno.test("Cross-cutting — ValidationFailed in non-strict mode does not halt", () => { |
| 253 | + const m = { ...initModel(), antiCrash: { ...initModel().antiCrash, strictMode: false } }; |
| 254 | + const [newModel] = Update.update(m, { |
| 255 | + TAG: "AntiCrash", |
| 256 | + _0: { TAG: "ValidationFailed", _0: makeToken("bad"), _1: "Rejected" }, |
| 257 | + }); |
| 258 | + |
| 259 | + assertEquals(newModel.antiCrash.halted, false); |
| 260 | + assertEquals(newModel.antiCrash.violations.length, 1); |
| 261 | +}); |
| 262 | + |
| 263 | +Deno.test("Cross-cutting — RequestOperatorIntervention halts the gate", () => { |
| 264 | + const m = initModel(); |
| 265 | + const [newModel] = Update.update(m, { |
| 266 | + TAG: "AntiCrash", |
| 267 | + _0: { TAG: "RequestOperatorIntervention", _0: "Low confidence batch" }, |
| 268 | + }); |
| 269 | + |
| 270 | + assertEquals(newModel.antiCrash.halted, true); |
| 271 | +}); |
| 272 | + |
| 273 | +Deno.test("Cross-cutting — multiple violations accumulate", () => { |
| 274 | + let m = initModel(); |
| 275 | + // First violation halts in strict mode |
| 276 | + const [m2] = Update.update(m, { |
| 277 | + TAG: "AntiCrash", |
| 278 | + _0: { TAG: "ValidationFailed", _0: makeToken("bad1"), _1: "Violation 1" }, |
| 279 | + }); |
| 280 | + assertEquals(m2.antiCrash.violations.length, 1); |
| 281 | +}); |
| 282 | + |
| 283 | +// ─── Adversarial Input ────────────────────────────────────────────────── |
| 284 | + |
| 285 | +Deno.test("AntiCrash — empty content token handled gracefully", () => { |
| 286 | + const state = defaultState(); |
| 287 | + const token = makeToken("", 0.95); |
| 288 | + const [_newState, _result] = AntiCrash.processToken(token, [], state); |
| 289 | + // Should not throw |
| 290 | + assert(true, "Empty token handled without error"); |
| 291 | +}); |
| 292 | + |
| 293 | +Deno.test("AntiCrash — very long content token handled gracefully", () => { |
| 294 | + const state = defaultState(); |
| 295 | + const token = makeToken("x".repeat(100000), 0.95); |
| 296 | + const [_newState, _result] = AntiCrash.processToken(token, [], state); |
| 297 | + assert(true, "Long token handled without error"); |
| 298 | +}); |
| 299 | + |
| 300 | +Deno.test("AntiCrash — special characters in content handled gracefully", () => { |
| 301 | + const state = defaultState(); |
| 302 | + const specialChars = "🎯\0\n\r\t\"'`\\/<>&;|${}[]()"; |
| 303 | + const token = makeToken(specialChars, 0.95); |
| 304 | + const [_newState, _result] = AntiCrash.processToken(token, [], state); |
| 305 | + assert(true, "Special characters handled without error"); |
| 306 | +}); |
0 commit comments