-
Notifications
You must be signed in to change notification settings - Fork 0
/
SubscriptionObserver.test.ts
131 lines (114 loc) · 2.98 KB
/
SubscriptionObserver.test.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
import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
import { SubscriptionObserver } from "../SubscriptionObserver.ts";
import { Subscription } from "../Subscription.ts";
Deno.test({
name: `
SubscriptionObserver:
it should ignore next messages after completion
`,
fn() {
let times = 0;
const subscriptionObserver = new SubscriptionObserver<void>(
new Subscription({
next: () => ++times,
}),
);
subscriptionObserver.next();
subscriptionObserver.next();
subscriptionObserver.complete();
subscriptionObserver.next();
assertEquals(times, 2);
},
});
Deno.test({
name: `
SubscriptionObserver:
it should ignore next messages after unsubscription
`,
fn() {
let times = 0;
const subscription = new Subscription({
next: () => ++times,
});
const subscriptionObserver = new SubscriptionObserver<void>(
subscription,
);
subscriptionObserver.next();
subscriptionObserver.next();
subscription.unsubscribe();
subscriptionObserver.next();
assertEquals(times, 2);
},
});
Deno.test(`
SubscriptionObserver:
it should ignore error messages after unsubscription
`, () => {
let times = 0;
let errorCalled = false;
const subscription = new Subscription({
next() {
times += 1;
},
error() {
errorCalled = true;
},
});
const subscriptionObserver = new SubscriptionObserver<void>(subscription);
subscriptionObserver.next();
subscriptionObserver.next();
subscription.unsubscribe();
subscriptionObserver.next();
subscriptionObserver.error(undefined);
assertEquals(times, 2);
assertEquals(errorCalled, false);
});
Deno.test(`
SubscriptionObserver: it should ignore complete messages after unsubscription
`, () => {
let times = 0;
let completeCalled = false;
const subscription = new Subscription({
next() {
times += 1;
},
complete() {
completeCalled = true;
},
});
const subscriptionObserver = new SubscriptionObserver<void>(subscription);
subscriptionObserver.next();
subscriptionObserver.next();
subscription.unsubscribe();
subscriptionObserver.next();
subscriptionObserver.complete();
assertEquals(times, 2);
assertEquals(completeCalled, false);
});
Deno.test(`
SubscriptionObserver:
it should not be closed when other subscriber with same observer instance completes
`, () => {
const observer = {
next() {/*noop*/},
};
const sub1 = new SubscriptionObserver(new Subscription(observer));
const sub2 = new SubscriptionObserver(new Subscription(observer));
sub2.complete();
assertEquals(sub1.closed, false);
assertEquals(sub2.closed, true);
});
Deno.test(`
SubscriptionOnserver:
it should call complete observer without any arguments
`, () => {
let argument: any[] = [];
const observer = {
complete: (...args: any[]) => {
argument = args;
},
};
const sub1 = new SubscriptionObserver(new Subscription(observer));
sub1.complete();
assertEquals(argument.length, 0);
});