-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathObservable.test.ts
312 lines (290 loc) · 7.03 KB
/
Observable.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
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
import { assertEquals, assert } from "https://deno.land/std/testing/asserts.ts";
import { Observable } from "../Observable.ts";
import { isSubscription } from "../utils.ts";
function expectFullObserver(val: any) {
assertEquals(typeof val, "object");
assertEquals(typeof val.next, "function");
assertEquals(typeof val.error, "function");
assertEquals(typeof val.complete, "function");
assertEquals(typeof val.closed, "boolean");
}
Deno.test({
name: `
Observable:
it should be constructed with a subscriber function
`,
fn() {
let assertions = 0;
const source = new Observable<number>((observer) => {
expectFullObserver(observer);
observer.next(1);
observer.complete();
});
source.subscribe({
next: (value) => {
assertEquals(value, 1);
assertions += 1;
},
complete: () => assertions += 1,
});
assertEquals(assertions, 2);
},
});
Deno.test({
name: `
Observable:
it should send errors thrown in the constructor down the error path
`,
fn() {
let calls = 0;
new Observable<number>(() => {
throw new Error("this should be handled");
})
.subscribe({
error(err) {
assert(err instanceof Error);
calls += 1;
},
});
assertEquals(calls, 1);
},
});
Deno.test({
name: `
Observable.subscribe:
it should be synchronous
`,
fn() {
let subscribed = false;
let nexted: string;
let completed: boolean;
const source = new Observable<string>((observer) => {
subscribed = true;
observer.next("wee");
assertEquals(nexted, "wee");
observer.complete();
assertEquals(completed, true);
});
assertEquals(subscribed, false);
let mutatedByNext = false;
let mutatedByComplete = false;
source.subscribe({
next: (x) => {
nexted = x;
mutatedByNext = true;
},
complete: () => {
completed = true;
mutatedByComplete = true;
},
});
assertEquals(mutatedByNext, true);
assertEquals(mutatedByComplete, true);
},
});
Deno.test({
name: `
Observable.subscribe:
it should not be unsubscribed when other empty subscription completes
`,
fn() {
let unsubscribeCalled = false;
new Observable<number>(() =>
() => {
unsubscribeCalled = true;
}
).subscribe({});
assertEquals(unsubscribeCalled, false);
assertEquals(Observable.of().subscribe({}).closed, true);
assertEquals(unsubscribeCalled, false);
},
});
Deno.test({
name: `
Observable.subscribe:
it should not be unsubscribed when other subscription with same observer completes
`,
fn() {
let unsubscribeCalled = false;
const source = new Observable<number>(() => {
return () => {
unsubscribeCalled = true;
};
});
const observer = () => {};
source.subscribe(observer);
assertEquals(unsubscribeCalled, false);
assertEquals(Observable.of().subscribe(observer).closed, true);
assertEquals(unsubscribeCalled, false);
},
});
Deno.test({
name: `
Observable.subscribe:
it should return a Subscription that calls the unsubscribe function returned by the subscriber
`,
fn() {
let unsubscribeCalled = false;
const source = new Observable<number>(() => {
return () => {
unsubscribeCalled = true;
};
});
const sub = source.subscribe(() => {
//noop
});
assertEquals(isSubscription(sub), true);
assertEquals(unsubscribeCalled, false);
assertEquals(typeof sub.unsubscribe, "function");
sub.unsubscribe();
assertEquals(unsubscribeCalled, true);
},
});
Deno.test({
name: `
Observable.subscribe:
it should ignore next messages after unsubscription
`,
async fn() {
let times = 0;
await new Promise((resolve) => {
const subscription = new Observable<number>((observer) => {
let i = 0;
setTimeout(() => {
observer.next(i++);
observer.next(i++);
observer.next(i++);
});
return () => resolve();
})
.subscribe(
() => {
if (++times === 2) subscription.unsubscribe();
},
);
});
assertEquals(times, 2);
},
});
Deno.test({
name: `
Observable.subscribe:
it should ignore error messages after unsubscription
`,
async fn() {
let times = 0;
await new Promise((resolve) => {
const subscription = new Observable<number>((observer) => {
let i = 0;
setTimeout(() => {
observer.error(i++);
observer.error(i++);
observer.error(i++);
});
return () => resolve();
})
.subscribe({
error: () => {
if (++times === 2) subscription.unsubscribe();
},
});
});
assertEquals(times, 2);
},
});
Deno.test({
name: `
Observable.subscribe:
it should ignore complete messages after unsubscription
`,
async fn() {
let times = 0;
let called = false;
await new Promise((resolve) => {
const subscription = new Observable<number>((observer) => {
let i = 0;
setTimeout(() => {
observer.next(i++);
observer.next(i++);
observer.next(i++);
observer.complete();
resolve();
});
})
.subscribe({
complete: () => called = true,
next: () => {
if (++times === 2) subscription.unsubscribe();
},
});
});
assertEquals(times, 2);
assertEquals(called, false);
},
});
Deno.test({
name: `
Observable.subscribe:
it should accept an anonymous observer with just a next function
and call the next function in the context of the anonymous observer
`,
fn() {
const observer = {
calls: 0,
next(x: number) {
assertEquals(x, 1);
assertEquals(this.calls = x, 1);
},
};
Observable.of(1).subscribe(observer);
assertEquals(observer.calls, 1);
},
});
Deno.test({
name: `
Observable.subscribe:
it should accept an anonymous observer with just an error function
and call the error function in the context of the anonymous observer
`,
fn() {
const observer = {
calls: 0,
error(x: number) {
assertEquals(x, 1);
assertEquals(this.calls = x, 1);
},
};
new Observable((observer) => {
observer.error(1);
}).subscribe(observer);
assertEquals(observer.calls, 1);
},
});
Deno.test({
name: `
Observable.subscribe:
it should accept an anonymous observer with just a complete function
and call the complete function in the context of the anonymous observer
`,
fn() {
const observer = {
calls: 0,
complete() {
assertEquals(++this.calls, 1);
},
};
new Observable((observer) => {
observer.complete();
}).subscribe(observer);
assertEquals(observer.calls, 1);
},
});
Deno.test({
name: `
Observable.subscribe:
it should accept an anonymous observer with no functions at all
`,
fn() {
assert(isSubscription(Observable.of().subscribe({})));
},
});