forked from freewayz/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.jupyter.comms.jupyterKernel.test.ts
More file actions
389 lines (379 loc) · 18.4 KB
/
Copy pathextension.jupyter.comms.jupyterKernel.test.ts
File metadata and controls
389 lines (379 loc) · 18.4 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
//
// Note: This example test is leveraging the Mocha test framework.
// Please refer to their documentation on https://mochajs.org/ for help.
//
// Place this right on top
import { initialize, IS_TRAVIS, PYTHON_PATH, TEST_TIMEOUT } from './initialize';
// The module 'assert' provides assertion methods from node
import * as assert from 'assert';
// You can import and use all API from the 'vscode' module
// as well as import your extension to test it
import { JupyterClientAdapter } from '../client/jupyter/jupyter_client/main';
import { KernelShutdownError } from '../client/jupyter/common/errors';
import { createDeferred } from '../client/common/helpers';
import { JupyterClientKernel } from '../client/jupyter/jupyter_client-Kernel';
import { KernelspecMetadata } from '../client/jupyter/contracts';
import * as settings from '../client/common/configSettings';
import * as vscode from 'vscode';
let pythonSettings = settings.PythonSettings.getInstance();
export class MockOutputChannel implements vscode.OutputChannel {
constructor(name: string) {
this.name = name;
this.output = '';
this.timeOut = setTimeout(() => {
console.log(this.output);
this.writeToConsole = true;
this.timeOut = null;
}, TEST_TIMEOUT - 1000);
}
private timeOut: number;
name: string;
output: string;
isShown: boolean;
private writeToConsole: boolean;
append(value: string) {
this.output += value;
if (this.writeToConsole) {
console.log(value);
}
}
appendLine(value: string) {
this.append(value); this.append('\n');
if (this.writeToConsole) {
console.log(value);
console.log('\n');
}
}
clear() { }
show(preservceFocus?: boolean): void;
show(column?: vscode.ViewColumn, preserveFocus?: boolean): void;
show(x?: any, y?: any): void {
this.isShown = true;
}
hide() {
this.isShown = false;
}
dispose() {
if (this.timeOut) {
clearTimeout(this.timeOut);
this.timeOut = null;
}
}
}
suite('Jupyter Kernel', () => {
suiteSetup(done => {
initialize().then(() => {
if (IS_TRAVIS) {
pythonSettings.pythonPath = PYTHON_PATH;
}
done();
});
setup(() => {
process.env['PYTHON_DONJAYAMANNE_TEST'] = '0';
process.env['DEBUG_DJAYAMANNE_IPYTHON'] = '1';
disposables = [];
output = new MockOutputChannel('Jupyter');
disposables.push(output);
jupyter = new JupyterClientAdapter(output, __dirname);
disposables.push(jupyter);
});
teardown(() => {
process.env['PYTHON_DONJAYAMANNE_TEST'] = '1';
process.env['DEBUG_DJAYAMANNE_IPYTHON'] = '0';
output.dispose();
jupyter.dispose();
disposables.forEach(d => {
try {
d.dispose();
} catch (error) {
}
});
});
});
let output: MockOutputChannel;
let jupyter: JupyterClientAdapter;
let disposables: { dispose: Function }[];
test('Start and Shutdown Kernel', done => {
let selectedKernelSpec: KernelspecMetadata;
jupyter.getAllKernelSpecs().then(kernelSpecs => {
const kernelNames = Object.keys(kernelSpecs);
assert.notEqual(kernelNames.length, 0, 'kernelSpecs not found');
selectedKernelSpec = kernelSpecs[kernelNames[0]].spec;
return jupyter.startKernel(selectedKernelSpec);
}).then(startInfo => {
const kernel = new JupyterClientKernel(selectedKernelSpec, 'python', startInfo[1], startInfo[2], startInfo[0], jupyter);
disposables.push(kernel);
return kernel.shutdown();
}).then(() => {
done();
}).catch(reason => {
assert.fail(reason, undefined, 'Failed to start Kernel', '');
});
});
test('Restart Kernel', done => {
let selectedKernelSpec: KernelspecMetadata;
jupyter.getAllKernelSpecs().then(kernelSpecs => {
const kernelNames = Object.keys(kernelSpecs);
assert.notEqual(kernelNames.length, 0, 'kernelSpecs not found');
selectedKernelSpec = kernelSpecs[kernelNames[0]].spec;
return jupyter.startKernel(selectedKernelSpec);
}).then(startInfo => {
const kernel = new JupyterClientKernel(selectedKernelSpec, 'python', startInfo[1], startInfo[2], startInfo[0], jupyter);
return kernel.shutdown(true);
}).then(() => {
done();
}).catch(reason => {
assert.fail(reason, undefined, 'Failed to restart Kernel', '');
});
});
test('Interrupt Kernel', done => {
let selectedKernelSpec: KernelspecMetadata;
jupyter.getAllKernelSpecs().then(kernelSpecs => {
const kernelNames = Object.keys(kernelSpecs);
assert.notEqual(kernelNames.length, 0, 'kernelSpecs not found');
selectedKernelSpec = kernelSpecs[kernelNames[0]].spec;
return jupyter.startKernel(selectedKernelSpec);
}).then(startInfo => {
const kernel = new JupyterClientKernel(selectedKernelSpec, 'python', startInfo[1], startInfo[2], startInfo[0], jupyter);
disposables.push(kernel);
return kernel.interrupt();
}).then(() => {
done();
}).catch(reason => {
assert.fail(reason, undefined, 'Failed to interrupt Kernel', '');
});
});
test('Execute Code (success)', done => {
let selectedKernelSpec: KernelspecMetadata;
jupyter.getAllKernelSpecs().then(kernelSpecs => {
const kernelNames = Object.keys(kernelSpecs);
assert.notEqual(kernelNames.length, 0, 'kernelSpecs not found');
selectedKernelSpec = kernelSpecs[kernelNames[0]].spec;
return jupyter.startKernel(selectedKernelSpec);
}).then(startInfo => {
const kernel = new JupyterClientKernel(selectedKernelSpec, 'python', startInfo[1], startInfo[2], startInfo[0], jupyter);
disposables.push(kernel);
const output = [];
kernel.execute('1+2').subscribe(data => {
output.push(data);
}, reason => {
assert.fail(reason, null, 'Code execution failed in jupyter', '');
}, () => {
assert.equal(output.some(d => d.stream === 'pyout' && d.type === 'text' && d.data['text/plain'] === '3'), true, 'pyout not found in output');
assert.equal(output.some(d => d.stream === 'status' && d.type === 'text' && d.data === 'ok'), true, 'status not found in output');
done();
});
}).catch(reason => {
assert.fail(reason, undefined, 'Failed to interrupt Kernel', '');
});
});
test('Execute Code (with threads)', done => {
let selectedKernelSpec: KernelspecMetadata;
jupyter.getAllKernelSpecs().then(kernelSpecs => {
const kernelNames = Object.keys(kernelSpecs);
assert.notEqual(kernelNames.length, 0, 'kernelSpecs not found');
selectedKernelSpec = kernelSpecs[kernelNames[0]].spec;
return jupyter.startKernel(selectedKernelSpec);
}).then(startInfo => {
const kernel = new JupyterClientKernel(selectedKernelSpec, 'python', startInfo[1], startInfo[2], startInfo[0], jupyter);
disposables.push(kernel);
const output = [];
kernel.execute('print(2)\nimport time\ntime.sleep(5)\nprint(3)').subscribe(data => {
output.push(data);
}, reason => {
assert.fail(reason, null, 'Code execution failed in jupyter', '');
}, () => {
assert.equal(output.some(d => d.stream === 'stdout' && d.type === 'text' && d.data['text/plain'] === '2'), true, 'stdout (2) not found in output');
assert.equal(output.some(d => d.stream === 'stdout' && d.type === 'text' && d.data['text/plain'] === '3'), true, 'stdout (3) not found in output');
assert.equal(output.some(d => d.stream === 'status' && d.type === 'text' && d.data === 'ok'), true, 'status not found in output');
done();
});
}).catch(reason => {
assert.fail(reason, undefined, 'Failed to interrupt Kernel', '');
});
});
test('Execute Code (failure)', done => {
let selectedKernelSpec: KernelspecMetadata;
jupyter.getAllKernelSpecs().then(kernelSpecs => {
const kernelNames = Object.keys(kernelSpecs);
assert.notEqual(kernelNames.length, 0, 'kernelSpecs not found');
selectedKernelSpec = kernelSpecs[kernelNames[0]].spec;
return jupyter.startKernel(selectedKernelSpec);
}).then(startInfo => {
const kernel = new JupyterClientKernel(selectedKernelSpec, 'python', startInfo[1], startInfo[2], startInfo[0], jupyter);
disposables.push(kernel);
const output = [];
kernel.execute('print(x)').subscribe(data => {
output.push(data);
}, reason => {
assert.fail(reason, null, 'Code execution failed in jupyter', '');
}, () => {
assert.equal(output.some(d => d.stream === 'error' && d.type === 'text'), true, 'error not found in output');
assert.equal(output.some(d => d.stream === 'status' && d.type === 'text' && d.data === 'error'), true, 'status not found in output');
done();
});
}).catch(reason => {
assert.fail(reason, undefined, 'Failed to interrupt Kernel', '');
});
});
test('Shutdown while executing code', done => {
let selectedKernelSpec: KernelspecMetadata;
let kernelUUID: string;
jupyter.getAllKernelSpecs().then(kernelSpecs => {
const kernelNames = Object.keys(kernelSpecs);
assert.notEqual(kernelNames.length, 0, 'kernelSpecs not found');
selectedKernelSpec = kernelSpecs[kernelNames[0]].spec;
return jupyter.startKernel(selectedKernelSpec);
}).then(startInfo => {
kernelUUID = startInfo[0];
const kernel = new JupyterClientKernel(selectedKernelSpec, 'python', startInfo[1], startInfo[2], startInfo[0], jupyter);
disposables.push(kernel);
const output = [];
let runFailedWithError = false;
kernel.execute('print(2)\nimport time\ntime.sleep(5)\nprint(3)').subscribe(data => {
output.push(data);
if (output.length === 1) {
// Shutdown this kernel immediately
jupyter.shutdownkernel(kernelUUID).then(() => {
assert.equal(runFailedWithError, true, 'Error event not raised in observale');
done();
}, reason => {
assert.fail(reason, null, 'Failed to shutdown the kernel', '');
});
}
}, reason => {
if (reason instanceof KernelShutdownError) {
runFailedWithError = true;
}
else {
assert.fail(reason, null, 'Code execution failed in jupyter with invalid error', '');
}
}, () => {
assert.fail('Complete event fired', 'none', 'Completed fired for observable', '');
});
}).catch(reason => {
assert.fail(reason, undefined, 'Failed to interrupt Kernel', '');
});
});
test('Interrupt Kernel while executing code', done => {
let selectedKernelSpec: KernelspecMetadata;
let kernelUUID: string;
jupyter.getAllKernelSpecs().then(kernelSpecs => {
const kernelNames = Object.keys(kernelSpecs);
assert.notEqual(kernelNames.length, 0, 'kernelSpecs not found');
selectedKernelSpec = kernelSpecs[kernelNames[0]].spec;
return jupyter.startKernel(selectedKernelSpec);
}).then(startInfo => {
kernelUUID = startInfo[0];
const kernel = new JupyterClientKernel(selectedKernelSpec, 'python', startInfo[1], startInfo[2], startInfo[0], jupyter);
disposables.push(kernel);
const output = [];
jupyter.runCode('print(2)\nimport time\ntime.sleep(5)\nprint(3)').subscribe(data => {
output.push(data);
if (output.length === 1) {
// interrupt this kernel immediately
jupyter.interruptKernel(kernelUUID).then(() => {
// Do nothing
}, reason => {
assert.fail(reason, null, 'Failed to interrupt the kernel', '');
});
}
}, reason => {
assert.fail(reason, null, 'Code execution failed in jupyter with invalid error', '');
}, () => {
assert.equal(output.some(d => d.stream === 'stdout' && d.type === 'text' && d.data['text/plain'] === '2'), true, 'stdout not found in output');
assert.equal(output.some(d => d.stream === 'error' && d.type === 'text'), true, 'error (KeyboardInterrupt) not found');
assert.equal(output.some(d => d.stream === 'status' && d.type === 'text' && d.data === 'error'), true, 'status not found in output');
jupyter.dispose();
done();
});
}).catch(reason => {
assert.fail(reason, undefined, 'Failed to interrupt Kernel', '');
});
});
test('Restart Kernel while executing code', done => {
let selectedKernelSpec: KernelspecMetadata;
let kernelUUID: string;
jupyter.getAllKernelSpecs().then(kernelSpecs => {
const kernelNames = Object.keys(kernelSpecs);
assert.notEqual(kernelNames.length, 0, 'kernelSpecs not found');
selectedKernelSpec = kernelSpecs[kernelNames[0]].spec;
return jupyter.startKernel(selectedKernelSpec);
}).then(startInfo => {
kernelUUID = startInfo[0];
const kernel = new JupyterClientKernel(selectedKernelSpec, 'python', startInfo[1], startInfo[2], startInfo[0], jupyter);
disposables.push(kernel);
const output1 = [];
const output2 = [];
const output3 = [];
const def1 = createDeferred<any>();
const def2 = createDeferred<any>();
const def3 = createDeferred<any>();
kernel.execute('1+2').subscribe(data => {
output1.push(data);
}, reason => {
assert.fail(reason, null, 'Code execution failed in jupyter', '');
}, () => {
assert.equal(output1.some(d => d.stream === 'pyout' && d.type === 'text' && d.data['text/plain'] === '3'), true, 'pyout not found in output');
assert.equal(output1.some(d => d.stream === 'status' && d.type === 'text' && d.data === 'ok'), true, 'status not found in output');
def1.resolve();
});
kernel.execute('print(2)\nimport time\ntime.sleep(5)\nprint(3)').subscribe(data => {
output2.push(data);
}, reason => {
assert.fail(reason, null, 'Code execution failed in jupyter', '');
}, () => {
assert.equal(output2.some(d => d.stream === 'stdout' && d.type === 'text' && d.data['text/plain'] === '2'), true, 'stdout (2) not found in output');
assert.equal(output2.some(d => d.stream === 'stdout' && d.type === 'text' && d.data['text/plain'] === '3'), true, 'stdout (3) not found in output');
assert.equal(output2.some(d => d.stream === 'status' && d.type === 'text' && d.data === 'ok'), true, 'status not found in output');
def2.resolve();
});
kernel.execute('print(1)').subscribe(data => {
output3.push(data);
}, reason => {
assert.fail(reason, null, 'Code execution failed in jupyter', '');
}, () => {
assert.equal(output3.some(d => d.stream === 'stdout' && d.type === 'text' && d.data['text/plain'] === '1'), true, 'pyout not found in output');
assert.equal(output3.some(d => d.stream === 'status' && d.type === 'text' && d.data === 'ok'), true, 'status not found in output');
def3.resolve();
});
Promise.all([def1.promise, def2.promise, def3.promise]).then(() => {
done();
}).catch(reason => {
assert.fail(reason, null, 'One of the code executions failed', '');
});
}).catch(reason => {
assert.fail(reason, undefined, 'Failed to interrupt Kernel', '');
});
});
test('Status Change', done => {
let selectedKernelSpec: KernelspecMetadata;
jupyter.getAllKernelSpecs().then(kernelSpecs => {
const kernelNames = Object.keys(kernelSpecs);
assert.notEqual(kernelNames.length, 0, 'kernelSpecs not found');
selectedKernelSpec = kernelSpecs[kernelNames[0]].spec;
return jupyter.startKernel(selectedKernelSpec);
}).then(startInfo => {
const kernel = new JupyterClientKernel(selectedKernelSpec, 'python', startInfo[1], startInfo[2], startInfo[0], jupyter);
disposables.push(kernel);
const output = [];
const statuses = [];
kernel.onStatusChange(info => {
statuses.push(info[1]);
});
kernel.execute('1+2').subscribe(data => {
output.push(data);
}, reason => {
assert.fail(reason, null, 'Code execution failed in jupyter', '');
}, () => {
assert.equal(output.some(d => d.stream === 'pyout' && d.type === 'text' && d.data['text/plain'] === '3'), true, 'pyout not found in output');
assert.equal(output.some(d => d.stream === 'status' && d.type === 'text' && d.data === 'ok'), true, 'status not found in output');
assert.equal(statuses.indexOf('busy'), 0, 'busy status not the first status');
assert.equal(statuses.indexOf('idle'), 1, 'idle status not the last status');
done();
});
}).catch(reason => {
assert.fail(reason, undefined, 'Failed to interrupt Kernel', '');
});
});
});