forked from Azure/azure-sdk-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommands.spec.ts
More file actions
304 lines (283 loc) · 10.6 KB
/
commands.spec.ts
File metadata and controls
304 lines (283 loc) · 10.6 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
import { cp, stat, rm, readFile } from "node:fs/promises";
import {
initCommand,
generateCommand,
syncCommand,
updateCommand,
generateLockFileCommand,
generateConfigFilesCommand,
} from "../src/commands.js";
import { afterAll, beforeAll, describe, it } from "vitest";
import { assert } from "chai";
import { getRepoRoot } from "../src/git.js";
import { cwd } from "node:process";
import { joinPaths } from "@typespec/compiler";
import { readTspLocation, removeDirectory } from "../src/fs.js";
import { doesFileExist } from "../src/network.js";
describe.sequential("Verify commands", () => {
let repoRoot;
beforeAll(async () => {
repoRoot = await getRepoRoot(cwd());
await cp(
"./test/utils/emitter-package.json",
joinPaths(repoRoot, "eng", "emitter-package.json"),
);
});
afterAll(async () => {
await rm(joinPaths(repoRoot, "eng", "emitter-package.json"));
// This is generated in the first test using the command
await rm(joinPaths(repoRoot, "eng", "emitter-package-lock.json"));
await rm(
"./test/examples/sdk/contosowidgetmanager/contosowidgetmanager-rest/TempTypeSpecFiles/",
{ recursive: true },
);
await rm("./test/examples/sdk/local-spec-sdk/TempTypeSpecFiles/", { recursive: true });
});
it("Generate lock file", async () => {
try {
await generateLockFileCommand({});
assert.isTrue((await stat(joinPaths(repoRoot, "eng", "emitter-package-lock.json"))).isFile());
} catch (error) {
assert.fail(`Failed to generate lock file. Error: ${error}`);
}
});
it("Sync example sdk", async () => {
try {
const args = {
"output-dir": joinPaths(
cwd(),
"./test/examples/sdk/contosowidgetmanager/contosowidgetmanager-rest",
),
};
await syncCommand(args);
} catch (error) {
assert.fail(`Failed to sync files. Error: ${error}`);
}
const dir = await stat(
"./test/examples/sdk/contosowidgetmanager/contosowidgetmanager-rest/TempTypeSpecFiles/",
);
assert.isTrue(dir.isDirectory());
});
it("Sync example sdk with local spec", async () => {
try {
const args = {
"output-dir": joinPaths(cwd(), "./test/examples/sdk/local-spec-sdk"),
"local-spec-repo":
"./test/examples/specification/contosowidgetmanager/Contoso.WidgetManager",
};
await syncCommand(args);
} catch (error) {
assert.fail(`Failed to sync files. Error: ${error}`);
}
const dir = await stat("./test/examples/sdk/local-spec-sdk/TempTypeSpecFiles/");
assert.isTrue(dir.isDirectory());
});
it("Generate example sdk", async () => {
try {
const args = {
"output-dir": joinPaths(
cwd(),
"./test/examples/sdk/contosowidgetmanager/contosowidgetmanager-rest",
),
"save-inputs": true,
};
await generateCommand(args);
} catch (error) {
assert.fail(`Failed to generate. Error: ${error}`);
}
const dir = await stat(
"./test/examples/sdk/contosowidgetmanager/contosowidgetmanager-rest/tsp-location.yaml",
);
assert.isTrue(dir.isFile());
});
it("Generate with alternate entrypoint", async () => {
try {
const args = {
"output-dir": joinPaths(cwd(), "./test/examples/sdk/alternate-entrypoint"),
"local-spec-repo":
"./test/examples/specification/contosowidgetmanager/Contoso.WidgetManager",
};
await updateCommand(args);
} catch (error) {
assert.fail(`Failed to generate. Error: ${error}`);
}
const tspLocation = await readTspLocation("./test/examples/sdk/alternate-entrypoint");
assert.equal(tspLocation.entrypointFile, "foo.tsp");
});
it("Update example sdk", async () => {
try {
const args = {
"output-dir": joinPaths(
cwd(),
"./test/examples/sdk/contosowidgetmanager/contosowidgetmanager-rest",
),
"save-inputs": true,
};
await updateCommand(args);
} catch (error) {
assert.fail(`Failed to generate. Error: ${error}`);
}
});
it("Update example sdk & pass tspconfig.yaml", async () => {
try {
const args = {
"output-dir": joinPaths(
cwd(),
"./test/examples/sdk/contosowidgetmanager/contosowidgetmanager-rest",
),
"tsp-config":
"https://github.com/Azure/azure-rest-api-specs/blob/db63bea839f5648462c94e685d5cc96f8e8b38ba/specification/contosowidgetmanager/Contoso.WidgetManager/tspconfig.yaml",
"save-inputs": true,
};
await updateCommand(args);
} catch (error) {
assert.fail(`Failed to generate. Error: ${error}`);
}
});
it("Update example sdk & pass commit", async () => {
try {
const args = {
"output-dir": joinPaths(
cwd(),
"./test/examples/sdk/contosowidgetmanager/contosowidgetmanager-rest",
),
commit: "db63bea839f5648462c94e685d5cc96f8e8b38ba",
"save-inputs": true,
};
await updateCommand(args);
} catch (error) {
assert.fail(`Failed to update. Error: ${error}`);
}
});
it("Update example sdk & pass only --repo", async () => {
try {
const args = {
"output-dir": joinPaths(
cwd(),
"./test/examples/sdk/contosowidgetmanager/contosowidgetmanager-rest",
),
repo: "foo",
"save-inputs": true,
};
await updateCommand(args);
assert.fail("Should have failed");
} catch (error: any) {
assert.equal(
error.message,
"Commit SHA is required when specifying `--repo`; please specify a commit using `--commit`",
);
}
});
it.skip("Init example sdk", async () => {
try {
const args = {
"output-dir": joinPaths(cwd(), "./test/examples/"),
"tsp-config":
"https://github.com/Azure/azure-rest-api-specs/blob/7ed015e3dd1b8b1b0e71c9b5e6b6c5ccb8968b3a/specification/cognitiveservices/ContentSafety/tspconfig.yaml",
};
await initCommand(args);
assert.isTrue(
(
await stat("./test/examples/sdk/contentsafety/ai-content-safety-rest/package.json")
).isFile(),
);
// Clean up directory for other init tests
// await removeDirectory("./test/examples/sdk/contentsafety/ai-content-safety-rest");
} catch (error: any) {
assert.fail("Failed to init. Error: " + error);
}
});
it.skip("Init with --skip-sync-and-generate", async () => {
try {
const args = {
"output-dir": joinPaths(cwd(), "./test/examples/"),
"tsp-config":
"https://github.com/Azure/azure-rest-api-specs/blob/7ed015e3dd1b8b1b0e71c9b5e6b6c5ccb8968b3a/specification/cognitiveservices/ContentSafety/tspconfig.yaml",
"skip-sync-and-generate": true,
};
await initCommand(args);
const tspLocation = await stat(
"./test/examples/sdk/contentsafety/ai-content-safety-rest/tsp-location.yaml",
);
assert.isTrue(tspLocation.isFile());
} catch (error: any) {
assert.fail("Failed to init. Error: " + error);
}
});
it("Init with local spec", async () => {
try {
const args = {
"output-dir": joinPaths(cwd(), "./test/examples/init/"),
"tsp-config": joinPaths(
cwd(),
"./test/examples/specification/contosowidgetmanager/Contoso.WidgetManager/",
),
};
const outputDir = await initCommand(args);
const tspLocation = await readTspLocation(outputDir);
assert.equal(tspLocation.commit, "<replace with your value>");
assert.equal(tspLocation.repo, "<replace with your value>");
await removeDirectory(joinPaths(cwd(), "./test/examples/init/sdk"));
} catch (error: any) {
assert.fail("Failed to init. Error: " + error);
}
});
it("Generate config files", async () => {
try {
const args = {
"package-json": joinPaths(cwd(), "test", "examples", "package.json"),
};
repoRoot = await getRepoRoot(cwd());
await generateConfigFilesCommand(args);
assert.isTrue(await doesFileExist(joinPaths(repoRoot, "eng", "emitter-package.json")));
const emitterJson = JSON.parse(
await readFile(joinPaths(repoRoot, "eng", "emitter-package.json"), "utf8"),
);
assert.equal(emitterJson["dependencies"]["@azure-tools/typespec-python"], "0.37.3");
assert.equal(emitterJson["devDependencies"]["@typespec/compiler"], "~0.63.0");
assert.isUndefined(emitterJson["overrides"]);
assert.isTrue(await doesFileExist(joinPaths(repoRoot, "eng", "emitter-package-lock.json")));
} catch (error: any) {
assert.fail("Failed to generate tsp-client config files. Error: " + error);
}
}, 120000);
it("Generate config files with overrides", async () => {
try {
const args = {
"package-json": joinPaths(cwd(), "test", "examples", "package.json"),
overrides: joinPaths(cwd(), "test", "examples", "overrides.json"),
};
repoRoot = await getRepoRoot(cwd());
await generateConfigFilesCommand(args);
assert.isTrue(await doesFileExist(joinPaths(repoRoot, "eng", "emitter-package.json")));
const emitterJson = JSON.parse(
await readFile(joinPaths(repoRoot, "eng", "emitter-package.json"), "utf8"),
);
assert.equal(emitterJson["dependencies"]["@azure-tools/typespec-python"], "0.36.0");
assert.exists(emitterJson["overrides"]);
assert.equal(emitterJson["overrides"]["@typespec/compiler"], "0.61.0");
assert.isTrue(await doesFileExist(joinPaths(repoRoot, "eng", "emitter-package-lock.json")));
} catch (error: any) {
assert.fail("Failed to generate tsp-client config files. Error: " + error);
}
}, 120000);
it("Generate config files using azure-sdk/emitter-package-json-pinning", async () => {
try {
const args = {
"package-json": joinPaths(cwd(), "test", "examples", "package-sdk-pinning.json"),
};
repoRoot = await getRepoRoot(cwd());
await generateConfigFilesCommand(args);
assert.isTrue(await doesFileExist(joinPaths(repoRoot, "eng", "emitter-package.json")));
const emitterJson = JSON.parse(
await readFile(joinPaths(repoRoot, "eng", "emitter-package.json"), "utf8"),
);
assert.equal(emitterJson["dependencies"]["@azure-tools/typespec-python"], "0.37.3");
assert.equal(Object.keys(emitterJson["devDependencies"]).length, 1);
assert.equal(emitterJson["devDependencies"]["@typespec/compiler"], "~0.64.0");
assert.isTrue(await doesFileExist(joinPaths(repoRoot, "eng", "emitter-package-lock.json")));
} catch (error: any) {
assert.fail("Failed to generate tsp-client config files. Error: " + error);
}
}, 120000);
});