forked from ReactiveX/rxjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevery-spec.ts
261 lines (202 loc) · 8.62 KB
/
every-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
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
import {expect} from 'chai';
import * as Rx from '../../dist/cjs/Rx';
declare const {hot, cold, asDiagram, expectObservable, expectSubscriptions};
const Observable = Rx.Observable;
/** @test {every} */
describe('Observable.prototype.every', () => {
function truePredicate(x) {
return true;
}
function predicate(x) {
return x % 5 === 0;
}
asDiagram('every(x => x % 5 === 0)')('should return false if only some of element matches with predicate', () => {
const source = hot('--a--b--c--d--e--|', {a: 5, b: 10, c: 15, d: 18, e: 20});
const sourceSubs = '^ ! ';
const expected = '-----------(F|) ';
expectObservable(source.every(predicate)).toBe(expected, {F: false});
expectSubscriptions(source.subscriptions).toBe(sourceSubs);
});
it('should accept thisArg with scalar observables', () => {
const thisArg = {};
Observable.of(1).every(function (value: number, index: number) {
expect(this).to.deep.equal(thisArg);
return true;
}, thisArg).subscribe();
});
it('should accept thisArg with array observables', () => {
const thisArg = {};
Observable.of(1, 2, 3, 4).every(function (value: number, index: number) {
expect(this).to.deep.equal(thisArg);
return true;
}, thisArg).subscribe();
});
it('should accept thisArg with ordinary observables', () => {
const thisArg = {};
Observable.create((observer: Rx.Observer<number>) => {
observer.next(1);
observer.complete();
})
.every(function (value: number, index: number) {
expect(this).to.deep.equal(thisArg);
}, thisArg).subscribe();
});
it('should emit true if source is empty', () => {
const source = hot('-----|');
const sourceSubs = '^ !';
const expected = '-----(x|)';
expectObservable(source.every(predicate)).toBe(expected, {x: true});
expectSubscriptions(source.subscriptions).toBe(sourceSubs);
});
it('should emit false if single source of element does not match with predicate', () => {
const source = hot('--a--|');
const sourceSubs = '^ !';
const expected = '--(x|)';
expectObservable(source.every(predicate)).toBe(expected, {x: false});
expectSubscriptions(source.subscriptions).toBe(sourceSubs);
});
it('should emit false if none of element does not match with predicate', () => {
const source = hot('--a--b--c--d--e--|');
const sourceSubs = '^ !';
const expected = '--(x|)';
expectObservable(source.every(predicate)).toBe(expected, {x: false});
expectSubscriptions(source.subscriptions).toBe(sourceSubs);
});
it('should return false if only some of element matches with predicate', () => {
const source = hot('--a--b--c--d--e--|', {a: 5, b: 10, c: 15});
const sourceSubs = '^ !';
const expected = '-----------(x|)';
expectObservable(source.every(predicate)).toBe(expected, {x: false});
expectSubscriptions(source.subscriptions).toBe(sourceSubs);
});
it('should allow unsubscribing early and explicitly', () => {
const source = hot('--a--b--c--d--e--|', {a: 5, b: 10, c: 15});
const sourceSubs = '^ ! ';
const expected = '-------- ';
const unsub = ' ! ';
const result = source.every(predicate);
expectObservable(result, unsub).toBe(expected);
expectSubscriptions(source.subscriptions).toBe(sourceSubs);
});
it('should not break unsubscription chains when result Observable is unsubscribed', () => {
const source = hot('--a--b--c--d--e--|', {a: 5, b: 10, c: 15});
const sourceSubs = '^ ! ';
const expected = '-------- ';
const unsub = ' ! ';
const result = source
.mergeMap((x: any) => Observable.of(x))
.every(predicate)
.mergeMap((x: any) => Observable.of(x));
expectObservable(result, unsub).toBe(expected);
expectSubscriptions(source.subscriptions).toBe(sourceSubs);
});
it('should propagate error if predicate eventually throws', () => {
const source = hot('--a--b--c--d--e--|');
const sourceSubs = '^ !';
const expected = '--------#';
function faultyPredicate(x) {
if (x === 'c') {
throw 'error';
} else {
return true;
}
}
expectObservable(source.every(faultyPredicate)).toBe(expected);
expectSubscriptions(source.subscriptions).toBe(sourceSubs);
});
it('should emit true if single source element match with predicate', () => {
const source = hot('--a--|', {a: 5});
const sourceSubs = '^ !';
const expected = '-----(x|)';
expectObservable(source.every(predicate)).toBe(expected, {x: true});
expectSubscriptions(source.subscriptions).toBe(sourceSubs);
});
it('should emit true if Scalar source matches with predicate', () => {
const source = Observable.of(5);
const expected = '(T|)';
expectObservable(source.every(predicate)).toBe(expected, {T: true});
});
it('should emit false if Scalar source does not match with predicate', () => {
const source = Observable.of(3);
const expected = '(F|)';
expectObservable(source.every(predicate)).toBe(expected, {F: false});
});
it('should propagate error if predicate throws on Scalar source', () => {
const source = Observable.of(3);
const expected = '#';
function faultyPredicate(x) {
throw 'error';
}
expectObservable(source.every(<any>faultyPredicate)).toBe(expected);
});
it('should emit true if Array source matches with predicate', () => {
const source = Observable.of(5, 10, 15, 20);
const expected = '(T|)';
expectObservable(source.every(predicate)).toBe(expected, {T: true});
});
it('should emit false if Array source does not match with predicate', () => {
const source = Observable.of(5, 9, 15, 20);
const expected = '(F|)';
expectObservable(source.every(predicate)).toBe(expected, {F: false});
});
it('should propagate error if predicate eventually throws on Array source', () => {
const source = Observable.of(5, 10, 15, 20);
const expected = '#';
function faultyPredicate(x) {
if (x === 15) {
throw 'error';
}
return true;
}
expectObservable(source.every(faultyPredicate)).toBe(expected);
});
it('should emit true if all source element matches with predicate', () => {
const source = hot('--a--b--c--d--e--|', {a: 5, b: 10, c: 15, d: 20, e: 25});
const sourceSubs = '^ !';
const expected = '-----------------(x|)';
expectObservable(source.every(predicate)).toBe(expected, {x: true});
expectSubscriptions(source.subscriptions).toBe(sourceSubs);
});
it('should raise error if source raises error', () => {
const source = hot('--#');
const sourceSubs = '^ !';
const expected = '--#';
expectObservable(source.every(truePredicate)).toBe(expected);
expectSubscriptions(source.subscriptions).toBe(sourceSubs);
});
it('should not completes if source never emits', () => {
const source = cold('-');
const sourceSubs = '^';
const expected = '-';
expectObservable(source.every(truePredicate)).toBe(expected);
expectSubscriptions(source.subscriptions).toBe(sourceSubs);
});
it('should emit true if source element matches with predicate after subscription', () => {
const source = hot('--z--^--a--b--c--d--e--|', {a: 5, b: 10, c: 15, d: 20, e: 25});
const sourceSubs = '^ !';
const expected = '------------------(x|)';
expectObservable(source.every(predicate)).toBe(expected, {x: true});
expectSubscriptions(source.subscriptions).toBe(sourceSubs);
});
it('should emit false if source element does not match with predicate after subscription', () => {
const source = hot('--z--^--b--c--z--d--|', {a: 5, b: 10, c: 15, d: 20});
const sourceSubs = '^ !';
const expected = '---------(x|)';
expectObservable(source.every(predicate)).toBe(expected, {x: false});
expectSubscriptions(source.subscriptions).toBe(sourceSubs);
});
it('should raise error if source raises error after subscription', () => {
const source = hot('--z--^--#');
const sourceSubs = '^ !';
const expected = '---#';
expectObservable(source.every(truePredicate)).toBe(expected);
expectSubscriptions(source.subscriptions).toBe(sourceSubs);
});
it('should emit true if source does not emit after subscription', () => {
const source = hot('--z--^-----|');
const sourceSubs = '^ !';
const expected = '------(x|)';
expectObservable(source.every(predicate)).toBe(expected, {x: true});
expectSubscriptions(source.subscriptions).toBe(sourceSubs);
});
});