-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdiff-client.ts
808 lines (761 loc) · 26.4 KB
/
diff-client.ts
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
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
import pkg, { Diff } from "deep-diff";
const { diff } = pkg;
import { SwaggerParser } from "./parser.js";
import {
getApplicableRules,
RuleResult,
RuleSignature,
} from "./rules/rules.js";
import { forceArray, getUrlEncodedPath } from "./util.js";
import { OpenAPIV2 } from "openapi-types";
import assert from "assert";
import { RegistryKind } from "./definitions.js";
import * as fs from "fs";
import path from "path";
import { SuppressionRegistry } from "./suppression.js";
export interface DiffClientConfig {
lhs: string | string[];
rhs: string | string[];
args: any;
rules?: RuleSignature[];
}
export class DiffClient {
public args: any;
public suppressions?: SuppressionRegistry;
private rules: RuleSignature[];
private lhsParser?: SwaggerParser;
private rhsParser?: SwaggerParser;
/** Tracks if shortenKeys has been called to avoid re-running the algorithm needlessly. */
private keysShortened: boolean = false;
// Public properties
/** The parsed lhs document. */
public lhs?: OpenAPIV2.Document;
/** The parsed rhs document. */
public rhs?: OpenAPIV2.Document;
/** The results of the diff operation. Available once processDiff() called. */
public diffResults?: DiffResult;
/** The output files generated by the diff operation. Available once buildOutput() called. */
public resultFiles?: ResultFiles;
/** The temporary root folder for TypeSpec-generated Swagger. */
private tempRhsRoot?: string;
/** Creates an instance of the DiffClient class asynchronously. */
static async create(config: DiffClientConfig): Promise<DiffClient> {
const client = new DiffClient(config);
const lhs = client.args["lhs"].map((x: string) => path.resolve(x));
const rhs = client.args["rhs"].map((x: string) => path.resolve(x));
const lhsRoot = client.args["lhs-root"]
? path.resolve(client.args["lhs-root"])
: undefined;
let rhsRoot = client.args["rhs-root"]
? path.resolve(client.args["rhs-root"])
: undefined;
if (!rhsRoot) {
const tempRhsRoot = client.checkDefaultRhsRoot(lhs, rhs);
if (tempRhsRoot) {
// since we are using the default rhsRoot, we should delete it when we are done.
client.tempRhsRoot = tempRhsRoot;
rhsRoot = tempRhsRoot;
}
}
// suppression registry must be created before creating parsers
if (client.args["suppressions"]) {
client.suppressions = new SuppressionRegistry(
client.args["suppressions"]
);
}
const lhsParser = await SwaggerParser.create(lhs, lhsRoot, client);
const rhsParser = await SwaggerParser.create(rhs, rhsRoot, client);
client.lhsParser = lhsParser;
client.rhsParser = rhsParser;
return client;
}
protected constructor(config: DiffClientConfig) {
this.args = config.args;
this.rules = config.rules ?? getApplicableRules(config.args);
const lhs = forceArray(config.lhs);
const rhs = forceArray(config.rhs);
this.args["lhs"] = lhs;
this.args["rhs"] = rhs;
}
/**
* If the rhsRoot is not provided, rhs points to TypeSpec and the lhs is a folder, use the lhs as the basis
* for the rhsRoot.
* @param lhs lhs paths
* @param rhs rhs paths
* @returns the inferred rhsRoot or undefined if it cannot be inferred
*/
private checkDefaultRhsRoot(
lhs: string[],
rhs: string[]
): string | undefined {
if (lhs.length === 1 && rhs.length === 1) {
const lhsStat = fs.statSync(lhs[0]);
const rhsStat = fs.statSync(rhs[0]);
if (lhsStat.isDirectory() && rhsStat.isDirectory()) {
// check if the lhs folder is swagger and rhs folder is typespec
const lhsFiles = fs.readdirSync(lhs[0]);
const lhsSwagger = !lhsFiles.some((x) => x.endsWith(".tsp"));
const rhsFiles = fs.readdirSync(rhs[0]);
const rhsTypespec = rhsFiles.some((x) => x.endsWith(".tsp"));
if (lhsSwagger && rhsTypespec) {
const lhsSegments = lhs[0].split(path.sep);
const rhsSegments = [];
for (const segment of lhsSegments) {
if (segment === "preview" || segment === "stable") {
rhsSegments.push("temp");
} else {
rhsSegments.push(segment);
}
}
const rhsRoot = rhsSegments.join(path.sep);
console.warn(
`WARN: No rhs-root provided. Using '${rhsRoot}' as the rhs-root.`
);
return rhsRoot;
}
}
}
return undefined;
}
/**
* Parses the documents, expanding them into canonical transformations.
* Upon completion, the lhs and rhs documents will be available for diffing.
*/
parse() {
if (!this.lhsParser || !this.rhsParser) {
throw new Error(
"Parsers have not been initialized. Call buildParsers() first."
);
}
this.lhs = this.lhsParser.parse().asJSON();
this.rhs = this.rhsParser.parse().asJSON();
}
/**
* Updates the parsed documents to shorten their keys.
* Upon completion, the lhs and rhs should have shortened keys
* and be ready for diffing.
*/
shortenKeys() {
if (this.keysShortened) return;
const lhs = this.lhs;
const rhs = this.rhs;
if (!lhs || !rhs) {
throw new Error("Documents have not been parsed. Call parse() first.");
}
// now that the document is parsed, shorten the keys so they are
// more likely to match in the diff.
this.lhs = this.#shortenKeysForDocument(lhs);
this.rhs = this.#shortenKeysForDocument(rhs);
this.keysShortened = true;
}
/**
* Runs the deep-diff algorithm on the documents and sorts the results into
* three categories: flaggedViolations, assumedViolations, and noViolations.
*/
processDiff() {
if (!this.lhs || !this.rhs) {
throw new Error("Documents have not been parsed. Call parse() first.");
}
// shorten keys if not already done
this.shortenKeys();
const lhs = this.lhs;
const rhs = this.rhs;
const diffs = diff(lhs, rhs) ?? [];
const results: DiffResult = {
flaggedViolations: [],
assumedViolations: [],
noViolations: [],
suppressedViolations: [],
};
for (const diffItem of diffs ?? []) {
const result = this.processRules(diffItem, lhs, rhs);
switch (result.ruleResult) {
case RuleResult.AssumedViolation:
results.assumedViolations.push(result);
break;
case RuleResult.FlaggedViolation:
results.flaggedViolations.push(result);
break;
case RuleResult.NoViolation:
results.noViolations.push(result);
break;
case RuleResult.Suppressed:
results.suppressedViolations.push(result);
break;
default:
throw new Error(`Unexpected result ${result}`);
}
}
const resultTotal =
results.flaggedViolations.length +
results.assumedViolations.length +
results.noViolations.length +
results.suppressedViolations.length;
assert(
resultTotal === diffs.length,
`Expected ${diffs.length} results, but got ${resultTotal}`
);
this.diffResults = results;
}
/**
* Processes all rules against the given diff. If no rule confirms or denies
* an issue, the diff is treated as a failure. If a rule is flagged as a violation,
* it can be overridden by a later rule, but as soon as a rule confirms something
* is not a violation, processing stops.
* @param data the diff data to evaluate.
* @returns an allowed DiffRuleResult. Only "ContinueProcessing" is not allowed.
*/
private processRules(
data: Diff<any, any>,
lhs: OpenAPIV2.Document,
rhs: OpenAPIV2.Document
): DiffItem {
let retVal: DiffItem = {
ruleResult: RuleResult.AssumedViolation,
ruleName: undefined,
diff: data,
};
let finalResult: RuleResult | [RuleResult, string] | undefined = undefined;
let finalResultRuleName: string | undefined = undefined;
for (const rule of this.rules) {
const result = rule(data, lhs, rhs);
if (result === undefined) {
continue;
}
const ruleResult = Array.isArray(result) ? result[0] : result;
// continue processing rules even if a violation is found in case a later rule exempts a pattern.
if (ruleResult === RuleResult.FlaggedViolation) {
finalResult = result;
finalResultRuleName = rule.name;
continue;
} else if (ruleResult === RuleResult.NoViolation) {
finalResult = result;
finalResultRuleName = rule.name;
break;
}
}
// if a violation is suppressed, keep metadata the same but change it from a
// flagged or assumed violation to `RuleResult.Suppressed`.
const urlEncodedPath = getUrlEncodedPath(data.path);
const isSuppressed = this.suppressions
? this.suppressions.has(urlEncodedPath)
: false;
const finalRuleResult =
(Array.isArray(finalResult) ? finalResult[0] : finalResult) ??
RuleResult.AssumedViolation;
if (
[RuleResult.FlaggedViolation, RuleResult.AssumedViolation].includes(
finalRuleResult
) &&
isSuppressed
) {
if (Array.isArray(finalResult)) {
finalResult[0] = RuleResult.Suppressed;
} else {
finalResult = RuleResult.Suppressed;
}
}
// now apply the final rule result
if (finalResult && Array.isArray(finalResult)) {
retVal.ruleResult = finalResult[0];
retVal.ruleName = finalResultRuleName;
retVal.message = finalResult[1];
} else if (finalResult) {
retVal.ruleResult = finalResult;
retVal.ruleName = finalResultRuleName;
}
return retVal as DiffItem;
}
/**
* Constructs the output files based on the diff results.
*/
buildOutput() {
if (!this.lhs || !this.rhs || !this.diffResults) {
throw new Error(
"Documents have not been parsed. Call processDiff() first."
);
}
const flaggedViolations = this.diffResults.flaggedViolations ?? [];
const assumedViolations = this.diffResults.assumedViolations ?? [];
const allViolations = [...flaggedViolations, ...assumedViolations];
const ignoredViolations = [
...this.diffResults.noViolations,
...this.diffResults.suppressedViolations,
];
const diffResult = this.#buildDiffFile(allViolations);
const invDiffResult = this.#buildDiffFile(ignoredViolations);
this.resultFiles = {
raw: [this.lhs, this.rhs],
normal: this.#pruneDocuments(this.lhs, this.rhs, ignoredViolations),
inverse: this.#pruneDocuments(this.lhs, this.rhs, allViolations),
diff: diffResult,
diffInverse: invDiffResult,
};
}
/** Returns true if the summary indicates that there are violations. */
hasViolations(summary: ResultSummary, preserveDefinitions: boolean): boolean {
if (preserveDefinitions) {
return (
summary.flaggedViolations > 0 ||
summary.assumedViolations > 0 ||
summary.unresolvedReferences > 0
);
} else {
return (
summary.flaggedViolations > 0 ||
summary.assumedViolations > 0 ||
summary.unresolvedReferences > 0 ||
summary.unreferencedObjects > 0
);
}
}
/** Write results to output files and print summary to console. */
writeOutput() {
if (!this.resultFiles) {
throw new Error(
"Output files have not been built. Call buildOutput() first."
);
}
if (!this.diffResults) {
throw new Error(
"Diff results have not been processed. Call processDiff() first."
);
}
if (!this.lhsParser || !this.rhsParser) {
throw new Error(
"Parsers have not been initialized. Call buildParsers() first."
);
}
const results = this.resultFiles;
// ensure the output folder exists and is empty
const outputFolder = this.args["output-folder"];
if (!fs.existsSync(outputFolder)) {
fs.mkdirSync(outputFolder);
} else {
const files = fs.readdirSync(outputFolder);
for (const file of files) {
fs.unlinkSync(`${outputFolder}/${file}`);
}
}
// delete the tempRhsRoot if used
if (this.tempRhsRoot) {
console.warn(`WARN: Cleaning up temporary folder '${this.tempRhsRoot}'`);
fs.rmSync(this.tempRhsRoot, { recursive: true });
}
// create inverse files that show only the stuff that has been pruned
// for diagnostic purposes.
fs.writeFileSync(
path.join(outputFolder, "lhs-inv.json"),
JSON.stringify(results.inverse[0], null, 2)
);
fs.writeFileSync(
path.join(outputFolder, "rhs-inv.json"),
JSON.stringify(results.inverse[1], null, 2)
);
// TODO: Restore this later.
// const html = new HtmlDiffClient(
// path.join(outputFolder, "lhs-inv.json"),
// path.join(outputFolder, "rhs-inv.json")
// );
// html.writeOutput(path.join(outputFolder, "diff-inv.html"));
// write the raw files to output for debugging purposes
fs.writeFileSync(
path.join(outputFolder, "lhs-raw.json"),
JSON.stringify(results.raw[0], null, 2)
);
fs.writeFileSync(
path.join(outputFolder, "rhs-raw.json"),
JSON.stringify(results.raw[1], null, 2)
);
// prune the documents of any paths that are not relevant and
// output them for visual diffing.
fs.writeFileSync(
path.join(outputFolder, "lhs.json"),
JSON.stringify(results.normal[0], null, 2)
);
fs.writeFileSync(
path.join(outputFolder, "rhs.json"),
JSON.stringify(results.normal[1], null, 2)
);
const preserveDefinitions = this.args["preserve-definitions"];
// Report unresolved and unreferenced objects
if (this.args["verbose"]) {
const lhsUnreferenced = preserveDefinitions
? 0
: this.lhsParser.getUnreferencedTotal();
const lhsUnresolved = this.lhsParser.getUnresolvedReferences().length;
if (lhsUnresolved > 0 || lhsUnreferenced > 0) {
console.warn("=== LEFT-HAND SIDE ===");
if (lhsUnresolved > 0) {
this.#reportUnresolvedReferences(this.lhsParser);
}
if (lhsUnreferenced > 0) {
this.#reportUnreferencedObjects(this.lhsParser);
}
}
const rhsUnreferenced = preserveDefinitions
? 0
: this.rhsParser.getUnreferencedTotal();
const rhsUnresolved = this.rhsParser.getUnresolvedReferences().length;
if (rhsUnresolved > 0 || rhsUnreferenced > 0) {
console.warn("\n=== RIGHT-HAND SIDE ===");
if (rhsUnresolved > 0) {
this.#reportUnresolvedReferences(this.rhsParser);
}
if (rhsUnreferenced > 0) {
this.#reportUnreferencedObjects(this.rhsParser);
}
}
}
const groupViolations = this.args["group-violations"];
const allViolations = [
...(this.diffResults?.assumedViolations ?? []),
...(this.diffResults?.flaggedViolations ?? []),
];
// write the diff file to the file system
if (allViolations.length !== 0) {
const normalPath = path.join(outputFolder, "diff.json");
const data = groupViolations
? Object.fromEntries(results.diff)
: results.diff;
fs.writeFileSync(normalPath, JSON.stringify(data, null, 2));
}
// write the inverse diff file to the file system
if (
this.diffResults.noViolations.length !== 0 ||
this.diffResults.suppressedViolations.length !== 0
) {
const inversePath = path.join(outputFolder, "diff-inv.json");
const data = groupViolations
? Object.fromEntries(results.diffInverse)
: results.diffInverse;
fs.writeFileSync(inversePath, JSON.stringify(data, null, 2));
}
// add up the length of each array
const flaggedRulesViolated = new Set(
allViolations
.filter((x) => x.ruleName && !x.ruleName.endsWith("(AUTO)"))
.map((x) => x.ruleName)
);
const assumedRulesViolated = new Set(
allViolations
.filter((x) => x.ruleName && x.ruleName.endsWith("(AUTO)"))
.map((x) => x.ruleName)
);
const summary: ResultSummary = {
flaggedViolations: this.diffResults.flaggedViolations.length,
assumedViolations: this.diffResults.assumedViolations.length,
assumedRules: groupViolations ? assumedRulesViolated.size : undefined,
rulesViolated: groupViolations ? flaggedRulesViolated.size : undefined,
unresolvedReferences: this.rhsParser.getUnresolvedReferences().length,
unreferencedObjects: this.rhsParser.getUnreferencedTotal(),
suppressedViolations: this.diffResults.suppressedViolations.length,
};
if (this.hasViolations(summary, preserveDefinitions)) {
console.warn("\n== ISSUES FOUND! ==\n");
if (summary.flaggedViolations) {
if (summary.rulesViolated) {
console.warn(
`Flagged Violations: ${summary.flaggedViolations} across ${summary.rulesViolated} rules`
);
} else {
console.warn(`Flagged Violations: ${summary.flaggedViolations}`);
}
}
if (summary.assumedViolations) {
if (summary.assumedRules) {
console.warn(
`Assumed Violations: ${summary.assumedViolations} across ${summary.assumedRules} auto-generated groupings`
);
} else {
console.warn(`Assumed Violations: ${summary.assumedViolations}`);
}
}
if (summary.unresolvedReferences) {
console.warn(`Unresolved References: ${summary.unresolvedReferences}`);
}
if (!preserveDefinitions && summary.unreferencedObjects) {
console.warn(`Unreferenced Objects: ${summary.unreferencedObjects}`);
}
if (summary.suppressedViolations) {
console.warn(`Suppressed Violations: ${summary.suppressedViolations}`);
}
console.warn("\n");
console.warn(
`See '${outputFolder}' for details. See 'lhs.json', 'rhs.json' and 'diff.json'.`
);
if (!preserveDefinitions && summary.unreferencedObjects) {
console.warn(
"Running with `--preserve-defintions` will ensure those unreferenced objects are diffed and will not report the fact that they are unreferenced as a violation."
);
if (!this.args["verbose"]) {
console.warn(
"or run with `--verbose` to see more detailed information."
);
}
}
} else {
console.info(`\n== NO ISSUES FOUND! ==\n`);
if (summary.unreferencedObjects > 0 && preserveDefinitions) {
console.info(
`Note that there were ${summary.unreferencedObjects} unreferenced objects found, but the simple fact that are unreferenced is not considered a violation because you used '--preserve-definitions'.\n`
);
}
if (summary.suppressedViolations) {
const suppressionCount = this.suppressions?.originalSuppressionCount;
console.warn(
`Note that there were ${summary.suppressedViolations} violations suppressed. ${suppressionCount} suppressions need to be approved.`
);
}
console.info("\n");
console.info(
`See '${outputFolder}' for details. You may still want to compare 'lhs-inv.json' and 'rhs-inv.json' to check that the differences reflected are truly irrelevant.`
);
}
}
/**
* Shortens certain keys that need to be expanded for parsing but should be
* shorted for diffing purposes.
* @param source the source document to shorten keys for
* @returns a new document with shortened keys
*/
#shortenKeysForDocument(source: OpenAPIV2.Document): OpenAPIV2.Document {
// deep copy the documents
let doc = JSON.parse(JSON.stringify(source));
const keysToShorten = [
"definitions",
"parameters",
"responses",
"securityDefinitions",
];
for (const key of keysToShorten) {
const coll = doc[key];
// update each key to only take the name after the last forward slash
if (coll) {
const updatedColl: any = {};
for (const [key, val] of Object.entries(coll)) {
const shortenedKey = key.split("/").pop()!;
updatedColl[shortenedKey] = val;
}
doc[key] = updatedColl;
}
}
return doc;
}
/**
* Returns a copy of the provided document with the specified
* paths removed.
*/
#deletePaths(doc: OpenAPIV2.Document, paths: string[][]): OpenAPIV2.Document {
const copy = { ...doc };
for (const path of paths) {
// reset to document root
let current = copy;
const lastSegment = path.length - 1;
for (let i = 0; i < lastSegment; i++) {
const segment = path[i];
current = (current as any)[segment];
}
delete (current as any)[path[lastSegment]];
}
return copy;
}
/**
* Accepts two documents and prunes any paths that are outlined in the diff. Should be
* passed the collection of "noViolation" diffs.
* @param inputLhs the left-hand side document
* @param inputRhs the right-hand side document
* @param differences the differences you want to prune
* @returns a tuple of the pruned left-hand side and right-hand side documents
*/
#pruneDocuments(
inputLhs: OpenAPIV2.Document,
inputRhs: OpenAPIV2.Document,
differences: DiffItem[]
): [OpenAPIV2.Document, OpenAPIV2.Document] {
// deep copy the documents
let lhs = JSON.parse(JSON.stringify(inputLhs));
let rhs = JSON.parse(JSON.stringify(inputRhs));
const lhsDiffs = differences.filter(
(x) => (x.diff as any).lhs !== undefined
);
const rhsDiffs = differences.filter(
(x) => (x.diff as any).rhs !== undefined
);
lhs = this.#deletePaths(
lhs,
lhsDiffs.map((x) => x.diff.path!)
);
rhs = this.#deletePaths(
rhs,
rhsDiffs.map((x) => x.diff.path!)
);
// delete some standard collections from the documents
const preserveDefinitions = this.args["preserve-definitions"];
if (!preserveDefinitions) {
const keysToDelete = [
"definitions",
"parameters",
"responses",
"securityDefinitions",
];
for (const key of keysToDelete) {
delete (lhs as any)[key];
delete (rhs as any)[key];
}
}
return [lhs, rhs];
}
#reportUnresolvedReferences(parser: SwaggerParser): void {
const unresolvedReferences = parser.getUnresolvedReferences();
if (unresolvedReferences.length > 0) {
console.warn(
`== UNRESOLVED REFERENCES == (${unresolvedReferences.length})\n\n`
);
console.warn(`${unresolvedReferences.join("\n")}`);
}
}
#diffKindToString(diff: Diff<any, any>): string {
switch (diff.kind) {
case "E":
return "Changed";
case "N":
return "Added";
case "D":
return "Removed";
case "A":
return "ArrayItem";
}
}
/**
* Constructs a default rule name based on the diff kind and path to
* aid with grouping diffs which aren't subject to any format rule.
*/
#buildDefaultRuleName(
diff: Diff<any, any>,
path: Array<String> | undefined
): string {
if (!path) {
throw new Error("Unexpected undefined path");
}
const verb = this.#diffKindToString(diff);
let returnValue = "UNGROUPED";
if (diff.kind === "A") {
const arrayItemRuleName = this.#buildDefaultRuleName(
diff.item,
diff.path
);
returnValue = `${verb}_${arrayItemRuleName}`;
} else {
const lastPath = path[path.length - 1];
if (typeof lastPath === "number") {
const secondToLastPath = path[path.length - 2];
return `${verb}_${secondToLastPath} (AUTO)`;
} else {
return `${verb}_${lastPath} (AUTO)`;
}
}
return returnValue;
}
#buildDiffFile(diffs: DiffItem[]): any {
if (!this.args["group-violations"]) {
return this.#flattenPaths(diffs);
}
const groupedDiff: { [key: string]: DiffGroupingResult } = {};
for (const diff of diffs) {
diff.ruleName =
diff.ruleName ?? this.#buildDefaultRuleName(diff.diff, diff.diff.path);
if (!groupedDiff[diff.ruleName]) {
groupedDiff[diff.ruleName] = {
name: diff.ruleName,
count: 0,
items: [],
};
}
groupedDiff[diff.ruleName]!.items.push(diff);
groupedDiff[diff.ruleName]!.count++;
}
const finalResults = new Map<string, any>();
// Sort by count descending
const sorted = Object.values(groupedDiff).sort((a, b) => b.count - a.count);
for (const item of sorted) {
const name = item.name!;
delete item.name;
item.items = this.#flattenPaths(item.items);
finalResults.set(name, item);
}
return finalResults;
}
#reportUnreferencedObjects(parser: SwaggerParser): void {
const unreferencedDefinitions = parser.getUnreferenced();
// We don't care about unused security definitions because we don't really
// use them in Azure. (We will still diff them though)
unreferencedDefinitions.delete(RegistryKind.SecurityDefinition);
if (unreferencedDefinitions.size > 0) {
let total = 0;
for (const value of unreferencedDefinitions.values()) {
total += value.length;
}
console.warn(`\n== UNREFERENCED DEFINITIONS == (${total})\n`);
}
for (const [key, value] of unreferencedDefinitions.entries()) {
if (value.length > 0) {
console.warn(
`\n**${RegistryKind[key]}** (${value.length})\n\n${value.join("\n")}`
);
}
}
}
#flattenPaths(items: DiffItem[]): any[] {
if (!this.args["flatten-paths"]) {
return items;
}
const results: any[] = [];
for (const item of items) {
const allItem = { ...item };
const diff = { ...allItem.diff };
const path = diff.path;
const fullPath = getUrlEncodedPath(path);
(diff as any).path = fullPath;
allItem.diff = diff;
results.push(allItem);
}
return results;
}
}
/** Describes a diff item */
export interface DiffItem {
ruleResult: RuleResult;
ruleName?: string;
message?: string;
diff: Diff<any, any>;
}
/** Describes a grouping of diff items. */
export interface DiffGroupingResult {
name?: string;
count: number;
items: DiffItem[];
}
/** Describes the sorted results of diffing. */
interface DiffResult {
flaggedViolations: DiffItem[];
assumedViolations: DiffItem[];
noViolations: DiffItem[];
suppressedViolations: DiffItem[];
}
interface ResultFiles {
raw: [any, any];
normal: [any, any];
inverse: [any, any];
diff: any;
diffInverse: any;
}
interface ResultSummary {
flaggedViolations: number;
rulesViolated: number | undefined;
assumedViolations: number;
assumedRules: number | undefined;
unresolvedReferences: number;
unreferencedObjects: number;
suppressedViolations: number;
}