-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathsys-info.ts
155 lines (138 loc) · 5.12 KB
/
sys-info.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
import { SysInfo } from "../lib/sys-info";
import { Yok } from "../lib/common/yok";
import { assert } from "chai";
import { format } from "util";
import * as sinon from "sinon";
import * as _ from "lodash";
import { MacOSVersions, MacOSDeprecationStringFormat } from "../lib/constants";
import { IInjector } from "../lib/common/definitions/yok";
import {
ISystemWarning,
IHostInfo,
ISysInfo,
IFileSystem,
} from "../lib/common/declarations";
const verifyNodeVersion = require("../lib/common/verify-node-version");
describe("sysInfo", () => {
let sandbox: sinon.SinonSandbox = null;
beforeEach(() => {
sandbox = sinon.createSandbox();
});
afterEach(() => {
sandbox.restore();
});
const createTestInjector = (): IInjector => {
const testInjector = new Yok();
testInjector.register("hostInfo", {
getMacOSVersion: async (): Promise<string> => null,
});
testInjector.register("fs", {
readJson: (filename: string, encoding?: string): any => null,
});
testInjector.register("sysInfo", SysInfo);
return testInjector;
};
describe("getSystemWarnings", () => {
const getSystemWarnings = async (opts?: {
nodeJsWarning?: string;
macOSDeprecatedVersion?: string;
}): Promise<ISystemWarning[]> => {
sandbox.stub(verifyNodeVersion, "getNodeWarning").returns(
opts && opts.nodeJsWarning
? {
message: opts.nodeJsWarning,
severity: SystemWarningsSeverity.medium,
}
: null
);
const testInjector = createTestInjector();
const $hostInfo = testInjector.resolve<IHostInfo>("hostInfo");
$hostInfo.getMacOSVersion = async (): Promise<string> =>
opts && opts.macOSDeprecatedVersion;
const sysInfo = testInjector.resolve<ISysInfo>("sysInfo");
const warnings = await sysInfo.getSystemWarnings();
return warnings;
};
it("returns empty array when there are no warnings", async () => {
const warnings = await getSystemWarnings();
assert.deepStrictEqual(warnings, []);
});
it("returns correct single warning when macOS version is deprecated", async () => {
const macOSDeprecatedVersion = MacOSVersions.Sierra;
const macOSWarning = {
message: format(MacOSDeprecationStringFormat, macOSDeprecatedVersion),
severity: SystemWarningsSeverity.high,
};
const warnings = await getSystemWarnings({ macOSDeprecatedVersion });
_.each(warnings, (warning) => delete warning.toString);
assert.deepStrictEqual(warnings, [macOSWarning]);
});
it("returns correct single warning when Node.js version is deprecated", async () => {
const nodeJsWarning = {
message: "Node.js Warning",
severity: SystemWarningsSeverity.medium,
};
const warnings = await getSystemWarnings({
nodeJsWarning: nodeJsWarning.message,
});
_.each(warnings, (warning) => delete warning.toString);
assert.deepStrictEqual(warnings, [nodeJsWarning]);
});
it("returns correct warnings when both Node.js and macOS versions are deprecated", async () => {
const macOSDeprecatedVersion = MacOSVersions.Sierra;
const macOSWarning = {
message: format(MacOSDeprecationStringFormat, macOSDeprecatedVersion),
severity: SystemWarningsSeverity.high,
};
const nodeJsWarning = {
message: "Node.js Warning",
severity: SystemWarningsSeverity.medium,
};
const warnings = await getSystemWarnings({
macOSDeprecatedVersion,
nodeJsWarning: nodeJsWarning.message,
});
_.each(warnings, (warning) => delete warning.toString);
assert.deepStrictEqual(warnings, [macOSWarning, nodeJsWarning]);
});
});
describe("getMacOSWarningMessage", () => {
const getMacOSWarning = async (
macOSDeprecatedVersion?: string
): Promise<ISystemWarning> => {
sandbox.stub(verifyNodeVersion, "getNodeWarning").returns(null);
const testInjector = createTestInjector();
const $hostInfo = testInjector.resolve<IHostInfo>("hostInfo");
$hostInfo.getMacOSVersion = async (): Promise<string> =>
macOSDeprecatedVersion;
const sysInfo = testInjector.resolve<ISysInfo>("sysInfo");
const warning = await sysInfo.getMacOSWarningMessage();
return warning;
};
it("returns null when macOS version is supported", async () => {
const warning = await getMacOSWarning();
assert.deepStrictEqual(warning, null);
});
it("returns correct single warning when macOS version is deprecated", async () => {
const macOSDeprecatedVersion = MacOSVersions.Sierra;
const macOSWarning: ISystemWarning = {
message: format(MacOSDeprecationStringFormat, macOSDeprecatedVersion),
severity: SystemWarningsSeverity.high,
};
const warning = await getMacOSWarning(macOSDeprecatedVersion);
delete warning.toString;
assert.deepStrictEqual(warning, macOSWarning);
});
});
describe("getSupportedNodeVersionRange", () => {
it("returns range from CLI's package.json", () => {
const testInjector = createTestInjector();
const expectedRange = require("../package.json").engines.node;
const fs = testInjector.resolve<IFileSystem>("fs");
fs.readJson = () => require("../package.json");
const sysInfo = testInjector.resolve<ISysInfo>("sysInfo");
const actualRange = sysInfo.getSupportedNodeVersionRange();
assert.equal(actualRange, expectedRange);
});
});
});