-
-
Notifications
You must be signed in to change notification settings - Fork 86
/
test.js
291 lines (252 loc) · 7.21 KB
/
test.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
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
import os from 'os';
import {serial as test} from 'ava';
import importFresh from 'import-fresh';
test.beforeEach(() => {
Object.defineProperty(process, 'platform', {
value: 'linux'
});
process.stdout.isTTY = true;
process.argv = [];
process.env = {};
});
test('return true if `FORCE_COLOR` is in env', t => {
process.env.FORCE_COLOR = true;
const result = importFresh('.');
t.truthy(result);
t.is(result.level, 1);
});
test('return true if `FORCE_COLOR` is in env, but honor 256', t => {
process.argv = ['--color=256'];
process.env.FORCE_COLOR = true;
const result = importFresh('.');
t.truthy(result);
t.is(result.level, 2);
});
test('return true if `FORCE_COLOR` is in env, but honor 256', t => {
process.argv = ['--color=256'];
process.env.FORCE_COLOR = '1';
const result = importFresh('.');
t.truthy(result);
t.is(result.level, 2);
});
test('return false if `FORCE_COLOR` is in env and is 0', t => {
process.env.FORCE_COLOR = '0';
const result = importFresh('.');
t.false(result);
});
test('return false if not TTY', t => {
process.stdout.isTTY = false;
const result = importFresh('.');
t.false(result);
});
test('return false if --no-color flag is used', t => {
process.env = {TERM: 'xterm-256color'};
process.argv = ['--no-color'];
const result = importFresh('.');
t.false(result);
});
test('return false if --no-colors flag is used', t => {
process.env = {TERM: 'xterm-256color'};
process.argv = ['--no-colors'];
const result = importFresh('.');
t.false(result);
});
test('return true if --color flag is used', t => {
process.argv = ['--color'];
const result = importFresh('.');
t.truthy(result);
});
test('return true if --colors flag is used', t => {
process.argv = ['--colors'];
const result = importFresh('.');
t.truthy(result);
});
test('return true if `COLORTERM` is in env', t => {
process.env.COLORTERM = true;
const result = importFresh('.');
t.truthy(result);
});
test('support `--color=true` flag', t => {
process.argv = ['--color=true'];
const result = importFresh('.');
t.truthy(result);
});
test('support `--color=always` flag', t => {
process.argv = ['--color=always'];
const result = importFresh('.');
t.truthy(result);
});
test('support `--color=false` flag', t => {
process.env = {TERM: 'xterm-256color'};
process.argv = ['--color=false'];
const result = importFresh('.');
t.false(result);
});
test('support `--color=256` flag', t => {
process.argv = ['--color=256'];
const result = importFresh('.');
t.truthy(result);
});
test('level should be 2 if `--color=256` flag is used', t => {
process.argv = ['--color=256'];
const result = importFresh('.');
t.is(result.level, 2);
t.true(result.has256);
});
test('support `--color=16m` flag', t => {
process.argv = ['--color=16m'];
const result = importFresh('.');
t.truthy(result);
});
test('support `--color=full` flag', t => {
process.argv = ['--color=full'];
const result = importFresh('.');
t.truthy(result);
});
test('support `--color=truecolor` flag', t => {
process.argv = ['--color=truecolor'];
const result = importFresh('.');
t.truthy(result);
});
test('level should be 3 if `--color=16m` flag is used', t => {
process.argv = ['--color=16m'];
const result = importFresh('.');
t.is(result.level, 3);
t.true(result.has256);
t.true(result.has16m);
});
test('ignore post-terminator flags', t => {
process.argv = ['--color', '--', '--no-color'];
const result = importFresh('.');
t.truthy(result);
});
test('allow tests of the properties on false', t => {
process.env = {TERM: 'xterm-256color'};
process.argv = ['--no-color'];
const result = importFresh('.');
t.is(result.hasBasic, undefined);
t.is(result.has256, undefined);
t.is(result.has16m, undefined);
t.false(result.level > 0);
});
test('return false if `CI` is in env', t => {
process.env.CI = 'AppVeyor';
const result = importFresh('.');
t.false(result);
});
test('return true if `TRAVIS` is in env', t => {
process.env = {CI: 'Travis', TRAVIS: '1'};
const result = importFresh('.');
t.truthy(result);
});
test('return true if `CIRCLECI` is in env', t => {
process.env = {CI: true, CIRCLECI: true};
const result = importFresh('.');
t.truthy(result);
});
test('return true if `APPVEYOR` is in env', t => {
process.env = {CI: true, APPVEYOR: true};
const result = importFresh('.');
t.truthy(result);
});
test('return true if `GITLAB_CI` is in env', t => {
process.env = {CI: true, GITLAB_CI: true};
const result = importFresh('.');
t.truthy(result);
});
test('return true if Codeship is in env', t => {
process.env = {CI: true, CI_NAME: 'codeship'};
const result = importFresh('.');
t.truthy(result);
});
test('return false if `TEAMCITY_VERSION` is in env and is < 9.1', t => {
process.env.TEAMCITY_VERSION = '9.0.5 (build 32523)';
const result = importFresh('.');
t.false(result);
});
test('return level 1 if `TEAMCITY_VERSION` is in env and is >= 9.1', t => {
process.env.TEAMCITY_VERSION = '9.1.0 (build 32523)';
const result = importFresh('.');
t.is(result.level, 1);
});
test('prefer level 2/xterm over COLORTERM', t => {
process.env = {COLORTERM: '1', TERM: 'xterm-256color'};
const result = importFresh('.');
t.is(result.level, 2);
});
test('support screen-256color', t => {
process.env = {TERM: 'screen-256color'};
const result = importFresh('.');
t.is(result.level, 2);
});
test('support putty-256color', t => {
process.env = {TERM: 'putty-256color'};
const result = importFresh('.');
t.is(result.level, 2);
});
test('level should be 3 when using iTerm 3.0', t => {
Object.defineProperty(process, 'platform', {
value: 'darwin'
});
process.env = {
TERM_PROGRAM: 'iTerm.app',
TERM_PROGRAM_VERSION: '3.0.10'
};
const result = importFresh('.');
t.is(result.level, 3);
});
test('level should be 2 when using iTerm 2.9', t => {
Object.defineProperty(process, 'platform', {
value: 'darwin'
});
process.env = {
TERM_PROGRAM: 'iTerm.app',
TERM_PROGRAM_VERSION: '2.9.3'
};
const result = importFresh('.');
t.is(result.level, 2);
});
test('return level 1 if on Windows earlier than 10 build 10586 and Node version is < 8.0.0', t => {
Object.defineProperty(process, 'platform', {
value: 'win32'
});
Object.defineProperty(process.versions, 'node', {
value: '7.5.0'
});
os.release = () => '10.0.10240';
const result = importFresh('.');
t.is(result.level, 1);
});
test('return level 1 if on Windows 10 build 10586 or later and Node version is < 8.0.0', t => {
Object.defineProperty(process, 'platform', {
value: 'win32'
});
Object.defineProperty(process.versions, 'node', {
value: '7.5.0'
});
os.release = () => '10.0.10586';
const result = importFresh('.');
t.is(result.level, 1);
});
test('return level 1 if on Windows earlier than 10 build 10586 and Node version is >= 8.0.0', t => {
Object.defineProperty(process, 'platform', {
value: 'win32'
});
Object.defineProperty(process.versions, 'node', {
value: '8.0.0'
});
os.release = () => '10.0.10240';
const result = importFresh('.');
t.is(result.level, 1);
});
test('return level 2 if on Windows 10 build 10586 or later and Node version is >= 8.0.0', t => {
Object.defineProperty(process, 'platform', {
value: 'win32'
});
Object.defineProperty(process.versions, 'node', {
value: '8.0.0'
});
os.release = () => '10.0.10586';
const result = importFresh('.');
t.is(result.level, 2);
});