-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathutils.spec.ts
96 lines (84 loc) · 2.95 KB
/
utils.spec.ts
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
import { expect } from 'chai';
import { npmPackageSha256 } from './utils';
import sinon from 'sinon';
import crypto from 'crypto';
describe('Homebrew utils', function () {
describe('npmPackageSha256', function () {
it('computes the correct sha', async function () {
const url = 'https://registry.npmjs.org/@mongosh/cli-repl/0.6.1';
const expectedSha =
'3721ea662cd3775373d4d70f7593993564563d9379704896478db1d63f6c8470';
expect(await npmPackageSha256(url)).to.equal(expectedSha);
});
describe('when response sha mismatches', function () {
const fakeTarball = Buffer.from('mongosh-2.4.2.tgz');
const fakeTarballShasum = crypto
.createHash('sha1')
.update(fakeTarball)
.digest('hex');
it('retries', async function () {
const httpGet = sinon.stub();
httpGet
.withArgs(
'https://registry.npmjs.org/@mongosh/cli-repl/2.4.2',
'json'
)
.resolves({
dist: {
tarball:
'https://registry.npmjs.org/@mongosh/cli-repl/-/cli-repl-2.4.2.tgz',
shasum: fakeTarballShasum,
},
});
httpGet
.withArgs(
'https://registry.npmjs.org/@mongosh/cli-repl/-/cli-repl-2.4.2.tgz',
'binary'
)
.onFirstCall()
.resolves(Buffer.from('mongosh-2.4.2-incomplete.tgz')) // Simulate incomplete/wrong binary download
.onSecondCall()
.resolves(fakeTarball);
const sha = await npmPackageSha256(
'https://registry.npmjs.org/@mongosh/cli-repl/2.4.2',
httpGet
);
expect(sha).to.equal(
crypto.createHash('sha256').update(fakeTarball).digest('hex')
);
});
it('throws if retries are exhausted', async function () {
const httpGet = sinon.stub();
httpGet
.withArgs(
'https://registry.npmjs.org/@mongosh/cli-repl/2.4.2',
'json'
)
.resolves({
dist: {
tarball:
'https://registry.npmjs.org/@mongosh/cli-repl/-/cli-repl-2.4.2.tgz',
shasum: fakeTarballShasum,
},
});
httpGet
.withArgs(
'https://registry.npmjs.org/@mongosh/cli-repl/-/cli-repl-2.4.2.tgz',
'binary'
)
.resolves(Buffer.from('mongosh-2.4.2-incomplete.tgz')); // Simulate incomplete/wrong binary download
const incompleteTarballShasum = crypto
.createHash('sha1')
.update(Buffer.from('mongosh-2.4.2-incomplete.tgz'))
.digest('hex');
const err = await npmPackageSha256(
'https://registry.npmjs.org/@mongosh/cli-repl/2.4.2',
httpGet
).catch((e) => e);
expect(err.message).to.equal(
`shasum mismatch: expected '${fakeTarballShasum}', got '${incompleteTarballShasum}'`
);
});
});
});
});