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
// What: `use super::nesting::nesting_depth;` pulls the pre-validator
// under test into scope. `super` is the parent module
// (`crate::rules`), `nesting` its child module, `nesting_depth`
// the function. No runtime cost; a name-resolution directive.
// Why: The tests below call `nesting_depth` directly to exercise the
// depth scan without going through the whole compile pipeline.
// TS map: `import { nestingDepth } from "./nesting";`.
//
// In TS you'd write (pseudocode):
// ```ts
// import { nestingDepth } from "./nesting";
// ```
use nesting_depth;
// What: `fn nesting_depth_fires_above_cap()` is a `#[test]` function:
// the attribute marks it for the test runner. It builds a rule
// nested 1,001 groups deep and asserts the validator flags it.
// Why: The 1,001-deep shape is one past the 1,000 cap, the smallest
// input that must be rejected; below the resharp overflow floor
// but the case Bug G's defense exists for.
// TS map: `it("nesting_depth fires above the cap", () => { ... })`.
//
// In TS you'd write (pseudocode):
// ```ts
// it("nesting_depth fires above the cap", () => {
// const src = "(".repeat(1001) + "a" + ")".repeat(1001);
// expect(nestingDepth(src)).not.toBeNull();
// });
// ```
// What: `fn nesting_depth_passes_at_cap()` builds a rule nested
// exactly 1,000 deep and asserts the validator does NOT fire.
// Why: The cap is inclusive on the passing side (`> cap` fires), so
// 1,000 must be accepted; this pins the exact boundary.
// TS map: `it("nesting_depth passes at the cap", () => { ... })`.
//
// In TS you'd write (pseudocode):
// ```ts
// it("nesting_depth passes at the cap", () => {
// const src = "(".repeat(1000) + "a" + ")".repeat(1000);
// expect(nestingDepth(src)).toBeNull();
// });
// ```
// What: `fn nesting_depth_skips_shallow_real_rules()` asserts the
// validator passes the real, shallow rule shapes the scanner
// actually uses.
// Why: Over-rejection is safe but pointless if it hits production
// rules; these must stay accepted.
// TS map: `it("nesting_depth skips shallow real rules", () => { ... })`.
//
// In TS you'd write (pseudocode):
// ```ts
// it("nesting_depth skips shallow real rules", () => {
// for (const src of [...]) expect(nestingDepth(src)).toBeNull();
// });
// ```
// What: `fn nesting_depth_ignores_escaped_and_class_parens()` asserts
// parens that are escaped or inside a `[...]` character class do
// NOT count toward depth.
// Why: Those parens are literal content, not groups; counting them
// would over-reject ordinary literal rules.
// TS map: `it("nesting_depth ignores escaped and class parens", () => { ... })`.
//
// In TS you'd write (pseudocode):
// ```ts
// it("nesting_depth ignores escaped and class parens", () => {
// expect(nestingDepth("\\(".repeat(2000))).toBeNull();
// expect(nestingDepth("[" + "(".repeat(2000) + "]")).toBeNull();
// });
// ```
// What: `fn compile_rule_src_rejects_deeply_nested_complement()`
// drives the full pipeline and asserts a deeply nested
// complement rule is rejected before resharp's `Regex::new`.
// Why: End-to-end proof that the pre-validator is wired into
// `compile_rule_src` on the resharp path, so the production
// scanner never hands the overflowing shape to resharp.
// TS map: `it("compile_rule_src rejects deeply nested complement", () => { ... })`.
//
// In TS you'd write (pseudocode):
// ```ts
// it("compile_rule_src rejects deeply nested complement", () => {
// const src = "~(".repeat(1001) + "a" + ")".repeat(1001);
// const r = compileRuleSrc(src);
// expect(r.kind).toBe("err");
// });
// ```