This repository has been archived by the owner on Apr 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
mock.ts
442 lines (420 loc) · 11.7 KB
/
mock.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
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
/** This module is browser compatible. */
/** An error related to spying on a function or instance method. */
export class MockError extends Error {
constructor(message: string) {
super(message);
this.name = "MockError";
}
}
/** Call information recorded by a spy. */
export interface SpyCall<
// deno-lint-ignore no-explicit-any
Self = any,
// deno-lint-ignore no-explicit-any
Args extends unknown[] = any[],
// deno-lint-ignore no-explicit-any
Return = any,
> {
/** Arguments passed to a function when called. */
args: Args;
/** The value that was returned by a function. */
returned?: Return;
/** The error value that was thrown by a function. */
error?: Error;
/** The instance that a method was called on. */
self?: Self;
}
/** A function or instance method wrapper that records all calls made to it. */
export interface Spy<
// deno-lint-ignore no-explicit-any
Self = any,
// deno-lint-ignore no-explicit-any
Args extends unknown[] = any[],
// deno-lint-ignore no-explicit-any
Return = any,
> {
(this: Self, ...args: Args): Return;
/** The function that is being spied on. */
original: (this: Self, ...args: Args) => Return;
/** Information about calls made to the function or instance method. */
calls: SpyCall<Self, Args, Return>[];
/** Whether or not the original instance method has been restored. */
restored: boolean;
/** If spying on an instance method, this restores the original instance method. */
restore(): void;
}
/** Wraps a function with a Spy. */
function functionSpy<
// deno-lint-ignore no-explicit-any
Self = any,
// deno-lint-ignore no-explicit-any
Args extends unknown[] = any[],
Return = undefined,
>(): Spy<Self, Args, Return>;
function functionSpy<
Self,
Args extends unknown[],
Return,
>(func: (this: Self, ...args: Args) => Return): Spy<Self, Args, Return>;
function functionSpy<
Self,
Args extends unknown[],
Return,
>(func?: (this: Self, ...args: Args) => Return): Spy<Self, Args, Return> {
const original = func ?? (() => {}) as (this: Self, ...args: Args) => Return,
calls: SpyCall<Self, Args, Return>[] = [];
const spy = function (this: Self, ...args: Args): Return {
const call: SpyCall<Self, Args, Return> = { args };
if (this) call.self = this;
try {
call.returned = original.apply(this, args);
} catch (error) {
call.error = error;
calls.push(call);
throw error;
}
calls.push(call);
return call.returned;
} as Spy<Self, Args, Return>;
Object.defineProperties(spy, {
original: {
enumerable: true,
value: original,
},
calls: {
enumerable: true,
value: calls,
},
restored: {
enumerable: true,
get: () => false,
},
restore: {
enumerable: true,
value: () => {
throw new MockError("function cannot be restored");
},
},
});
return spy;
}
/** Checks if a function is a spy. */
function isSpy<Self, Args extends unknown[], Return>(
func: ((this: Self, ...args: Args) => Return) | unknown,
): func is Spy<Self, Args, Return> {
const spy = func as Spy<Self, Args, Return>;
return typeof spy === "function" &&
typeof spy.original === "function" &&
typeof spy.restored === "boolean" &&
typeof spy.restore === "function" &&
Array.isArray(spy.calls);
}
// deno-lint-ignore no-explicit-any
const sessions: Set<Spy<any, any[], any>>[] = [];
// deno-lint-ignore no-explicit-any
function getSession(): Set<Spy<any, any[], any>> {
if (sessions.length === 0) sessions.push(new Set());
return sessions[sessions.length - 1];
}
// deno-lint-ignore no-explicit-any
function registerMock(spy: Spy<any, any[], any>): void {
const session = getSession();
session.add(spy);
}
// deno-lint-ignore no-explicit-any
function unregisterMock(spy: Spy<any, any[], any>): void {
const session = getSession();
session.delete(spy);
}
/**
* Creates a session that tracks all mocks created before it's restored.
* If a callback is provided, it restores all mocks created within it.
*/
export function mockSession(): number;
export function mockSession<
Self,
Args extends unknown[],
Return,
>(
func: (this: Self, ...args: Args) => Return,
): (this: Self, ...args: Args) => Return;
export function mockSession<
Self,
Args extends unknown[],
Return,
>(
func?: (this: Self, ...args: Args) => Return,
): number | ((this: Self, ...args: Args) => Return) {
if (func) {
return function (this: Self, ...args: Args): Return {
const id = sessions.length;
sessions.push(new Set());
try {
return func.apply(this, args);
} finally {
restore(id);
}
};
} else {
sessions.push(new Set());
return sessions.length - 1;
}
}
/** Creates an async session that tracks all mocks created before the promise resolves. */
export function mockSessionAsync<
Self,
Args extends unknown[],
Return,
>(
func: (this: Self, ...args: Args) => Promise<Return>,
): (this: Self, ...args: Args) => Promise<Return> {
return async function (this: Self, ...args: Args): Promise<Return> {
const id = sessions.length;
sessions.push(new Set());
try {
return await func.apply(this, args);
} finally {
restore(id);
}
};
}
/**
* Restores all mocks registered in the current session that have not already been restored.
* If an id is provided, it will restore all mocks registered in the session associed with that id that have not already been restored.
*/
export function restore(id?: number): void {
id ??= (sessions.length || 1) - 1;
while (id < sessions.length) {
const session = sessions.pop();
if (session) {
for (const value of session) {
value.restore();
}
}
}
}
/** Wraps an instance method with a Spy. */
function methodSpy<
Self,
Args extends unknown[],
Return,
>(self: Self, property: keyof Self): Spy<Self, Args, Return> {
if (typeof self[property] !== "function") {
throw new MockError("property is not an instance method");
}
if (isSpy(self[property])) {
throw new MockError("already spying on instance method");
}
const propertyDescriptor = Object.getOwnPropertyDescriptor(self, property);
if (propertyDescriptor && !propertyDescriptor.configurable) {
throw new MockError("cannot spy on non configurable instance method");
}
const original = self[property] as unknown as (
this: Self,
...args: Args
) => Return,
calls: SpyCall<Self, Args, Return>[] = [];
let restored = false;
const spy = function (this: Self, ...args: Args): Return {
const call: SpyCall<Self, Args, Return> = { args };
if (this) call.self = this;
try {
call.returned = original.apply(this, args);
} catch (error) {
call.error = error;
calls.push(call);
throw error;
}
calls.push(call);
return call.returned;
} as Spy<Self, Args, Return>;
Object.defineProperties(spy, {
original: {
enumerable: true,
value: original,
},
calls: {
enumerable: true,
value: calls,
},
restored: {
enumerable: true,
get: () => restored,
},
restore: {
enumerable: true,
value: () => {
if (restored) {
throw new MockError("instance method already restored");
}
if (propertyDescriptor) {
Object.defineProperty(self, property, propertyDescriptor);
} else {
delete self[property];
}
restored = true;
unregisterMock(spy);
},
},
});
Object.defineProperty(self, property, {
configurable: true,
enumerable: propertyDescriptor?.enumerable,
writable: propertyDescriptor?.writable,
value: spy,
});
registerMock(spy);
return spy;
}
/**
* Wraps a function or instance method with a Spy.
*
* @deprecated Use https://deno.land/std/testing/mock.ts instead.
*/
export function spy<
// deno-lint-ignore no-explicit-any
Self = any,
// deno-lint-ignore no-explicit-any
Args extends unknown[] = any[],
Return = undefined,
>(): Spy<Self, Args, Return>;
export function spy<
Self,
Args extends unknown[],
Return,
>(func: (this: Self, ...args: Args) => Return): Spy<Self, Args, Return>;
export function spy<
Self,
Args extends unknown[],
Return,
>(self: Self, property: keyof Self): Spy<Self, Args, Return>;
export function spy<
Self,
Args extends unknown[],
Return,
>(
funcOrSelf?: ((this: Self, ...args: Args) => Return) | Self,
property?: keyof Self,
): Spy<Self, Args, Return> {
const spy = typeof property !== "undefined"
? methodSpy<Self, Args, Return>(funcOrSelf as Self, property)
: typeof funcOrSelf === "function"
? functionSpy<Self, Args, Return>(
funcOrSelf as (this: Self, ...args: Args) => Return,
)
: functionSpy<Self, Args, Return>();
return spy;
}
/** An instance method replacement that records all calls made to it. */
export interface Stub<
// deno-lint-ignore no-explicit-any
Self = any,
// deno-lint-ignore no-explicit-any
Args extends unknown[] = any[],
// deno-lint-ignore no-explicit-any
Return = any,
> extends Spy<Self, Args, Return> {
/** The function that is used instead of the original. */
fake: (this: Self, ...args: Args) => Return;
}
/**
* Replaces an instance method with a Stub.
*
* @deprecated Use https://deno.land/std/testing/mock.ts instead.
*/
export function stub<
Self,
// deno-lint-ignore no-explicit-any
Args extends unknown[] = any[],
Return = undefined,
>(self: Self, property: keyof Self): Stub<Self, Args, Return>;
export function stub<
Self,
Args extends unknown[],
Return,
>(
self: Self,
property: keyof Self,
func: (this: Self, ...args: Args) => Return,
): Stub<Self, Args, Return>;
export function stub<
Self,
Args extends unknown[],
Return,
>(
self: Self,
property: keyof Self,
func?: (this: Self, ...args: Args) => Return,
): Stub<Self, Args, Return> {
if (typeof self[property] !== "function") {
throw new MockError("property is not an instance method");
}
if (isSpy(self[property])) {
throw new MockError("already spying on instance method");
}
const propertyDescriptor = Object.getOwnPropertyDescriptor(self, property);
if (propertyDescriptor && !propertyDescriptor.configurable) {
throw new MockError("cannot spy on non configurable instance method");
}
const fake = func ?? (() => {}) as (this: Self, ...args: Args) => Return;
const original = self[property] as unknown as (
this: Self,
...args: Args
) => Return,
calls: SpyCall<Self, Args, Return>[] = [];
let restored = false;
const stub = function (this: Self, ...args: Args): Return {
const call: SpyCall<Self, Args, Return> = { args };
if (this) call.self = this;
try {
call.returned = fake.apply(this, args);
} catch (error) {
call.error = error;
calls.push(call);
throw error;
}
calls.push(call);
return call.returned;
} as Stub<Self, Args, Return>;
Object.defineProperties(stub, {
original: {
enumerable: true,
value: original,
},
fake: {
enumerable: true,
value: fake,
},
calls: {
enumerable: true,
value: calls,
},
restored: {
enumerable: true,
get: () => restored,
},
restore: {
enumerable: true,
value: () => {
if (restored) {
throw new MockError("instance method already restored");
}
if (propertyDescriptor) {
Object.defineProperty(self, property, propertyDescriptor);
} else {
delete self[property];
}
restored = true;
unregisterMock(stub);
},
},
});
Object.defineProperty(self, property, {
configurable: true,
enumerable: propertyDescriptor?.enumerable,
writable: propertyDescriptor?.writable,
value: stub,
});
registerMock(stub);
return stub;
}