forked from ReactiveX/rxjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Subscriber-spec.ts
100 lines (78 loc) · 2.28 KB
/
Subscriber-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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import { expect } from 'chai';
import { SafeSubscriber } from 'rxjs/internal/Subscriber';
import { Subscriber } from 'rxjs';
/** @test {Subscriber} */
describe('Subscriber', () => {
it('should ignore next messages after unsubscription', () => {
let times = 0;
const sub = new Subscriber({
next() { times += 1; }
});
sub.next();
sub.next();
sub.unsubscribe();
sub.next();
expect(times).to.equal(2);
});
it('should wrap unsafe observers in a safe subscriber', () => {
const observer = {
next(x: any) { /* noop */ },
error(err: any) { /* noop */ },
complete() { /* noop */ }
};
const subscriber = new Subscriber(observer);
expect((subscriber as any).destination).not.to.equal(observer);
expect((subscriber as any).destination).to.be.an.instanceof(SafeSubscriber);
});
it('should ignore error messages after unsubscription', () => {
let times = 0;
let errorCalled = false;
const sub = new Subscriber({
next() { times += 1; },
error() { errorCalled = true; }
});
sub.next();
sub.next();
sub.unsubscribe();
sub.next();
sub.error();
expect(times).to.equal(2);
expect(errorCalled).to.be.false;
});
it('should ignore complete messages after unsubscription', () => {
let times = 0;
let completeCalled = false;
const sub = new Subscriber({
next() { times += 1; },
complete() { completeCalled = true; }
});
sub.next();
sub.next();
sub.unsubscribe();
sub.next();
sub.complete();
expect(times).to.equal(2);
expect(completeCalled).to.be.false;
});
it('should not be closed when other subscriber with same observer instance completes', () => {
const observer = {
next: function () { /*noop*/ }
};
const sub1 = new Subscriber(observer);
const sub2 = new Subscriber(observer);
sub2.complete();
expect(sub1.closed).to.be.false;
expect(sub2.closed).to.be.true;
});
it('should call complete observer without any arguments', () => {
let argument: Array<any> = null;
const observer = {
complete: (...args: Array<any>) => {
argument = args;
}
};
const sub1 = new Subscriber(observer);
sub1.complete();
expect(argument).to.have.lengthOf(0);
});
});