-
Notifications
You must be signed in to change notification settings - Fork 93
/
mocking.getter.spec.ts
80 lines (61 loc) · 2.01 KB
/
mocking.getter.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
import {instance, mock, when} from "../src/ts-mockito";
import {Bar} from "./utils/Bar";
describe("mocking", () => {
let mockedFoo: FooWithGetterAndSetter;
let foo: FooWithGetterAndSetter;
describe("mocking object with getters and setters", () => {
it("does not execute getter or setter code (not throwing null pointer exception)", () => {
// given
// when
mockedFoo = mock(FooWithGetterAndSetter);
foo = instance(mockedFoo);
// then
});
it("does create own property descriptors on instance", () => {
// given
mockedFoo = mock(FooWithGetterAndSetter);
foo = instance(mockedFoo);
// when
when(mockedFoo.twoPlusTwo).thenReturn(42);
// then
expect(foo.twoPlusTwo).toBe(42);
});
it("does create inherited property descriptors on instance", () => {
// given
mockedFoo = mock(FooWithGetterAndSetter);
foo = instance(mockedFoo);
// when
when(mockedFoo.sampleString).thenReturn("42");
// then
expect(foo.sampleString).toBe("42");
});
});
describe("mocking object that extends abstract class", () => {
it("does not throw null pointer when reading descriptor", () => {
// given
// when
mockedFoo = mock(FooWithGetterAndSetter);
foo = instance(mockedFoo);
// then
});
});
});
abstract class SampleAbstractClass {
public get sampleString(): string {
return "sampleString";
}
}
class FooWithGetterAndSetter extends SampleAbstractClass {
constructor(private dependency: Bar) {
super();
}
public get twoPlusTwo(): number {
return this.dependency.sumTwoNumbers(2, 2);
}
public set twoPlusTwo(value: number) {
this.dependency.sumTwoNumbers(value, 0);
}
public sampleMethod(): number {
return 4;
}
}