-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdiffCommand.test.ts
More file actions
428 lines (388 loc) · 10.3 KB
/
diffCommand.test.ts
File metadata and controls
428 lines (388 loc) · 10.3 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
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
428
/*
* Copyright (c) 2020, salesforce.com, inc.
* All rights reserved.
* SPDX-License-Identifier: BSD-3-Clause
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/
"use strict";
import { expect, test } from "@oclif/test";
import * as fs from "fs-extra";
import { FileResult, fileSync, dirSync, DirResult } from "tmp";
import { Rule } from "json-rules-engine";
import chai from "chai";
import chaiFs from "chai-fs";
import { DiffCommand as cmd } from "./diffCommand";
import * as diffDirectories from "./diffDirectories";
import { NodeChanges } from "./changes/nodeChanges";
import { ApiChanges } from "./changes/apiChanges";
import { ApiCollectionChanges } from "./changes/apiCollectionChanges";
import { ApiDifferencer } from "./apiDifferencer";
import { CategorizedChange } from "./changes/categorizedChange";
import { RuleCategory } from "./ruleCategory";
import * as oasDiff from "./oasDiff";
chai.use(chaiFs);
const nodeChanges = new NodeChanges("test-id", ["test:type"]);
nodeChanges.added = { "core:name": "oldName" };
nodeChanges.removed = { "core:name": "newName" };
nodeChanges.categorizedChanges = [
new CategorizedChange("Test Rule", "Test Event", RuleCategory.BREAKING, [
"old",
"new",
]),
];
const apiChanges = new ApiChanges("base/file.raml", "new/file.raml");
apiChanges.nodeChanges = [nodeChanges];
const apiCollectionChanges = new ApiCollectionChanges("baseApis", "newApis");
apiCollectionChanges.changed["file.raml"] = apiChanges;
const createTempFile = (content: string): FileResult => {
const tempFile = fileSync();
fs.writeSync(tempFile.fd, content);
return tempFile;
};
const ramlOld = createTempFile(
`#%RAML 1.0
---
/resource:
get:
displayName: getResource
`
);
const ramlRemoved = createTempFile(
`#%RAML 1.0
---
/resource:
`
);
const ramlAdded = createTempFile(
`#%RAML 1.0
---
/resource:
get:
displayName: getResource
post:
displayName: createResource
`
);
const oasAdded = createTempFile(
`
"openapi": "3.0.0",
"info": {
"title": "Test API",
"version": "1.0.0"
},
"paths": {
"/resource": {
"get": {
"summary": "Get resource"
},
"post": {
"summary": "Create resource"
}
}
}
`
);
const oasOld = createTempFile(
`
"openapi": "3.0.0",
"info": {
"title": "Test API",
"version": "1.0.0"
},
"paths": {
"/resource": {
"get": {
"summary": "Get resource"
}
}
}
`
);
const operationRemovedRule = new Rule(
`{
"name": "Rule to detect operation removal",
"conditions": {
"all": [
{
"fact": "diff",
"path": "$.type",
"operator": "contains",
"value": "apiContract:Operation"
},
{
"fact": "diff",
"path": "$.added",
"operator": "hasNoProperty",
"value": "core:name"
},
{
"fact": "diff",
"path": "$.removed",
"operator": "hasProperty",
"value": "core:name"
}
]
},
"event": {
"type": "operation-removed",
"params": {
"category": "Breaking",
"changedProperty": "core:name"
}
}
}`
);
const operationRemovedRuleset = createTempFile(
`[${operationRemovedRule.toJSON()}]`
);
describe("raml-toolkit cli diff command", () => {
let baseDir: DirResult;
let newDir: DirResult;
before(() => {
baseDir = dirSync();
newDir = dirSync();
});
test
.stdout()
.do(() => cmd.run(["--version"]))
.exit(0)
.it("checks that the version string starts with the app name", (ctx) => {
expect(ctx.stdout).to.contain("@commerce-apps/raml-toolkit");
});
test
.stdout()
.stderr()
.do(() => cmd.run())
.exit(2)
.it("exits non-zero when no files are given");
test
.stdout()
.stderr()
.do(() => cmd.run([ramlOld.name]))
.exit(2)
.it("exits non-zero when only one file is given");
test
.stdout()
.stderr()
.do(() => cmd.run([ramlOld.name, "this is a bad file path"]))
.exit(2)
.it("exits non-zero when second file path is bad");
test
.stdout()
.stderr()
.stub(ApiDifferencer.prototype, "findChanges", async () => {
throw new Error("test");
})
.do(() => cmd.run(["baseSpec", "newSpec", "--diff-only"]))
.exit(2)
.it("exits non-zero when there is error while finding file changes");
test
.stdout()
.stderr()
.do(() => cmd.run(["this is a bad file path", ramlRemoved.name]))
.exit(2)
.it("exits non-zero when first file path is bad");
test
.stdout()
.do(() => cmd.run([ramlOld.name, ramlOld.name]))
.exit(0)
.it("finds no changes with the default ruleset and exits zero");
test
.stdout()
.do(() => cmd.run([ramlOld.name, ramlAdded.name]))
.exit(0)
.it("finds no breaking changes with the default ruleset and exits zero");
test
.stdout()
.do(() => cmd.run([ramlOld.name, ramlRemoved.name]))
.exit(1)
.it("finds breaking changes with the default ruleset and exits non-zero");
test
.stdout()
.do(() => cmd.run([ramlOld.name, ramlOld.name, "--diff-only"]))
.exit(0)
.it("finds no changes with diff only and exits zero");
test
.stdout()
.do(() => cmd.run([ramlOld.name, ramlAdded.name, "--diff-only"]))
.exit(1)
.it("finds added endpoint with diff only and exits non-zero");
test
.stdout()
.do(() => cmd.run([ramlOld.name, ramlRemoved.name, "--diff-only"]))
.exit(1)
.it("finds removed endpoint with diff only and exits non-zero");
test
.stdout()
.do(() =>
cmd.run([
ramlOld.name,
ramlOld.name,
"--ruleset",
operationRemovedRuleset.name,
])
)
.exit(0)
.it("finds no changes with custom ruleset and exits zero");
test
.stdout()
.stderr()
.do(() =>
cmd.run([
ramlOld.name,
ramlAdded.name,
"--ruleset",
operationRemovedRuleset.name,
])
)
.exit(0)
.it("finds no breaking changes with custom ruleset and exits zero");
test
.stdout()
.do(() =>
cmd.run([
ramlOld.name,
ramlRemoved.name,
"--ruleset",
operationRemovedRuleset.name,
])
)
.exit(1)
.it("finds breaking changes with custom ruleset and exits non-zero");
test
.stdout()
.do(() =>
cmd.run([
ramlOld.name,
ramlOld.name,
"--diff-only",
"--ruleset",
operationRemovedRuleset.name,
])
)
.exit(2)
.it("does not allow ruleset and diff only together, exits non-zero");
test
.stdout()
.do(() => cmd.run([ramlOld.name, ramlOld.name, "--diff-only", "--dir"]))
.exit(2)
.it("does not allow diff only and dir together, exits non-zero");
test
.stdout()
.do(() =>
cmd.run([
ramlOld.name,
ramlOld.name,
"--dir",
"--ruleset",
operationRemovedRuleset.name,
])
)
.exit(2)
.it("does not allow diff only and dir together, exits non-zero");
test
.stdout()
.stderr()
.stub(diffDirectories, "diffRamlDirectories", async () => {
throw new Error("test");
})
.do(() => cmd.run([baseDir.name, newDir.name, "--dir"]))
.exit(2)
.it("exits non-zero when there is error while finding directory changes");
test
.stub(
diffDirectories,
"diffRamlDirectories",
async () => new ApiCollectionChanges("baseApis", "newApis")
)
.stdout()
.do(() => cmd.run([baseDir.name, newDir.name, "--dir"]))
.exit(0)
.it("finds no changes between directories and exits zero");
test
.stub(
diffDirectories,
"diffRamlDirectories",
async () => apiCollectionChanges
)
.stdout()
.do(() => cmd.run([baseDir.name, newDir.name, "--dir"]))
.exit(1)
.it("finds changes between directories and exits non-zero");
test
.stub(
diffDirectories,
"diffRamlDirectories",
async () => apiCollectionChanges
)
.stdout()
.add("file", () => fileSync({ postfix: ".json" }))
.do((ctx) =>
cmd.run([baseDir.name, newDir.name, "--dir", "-o", ctx.file.name])
)
.exit(1)
.it("stores changes as JSON when file flag is set", (ctx) => {
expect(ctx.file.name)
.to.be.a.file()
.with.content(`${JSON.stringify(apiCollectionChanges)}\n`);
});
test
.stub(ApiDifferencer.prototype, "findChanges", async () => apiChanges)
.stdout()
.do(() => cmd.run([ramlOld.name, ramlOld.name, "--log-level=silent"]))
.exit(1)
.it("logs changes to console as text when file flag is unset", (ctx) => {
expect(ctx.stdout).to.equal(
`${apiChanges.toFormattedString("console")}\n`
);
});
test
.stub(ApiDifferencer.prototype, "findChanges", async () => apiChanges)
.stdout()
.do(() =>
cmd.run([ramlOld.name, ramlOld.name, "-f", "json", "--log-level=silent"])
)
.exit(1)
.it("logs changes to console as JSON when format flag is set", (ctx) => {
expect(JSON.parse(ctx.stdout)).to.deep.equal(apiChanges);
});
test
.stub(ApiDifferencer.prototype, "findChanges", async () => apiChanges)
.stdout()
.add("file", () => fileSync({ postfix: ".json" }))
.do((ctx) =>
cmd.run([
ramlOld.name,
ramlOld.name,
"-f",
"console",
"-o",
ctx.file.name,
])
)
.exit(1)
.it("stores changes as text when file and format flags are set", (ctx) => {
expect(ctx.file.name)
.to.be.a.file()
.with.content(apiChanges.toFormattedString("console"));
});
test
.stderr({ print: true })
.stdout({ print: true })
.add("file", () => fileSync({ postfix: ".json" }))
.do((ctx) =>
cmd.run(["base", "new", "--diff-only", "-f", "json", "-o", ctx.file.name])
)
.exit(2)
.it("does not allow format to be specified for diff only");
// TODO: The stub does not apply. The actual oasDiffChangelog is called and it will throw
// an error because we are using test data and not actual oas files
test
.stderr({ print: true })
.stdout({ print: true })
.stub(oasDiff, "oasDiffChangelog", async () => 0)
.do(() => {
cmd.run([oasOld.name, oasAdded.name, "-s", "oas"]);
})
.it("invokes oasdiff when spec flag is set to oas");
});