forked from ReactiveX/rxjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSubscriber-spec.ts
86 lines (69 loc) · 1.83 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
import {expect} from 'chai';
import * as sinon from 'sinon';
import * as Rx from '../dist/cjs/Rx';
const Subscriber = Rx.Subscriber;
/** @test {Subscriber} */
describe('Subscriber', () => {
describe('when created through create()', () => {
it('should not call error() if next() handler throws an error', () => {
const errorSpy = sinon.spy();
const completeSpy = sinon.spy();
const subscriber = Subscriber.create(
(value: any) => {
if (value === 2) {
throw 'error!';
}
},
errorSpy,
completeSpy
);
subscriber.next(1);
expect(() => {
subscriber.next(2);
}).to.throw('error!');
expect(errorSpy).not.have.been.called;
expect(completeSpy).not.have.been.called;
});
});
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 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;
});
});