forked from microsoft/vscode-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyProjectTomlContext.unit.test.ts
More file actions
266 lines (204 loc) · 9.66 KB
/
pyProjectTomlContext.unit.test.ts
File metadata and controls
266 lines (204 loc) · 9.66 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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
/* eslint-disable @typescript-eslint/no-explicit-any */
import * as chaiAsPromised from 'chai-as-promised';
import * as sinon from 'sinon';
import * as typemoq from 'typemoq';
import { assert, use as chaiUse } from 'chai';
import { TextDocument } from 'vscode';
import * as cmdApis from '../../../client/common/vscodeApis/commandApis';
import * as workspaceApis from '../../../client/common/vscodeApis/workspaceApis';
import { IDisposableRegistry } from '../../../client/common/types';
import { registerPyProjectTomlFeatures } from '../../../client/pythonEnvironments/creation/pyProjectTomlContext';
chaiUse(chaiAsPromised.default);
class FakeDisposable {
public dispose() {
// Do nothing
}
}
function getInstallableToml(): typemoq.IMock<TextDocument> {
const pyprojectTomlPath = 'pyproject.toml';
const pyprojectToml = typemoq.Mock.ofType<TextDocument>();
pyprojectToml.setup((p) => p.fileName).returns(() => pyprojectTomlPath);
pyprojectToml
.setup((p) => p.getText(typemoq.It.isAny()))
.returns(
() =>
'[project]\nname = "spam"\nversion = "2020.0.0"\n[build-system]\nrequires = ["setuptools ~= 58.0", "cython ~= 0.29.0"]\n[dependency-groups]\ndev = ["ruff", { include-group = "test" }]\ntest = ["pytest"]',
);
return pyprojectToml;
}
function getNonInstallableToml(): typemoq.IMock<TextDocument> {
const pyprojectTomlPath = 'pyproject.toml';
const pyprojectToml = typemoq.Mock.ofType<TextDocument>();
pyprojectToml.setup((p) => p.fileName).returns(() => pyprojectTomlPath);
pyprojectToml
.setup((p) => p.getText(typemoq.It.isAny()))
.returns(() => '[project]\nname = "spam"\nversion = "2020.0.0"\n');
return pyprojectToml;
}
function getSomeFile(): typemoq.IMock<TextDocument> {
const someFilePath = 'something.py';
const someFile = typemoq.Mock.ofType<TextDocument>();
someFile.setup((p) => p.fileName).returns(() => someFilePath);
someFile.setup((p) => p.getText(typemoq.It.isAny())).returns(() => 'print("Hello World")');
return someFile;
}
suite('PyProject.toml Create Env Features', () => {
let executeCommandStub: sinon.SinonStub;
const disposables: IDisposableRegistry = [];
let getOpenTextDocumentsStub: sinon.SinonStub;
let onDidOpenTextDocumentStub: sinon.SinonStub;
let onDidSaveTextDocumentStub: sinon.SinonStub;
setup(() => {
executeCommandStub = sinon.stub(cmdApis, 'executeCommand');
getOpenTextDocumentsStub = sinon.stub(workspaceApis, 'getOpenTextDocuments');
onDidOpenTextDocumentStub = sinon.stub(workspaceApis, 'onDidOpenTextDocument');
onDidSaveTextDocumentStub = sinon.stub(workspaceApis, 'onDidSaveTextDocument');
onDidOpenTextDocumentStub.returns(new FakeDisposable());
onDidSaveTextDocumentStub.returns(new FakeDisposable());
});
teardown(() => {
sinon.restore();
disposables.forEach((d) => d.dispose());
});
test('Installable pyproject.toml is already open in the editor on extension activate', async () => {
const pyprojectToml = getInstallableToml();
getOpenTextDocumentsStub.returns([pyprojectToml.object]);
registerPyProjectTomlFeatures(disposables);
assert.ok(executeCommandStub.calledWithExactly('setContext', 'pipInstallableToml', true));
});
test('Non installable pyproject.toml is already open in the editor on extension activate', async () => {
const pyprojectToml = getNonInstallableToml();
getOpenTextDocumentsStub.returns([pyprojectToml.object]);
registerPyProjectTomlFeatures(disposables);
assert.ok(executeCommandStub.calledWithExactly('setContext', 'pipInstallableToml', false));
});
test('Some random file open in the editor on extension activate', async () => {
const someFile = getSomeFile();
getOpenTextDocumentsStub.returns([someFile.object]);
registerPyProjectTomlFeatures(disposables);
assert.ok(executeCommandStub.calledWithExactly('setContext', 'pipInstallableToml', false));
});
test('Installable pyproject.toml is opened in the editor', async () => {
getOpenTextDocumentsStub.returns([]);
let handler: (doc: TextDocument) => void = () => {
/* do nothing */
};
onDidOpenTextDocumentStub.callsFake((callback) => {
handler = callback;
return new FakeDisposable();
});
const pyprojectToml = getInstallableToml();
registerPyProjectTomlFeatures(disposables);
assert.ok(executeCommandStub.neverCalledWith('setContext', 'pipInstallableToml', true));
handler(pyprojectToml.object);
assert.ok(executeCommandStub.calledWithExactly('setContext', 'pipInstallableToml', true));
});
test('Non Installable pyproject.toml is opened in the editor', async () => {
getOpenTextDocumentsStub.returns([]);
let handler: (doc: TextDocument) => void = () => {
/* do nothing */
};
onDidOpenTextDocumentStub.callsFake((callback) => {
handler = callback;
return new FakeDisposable();
});
const pyprojectToml = getNonInstallableToml();
registerPyProjectTomlFeatures(disposables);
assert.ok(executeCommandStub.calledWithExactly('setContext', 'pipInstallableToml', false));
executeCommandStub.reset();
handler(pyprojectToml.object);
assert.ok(executeCommandStub.calledWithExactly('setContext', 'pipInstallableToml', false));
});
test('Some random file is opened in the editor', async () => {
getOpenTextDocumentsStub.returns([]);
let handler: (doc: TextDocument) => void = () => {
/* do nothing */
};
onDidOpenTextDocumentStub.callsFake((callback) => {
handler = callback;
return new FakeDisposable();
});
const someFile = getSomeFile();
registerPyProjectTomlFeatures(disposables);
assert.ok(executeCommandStub.calledWithExactly('setContext', 'pipInstallableToml', false));
executeCommandStub.reset();
handler(someFile.object);
assert.ok(executeCommandStub.neverCalledWith('setContext', 'pipInstallableToml', false));
});
test('Installable pyproject.toml is changed', async () => {
getOpenTextDocumentsStub.returns([]);
let handler: (d: TextDocument) => void = () => {
/* do nothing */
};
onDidSaveTextDocumentStub.callsFake((callback) => {
handler = callback;
return new FakeDisposable();
});
const pyprojectToml = getInstallableToml();
registerPyProjectTomlFeatures(disposables);
assert.ok(executeCommandStub.calledWithExactly('setContext', 'pipInstallableToml', false));
handler(pyprojectToml.object);
assert.ok(executeCommandStub.calledWithExactly('setContext', 'pipInstallableToml', true));
});
test('Non Installable pyproject.toml is changed', async () => {
getOpenTextDocumentsStub.returns([]);
let handler: (d: TextDocument) => void = () => {
/* do nothing */
};
onDidSaveTextDocumentStub.callsFake((callback) => {
handler = callback;
return new FakeDisposable();
});
const pyprojectToml = getNonInstallableToml();
registerPyProjectTomlFeatures(disposables);
assert.ok(executeCommandStub.calledWithExactly('setContext', 'pipInstallableToml', false));
executeCommandStub.reset();
handler(pyprojectToml.object);
assert.ok(executeCommandStub.calledOnceWithExactly('setContext', 'pipInstallableToml', false));
});
test('Non Installable pyproject.toml is changed to Installable', async () => {
getOpenTextDocumentsStub.returns([]);
let openHandler: (doc: TextDocument) => void = () => {
/* do nothing */
};
onDidOpenTextDocumentStub.callsFake((callback) => {
openHandler = callback;
return new FakeDisposable();
});
let changeHandler: (d: TextDocument) => void = () => {
/* do nothing */
};
onDidSaveTextDocumentStub.callsFake((callback) => {
changeHandler = callback;
return new FakeDisposable();
});
const nonInatallablePyprojectToml = getNonInstallableToml();
const installablePyprojectToml = getInstallableToml();
registerPyProjectTomlFeatures(disposables);
assert.ok(executeCommandStub.calledWithExactly('setContext', 'pipInstallableToml', false));
executeCommandStub.reset();
openHandler(nonInatallablePyprojectToml.object);
assert.ok(executeCommandStub.calledOnceWithExactly('setContext', 'pipInstallableToml', false));
executeCommandStub.reset();
changeHandler(installablePyprojectToml.object);
assert.ok(executeCommandStub.calledOnceWithExactly('setContext', 'pipInstallableToml', true));
});
test('Some random file is changed', async () => {
getOpenTextDocumentsStub.returns([]);
let handler: (d: TextDocument) => void = () => {
/* do nothing */
};
onDidSaveTextDocumentStub.callsFake((callback) => {
handler = callback;
return new FakeDisposable();
});
const someFile = getSomeFile();
registerPyProjectTomlFeatures(disposables);
assert.ok(executeCommandStub.calledWithExactly('setContext', 'pipInstallableToml', false));
executeCommandStub.reset();
handler(someFile.object);
assert.ok(executeCommandStub.notCalled);
});
});