-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcli.tests.ts
More file actions
236 lines (204 loc) · 6.26 KB
/
cli.tests.ts
File metadata and controls
236 lines (204 loc) · 6.26 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
import { mkdirSync, rmSync, writeFileSync } from "node:fs";
import { tmpdir } from "node:os";
import { join } from "node:path";
import { parseCli } from "./cli";
describe("CLI parsing with parseCli", () => {
it("returns undefined when --help is passed", () => {
expect(parseCli(["--help"])).toBeUndefined();
});
it("throws when no arguments are provided", () => {
expect(() => parseCli([])).toThrow("No path to Clarinet project provided.");
});
it("throws when only manifest path is provided", () => {
expect(() => parseCli(["./example"])).toThrow(
"No target contract name provided.",
);
});
it("throws when type is invalid", () => {
expect(() => parseCli(["./example", "counter", "invalid"])).toThrow(
"Invalid type provided.",
);
});
it("returns a valid RunConfig with all CLI options", () => {
const config = parseCli([
"./example",
"counter",
"invariant",
"--seed=42",
"--runs=200",
"--bail",
"--regr",
"--dial=./dialers.cjs",
])!;
expect(config.manifestDir).toBe("./example");
expect(config.sutContractName).toBe("counter");
expect(config.type).toBe("invariant");
expect(config.seed).toBe(42);
expect(config.runs).toBe(200);
expect(config.bail).toBe(true);
expect(config.regr).toBe(true);
expect(config.dial).toBe("./dialers.cjs");
});
it("normalizes type to lowercase", () => {
const config = parseCli(["./example", "counter", "InVaRiAnT"])!;
expect(config.type).toBe("invariant");
});
it("uses config file values exclusively when --config is provided, ignoring CLI flags", () => {
// Arrange
const tempDir = join(tmpdir(), "rendezvous-test-parsecli");
mkdirSync(tempDir, { recursive: true });
const configPath = join(tempDir, "rv.config.json");
writeFileSync(
configPath,
JSON.stringify({ seed: 100, runs: 500, bail: true }),
"utf-8",
);
// Act — CLI also passes --seed=999 and --runs=10, but config wins.
const config = parseCli([
"./example",
"counter",
"test",
`--config=${configPath}`,
"--seed=999",
"--runs=10",
])!;
// Assert — only config values are used.
expect(config.seed).toBe(100);
expect(config.runs).toBe(500);
expect(config.bail).toBe(true);
// Teardown
rmSync(tempDir, { recursive: true, force: true });
});
it("uses CLI flags exclusively when --config is not provided", () => {
const config = parseCli([
"./example",
"counter",
"test",
"--seed=42",
"--runs=200",
"--bail",
])!;
expect(config.seed).toBe(42);
expect(config.runs).toBe(200);
expect(config.bail).toBe(true);
expect(config.accounts).toBeUndefined();
});
it("loads accounts from config file", () => {
// Arrange
const tempDir = join(tmpdir(), "rendezvous-test-parsecli-accounts");
mkdirSync(tempDir, { recursive: true });
const configPath = join(tempDir, "rv.config.json");
writeFileSync(
configPath,
JSON.stringify({
accounts: [
{
name: "whale_1",
address: "SP3FBR2AGK5H9QBDH3EEN6DF8EK8JY7RX8QJ5SVTE",
},
],
accounts_mode: "overwrite",
}),
"utf-8",
);
// Act
const config = parseCli([
"./example",
"counter",
"test",
`--config=${configPath}`,
])!;
// Assert
expect(config.accounts).toEqual([
{
name: "whale_1",
address: "SP3FBR2AGK5H9QBDH3EEN6DF8EK8JY7RX8QJ5SVTE",
},
]);
expect(config.accountsMode).toBe("overwrite");
// Teardown
rmSync(tempDir, { recursive: true, force: true });
});
it("throws when config file does not exist", () => {
expect(() =>
parseCli([
"./example",
"counter",
"test",
"--config=/tmp/nonexistent-rv-test.json",
]),
).toThrow("Config file not found:");
});
it("throws when --seed is not an integer", () => {
expect(() =>
parseCli(["./example", "counter", "test", "--seed=abc"]),
).toThrow(`"seed" must be an integer.`);
});
it("throws when --runs is not a positive integer", () => {
expect(() =>
parseCli(["./example", "counter", "test", "--runs=0"]),
).toThrow(`"runs" must be a positive integer.`);
});
it("throws when --runs is not a number", () => {
expect(() =>
parseCli(["./example", "counter", "test", "--runs=abc"]),
).toThrow(`"runs" must be a positive integer.`);
});
it("defaults accountsMode to overwrite when not specified", () => {
const config = parseCli(["./example", "counter", "test"])!;
expect(config.accountsMode).toBe("overwrite");
});
it("warns when CLI flags are used alongside --config", () => {
// Arrange
const tempDir = join(tmpdir(), "rendezvous-test-parsecli-warn-flags");
mkdirSync(tempDir, { recursive: true });
const configPath = join(tempDir, "rv.config.json");
writeFileSync(configPath, JSON.stringify({ seed: 1 }), "utf-8");
// Act
const config = parseCli([
"./example",
"counter",
"test",
`--config=${configPath}`,
"--seed=999",
"--bail",
])!;
// Assert
expect(config.warnings).toEqual(
expect.arrayContaining([
expect.stringContaining("--seed"),
expect.stringContaining("--bail"),
]),
);
// Teardown
rmSync(tempDir, { recursive: true, force: true });
});
it("warns when config file contains unrecognized keys", () => {
// Arrange
const tempDir = join(tmpdir(), "rendezvous-test-parsecli-warn-keys");
mkdirSync(tempDir, { recursive: true });
const configPath = join(tempDir, "rv.config.json");
writeFileSync(
configPath,
JSON.stringify({ sedd: 42, bail: true }),
"utf-8",
);
// Act
const config = parseCli([
"./example",
"counter",
"test",
`--config=${configPath}`,
])!;
// Assert
expect(config.warnings).toEqual(
expect.arrayContaining([expect.stringContaining("sedd")]),
);
// Teardown
rmSync(tempDir, { recursive: true, force: true });
});
it("returns no warnings for valid CLI-only usage", () => {
const config = parseCli(["./example", "counter", "test", "--seed=42"])!;
expect(config.warnings).toEqual([]);
});
});