forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproc.exec.test.ts
More file actions
160 lines (136 loc) · 8.25 KB
/
Copy pathproc.exec.test.ts
File metadata and controls
160 lines (136 loc) · 8.25 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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
import { expect, use } from 'chai';
import * as chaiAsPromised from 'chai-as-promised';
import { CancellationTokenSource } from 'vscode';
import { PythonSettings } from '../../../client/common/configSettings';
import { BufferDecoder } from '../../../client/common/process/decoder';
import { ProcessService } from '../../../client/common/process/proc';
import { StdErrError } from '../../../client/common/process/types';
import { initialize } from './../../initialize';
use(chaiAsPromised);
// tslint:disable-next-line:max-func-body-length
suite('ProcessService', () => {
let pythonPath: string;
suiteSetup(() => {
pythonPath = PythonSettings.getInstance().pythonPath;
return initialize();
});
setup(initialize);
teardown(initialize);
test('exec should output print statements', async () => {
const procService = new ProcessService(new BufferDecoder());
const printOutput = '1234';
const result = await procService.exec(pythonPath, ['-c', `print("${printOutput}")`]);
expect(result).not.to.be.an('undefined', 'result is undefined');
expect(result.stdout.trim()).to.be.equal(printOutput, 'Invalid output');
expect(result.stderr).to.equal(undefined, 'stderr not undefined');
});
test('exec should output print unicode characters', async () => {
const procService = new ProcessService(new BufferDecoder());
const printOutput = 'öä';
const result = await procService.exec(pythonPath, ['-c', `print("${printOutput}")`]);
expect(result).not.to.be.an('undefined', 'result is undefined');
expect(result.stdout.trim()).to.be.equal(printOutput, 'Invalid output');
expect(result.stderr).to.equal(undefined, 'stderr not undefined');
});
test('exec should wait for completion of program with new lines', async function () {
// tslint:disable-next-line:no-invalid-this
this.timeout(5000);
const procService = new ProcessService(new BufferDecoder());
const pythonCode = ['import sys', 'import time',
'print("1")', 'sys.stdout.flush()', 'time.sleep(1)',
'print("2")', 'sys.stdout.flush()', 'time.sleep(1)',
'print("3")'];
const result = await procService.exec(pythonPath, ['-c', pythonCode.join(';')]);
const outputs = ['1', '2', '3'];
expect(result).not.to.be.an('undefined', 'result is undefined');
const values = result.stdout.split(/\r?\n/g).map(line => line.trim()).filter(line => line.length > 0);
expect(values).to.deep.equal(outputs, 'Output values are incorrect');
expect(result.stderr).to.equal(undefined, 'stderr not undefined');
});
test('exec should wait for completion of program without new lines', async function () {
// tslint:disable-next-line:no-invalid-this
this.timeout(5000);
const procService = new ProcessService(new BufferDecoder());
const pythonCode = ['import sys', 'import time',
'sys.stdout.write("1")', 'sys.stdout.flush()', 'time.sleep(1)',
'sys.stdout.write("2")', 'sys.stdout.flush()', 'time.sleep(1)',
'sys.stdout.write("3")'];
const result = await procService.exec(pythonPath, ['-c', pythonCode.join(';')]);
const outputs = ['123'];
expect(result).not.to.be.an('undefined', 'result is undefined');
const values = result.stdout.split(/\r?\n/g).map(line => line.trim()).filter(line => line.length > 0);
expect(values).to.deep.equal(outputs, 'Output values are incorrect');
expect(result.stderr).to.equal(undefined, 'stderr not undefined');
});
test('exec should end when cancellationToken is cancelled', async function () {
// tslint:disable-next-line:no-invalid-this
this.timeout(15000);
const procService = new ProcessService(new BufferDecoder());
const pythonCode = ['import sys', 'import time',
'print("1")', 'sys.stdout.flush()', 'time.sleep(10)',
'print("2")', 'sys.stdout.flush()'];
const cancellationToken = new CancellationTokenSource();
setTimeout(() => cancellationToken.cancel(), 3000);
const result = await procService.exec(pythonPath, ['-c', pythonCode.join(';')], { token: cancellationToken.token });
expect(result).not.to.be.an('undefined', 'result is undefined');
const values = result.stdout.split(/\r?\n/g).map(line => line.trim()).filter(line => line.length > 0);
expect(values).to.deep.equal(['1'], 'Output values are incorrect');
expect(result.stderr).to.equal(undefined, 'stderr not undefined');
});
test('exec should stream stdout and stderr separately', async function () {
// tslint:disable-next-line:no-invalid-this
this.timeout(7000);
const procService = new ProcessService(new BufferDecoder());
const pythonCode = ['import sys', 'import time',
'print("1")', 'sys.stdout.flush()', 'time.sleep(1)',
'sys.stderr.write("a")', 'sys.stderr.flush()', 'time.sleep(1)',
'print("2")', 'sys.stdout.flush()', 'time.sleep(1)',
'sys.stderr.write("b")', 'sys.stderr.flush()', 'time.sleep(1)',
'print("3")', 'sys.stdout.flush()', 'time.sleep(1)',
'sys.stderr.write("c")', 'sys.stderr.flush()'];
const result = await procService.exec(pythonPath, ['-c', pythonCode.join(';')]);
const expectedStdout = ['1', '2', '3'];
const expectedStderr = ['abc'];
expect(result).not.to.be.an('undefined', 'result is undefined');
const stdouts = result.stdout.split(/\r?\n/g).map(line => line.trim()).filter(line => line.length > 0);
expect(stdouts).to.deep.equal(expectedStdout, 'stdout values are incorrect');
const stderrs = result.stderr!.split(/\r?\n/g).map(line => line.trim()).filter(line => line.length > 0);
expect(stderrs).to.deep.equal(expectedStderr, 'stderr values are incorrect');
});
test('exec should merge stdout and stderr streams', async function () {
// tslint:disable-next-line:no-invalid-this
this.timeout(7000);
const procService = new ProcessService(new BufferDecoder());
const pythonCode = ['import sys', 'import time',
'sys.stdout.write("1")', 'sys.stdout.flush()', 'time.sleep(1)',
'sys.stderr.write("a")', 'sys.stderr.flush()', 'time.sleep(1)',
'sys.stdout.write("2")', 'sys.stdout.flush()', 'time.sleep(1)',
'sys.stderr.write("b")', 'sys.stderr.flush()', 'time.sleep(1)',
'sys.stdout.write("3")', 'sys.stdout.flush()', 'time.sleep(1)',
'sys.stderr.write("c")', 'sys.stderr.flush()'];
const result = await procService.exec(pythonPath, ['-c', pythonCode.join(';')], { mergeStdOutErr: true });
const expectedOutput = ['1a2b3c'];
expect(result).not.to.be.an('undefined', 'result is undefined');
const outputs = result.stdout.split(/\r?\n/g).map(line => line.trim()).filter(line => line.length > 0);
expect(outputs).to.deep.equal(expectedOutput, 'Output values are incorrect');
});
test('exec should throw an error with stderr output', async () => {
const procService = new ProcessService(new BufferDecoder());
const pythonCode = ['import sys', 'sys.stderr.write("a")', 'sys.stderr.flush()'];
const result = procService.exec(pythonPath, ['-c', pythonCode.join(';')], { throwOnStdErr: true });
await expect(result).to.eventually.be.rejectedWith(StdErrError, 'a', 'Expected error to be thrown');
});
test('exec should throw an error when spawn file not found', async () => {
const procService = new ProcessService(new BufferDecoder());
const result = procService.exec(Date.now().toString(), []);
await expect(result).to.eventually.be.rejected.and.to.have.property('code', 'ENOENT', 'Invalid error code');
});
test('exec should exit without no output', async () => {
const procService = new ProcessService(new BufferDecoder());
const result = await procService.exec(pythonPath, ['-c', 'import sys', 'sys.exit()']);
expect(result.stdout).equals('', 'stdout is invalid');
expect(result.stderr).equals(undefined, 'stderr is invalid');
});
});