-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathresolve.test.js
More file actions
277 lines (215 loc) · 7.91 KB
/
resolve.test.js
File metadata and controls
277 lines (215 loc) · 7.91 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
/**
* @overview Contains unit tests for the functionality to resolve executables.
* @license MIT
*/
import { testProp } from "@fast-check/ava";
import test from "ava";
import * as fc from "fast-check";
import * as ppTestKit from "pp-test-kit/simulate";
import * as sinon from "sinon";
import { resolveExecutable } from "../../../src/internal/executables.js";
import { arbitrary } from "./_.js";
test.before((t) => {
const executable = "/bin/sh";
const resolvedExecutable = "/path/to/sh";
const linkedExecutable = "/bin/bash";
t.not(executable, resolvedExecutable);
t.not(executable, linkedExecutable);
t.not(resolvedExecutable, linkedExecutable);
const env = {
PATH: "/bin:/usr/bin",
};
t.context = { env, executable, linkedExecutable, resolvedExecutable };
});
test.beforeEach((t) => {
const exists = sinon.stub().returns(true);
const readlink = sinon.stub().throws();
const which = sinon.stub();
t.context.deps = { exists, readlink, which };
});
testProp(
"env.PATH is defined",
[arbitrary.env({ keys: ["PATH", "Path"] }), fc.string()],
(t, env, envPath) => {
t.context.deps.which.resetHistory();
env.PATH = envPath;
const { executable } = t.context;
const args = { env, executable };
resolveExecutable(args, t.context.deps);
t.is(t.context.deps.which.callCount, 1);
t.true(
t.context.deps.which.calledWithExactly(sinon.match.any, {
path: env.PATH,
}),
);
},
);
testProp(
"env.Path is defined (not env.PATH)",
[arbitrary.env({ keys: ["PATH", "Path"] }), fc.string()],
(t, env, envPath) => {
t.context.deps.which.resetHistory();
delete env.PATH;
env.Path = envPath;
const { executable } = t.context;
const args = { env, executable };
resolveExecutable(args, t.context.deps);
t.is(t.context.deps.which.callCount, 1);
t.true(
t.context.deps.which.calledWithExactly(sinon.match.any, {
path: env.Path,
}),
);
},
);
testProp("env.PATH and env.Path are missing", [arbitrary.env()], (t, env) => {
t.context.deps.which.resetHistory();
delete env.PATH;
delete env.Path;
const { executable } = t.context;
const args = { env, executable };
resolveExecutable(args, t.context.deps);
t.is(t.context.deps.which.callCount, 1);
t.true(
t.context.deps.which.calledWithExactly(sinon.match.any, {
path: undefined,
}),
);
});
testProp(
"env.PATH is polluted",
[
arbitrary.env({ keys: ["PATH", "Path"] }),
fc.constantFrom("PATH", "Path"),
fc.string(),
],
(t, env, pathName, prototypePath) => {
fc.pre(env.PATH !== prototypePath && env.Path !== prototypePath);
t.context.deps.which.resetHistory();
env = ppTestKit.simulatePollution(env, {
property: pathName,
value: prototypePath,
});
const { executable } = t.context;
const args = { env, executable };
resolveExecutable(args, t.context.deps);
t.is(t.context.deps.which.callCount, 1);
t.false(
t.context.deps.which.calledWithExactly(sinon.match.any, {
path: prototypePath,
}),
);
},
);
test("the executable cannot be resolved", (t) => {
const { env, executable } = t.context;
const args = { env, executable };
t.context.deps.which.throws();
t.throws(() => resolveExecutable(args, t.context.deps), {
instanceOf: Error,
message: `No executable could be found for ${executable}`,
});
t.is(t.context.deps.which.callCount, 1);
t.true(t.context.deps.which.calledWithExactly(executable, sinon.match.any));
t.is(t.context.deps.exists.callCount, 0);
t.is(t.context.deps.readlink.callCount, 0);
});
test("the executable doesn't exist", (t) => {
const { env, executable, resolvedExecutable } = t.context;
const args = { env, executable };
t.context.deps.exists.returns(false);
t.context.deps.which.returns(resolvedExecutable);
t.throws(() => resolveExecutable(args, t.context.deps), {
instanceOf: Error,
message: `No executable could be found for ${executable}`,
});
t.is(t.context.deps.exists.callCount, 1);
t.true(t.context.deps.exists.calledWithExactly(resolvedExecutable));
t.is(t.context.deps.which.callCount, 1);
t.is(t.context.deps.readlink.callCount, 0);
});
test("the executable exists and is not a (sym)link", (t) => {
const { env, executable, resolvedExecutable } = t.context;
const args = { env, executable };
t.context.deps.exists.returns(true);
t.context.deps.readlink.throws();
t.context.deps.which.returns(resolvedExecutable);
const result = resolveExecutable(args, t.context.deps);
t.is(result, resolvedExecutable);
t.is(t.context.deps.readlink.callCount, 1);
t.true(t.context.deps.exists.calledWithExactly(resolvedExecutable));
t.is(t.context.deps.which.callCount, 1);
t.is(t.context.deps.exists.callCount, 1);
});
test("the executable exists and is a (sym)link", (t) => {
const { env, executable, linkedExecutable, resolvedExecutable } = t.context;
const args = { env, executable };
t.context.deps.exists.returns(true);
t.context.deps.which.returns(resolvedExecutable);
t.context.deps.readlink.onCall(0).returns(linkedExecutable);
t.context.deps.readlink.onCall(1).throws();
const result = resolveExecutable(args, t.context.deps);
t.is(result, linkedExecutable);
t.is(t.context.deps.readlink.callCount, 2);
t.true(t.context.deps.readlink.calledWithExactly(resolvedExecutable));
t.is(t.context.deps.which.callCount, 1);
t.is(t.context.deps.exists.callCount, 1);
});
test("the executable exists and is a (sym)link to a (sym)link (absolute)", (t) => {
const { env, executable, linkedExecutable, resolvedExecutable } = t.context;
const args = { env, executable };
const intermediaryLink = "/path/to/link-to-link";
t.context.deps.exists.returns(true);
t.context.deps.which.returns(resolvedExecutable);
t.context.deps.readlink.onCall(0).returns(intermediaryLink);
t.context.deps.readlink.onCall(1).returns(linkedExecutable);
t.context.deps.readlink.onCall(2).throws();
const result = resolveExecutable(args, t.context.deps);
t.is(result, linkedExecutable);
t.is(t.context.deps.readlink.callCount, 3);
t.true(t.context.deps.readlink.calledWithExactly(resolvedExecutable));
t.true(t.context.deps.readlink.calledWithExactly(intermediaryLink));
t.is(t.context.deps.which.callCount, 1);
t.is(t.context.deps.exists.callCount, 1);
});
test("the executable exists and is a (sym)link to a (sym)link (relative)", (t) => {
const { env, executable, linkedExecutable, resolvedExecutable } = t.context;
const args = { env, executable };
const intermediaryLink = "./link-to-link";
t.context.deps.exists.returns(true);
t.context.deps.which.returns(resolvedExecutable);
t.context.deps.readlink.onCall(0).returns(intermediaryLink);
t.context.deps.readlink.onCall(1).returns(linkedExecutable);
t.context.deps.readlink.onCall(2).throws();
const result = resolveExecutable(args, t.context.deps);
t.is(result, linkedExecutable);
t.is(t.context.deps.readlink.callCount, 3);
t.true(t.context.deps.readlink.calledWithExactly(resolvedExecutable));
t.true(t.context.deps.readlink.calledWithExactly("/path/to/link-to-link"));
t.is(t.context.deps.which.callCount, 1);
t.is(t.context.deps.exists.callCount, 1);
});
testProp(
"the executable exists but there is a link cycle",
[
fc.array(fc.stringMatching(/^\/[a-z]{2,}$/u), {
minLength: 1,
maxLength: 64,
}),
],
(t, links) => {
const { env, executable, resolvedExecutable } = t.context;
const args = { env, executable };
t.context.deps.exists.returns(true);
t.context.deps.which.returns(resolvedExecutable);
t.context.deps.readlink = sinon.stub();
for (const index in links) {
t.context.deps.readlink.onCall(index).returns(links[index]);
}
t.context.deps.readlink.onCall(links.length).returns(links[0]);
t.throws(() => resolveExecutable(args, t.context.deps), {
instanceOf: Error,
message: `${executable} points to a link loop, cannot resolve shell`,
});
},
);