forked from ReactiveX/rxjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathretry-spec.ts
212 lines (179 loc) · 6.53 KB
/
retry-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
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
import {expect} from 'chai';
import * as Rx from '../../dist/cjs/Rx';
declare const {hot, cold, asDiagram, expectObservable, expectSubscriptions};
const Observable = Rx.Observable;
/** @test {retry} */
describe('Observable.prototype.retry', () => {
asDiagram('retry(2)')('should handle a basic source that emits next then errors, count=3', () => {
const source = cold('--1-2-3-#');
const subs = ['^ ! ',
' ^ ! ',
' ^ !'];
const expected = '--1-2-3---1-2-3---1-2-3-#';
const result = source.retry(2);
expectObservable(result).toBe(expected);
expectSubscriptions(source.subscriptions).toBe(subs);
});
it('should retry a number of times, without error, then complete', (done: MochaDone) => {
let errors = 0;
const retries = 2;
Observable.create((observer: Rx.Observer<number>) => {
observer.next(42);
observer.complete();
})
.map((x: any) => {
if (++errors < retries) {
throw 'bad';
}
errors = 0;
return x;
})
.retry(retries)
.subscribe(
(x: number) => {
expect(x).to.equal(42);
},
(err: any) => {
expect('this was called').to.be.true;
}, done);
});
it('should retry a number of times, then call error handler', (done: MochaDone) => {
let errors = 0;
const retries = 2;
Observable.create((observer: Rx.Observer<number>) => {
observer.next(42);
observer.complete();
})
.map((x: any) => {
errors += 1;
throw 'bad';
})
.retry(retries - 1)
.subscribe(
(x: number) => {
expect(x).to.equal(42);
},
(err: any) => {
expect(errors).to.equal(2);
done();
}, () => {
expect('this was called').to.be.true;
});
});
it('should retry until successful completion', (done: MochaDone) => {
let errors = 0;
const retries = 10;
Observable.create((observer: Rx.Observer<number>) => {
observer.next(42);
observer.complete();
})
.map((x: any) => {
if (++errors < retries) {
throw 'bad';
}
errors = 0;
return x;
})
.retry()
.take(retries)
.subscribe(
(x: number) => {
expect(x).to.equal(42);
},
(err: any) => {
expect('this was called').to.be.true;
}, done);
});
it('should handle an empty source', () => {
const source = cold('|');
const subs = '(^!)';
const expected = '|';
const result = source.retry();
expectObservable(result).toBe(expected);
expectSubscriptions(source.subscriptions).toBe(subs);
});
it('should handle a never source', () => {
const source = cold('-');
const subs = '^';
const expected = '-';
const result = source.retry();
expectObservable(result).toBe(expected);
expectSubscriptions(source.subscriptions).toBe(subs);
});
it('should return a never observable given an async just-throw source and no count', () => {
const source = cold('-#'); // important that it's not a sync error
const unsub = ' !';
const expected = '--------------------------------------';
const result = source.retry();
expectObservable(result, unsub).toBe(expected);
});
it('should handle a basic source that emits next then completes', () => {
const source = hot('--1--2--^--3--4--5---|');
const subs = '^ !';
const expected = '---3--4--5---|';
const result = source.retry();
expectObservable(result).toBe(expected);
expectSubscriptions(source.subscriptions).toBe(subs);
});
it('should handle a basic source that emits next but does not complete', () => {
const source = hot('--1--2--^--3--4--5---');
const subs = '^ ';
const expected = '---3--4--5---';
const result = source.retry();
expectObservable(result).toBe(expected);
expectSubscriptions(source.subscriptions).toBe(subs);
});
it('should handle a basic source that emits next then errors, no count', () => {
const source = cold('--1-2-3-#');
const unsub = ' !';
const subs = ['^ ! ',
' ^ ! ',
' ^ ! ',
' ^ ! ',
' ^ !'];
const expected = '--1-2-3---1-2-3---1-2-3---1-2-3---1-2-';
const result = source.retry();
expectObservable(result, unsub).toBe(expected);
expectSubscriptions(source.subscriptions).toBe(subs);
});
it('should handle a source which eventually throws, count=3, and result is ' +
'unsubscribed early', () => {
const source = cold('--1-2-3-#');
const unsub = ' ! ';
const subs = ['^ ! ',
' ^ ! '];
const expected = '--1-2-3---1-2-';
const result = source.retry(3);
expectObservable(result, unsub).toBe(expected);
expectSubscriptions(source.subscriptions).toBe(subs);
});
it('should not break unsubscription chain when unsubscribed explicitly', () => {
const source = cold('--1-2-3-#');
const subs = ['^ ! ',
' ^ ! '];
const expected = '--1-2-3---1-2-';
const unsub = ' ! ';
const result = source
.mergeMap((x: string) => Observable.of(x))
.retry(100)
.mergeMap((x: string) => Observable.of(x));
expectObservable(result, unsub).toBe(expected);
expectSubscriptions(source.subscriptions).toBe(subs);
});
it('should retry a synchronous source (multicasted and refCounted) multiple times', (done: MochaDone) => {
const expected = [1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3];
Observable.of(1, 2, 3).concat(Observable.throw('bad!'))
.multicast(() => new Rx.Subject())
.refCount()
.retry(4)
.subscribe(
(x: number) => { expect(x).to.equal(expected.shift()); },
(err: any) => {
expect(err).to.equal('bad!');
expect(expected.length).to.equal(0);
done();
}, () => {
done(new Error('should not be called'));
});
});
});