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
//! Strict schema contract: retrieval and graph — related, link, unlink, graph.
//!
//! 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/`.
#[path = "schema_support/mod.rs"]
mod support;
use serial_test::serial;
use support::{validar_schema, Env};
// ---------------------------------------------------------------------------
// 14 — related
// ---------------------------------------------------------------------------
#[test]
#[serial]
fn schema_14_related() {
let env = Env::new();
env.init();
env.remember_simples("mem-schema-related");
let saida = env
.cmd()
.args(["related", "--name", "mem-schema-related", "--hops", "1"])
.output()
.expect("related failed");
assert!(
saida.status.success(),
"related: exit {:?}",
saida.status.code()
);
let instancia = Env::parse_stdout(&saida, "related");
validar_schema(
"related",
include_str!("../docs/schemas/related.schema.json"),
&instancia,
);
}
// ---------------------------------------------------------------------------
// 15 — link
// ---------------------------------------------------------------------------
#[test]
#[serial]
fn schema_15_link() {
let env = Env::new();
env.init();
let (ent_a, ent_b) = env.remember_with_entities("mem-schema-link");
let saida = env
.cmd()
.args([
"link",
"--from",
&ent_a,
"--to",
&ent_b,
"--relation",
"depends-on",
"--namespace",
"global",
])
.output()
.expect("link failed");
assert!(
saida.status.success(),
"link: exit {:?}",
saida.status.code()
);
let instancia = Env::parse_stdout(&saida, "link");
validar_schema(
"link",
include_str!("../docs/schemas/link.schema.json"),
&instancia,
);
}
// ---------------------------------------------------------------------------
// 16 — unlink
// ---------------------------------------------------------------------------
#[test]
#[serial]
fn schema_16_unlink() {
let env = Env::new();
env.init();
let (ent_a, ent_b) = env.remember_with_entities("mem-schema-unlink");
// Cria o link primeiro
env.cmd()
.args([
"link",
"--from",
&ent_a,
"--to",
&ent_b,
"--relation",
"uses",
"--namespace",
"global",
])
.assert()
.success();
let saida = env
.cmd()
.args([
"unlink",
"--from",
&ent_a,
"--to",
&ent_b,
"--relation",
"uses",
"--namespace",
"global",
])
.output()
.expect("unlink failed");
assert!(
saida.status.success(),
"unlink: exit {:?}",
saida.status.code()
);
let instancia = Env::parse_stdout(&saida, "unlink");
validar_schema(
"unlink",
include_str!("../docs/schemas/unlink.schema.json"),
&instancia,
);
}
// ---------------------------------------------------------------------------
// 17 — graph
// ---------------------------------------------------------------------------
#[test]
#[serial]
fn schema_17_graph() {
let env = Env::new();
env.init();
env.remember_simples("mem-schema-graph");
let saida = env
.cmd()
.args(["graph", "--format", "json", "--namespace", "global"])
.output()
.expect("graph failed");
assert!(
saida.status.success(),
"graph: exit {:?}",
saida.status.code()
);
let instancia = Env::parse_stdout(&saida, "graph");
validar_schema(
"graph",
include_str!("../docs/schemas/graph.schema.json"),
&instancia,
);
}