-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathtest_nl_parser.py
More file actions
441 lines (345 loc) · 16.5 KB
/
Copy pathtest_nl_parser.py
File metadata and controls
441 lines (345 loc) · 16.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
"""Tests for the rule-based NL parser improvements.
Covers: keyword rule expansion, bare tool name extraction, numeric parsing,
argument order heuristics, and the three newly-covered patterns
(arg_blacklist, scope_limit, data_intact).
"""
from __future__ import annotations
import pytest
from sponsio.generation.dsl_to_contract import (
_extract_actions,
_extract_allowlist_patterns,
_extract_blacklist_patterns,
_extract_paths,
_match_keyword_rule,
_parse_rate_limit_count,
parse_nl_rule_based,
parse_nl_unified,
)
# ---------------------------------------------------------------------------
# _extract_actions: backtick, quoted, bare snake_case, cue phrase
# ---------------------------------------------------------------------------
class TestExtractActions:
def test_backtick(self):
assert _extract_actions("tool `check_policy` before `refund`") == [
"check_policy",
"refund",
]
def test_quoted(self):
assert _extract_actions('tool "check_policy" before "refund"') == [
"check_policy",
"refund",
]
def test_bare_snake_case(self):
assert _extract_actions("send_email should always come after review_draft") == [
"send_email",
"review_draft",
]
def test_cue_phrase_tool(self):
actions = _extract_actions("tool deploy should only run once")
assert "deploy" in actions
def test_cue_phrase_call(self):
actions = _extract_actions("never call delete without confirmation")
assert "delete" in actions
def test_cue_and_pattern(self):
actions = _extract_actions("do not call approve and reject in the same session")
assert "approve" in actions
assert "reject" in actions
def test_tool_before_command(self):
actions = _extract_actions("bash command must not contain rm -rf")
assert "bash" in actions
def test_backtick_takes_priority(self):
"""When backticks are present, bare names are ignored."""
actions = _extract_actions("tool `deploy` should only run once")
assert actions == ["deploy"]
def test_empty_string(self):
assert _extract_actions("") == []
def test_stop_words_filtered(self):
"""Common English words are not extracted as tool names."""
actions = _extract_actions("call the function after this step")
# "the" and "after" should not be extracted
for w in ["the", "after", "this"]:
assert w not in actions
# ---------------------------------------------------------------------------
# _extract_blacklist_patterns
# ---------------------------------------------------------------------------
class TestExtractBlacklistPatterns:
def test_or_separated(self):
result = _extract_blacklist_patterns("must not contain rm -rf or sudo")
assert "rm -rf" in result
assert "sudo" in result
def test_quoted_patterns(self):
result = _extract_blacklist_patterns("must not contain `rm -rf` or `sudo`")
assert "rm -rf" in result
assert "sudo" in result
def test_comma_separated(self):
result = _extract_blacklist_patterns("must not contain DROP TABLE, DELETE FROM")
assert len(result) >= 2
def test_no_match(self):
result = _extract_blacklist_patterns("some random text")
assert result == []
class TestExtractAllowlistPatterns:
def test_one_of_quoted(self):
result = _extract_allowlist_patterns(
"recipient must be one of `US-internal-001`, `US-internal-002`"
)
assert "US-internal-001" in result
assert "US-internal-002" in result
def test_in_quoted(self):
result = _extract_allowlist_patterns(
'host must be in "trusted.com" or "partners.org"'
)
assert "trusted.com" in result
assert "partners.org" in result
def test_or_unquoted(self):
result = _extract_allowlist_patterns("must be one of foo or bar")
assert "foo" in result
assert "bar" in result
def test_no_match(self):
result = _extract_allowlist_patterns("some random text")
assert result == []
# ---------------------------------------------------------------------------
# _extract_paths
# ---------------------------------------------------------------------------
class TestExtractPaths:
def test_backtick_paths(self):
paths = _extract_paths("restrict to `/workspace/` only")
assert "/workspace/" in paths
def test_bare_paths(self):
paths = _extract_paths("restrict file access to /workspace only")
assert any("/workspace" in p for p in paths)
def test_multiple_paths(self):
paths = _extract_paths("only access `/data/` or `/workspace/`")
assert len(paths) == 2
def test_no_paths(self):
paths = _extract_paths("some text without paths")
assert paths == []
# ---------------------------------------------------------------------------
# _parse_rate_limit_count
# ---------------------------------------------------------------------------
class TestParseRateLimitCount:
def test_at_most_n(self):
assert _parse_rate_limit_count("at most 5 times") == 5
def test_n_times(self):
assert _parse_rate_limit_count("3 times per session") == 3
def test_n_per(self):
assert _parse_rate_limit_count("limit to 10 per session") == 10
def test_max_n(self):
assert _parse_rate_limit_count("maximum 7 calls") == 7
def test_no_number(self):
assert _parse_rate_limit_count("some text") is None
# ---------------------------------------------------------------------------
# _match_keyword_rule: new patterns
# ---------------------------------------------------------------------------
class TestKeywordRuleMatching:
def test_arg_blacklist_keyword(self):
result = _match_keyword_rule("command must not contain rm -rf")
assert result is not None
assert result[0] == "arg_blacklist"
def test_scope_limit_keyword(self):
result = _match_keyword_rule("restrict file access to /workspace")
assert result is not None
assert result[0] == "scope_limit"
def test_data_intact_keyword(self):
result = _match_keyword_rule("data must remain unmodified")
assert result is not None
assert result[0] == "data_intact"
def test_come_after_matches_followed_by(self):
result = _match_keyword_rule("A should always come after B")
assert result is not None
assert result[0] == "always_followed_by"
def test_same_session_matches_mutual_exclusion(self):
result = _match_keyword_rule("not in the same session")
assert result is not None
assert result[0] == "mutual_exclusion"
def test_only_run_once_matches_idempotent(self):
result = _match_keyword_rule("should only run once")
assert result is not None
assert result[0] == "idempotent"
def test_dry_run_before_commit_keyword(self):
result = _match_keyword_rule("dry run must happen before apply")
assert result is not None
assert result[0] == "dry_run_before_commit"
def test_approval_freshness_keyword(self):
result = _match_keyword_rule("deploy requires fresh approval within 3 steps")
assert result is not None
assert result[0] == "approval_freshness"
def test_duplicate_call_limit_keyword(self):
result = _match_keyword_rule("same request at most 2 times")
assert result is not None
assert result[0] == "duplicate_call_limit"
# ---------------------------------------------------------------------------
# parse_nl_rule_based: end-to-end NL → ParsedConstraint
# ---------------------------------------------------------------------------
class TestParseNLRuleBased:
"""End-to-end tests for the improved rule-based parser."""
# --- Backtick phrasings (should still work) ---
def test_must_precede_backtick(self):
r = parse_nl_rule_based("tool `check_policy` must precede `issue_refund`")
assert r.ok
assert r.pattern_name == "must_precede"
def test_rate_limit_backtick(self):
r = parse_nl_rule_based("tool `transfer` at most 3 times")
assert r.ok
assert r.pattern_name == "rate_limit"
def test_mutual_exclusion_backtick(self):
r = parse_nl_rule_based("tools `approve` and `reject` are mutually exclusive")
assert r.ok
assert r.pattern_name == "mutual_exclusion"
def test_dry_run_before_commit(self):
r = parse_nl_rule_based("`plan_migration` dry run before `apply_migration`")
assert r.ok
assert r.pattern_name == "dry_run_before_commit"
def test_backup_before_destructive(self):
r = parse_nl_rule_based("`snapshot_db` backup before `drop_table`")
assert r.ok
assert r.pattern_name == "backup_before_destructive"
def test_audit_after_default_audit_action(self):
r = parse_nl_rule_based("`transfer_funds` must be audited")
assert r.ok
assert r.pattern_name == "audit_after"
assert r.args == ("transfer_funds", "audit_transfer_funds")
def test_approval_freshness(self):
r = parse_nl_rule_based("`approve_deploy` approval for `deploy` within 3 steps")
assert r.ok
assert r.pattern_name == "approval_freshness"
assert r.args == ("approve_deploy", "deploy", 3)
def test_sanitized_before_sink(self):
r = parse_nl_rule_based(
"`web_fetch` input must be sanitized by `sanitize_input` before `send_email`"
)
assert r.ok
assert r.pattern_name == "sanitized_before_sink"
def test_duplicate_call_limit(self):
r = parse_nl_rule_based("same `search` request `invoice-42` at most 2 times")
assert r.ok
assert r.pattern_name == "duplicate_call_limit"
assert r.args == ("search", "invoice-42", 2)
# --- Bare snake_case names ---
def test_must_precede_snake_case(self):
r = parse_nl_rule_based("check_policy must precede issue_refund")
assert r.ok
assert r.pattern_name == "must_precede"
def test_always_followed_by_snake_case(self):
r = parse_nl_rule_based("send_email should always come after review_draft")
assert r.ok
assert r.pattern_name == "always_followed_by"
def test_always_followed_by_after_calling(self):
r = parse_nl_rule_based("after calling fetch_data, always call log_result")
assert r.ok
assert r.pattern_name == "always_followed_by"
# --- Cue phrase extraction ---
def test_idempotent_tool_cue(self):
r = parse_nl_rule_based("tool deploy should only run once")
assert r.ok
assert r.pattern_name == "idempotent"
def test_must_confirm_call_cue(self):
r = parse_nl_rule_based("never call delete without confirmation")
assert r.ok
assert r.pattern_name == "must_confirm"
def test_mutual_exclusion_call_and(self):
r = parse_nl_rule_based("do not call approve and reject in the same session")
assert r.ok
assert r.pattern_name == "mutual_exclusion"
# --- New patterns: arg_blacklist, scope_limit, data_intact ---
def test_arg_blacklist_bare(self):
r = parse_nl_rule_based("bash command must not contain rm -rf or sudo")
assert r.ok
assert r.pattern_name == "arg_blacklist"
def test_arg_blacklist_backtick(self):
r = parse_nl_rule_based(
"tool `bash` command must not contain `rm -rf` or `sudo`"
)
assert r.ok
assert r.pattern_name == "arg_blacklist"
def test_scope_limit_bare_path(self):
r = parse_nl_rule_based("restrict file access to /workspace only")
assert r.ok
assert r.pattern_name == "scope_limit"
def test_scope_limit_backtick(self):
r = parse_nl_rule_based("tool `file_ops` restricted to `/workspace/`")
assert r.ok
assert r.pattern_name == "scope_limit"
# --- Argument order heuristics ---
def test_always_followed_by_come_after_swaps_args(self):
"""'A should come after B' → always_followed_by(B, A)."""
r = parse_nl_rule_based("send_email should always come after review_draft")
assert r.ok
assert r.pattern_name == "always_followed_by"
# trigger=review_draft, response=send_email
assert r.args[0] == "review_draft"
assert r.args[1] == "send_email"
def test_always_followed_by_after_calling_keeps_order(self):
"""'after calling A, always call B' → always_followed_by(A, B)."""
r = parse_nl_rule_based("after calling fetch_data, always call log_result")
assert r.ok
assert r.args[0] == "fetch_data"
assert r.args[1] == "log_result"
def test_no_reversal_must_not_follow_swaps(self):
"""'X must not follow Y' → no_reversal(Y, X)."""
r = parse_nl_rule_based("tool `reject` must not follow `approve`")
assert r.ok
assert r.pattern_name == "no_reversal"
assert r.args[0] == "approve"
assert r.args[1] == "reject"
# --- Cases that legitimately need LLM (rule-based should fail gracefully) ---
def test_pure_english_fails_gracefully(self):
"""Pure English without tool-like names should fail, not crash."""
r = parse_nl_rule_based("verify identity is required before transferring funds")
assert not r.ok
assert r.pattern_name == "must_precede"
assert r.error # Has a meaningful error message
def test_ambiguous_single_word_fails_gracefully(self):
"""Ambiguous single-word tool names should fail, not crash."""
r = parse_nl_rule_based("limit queries to 10 per session")
assert not r.ok
assert r.pattern_name == "rate_limit"
# --- parse_nl_unified integration ---
def test_unified_routes_hard_correctly(self):
r = parse_nl_unified("tool `check_policy` must precede `issue_refund`")
assert r.is_det
assert r.hard.pattern_name == "must_precede"
def test_unified_pii_is_now_det(self):
# P2 reclassification: regex-based PII is det, not sto.
r = parse_nl_unified("response must not contain PII")
assert r.is_det
assert r.hard.pattern_name == "no_pii"
class TestPatternCoverageViaNL:
"""Verify that every pattern can be reached via at least one NL phrasing."""
@pytest.mark.parametrize(
"nl, expected_pattern",
[
("tool `A` must precede `B`", "must_precede"),
("`check_policy` before `issue_refund`", "must_precede"),
("tool `X` at most 3 times", "rate_limit"),
("`transfer` at most 5 times", "rate_limit"),
("tools `approve` and `reject` are mutually exclusive", "mutual_exclusion"),
("do not call approve and reject in the same session", "mutual_exclusion"),
("tool `approve` cannot be reversed by `reject`", "no_reversal"),
("tool `deploy` must be idempotent", "idempotent"),
("tool deploy should only run once", "idempotent"),
("tool `X` must be confirmed before execution", "must_confirm"),
("never call delete without confirmation", "must_confirm"),
("`write_api` cooldown of 2 steps", "cooldown"),
("tool `deploy_staging` at most 3 retries", "bounded_retry"),
(
"tools `submit` and `approve` require segregation of duty",
"segregation_of_duty",
),
("`trigger` must be followed by `response`", "always_followed_by"),
("send_email should always come after review_draft", "always_followed_by"),
("after calling fetch_data, always call log_result", "always_followed_by"),
("tool `delete` requires permission `admin`", "requires_permission"),
# no_data_leak with tool-like names routes to no_reversal (by design)
("no data leak from `db` to `external`", "no_reversal"),
("no data leak from `pii` to `external_api`", "no_data_leak"),
("`action` within 3 steps of `trigger`", "deadline"),
("bash command must not contain rm -rf or sudo", "arg_blacklist"),
("restrict file access to /workspace only", "scope_limit"),
],
)
def test_nl_to_pattern(self, nl, expected_pattern):
result = parse_nl_rule_based(nl)
assert result.ok, f"Failed to parse: {nl!r} — error: {result.error}"
assert result.pattern_name == expected_pattern, (
f"Expected {expected_pattern}, got {result.pattern_name} for: {nl!r}"
)