-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathschema-version-check.spec.js
107 lines (94 loc) · 3.85 KB
/
schema-version-check.spec.js
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
/**
* This source file is part of the Swift.org open source project
*
* Copyright (c) 2021 Apple Inc. and the Swift project authors
* Licensed under Apache License v2.0 with Runtime Library Exception
*
* See https://swift.org/LICENSE.txt for license information
* See https://swift.org/CONTRIBUTORS.txt for Swift project authors
*/
import emitWarningForSchemaVersionMismatch, {
CURRENT_SUPPORTED_SCHEMA,
combineVersions,
CURRENT_SCHEMA_STRING, compareVersions,
} from 'docc-render/utils/schema-version-check';
const warnSpy = jest.spyOn(console, 'warn').mockReturnValue('');
describe('schema-version-check', () => {
beforeEach(() => {
jest.clearAllMocks();
});
it('does not emit a warning, if having an exact match', () => {
emitWarningForSchemaVersionMismatch(CURRENT_SUPPORTED_SCHEMA);
expect(warnSpy).toHaveBeenCalledTimes(0);
});
it('emits a warning if the major version is higher than the supported', () => {
const newVersion = {
...CURRENT_SUPPORTED_SCHEMA,
major: CURRENT_SUPPORTED_SCHEMA.major + 1,
};
emitWarningForSchemaVersionMismatch(newVersion);
expect(warnSpy).toHaveBeenCalledTimes(1);
expect(warnSpy)
.toHaveBeenCalledWith(`[Swift-DocC-Render] The render node version for this page (${combineVersions(newVersion)}) has a different major version component than Swift-DocC-Render supports (${CURRENT_SCHEMA_STRING}). Compatibility is not guaranteed.`);
});
it('emits a warning if the major version is lower than the supported', () => {
const newVersion = {
...CURRENT_SUPPORTED_SCHEMA,
major: CURRENT_SUPPORTED_SCHEMA.major - 1,
};
emitWarningForSchemaVersionMismatch(newVersion);
expect(warnSpy).toHaveBeenCalledTimes(1);
expect(warnSpy)
.toHaveBeenCalledWith(`[Swift-DocC-Render] The render node version for this page (${combineVersions(newVersion)}) has a different major version component than Swift-DocC-Render supports (${CURRENT_SCHEMA_STRING}). Compatibility is not guaranteed.`);
});
it('emits a warning if the minor version is higher than the supported', () => {
const newVersion = {
...CURRENT_SUPPORTED_SCHEMA,
minor: CURRENT_SUPPORTED_SCHEMA.minor + 1,
};
emitWarningForSchemaVersionMismatch(newVersion);
expect(warnSpy).toHaveBeenCalledTimes(1);
expect(warnSpy)
.toHaveBeenCalledWith(`[Swift-DocC-Render] The render node version for this page has a higher minor version (${combineVersions(newVersion)}) than Swift-DocC-Render supports (${CURRENT_SCHEMA_STRING}). Compatibility is not guaranteed.`);
});
it('does not emit a warning, if the minor version is lower than the supported', () => {
emitWarningForSchemaVersionMismatch({
...CURRENT_SUPPORTED_SCHEMA,
minor: CURRENT_SUPPORTED_SCHEMA.minor - 1,
});
expect(warnSpy).toHaveBeenCalledTimes(0);
});
it('does not emit warnings for patch version mismatch', () => {
emitWarningForSchemaVersionMismatch({
...CURRENT_SUPPORTED_SCHEMA,
patch: CURRENT_SUPPORTED_SCHEMA.patch - 1,
});
expect(warnSpy).toHaveBeenCalledTimes(0);
});
it('does not do anything, if no version is provided', () => {
emitWarningForSchemaVersionMismatch();
expect(warnSpy).toHaveBeenCalledTimes(0);
});
describe('compareVersions', () => {
it.each([
['1.1.1', '1.1.10', -1],
['1.1.1', '1.2.10', -1],
['1.1.20', '1.2.10', -1],
['1.1.1', '2.1.1', -1],
['1.1', '1.2.0', -1],
['1.1', '1.1.1', -1],
['1.1.10', '1.1.1', 1],
['1.1.10', '1.0.1', 1],
['1.1.10', '1.0.20', 1],
['2.1.0', '1.1.0', 1],
['1.2.0', '1.1', 1],
['1.2', '1.1', 1],
['1.1.1', '1.1.1', 0],
['1.1', '1.1', 0],
['1.1', '1.1.0', 0],
['1.1.0', '1.1', 0],
])('compares %s to %s and gets %s', (one, two, result) => {
expect(compareVersions(one, two)).toBe(result);
});
});
});