forked from ReactiveX/rxjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimeout-spec.ts
148 lines (119 loc) · 5.38 KB
/
timeout-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
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
import { expect } from 'chai';
import { hot, cold, expectObservable, expectSubscriptions } from '../helpers/marble-testing';
import { timeout, mergeMap } from 'rxjs/operators';
import { TestScheduler } from 'rxjs/testing';
import { TimeoutError, of } from 'rxjs';
declare function asDiagram(arg: string): Function;
declare const rxTestScheduler: TestScheduler;
/** @test {timeout} */
describe('timeout operator', () => {
const defaultTimeoutError = new TimeoutError();
asDiagram('timeout(50)')('should timeout after a specified timeout period', () => {
const e1 = cold('-------a--b--|');
const e1subs = '^ ! ';
const expected = '-----# ';
const result = e1.pipe(timeout(50, rxTestScheduler));
expectObservable(result).toBe(expected, null, defaultTimeoutError);
expectSubscriptions(e1.subscriptions).toBe(e1subs);
});
it('should emit and error of an instanceof TimeoutError on timeout', () => {
const e1 = cold('-------a--b--|');
const result = e1.pipe(timeout(50, rxTestScheduler));
let error;
result.subscribe(() => {
throw new Error('this should not next');
}, err => {
error = err;
}, () => {
throw new Error('this should not complete');
});
rxTestScheduler.flush();
expect(error).to.be.an.instanceof(TimeoutError);
expect(error).to.have.property('name', 'TimeoutError');
});
it('should not timeout if source completes within absolute timeout period', () => {
const e1 = hot('--a--b--c--d--e--|');
const e1subs = '^ !';
const expected = '--a--b--c--d--e--|';
const timeoutValue = new Date(rxTestScheduler.now() + (expected.length + 2) * 10);
expectObservable(e1.pipe(timeout(timeoutValue, rxTestScheduler))).toBe(expected);
expectSubscriptions(e1.subscriptions).toBe(e1subs);
});
it('should not timeout if source emits within timeout period', () => {
const e1 = hot('--a--b--c--d--e--|');
const e1subs = '^ !';
const expected = '--a--b--c--d--e--|';
expectObservable(e1.pipe(timeout(50, rxTestScheduler))).toBe(expected);
expectSubscriptions(e1.subscriptions).toBe(e1subs);
});
it('should allow unsubscribing explicitly and early', () => {
const e1 = hot('--a--b--c---d--e--|');
const unsub = ' ! ';
const e1subs = '^ ! ';
const expected = '--a--b--c-- ';
const result = e1.pipe(timeout(50, rxTestScheduler));
expectObservable(result, unsub).toBe(expected);
expectSubscriptions(e1.subscriptions).toBe(e1subs);
});
it('should not break unsubscription chains when result is unsubscribed explicitly', () => {
const e1 = hot('--a--b--c---d--e--|');
const e1subs = '^ ! ';
const expected = '--a--b--c-- ';
const unsub = ' ! ';
const result = e1.pipe(
mergeMap((x: string) => of(x)),
timeout(50, rxTestScheduler),
mergeMap((x: string) => of(x))
);
expectObservable(result, unsub).toBe(expected);
expectSubscriptions(e1.subscriptions).toBe(e1subs);
});
it('should timeout after a specified timeout period between emit with default ' +
'error while source emits', () => {
const e1 = hot('---a---b---c------d---e---|');
const e1subs = '^ ! ';
const expected = '---a---b---c----# ';
const values = {a: 'a', b: 'b', c: 'c'};
const result = e1.pipe(timeout(50, rxTestScheduler));
expectObservable(result).toBe(expected, values, defaultTimeoutError);
expectSubscriptions(e1.subscriptions).toBe(e1subs);
});
it('should timeout at a specified Date', () => {
const e1 = cold('-');
const e1subs = '^ !';
const expected = '----------#';
const result = e1.pipe(timeout(new Date(rxTestScheduler.now() + 100), rxTestScheduler));
expectObservable(result).toBe(expected, null, defaultTimeoutError);
expectSubscriptions(e1.subscriptions).toBe(e1subs);
});
it('should timeout specified Date with default error while source emits', () => {
const e1 = hot('--a--b--c--d--e--|');
const e1subs = '^ ! ';
const expected = '--a--b--c-# ';
const values = {a: 'a', b: 'b', c: 'c'};
const result = e1.pipe(timeout(new Date(rxTestScheduler.now() + 100), rxTestScheduler));
expectObservable(result).toBe(expected, values, defaultTimeoutError);
expectSubscriptions(e1.subscriptions).toBe(e1subs);
});
it('should unsubscribe from the scheduled timeout action when timeout is unsubscribed early', () => {
const e1 = hot('--a--b--c---d--e--|');
const e1subs = '^ ! ';
const expected = '--a--b--c-- ';
const unsub = ' ! ';
const result = e1
.lift({
call: (timeoutSubscriber, source) => {
const { action } = <any> timeoutSubscriber; // get a ref to the action here
timeoutSubscriber.add(() => { // because it'll be null by the
if (!action.closed) { // time we get into this function.
throw new Error('TimeoutSubscriber scheduled action wasn\'t canceled');
}
});
return source.subscribe(timeoutSubscriber);
}
})
.pipe(timeout(50, rxTestScheduler));
expectObservable(result, unsub).toBe(expected);
expectSubscriptions(e1.subscriptions).toBe(e1subs);
});
});