forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.unit.test.ts
More file actions
408 lines (325 loc) · 19.3 KB
/
main.unit.test.ts
File metadata and controls
408 lines (325 loc) · 19.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
'use strict';
// tslint:disable:max-func-body-length no-any
import { expect } from 'chai';
import * as typeMoq from 'typemoq';
import { StatusBarItem, Uri } from 'vscode';
import { IApplicationShell, ICommandManager } from '../../../client/common/application/types';
import { Commands } from '../../../client/common/constants';
import '../../../client/common/extensions';
import { IConfigurationService, IPythonSettings, ITestingSettings } from '../../../client/common/types';
import { createDeferred } from '../../../client/common/utils/async';
import { Testing } from '../../../client/common/utils/localize';
import { noop } from '../../../client/common/utils/misc';
import { IServiceContainer } from '../../../client/ioc/types';
import { CANCELLATION_REASON } from '../../../client/testing/common/constants';
import { ITestsHelper, Tests } from '../../../client/testing/common/types';
import { TestResultDisplay } from '../../../client/testing/display/main';
import { sleep } from '../../core';
suite('Unit Tests - TestResultDisplay', () => {
const workspaceUri = Uri.file(__filename);
let appShell: typeMoq.IMock<IApplicationShell>;
let unitTestSettings: typeMoq.IMock<ITestingSettings>;
let serviceContainer: typeMoq.IMock<IServiceContainer>;
let display: TestResultDisplay;
let testsHelper: typeMoq.IMock<ITestsHelper>;
let configurationService: typeMoq.IMock<IConfigurationService>;
let cmdManager: typeMoq.IMock<ICommandManager>;
setup(() => {
serviceContainer = typeMoq.Mock.ofType<IServiceContainer>();
configurationService = typeMoq.Mock.ofType<IConfigurationService>();
appShell = typeMoq.Mock.ofType<IApplicationShell>();
unitTestSettings = typeMoq.Mock.ofType<ITestingSettings>();
const pythonSettings = typeMoq.Mock.ofType<IPythonSettings>();
testsHelper = typeMoq.Mock.ofType<ITestsHelper>();
cmdManager = typeMoq.Mock.ofType<ICommandManager>();
pythonSettings.setup(p => p.testing).returns(() => unitTestSettings.object);
configurationService.setup(c => c.getSettings(workspaceUri)).returns(() => pythonSettings.object);
serviceContainer.setup(c => c.get(typeMoq.It.isValue(IConfigurationService))).returns(() => configurationService.object);
serviceContainer.setup(c => c.get(typeMoq.It.isValue(IApplicationShell))).returns(() => appShell.object);
serviceContainer.setup(c => c.get(typeMoq.It.isValue(ITestsHelper))).returns(() => testsHelper.object);
serviceContainer.setup(c => c.get(typeMoq.It.isValue(ICommandManager))).returns(() => cmdManager.object);
});
teardown(() => {
try {
display.dispose();
} catch { noop(); }
});
function createTestResultDisplay() {
display = new TestResultDisplay(serviceContainer.object);
}
test('Should create a status bar item upon instantiation', async () => {
const statusBar = typeMoq.Mock.ofType<StatusBarItem>();
appShell.setup(a => a.createStatusBarItem(typeMoq.It.isAny()))
.returns(() => statusBar.object)
.verifiable(typeMoq.Times.once());
createTestResultDisplay();
appShell.verifyAll();
});
test('Should be disabled upon instantiation', async () => {
const statusBar = typeMoq.Mock.ofType<StatusBarItem>();
appShell.setup(a => a.createStatusBarItem(typeMoq.It.isAny()))
.returns(() => statusBar.object)
.verifiable(typeMoq.Times.once());
createTestResultDisplay();
appShell.verifyAll();
expect(display.enabled).to.be.equal(false, 'not disabled');
});
test('Enable display should show the statusbar', async () => {
const statusBar = typeMoq.Mock.ofType<StatusBarItem>();
appShell.setup(a => a.createStatusBarItem(typeMoq.It.isAny()))
.returns(() => statusBar.object)
.verifiable(typeMoq.Times.once());
statusBar.setup(s => s.show()).verifiable(typeMoq.Times.once());
createTestResultDisplay();
display.enabled = true;
statusBar.verifyAll();
});
test('Disable display should hide the statusbar', async () => {
const statusBar = typeMoq.Mock.ofType<StatusBarItem>();
appShell.setup(a => a.createStatusBarItem(typeMoq.It.isAny()))
.returns(() => statusBar.object)
.verifiable(typeMoq.Times.once());
statusBar.setup(s => s.hide()).verifiable(typeMoq.Times.once());
createTestResultDisplay();
display.enabled = false;
statusBar.verifyAll();
});
test('Ensure status bar is displayed and updated with progress with ability to stop tests', async () => {
const statusBar = typeMoq.Mock.ofType<StatusBarItem>();
appShell.setup(a => a.createStatusBarItem(typeMoq.It.isAny()))
.returns(() => statusBar.object)
.verifiable(typeMoq.Times.once());
statusBar.setup(s => s.show()).verifiable(typeMoq.Times.once());
createTestResultDisplay();
display.displayProgressStatus(createDeferred<Tests>().promise, false);
statusBar.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_Ask_To_Stop_Test), typeMoq.Times.atLeastOnce());
statusBar.verify(s => s.text = typeMoq.It.isValue('$(stop) Running Tests'), typeMoq.Times.atLeastOnce());
});
test('Ensure status bar is updated with success with ability to view ui without any results', async () => {
const statusBar = typeMoq.Mock.ofType<StatusBarItem>();
appShell.setup(a => a.createStatusBarItem(typeMoq.It.isAny()))
.returns(() => statusBar.object)
.verifiable(typeMoq.Times.once());
statusBar.setup(s => s.show()).verifiable(typeMoq.Times.once());
createTestResultDisplay();
const def = createDeferred<Tests>();
display.displayProgressStatus(def.promise, false);
statusBar.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_Ask_To_Stop_Test), typeMoq.Times.atLeastOnce());
statusBar.verify(s => s.text = typeMoq.It.isValue('$(stop) Running Tests'), typeMoq.Times.atLeastOnce());
const tests = typeMoq.Mock.ofType<Tests>();
tests.setup((t: any) => t.then).returns(() => undefined);
tests.setup(t => t.summary).returns(() => {
return { errors: 0, failures: 0, passed: 0, skipped: 0 };
}).verifiable(typeMoq.Times.atLeastOnce());
appShell.setup(a => a.showWarningMessage(typeMoq.It.isAny(), typeMoq.It.isAny(), typeMoq.It.isAny(), typeMoq.It.isAny()))
.returns(() => Promise.resolve(undefined))
.verifiable(typeMoq.Times.once());
def.resolve(tests.object);
await sleep(1);
tests.verifyAll();
appShell.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_View_UI), typeMoq.Times.atLeastOnce());
});
test('Ensure status bar is updated with success with ability to view ui with results', async () => {
const statusBar = typeMoq.Mock.ofType<StatusBarItem>();
appShell.setup(a => a.createStatusBarItem(typeMoq.It.isAny()))
.returns(() => statusBar.object)
.verifiable(typeMoq.Times.once());
statusBar.setup(s => s.show()).verifiable(typeMoq.Times.once());
createTestResultDisplay();
const def = createDeferred<Tests>();
display.displayProgressStatus(def.promise, false);
statusBar.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_Ask_To_Stop_Test), typeMoq.Times.atLeastOnce());
statusBar.verify(s => s.text = typeMoq.It.isValue('$(stop) Running Tests'), typeMoq.Times.atLeastOnce());
const tests = typeMoq.Mock.ofType<Tests>();
tests.setup((t: any) => t.then).returns(() => undefined);
tests.setup(t => t.summary).returns(() => {
return { errors: 0, failures: 0, passed: 1, skipped: 0 };
}).verifiable(typeMoq.Times.atLeastOnce());
appShell.setup(a => a.showWarningMessage(typeMoq.It.isAny(), typeMoq.It.isAny(), typeMoq.It.isAny(), typeMoq.It.isAny()))
.returns(() => Promise.resolve(undefined))
.verifiable(typeMoq.Times.never());
def.resolve(tests.object);
await sleep(1);
tests.verifyAll();
appShell.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_View_UI), typeMoq.Times.atLeastOnce());
});
test('Ensure status bar is updated with error when cancelled by user with ability to view ui with results', async () => {
const statusBar = typeMoq.Mock.ofType<StatusBarItem>();
appShell.setup(a => a.createStatusBarItem(typeMoq.It.isAny()))
.returns(() => statusBar.object)
.verifiable(typeMoq.Times.once());
statusBar.setup(s => s.show()).verifiable(typeMoq.Times.once());
createTestResultDisplay();
const def = createDeferred<Tests>();
display.displayProgressStatus(def.promise, false);
statusBar.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_Ask_To_Stop_Test), typeMoq.Times.atLeastOnce());
statusBar.verify(s => s.text = typeMoq.It.isValue('$(stop) Running Tests'), typeMoq.Times.atLeastOnce());
testsHelper.setup(t => t.displayTestErrorMessage(typeMoq.It.isAny())).verifiable(typeMoq.Times.never());
def.reject(CANCELLATION_REASON);
await sleep(1);
appShell.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_View_UI), typeMoq.Times.atLeastOnce());
testsHelper.verifyAll();
});
test('Ensure status bar is updated, and error message display with error in running tests, with ability to view ui with results', async () => {
const statusBar = typeMoq.Mock.ofType<StatusBarItem>();
appShell.setup(a => a.createStatusBarItem(typeMoq.It.isAny()))
.returns(() => statusBar.object)
.verifiable(typeMoq.Times.once());
statusBar.setup(s => s.show()).verifiable(typeMoq.Times.once());
createTestResultDisplay();
const def = createDeferred<Tests>();
display.displayProgressStatus(def.promise, false);
statusBar.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_Ask_To_Stop_Test), typeMoq.Times.atLeastOnce());
statusBar.verify(s => s.text = typeMoq.It.isValue('$(stop) Running Tests'), typeMoq.Times.atLeastOnce());
testsHelper.setup(t => t.displayTestErrorMessage(typeMoq.It.isAny())).verifiable(typeMoq.Times.once());
def.reject('Some other reason');
await sleep(1);
appShell.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_View_UI), typeMoq.Times.atLeastOnce());
testsHelper.verifyAll();
});
test('Ensure status bar is displayed and updated with progress with ability to stop test discovery', async () => {
const statusBar = typeMoq.Mock.ofType<StatusBarItem>();
appShell.setup(a => a.createStatusBarItem(typeMoq.It.isAny()))
.returns(() => statusBar.object)
.verifiable(typeMoq.Times.once());
statusBar.setup(s => s.show()).verifiable(typeMoq.Times.once());
createTestResultDisplay();
display.displayDiscoverStatus(createDeferred<Tests>().promise, false).ignoreErrors();
statusBar.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_Ask_To_Stop_Discovery), typeMoq.Times.atLeastOnce());
statusBar.verify(s => s.text = typeMoq.It.isValue('$(stop) Discovering Tests'), typeMoq.Times.atLeastOnce());
});
test('Ensure status bar is displayed and updated with success and no tests, with ability to view ui to view results of test discovery', async () => {
const statusBar = typeMoq.Mock.ofType<StatusBarItem>();
appShell.setup(a => a.createStatusBarItem(typeMoq.It.isAny()))
.returns(() => statusBar.object)
.verifiable(typeMoq.Times.once());
statusBar.setup(s => s.show()).verifiable(typeMoq.Times.once());
createTestResultDisplay();
const def = createDeferred<Tests>();
display.displayDiscoverStatus(def.promise, false).ignoreErrors();
statusBar.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_Ask_To_Stop_Discovery), typeMoq.Times.atLeastOnce());
statusBar.verify(s => s.text = typeMoq.It.isValue('$(stop) Discovering Tests'), typeMoq.Times.atLeastOnce());
const tests = typeMoq.Mock.ofType<Tests>();
appShell.setup(a => a.showInformationMessage(typeMoq.It.isAny(), typeMoq.It.isAny(), typeMoq.It.isAny(), typeMoq.It.isAny()))
.returns(() => Promise.resolve(undefined))
.verifiable(typeMoq.Times.once());
def.resolve(undefined as any);
await sleep(1);
tests.verifyAll();
appShell.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_View_UI), typeMoq.Times.atLeastOnce());
});
test('Ensure tests are disabled when there are errors and user choses to disable tests', async () => {
const statusBar = typeMoq.Mock.ofType<StatusBarItem>();
appShell.setup(a => a.createStatusBarItem(typeMoq.It.isAny()))
.returns(() => statusBar.object)
.verifiable(typeMoq.Times.once());
statusBar.setup(s => s.show()).verifiable(typeMoq.Times.once());
cmdManager.setup(c => c.executeCommand(typeMoq.It.isValue('setContext'), typeMoq.It.isValue('testsDiscovered'), typeMoq.It.isValue(false)))
.verifiable(typeMoq.Times.once());
createTestResultDisplay();
const def = createDeferred<Tests>();
display.displayDiscoverStatus(def.promise, false).ignoreErrors();
statusBar.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_Ask_To_Stop_Discovery), typeMoq.Times.atLeastOnce());
statusBar.verify(s => s.text = typeMoq.It.isValue('$(stop) Discovering Tests'), typeMoq.Times.atLeastOnce());
const tests = typeMoq.Mock.ofType<Tests>();
appShell.setup(a => a.showInformationMessage(typeMoq.It.isAny(), typeMoq.It.isAny(), typeMoq.It.isAny(), typeMoq.It.isAny()))
.returns(() => Promise.resolve(Testing.disableTests()))
.verifiable(typeMoq.Times.once());
for (const setting of ['testing.promptToConfigure', 'testing.pytestEnabled',
'testing.unittestEnabled', 'testing.nosetestsEnabled']) {
configurationService.setup(c => c.updateSetting(typeMoq.It.isValue(setting), typeMoq.It.isValue(false)))
.returns(() => Promise.resolve())
.verifiable(typeMoq.Times.once());
}
def.resolve(undefined as any);
await sleep(1);
tests.verifyAll();
appShell.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_View_UI), typeMoq.Times.atLeastOnce());
configurationService.verifyAll();
cmdManager.verifyAll();
});
test('Ensure corresponding command is executed when there are errors and user choses to configure test framework', async () => {
const statusBar = typeMoq.Mock.ofType<StatusBarItem>();
appShell.setup(a => a.createStatusBarItem(typeMoq.It.isAny()))
.returns(() => statusBar.object)
.verifiable(typeMoq.Times.once());
statusBar.setup(s => s.show()).verifiable(typeMoq.Times.once());
createTestResultDisplay();
const def = createDeferred<Tests>();
display.displayDiscoverStatus(def.promise, false).ignoreErrors();
statusBar.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_Ask_To_Stop_Discovery), typeMoq.Times.atLeastOnce());
statusBar.verify(s => s.text = typeMoq.It.isValue('$(stop) Discovering Tests'), typeMoq.Times.atLeastOnce());
const tests = typeMoq.Mock.ofType<Tests>();
appShell.setup(a => a.showInformationMessage(typeMoq.It.isAny(), typeMoq.It.isAny(), typeMoq.It.isAny(), typeMoq.It.isAny()))
.returns(() => Promise.resolve(Testing.configureTests()))
.verifiable(typeMoq.Times.once());
const undefinedArg = typeMoq.It.isValue(undefined);
cmdManager
.setup(c => c.executeCommand(typeMoq.It.isValue(Commands.Tests_Configure as any), undefinedArg, undefinedArg, undefinedArg))
.returns(() => Promise.resolve() as any)
.verifiable(typeMoq.Times.once());
def.resolve(undefined as any);
await sleep(1);
tests.verifyAll();
appShell.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_View_UI), typeMoq.Times.atLeastOnce());
cmdManager.verifyAll();
});
test('Ensure status bar is displayed and updated with error info when test discovery is cancelled by the user', async () => {
const statusBar = typeMoq.Mock.ofType<StatusBarItem>();
appShell.setup(a => a.createStatusBarItem(typeMoq.It.isAny()))
.returns(() => statusBar.object)
.verifiable(typeMoq.Times.once());
statusBar.setup(s => s.show()).verifiable(typeMoq.Times.once());
createTestResultDisplay();
const def = createDeferred<Tests>();
display.displayDiscoverStatus(def.promise, false).ignoreErrors();
statusBar.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_Ask_To_Stop_Discovery), typeMoq.Times.atLeastOnce());
statusBar.verify(s => s.text = typeMoq.It.isValue('$(stop) Discovering Tests'), typeMoq.Times.atLeastOnce());
appShell.setup(a => a.showErrorMessage(typeMoq.It.isAny()))
.verifiable(typeMoq.Times.never());
def.reject(CANCELLATION_REASON);
await sleep(1);
appShell.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_Discover), typeMoq.Times.atLeastOnce());
configurationService.verifyAll();
});
test('Ensure status bar is displayed and updated with error info, and message is displayed when test discovery is fails due to errors', async () => {
const statusBar = typeMoq.Mock.ofType<StatusBarItem>();
appShell.setup(a => a.createStatusBarItem(typeMoq.It.isAny()))
.returns(() => statusBar.object)
.verifiable(typeMoq.Times.once());
statusBar.setup(s => s.show()).verifiable(typeMoq.Times.once());
createTestResultDisplay();
const def = createDeferred<Tests>();
display.displayDiscoverStatus(def.promise, false).ignoreErrors();
statusBar.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_Ask_To_Stop_Discovery), typeMoq.Times.atLeastOnce());
statusBar.verify(s => s.text = typeMoq.It.isValue('$(stop) Discovering Tests'), typeMoq.Times.atLeastOnce());
appShell.setup(a => a.showErrorMessage(typeMoq.It.isAny()))
.verifiable(typeMoq.Times.once());
def.reject('some weird error');
await sleep(1);
appShell.verifyAll();
statusBar.verify(s => s.command = typeMoq.It.isValue(Commands.Tests_Discover), typeMoq.Times.atLeastOnce());
configurationService.verifyAll();
});
});