forked from NagRock/ts-mockito
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmocking.functions.spec.ts
85 lines (62 loc) · 2.67 KB
/
mocking.functions.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
import { capture, fnmock, cmock, imock, instance, reset, resetCalls, verify, when } from "../src/ts-mockito";
class TestClass {}
if (typeof Proxy !== "undefined") {
describe("mocking", () => {
describe("mocking functions", () => {
it("should mock free functions", () => {
const fn: () => number = fnmock();
when(fn()).thenReturn(1);
expect(instance(fn)()).toEqual(1);
verify(fn()).called();
});
it("should mock functions with multiple call signatures", () => {
function FN(a: number): number;
function FN(a: string): string;
function FN(a: any) { return a; }
const fn: typeof FN = fnmock();
when(fn("a")).thenReturn("b");
when(fn(1)).thenReturn(2);
expect(instance(fn)("a")).toEqual("b");
expect(instance(fn)("b")).toBeNull();
verify(fn("a")).called();
expect(instance(fn)(1)).toEqual(2);
expect(instance(fn)(2)).toBeNull();
verify(fn(1)).called();
});
it("should match arguments of free functions", () => {
const fn: (a: string, b: number) => number = fnmock();
when(fn("a", 1)).thenReturn(1);
expect(instance(fn)("a", 1)).toEqual(1);
expect(instance(fn)("a", 2)).toBeNull();
verify(fn("a", 1)).called();
});
it("should reset mocks", () => {
const fn: () => number = fnmock();
when(fn()).thenReturn(1);
expect(instance(fn)()).toEqual(1);
reset(fn);
expect(instance(fn)()).toBeNull();
});
it("should reset calls", () => {
const fn: () => number = fnmock();
instance(fn)();
verify(fn()).once();
resetCalls(fn);
verify(fn()).never();
});
it("should capture parameters", () => {
const fn: (a: string) => void = fnmock();
instance(fn)("a");
expect(capture(fn).last()).toEqual(["a"]);
});
it("should mock constructors", () => {
const ctor: new () => TestClass = cmock();
const mockClass: TestClass = imock();
when(new ctor()).thenReturn(instance(mockClass));
const result = new (instance(ctor))();
verify(new ctor()).called();
expect(result).toBe(instance(mockClass));
});
});
});
}