-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathuvPythonInstaller.unit.test.ts
More file actions
518 lines (403 loc) · 17.4 KB
/
uvPythonInstaller.unit.test.ts
File metadata and controls
518 lines (403 loc) · 17.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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
import assert from 'assert';
import * as sinon from 'sinon';
import { LogOutputChannel } from 'vscode';
import * as childProcessApis from '../../../common/childProcess.apis';
import { Common, UvInstallStrings } from '../../../common/localize';
import * as persistentState from '../../../common/persistentState';
import { EventNames } from '../../../common/telemetry/constants';
import * as telemetrySender from '../../../common/telemetry/sender';
import * as windowApis from '../../../common/window.apis';
import * as helpers from '../../../managers/builtin/helpers';
import {
clearDontAskAgain,
getAvailablePythonVersions,
getUvPythonPath,
isDontAskAgainSet,
promptInstallPythonViaUv,
UV_INSTALL_PYTHON_DONT_ASK_KEY,
UvPythonVersion,
} from '../../../managers/builtin/uvPythonInstaller';
import { createMockLogOutputChannel } from '../../mocks/helper';
import { MockChildProcess } from '../../mocks/mockChildProcess';
suite('uvPythonInstaller - promptInstallPythonViaUv', () => {
let mockLog: LogOutputChannel;
let isUvInstalledStub: sinon.SinonStub;
let showInformationMessageStub: sinon.SinonStub;
let sendTelemetryEventStub: sinon.SinonStub;
let mockState: { get: sinon.SinonStub; set: sinon.SinonStub; clear: sinon.SinonStub };
setup(() => {
mockLog = createMockLogOutputChannel();
mockState = {
get: sinon.stub(),
set: sinon.stub().resolves(),
clear: sinon.stub().resolves(),
};
sinon.stub(persistentState, 'getGlobalPersistentState').resolves(mockState);
isUvInstalledStub = sinon.stub(helpers, 'isUvInstalled');
showInformationMessageStub = sinon.stub(windowApis, 'showInformationMessage');
sendTelemetryEventStub = sinon.stub(telemetrySender, 'sendTelemetryEvent');
});
teardown(() => {
sinon.restore();
});
test('should return undefined when "Don\'t ask again" is set', async () => {
mockState.get.resolves(true);
const result = await promptInstallPythonViaUv('activation', mockLog);
assert.strictEqual(result, undefined);
assert(showInformationMessageStub.notCalled, 'Should not show message when dont ask again is set');
assert(sendTelemetryEventStub.notCalled, 'Should not send telemetry when skipping prompt');
});
test('should show correct prompt when uv is installed', async () => {
mockState.get.resolves(false);
isUvInstalledStub.resolves(true);
showInformationMessageStub.resolves(undefined); // User dismissed
await promptInstallPythonViaUv('activation', mockLog);
assert(
showInformationMessageStub.calledWith(
UvInstallStrings.installPythonPrompt,
{ modal: true },
UvInstallStrings.installPython,
Common.dontAskAgain,
),
'Should show install Python prompt when uv is installed',
);
});
test('should show correct prompt when uv is NOT installed', async () => {
mockState.get.resolves(false);
isUvInstalledStub.resolves(false);
showInformationMessageStub.resolves(undefined); // User dismissed
await promptInstallPythonViaUv('activation', mockLog);
assert(
showInformationMessageStub.calledWith(
UvInstallStrings.installPythonAndUvPrompt,
{ modal: true },
UvInstallStrings.installPython,
Common.dontAskAgain,
),
'Should show install Python AND uv prompt when uv is not installed',
);
});
test('should set persistent state when user clicks "Don\'t ask again"', async () => {
mockState.get.resolves(false);
isUvInstalledStub.resolves(true);
showInformationMessageStub.resolves(Common.dontAskAgain);
const result = await promptInstallPythonViaUv('activation', mockLog);
assert.strictEqual(result, undefined);
assert(mockState.set.calledWith(UV_INSTALL_PYTHON_DONT_ASK_KEY, true), 'Should set dont ask flag');
});
test('should return undefined when user dismisses the dialog', async () => {
mockState.get.resolves(false);
isUvInstalledStub.resolves(true);
showInformationMessageStub.resolves(undefined); // User dismissed
const result = await promptInstallPythonViaUv('activation', mockLog);
assert.strictEqual(result, undefined);
});
test('should send telemetry with correct trigger', async () => {
mockState.get.resolves(false);
isUvInstalledStub.resolves(true);
showInformationMessageStub.resolves(undefined);
await promptInstallPythonViaUv('createEnvironment', mockLog);
assert(
sendTelemetryEventStub.calledWith(EventNames.UV_PYTHON_INSTALL_PROMPTED, undefined, {
trigger: 'createEnvironment',
}),
'Should send telemetry with createEnvironment trigger',
);
});
});
suite('uvPythonInstaller - isDontAskAgainSet and clearDontAskAgain', () => {
let mockState: { get: sinon.SinonStub; set: sinon.SinonStub; clear: sinon.SinonStub };
setup(() => {
mockState = {
get: sinon.stub(),
set: sinon.stub().resolves(),
clear: sinon.stub().resolves(),
};
sinon.stub(persistentState, 'getGlobalPersistentState').resolves(mockState);
});
teardown(() => {
sinon.restore();
});
test('isDontAskAgainSet should return true when flag is set', async () => {
mockState.get.resolves(true);
const result = await isDontAskAgainSet();
assert.strictEqual(result, true);
});
test('isDontAskAgainSet should return false when flag is not set', async () => {
mockState.get.resolves(false);
const result = await isDontAskAgainSet();
assert.strictEqual(result, false);
});
test('isDontAskAgainSet should return false when flag is undefined', async () => {
mockState.get.resolves(undefined);
const result = await isDontAskAgainSet();
assert.strictEqual(result, false);
});
test('clearDontAskAgain should set flag to false', async () => {
await clearDontAskAgain();
assert(mockState.set.calledWith(UV_INSTALL_PYTHON_DONT_ASK_KEY, false), 'Should clear the flag');
});
});
// NOTE: Installation functions (installUv, installPythonViaUv, installPythonWithUv) require
// VS Code's Task API which cannot be fully mocked in unit tests.
// These should be tested via integration tests in a real VS Code environment.
/**
* Helper to build a UvPythonVersion object for testing.
*/
function makeUvPythonVersion(overrides: Partial<UvPythonVersion> & { version: string }): UvPythonVersion {
const parts = overrides.version.split('.').map(Number);
return {
key: overrides.key ?? `cpython-${overrides.version}`,
version: overrides.version,
version_parts: overrides.version_parts ?? { major: parts[0], minor: parts[1], patch: parts[2] ?? 0 },
path: overrides.path ?? null,
url: overrides.url ?? null,
os: overrides.os ?? 'linux',
variant: overrides.variant ?? 'default',
implementation: overrides.implementation ?? 'cpython',
arch: overrides.arch ?? 'x86_64',
};
}
suite('uvPythonInstaller - getUvPythonPath', () => {
let spawnStub: sinon.SinonStub;
setup(() => {
spawnStub = sinon.stub(childProcessApis, 'spawnProcess');
});
teardown(() => {
sinon.restore();
});
test('should return the latest installed Python path when no version specified', async () => {
const versions: UvPythonVersion[] = [
makeUvPythonVersion({ version: '3.13.1', path: '/usr/bin/python3.13' }),
makeUvPythonVersion({ version: '3.12.8', path: '/usr/bin/python3.12' }),
];
const mockProcess = new MockChildProcess('uv', [
'python',
'list',
'--only-installed',
'--managed-python',
'--output-format',
'json',
]);
spawnStub.returns(mockProcess);
const resultPromise = getUvPythonPath();
setTimeout(() => {
mockProcess.stdout?.emit('data', JSON.stringify(versions));
mockProcess.emit('exit', 0, null);
}, 10);
const result = await resultPromise;
assert.strictEqual(result, '/usr/bin/python3.13', 'Should return the first (latest) installed Python');
});
test('should return matching Python path when version is specified', async () => {
const versions: UvPythonVersion[] = [
makeUvPythonVersion({ version: '3.13.1', path: '/usr/bin/python3.13' }),
makeUvPythonVersion({ version: '3.12.8', path: '/usr/bin/python3.12' }),
];
const mockProcess = new MockChildProcess('uv', [
'python',
'list',
'--only-installed',
'--managed-python',
'--output-format',
'json',
]);
spawnStub.returns(mockProcess);
const resultPromise = getUvPythonPath('3.12');
setTimeout(() => {
mockProcess.stdout?.emit('data', JSON.stringify(versions));
mockProcess.emit('exit', 0, null);
}, 10);
const result = await resultPromise;
assert.strictEqual(result, '/usr/bin/python3.12', 'Should return the matching version');
});
test('should return undefined when specified version is not found', async () => {
const versions: UvPythonVersion[] = [makeUvPythonVersion({ version: '3.13.1', path: '/usr/bin/python3.13' })];
const mockProcess = new MockChildProcess('uv', [
'python',
'list',
'--only-installed',
'--managed-python',
'--output-format',
'json',
]);
spawnStub.returns(mockProcess);
const resultPromise = getUvPythonPath('3.11');
setTimeout(() => {
mockProcess.stdout?.emit('data', JSON.stringify(versions));
mockProcess.emit('exit', 0, null);
}, 10);
const result = await resultPromise;
assert.strictEqual(result, undefined, 'Should return undefined when version not found');
});
test('should return undefined when no Pythons are installed', async () => {
const mockProcess = new MockChildProcess('uv', [
'python',
'list',
'--only-installed',
'--managed-python',
'--output-format',
'json',
]);
spawnStub.returns(mockProcess);
const resultPromise = getUvPythonPath();
setTimeout(() => {
mockProcess.stdout?.emit('data', JSON.stringify([]));
mockProcess.emit('exit', 0, null);
}, 10);
const result = await resultPromise;
assert.strictEqual(result, undefined, 'Should return undefined for empty versions list');
});
test('should return undefined when process exits with non-zero code', async () => {
const mockProcess = new MockChildProcess('uv', [
'python',
'list',
'--only-installed',
'--managed-python',
'--output-format',
'json',
]);
spawnStub.returns(mockProcess);
const resultPromise = getUvPythonPath();
setTimeout(() => {
mockProcess.emit('exit', 1, null);
}, 10);
const result = await resultPromise;
assert.strictEqual(result, undefined, 'Should return undefined on non-zero exit');
});
test('should return undefined when process emits error', async () => {
const mockProcess = new MockChildProcess('uv', [
'python',
'list',
'--only-installed',
'--managed-python',
'--output-format',
'json',
]);
spawnStub.returns(mockProcess);
const resultPromise = getUvPythonPath();
setTimeout(() => {
mockProcess.emit('error', new Error('spawn uv ENOENT'));
}, 10);
const result = await resultPromise;
assert.strictEqual(result, undefined, 'Should return undefined on process error');
});
test('should return undefined when output is invalid JSON', async () => {
const mockProcess = new MockChildProcess('uv', [
'python',
'list',
'--only-installed',
'--managed-python',
'--output-format',
'json',
]);
spawnStub.returns(mockProcess);
const resultPromise = getUvPythonPath();
setTimeout(() => {
mockProcess.stdout?.emit('data', 'not valid json{{{');
mockProcess.emit('exit', 0, null);
}, 10);
const result = await resultPromise;
assert.strictEqual(result, undefined, 'Should return undefined on JSON parse failure');
});
test('should skip versions without a path', async () => {
const versions: UvPythonVersion[] = [
makeUvPythonVersion({ version: '3.13.1', path: null }),
makeUvPythonVersion({ version: '3.12.8', path: '/usr/bin/python3.12' }),
];
const mockProcess = new MockChildProcess('uv', [
'python',
'list',
'--only-installed',
'--managed-python',
'--output-format',
'json',
]);
spawnStub.returns(mockProcess);
const resultPromise = getUvPythonPath();
setTimeout(() => {
mockProcess.stdout?.emit('data', JSON.stringify(versions));
mockProcess.emit('exit', 0, null);
}, 10);
const result = await resultPromise;
assert.strictEqual(result, '/usr/bin/python3.12', 'Should skip entries with null path');
});
test('should handle chunked stdout data', async () => {
const versions: UvPythonVersion[] = [makeUvPythonVersion({ version: '3.13.1', path: '/usr/bin/python3.13' })];
const fullJson = JSON.stringify(versions);
const mid = Math.floor(fullJson.length / 2);
const mockProcess = new MockChildProcess('uv', [
'python',
'list',
'--only-installed',
'--managed-python',
'--output-format',
'json',
]);
spawnStub.returns(mockProcess);
const resultPromise = getUvPythonPath();
setTimeout(() => {
mockProcess.stdout?.emit('data', fullJson.slice(0, mid));
mockProcess.stdout?.emit('data', fullJson.slice(mid));
mockProcess.emit('exit', 0, null);
}, 10);
const result = await resultPromise;
assert.strictEqual(result, '/usr/bin/python3.13', 'Should correctly reassemble chunked data');
});
});
suite('uvPythonInstaller - getAvailablePythonVersions', () => {
let spawnStub: sinon.SinonStub;
setup(() => {
spawnStub = sinon.stub(childProcessApis, 'spawnProcess');
});
teardown(() => {
sinon.restore();
});
test('should return all versions from uv python list', async () => {
const versions: UvPythonVersion[] = [
makeUvPythonVersion({ version: '3.13.1', path: '/usr/bin/python3.13' }),
makeUvPythonVersion({ version: '3.12.8', path: null }),
];
const mockProcess = new MockChildProcess('uv', ['python', 'list', '--output-format', 'json']);
spawnStub.returns(mockProcess);
const resultPromise = getAvailablePythonVersions();
setTimeout(() => {
mockProcess.stdout?.emit('data', JSON.stringify(versions));
mockProcess.emit('exit', 0, null);
}, 10);
const result = await resultPromise;
assert.strictEqual(result.length, 2, 'Should return all versions');
assert.strictEqual(result[0].version, '3.13.1');
assert.strictEqual(result[1].version, '3.12.8');
});
test('should return empty array on process error', async () => {
const mockProcess = new MockChildProcess('uv', ['python', 'list', '--output-format', 'json']);
spawnStub.returns(mockProcess);
const resultPromise = getAvailablePythonVersions();
setTimeout(() => {
mockProcess.emit('error', new Error('spawn uv ENOENT'));
}, 10);
const result = await resultPromise;
assert.deepStrictEqual(result, [], 'Should return empty array on error');
});
test('should return empty array on non-zero exit code', async () => {
const mockProcess = new MockChildProcess('uv', ['python', 'list', '--output-format', 'json']);
spawnStub.returns(mockProcess);
const resultPromise = getAvailablePythonVersions();
setTimeout(() => {
mockProcess.emit('exit', 1, null);
}, 10);
const result = await resultPromise;
assert.deepStrictEqual(result, [], 'Should return empty array on non-zero exit');
});
test('should return empty array on invalid JSON output', async () => {
const mockProcess = new MockChildProcess('uv', ['python', 'list', '--output-format', 'json']);
spawnStub.returns(mockProcess);
const resultPromise = getAvailablePythonVersions();
setTimeout(() => {
mockProcess.stdout?.emit('data', '{{invalid json');
mockProcess.emit('exit', 0, null);
}, 10);
const result = await resultPromise;
assert.deepStrictEqual(result, [], 'Should return empty array on JSON parse failure');
});
});