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
//! Strict schema contract: memory lifecycle — init, stats, remember, list, read, edit, rename, history, forget, restore.
//!
//! Part of the strict JSON-Schema contract suite split by GAP-SG-208. Each
//! test runs the binary, captures stdout, parses it as JSON and validates it
//! against the published `docs/schemas/*.schema.json`. The shared harness lives
//! in `tests/schema_support/`.
//!
//! NOT gated behind `slow-tests`, unlike the 29 other heavy test files, because
//! this suite is the only thing that compares the binary's REAL stdout against
//! the published contract. GAP-SG-271 measured what the gate cost while it was
//! on: five files sat behind the feature, `cargo test` never compiled them, and
//! the published schemas drifted with nothing to notice. A gate the default
//! invocation never runs is not a gate — it is a gate-shaped reassurance.
//!
//! The attribute must never move back into `tests/schema_support/mod.rs`: a
//! shared `mod.rs` that cfg-es itself out does not become empty, it VANISHES
//! from the module graph, so every `use support::…` fails to resolve and the
//! whole test build breaks.
#[path = "schema_support/mod.rs"]
mod support;
use serial_test::serial;
use support::{validate_schema, Env};
// ---------------------------------------------------------------------------
// 01 — init
// ---------------------------------------------------------------------------
#[test]
#[serial]
fn schema_01_init() {
let env = Env::new();
let output = env.cmd().arg("init").output().expect("init failed");
assert!(
output.status.success(),
"init: exit {:?}",
output.status.code()
);
let instance = Env::parse_stdout(&output, "init");
validate_schema(
"init",
include_str!("../docs/schemas/init.schema.json"),
&instance,
);
}
// ---------------------------------------------------------------------------
// 02 — stats
// ---------------------------------------------------------------------------
#[test]
#[serial]
fn schema_02_stats() {
let env = Env::new();
env.init();
let output = env.cmd().arg("stats").output().expect("stats failed");
assert!(
output.status.success(),
"stats: exit {:?}",
output.status.code()
);
let instance = Env::parse_stdout(&output, "stats");
validate_schema(
"stats",
include_str!("../docs/schemas/stats.schema.json"),
&instance,
);
}
// ---------------------------------------------------------------------------
// 03 — remember
// ---------------------------------------------------------------------------
#[test]
#[serial]
fn schema_03_remember() {
let env = Env::new();
env.init();
let instance = env.remember_simple("mem-schema-remember");
validate_schema(
"remember",
include_str!("../docs/schemas/remember.schema.json"),
&instance,
);
}
// ---------------------------------------------------------------------------
// 04 — list
// ---------------------------------------------------------------------------
#[test]
#[serial]
fn schema_04_list() {
let env = Env::new();
env.init();
env.remember_simple("mem-schema-list");
let output = env
.cmd()
.args(["list", "--namespace", "global"])
.output()
.expect("list failed");
assert!(
output.status.success(),
"list: exit {:?}",
output.status.code()
);
let instance = Env::parse_stdout(&output, "list");
validate_schema(
"list",
include_str!("../docs/schemas/list.schema.json"),
&instance,
);
}
// ---------------------------------------------------------------------------
// 05 — read
// ---------------------------------------------------------------------------
#[test]
#[serial]
fn schema_05_read() {
let env = Env::new();
env.init();
env.remember_simple("mem-schema-read");
let output = env
.cmd()
.args(["read", "--name", "mem-schema-read"])
.output()
.expect("read failed");
assert!(
output.status.success(),
"read: exit {:?}",
output.status.code()
);
let instance = Env::parse_stdout(&output, "read");
validate_schema(
"read",
include_str!("../docs/schemas/read.schema.json"),
&instance,
);
}
// ---------------------------------------------------------------------------
// 06 — edit
// ---------------------------------------------------------------------------
#[test]
#[serial]
fn schema_06_edit() {
let env = Env::new();
env.init();
env.remember_simple("mem-schema-edit");
let output = env
.cmd()
.args([
"edit",
"--name",
"mem-schema-edit",
"--body",
"corpo-editado-para-schema",
])
.output()
.expect("edit failed");
assert!(
output.status.success(),
"edit: exit {:?}",
output.status.code()
);
let instance = Env::parse_stdout(&output, "edit");
validate_schema(
"edit",
include_str!("../docs/schemas/edit.schema.json"),
&instance,
);
}
// ---------------------------------------------------------------------------
// 07 — rename
// ---------------------------------------------------------------------------
#[test]
#[serial]
fn schema_07_rename() {
let env = Env::new();
env.init();
env.remember_simple("mem-schema-rename-origem");
let output = env
.cmd()
.args([
"rename",
"--name",
"mem-schema-rename-origem",
"--new-name",
"mem-schema-rename-destino",
])
.output()
.expect("rename failed");
assert!(
output.status.success(),
"rename: exit {:?}",
output.status.code()
);
let instance = Env::parse_stdout(&output, "rename");
validate_schema(
"rename",
include_str!("../docs/schemas/rename.schema.json"),
&instance,
);
}
// ---------------------------------------------------------------------------
// 08 — history
// ---------------------------------------------------------------------------
#[test]
#[serial]
fn schema_08_history() {
let env = Env::new();
env.init();
env.remember_simple("mem-schema-history");
let output = env
.cmd()
.args(["history", "--name", "mem-schema-history"])
.output()
.expect("history failed");
assert!(
output.status.success(),
"history: exit {:?}",
output.status.code()
);
let instance = Env::parse_stdout(&output, "history");
validate_schema(
"history",
include_str!("../docs/schemas/history.schema.json"),
&instance,
);
}
// ---------------------------------------------------------------------------
// 09 — forget
// ---------------------------------------------------------------------------
#[test]
#[serial]
fn schema_09_forget() {
let env = Env::new();
env.init();
env.remember_simple("mem-schema-forget");
let output = env
.cmd()
.args(["forget", "--name", "mem-schema-forget"])
.output()
.expect("forget failed");
assert!(
output.status.success(),
"forget: exit {:?}",
output.status.code()
);
let instance = Env::parse_stdout(&output, "forget");
validate_schema(
"forget",
include_str!("../docs/schemas/forget.schema.json"),
&instance,
);
}
// ---------------------------------------------------------------------------
// 10 — restore
// ---------------------------------------------------------------------------
#[test]
#[serial]
fn schema_10_restore() {
let env = Env::new();
env.init();
env.remember_simple("mem-schema-restore");
// Create a second version via edit
env.cmd()
.args([
"edit",
"--name",
"mem-schema-restore",
"--body",
"versao-dois",
])
.assert()
.success();
let output = env
.cmd()
.args(["restore", "--name", "mem-schema-restore", "--version", "1"])
.output()
.expect("restore failed");
assert!(
output.status.success(),
"restore: exit {:?}",
output.status.code()
);
let instance = Env::parse_stdout(&output, "restore");
validate_schema(
"restore",
include_str!("../docs/schemas/restore.schema.json"),
&instance,
);
}
// ---------------------------------------------------------------------------
// 11 — purge
// ---------------------------------------------------------------------------
#[test]
#[serial]
fn schema_11_purge() {
let env = Env::new();
env.init();
let output = env
.cmd()
.args(["purge", "--dry-run", "--namespace", "global"])
.output()
.expect("purge failed");
assert!(
output.status.success(),
"purge: exit {:?}",
output.status.code()
);
let instance = Env::parse_stdout(&output, "purge");
validate_schema(
"purge",
include_str!("../docs/schemas/purge.schema.json"),
&instance,
);
}
// ---------------------------------------------------------------------------
// 12 — recall
// ---------------------------------------------------------------------------
#[test]
#[serial]
fn schema_12_recall() {
let env = Env::new();
env.init();
env.remember_simple("mem-schema-recall");
let output = env
.cmd()
.args(["recall", "schema recall teste", "--k", "3"])
.output()
.expect("recall failed");
assert!(
output.status.success(),
"recall: exit {:?}",
output.status.code()
);
let instance = Env::parse_stdout(&output, "recall");
validate_schema(
"recall",
include_str!("../docs/schemas/recall.schema.json"),
&instance,
);
}
// ---------------------------------------------------------------------------
// 13 — hybrid-search
// ---------------------------------------------------------------------------
#[test]
#[serial]
fn schema_13_hybrid_search() {
let env = Env::new();
env.init();
env.remember_simple("mem-schema-hybrid");
let output = env
.cmd()
.args(["hybrid-search", "busca hibrida schema", "--k", "3"])
.output()
.expect("hybrid-search failed");
assert!(
output.status.success(),
"hybrid-search: exit {:?}",
output.status.code()
);
let instance = Env::parse_stdout(&output, "hybrid-search");
validate_schema(
"hybrid-search",
include_str!("../docs/schemas/hybrid-search.schema.json"),
&instance,
);
// The same envelope with the agent-native surface active. Validating only
// the bare invocation is exactly why alias suppression could delete
// `graph_matches` — a member this schema lists under `required` — and ship
// an envelope invalid against the project's own contract.
//
// `--select` is deliberately absent: it projects result objects, so it drops
// item members the schema lists under `required` for EVERY subcommand, not
// just this one. That is a separate contract question about whether the
// schemas describe the projected envelope, and it cannot be answered by
// loosening one schema in isolation. The knobs exercised here reshape the
// array without touching the shape of its elements.
for flags in [
vec!["--max-items", "1"],
vec!["--filter", "name!=nothing-matches-this"],
vec!["--dedupe-by", "name"],
] {
let mut cmd = env.cmd();
cmd.args(&flags);
let output = cmd
.args(["hybrid-search", "busca hibrida schema", "--k", "3"])
.output()
.expect("hybrid-search com surface failed");
assert!(
output.status.success(),
"hybrid-search {flags:?}: exit {:?}",
output.status.code()
);
let instance = Env::parse_stdout(&output, "hybrid-search");
validate_schema(
"hybrid-search",
include_str!("../docs/schemas/hybrid-search.schema.json"),
&instance,
);
assert!(
instance.get("graph_matches").is_some(),
"graph_matches is required and is disjoint from results in hybrid-search, \
so no surface knob may drop it (flags {flags:?}): {instance}"
);
}
}