forked from ReactiveX/rxjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauditTime-spec.ts
151 lines (122 loc) · 5.01 KB
/
auditTime-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
import { expect } from 'chai';
import { of, concat, timer } from 'rxjs';
import { auditTime, take, map, mergeMap } from 'rxjs/operators';
import { TestScheduler } from 'rxjs/testing';
import { hot, cold, expectObservable, expectSubscriptions } from '../helpers/marble-testing';
declare function asDiagram(arg: string): Function;
declare const rxTestScheduler: TestScheduler;
/** @test {auditTime} */
describe('auditTime operator', () => {
asDiagram('auditTime(50)')('should emit the last value in each time window', () => {
const e1 = hot('-a-x-y----b---x-cx---|');
const subs = '^ !';
const expected = '------y--------x-----|';
const result = e1.pipe(auditTime(50, rxTestScheduler));
expectObservable(result).toBe(expected);
expectSubscriptions(e1.subscriptions).toBe(subs);
});
it('should auditTime events by 50 time units', (done: MochaDone) => {
of(1, 2, 3).pipe(
auditTime(50)
).subscribe((x: number) => {
done(new Error('should not be called'));
}, null, () => {
done();
});
});
it('should auditTime events multiple times', () => {
const expected = ['1-2', '2-2'];
concat(
timer(0, 10, rxTestScheduler).pipe(
take(3),
map((x: number) => '1-' + x)
),
timer(80, 10, rxTestScheduler).pipe(
take(5),
map((x: number) => '2-' + x)
)
).pipe(
auditTime(50, rxTestScheduler)
).subscribe((x: string) => {
expect(x).to.equal(expected.shift());
});
rxTestScheduler.flush();
});
it('should delay the source if values are not emitted often enough', () => {
const e1 = hot('-a--------b-----c----|');
const subs = '^ !';
const expected = '------a--------b-----|';
expectObservable(e1.pipe(auditTime(50, rxTestScheduler))).toBe(expected);
expectSubscriptions(e1.subscriptions).toBe(subs);
});
it('should handle a busy producer emitting a regular repeating sequence', () => {
const e1 = hot('abcdefabcdefabcdefabcdefa|');
const subs = '^ !';
const expected = '-----f-----f-----f-----f-|';
expectObservable(e1.pipe(auditTime(50, rxTestScheduler))).toBe(expected);
expectSubscriptions(e1.subscriptions).toBe(subs);
});
it('should complete when source does not emit', () => {
const e1 = hot('-----|');
const subs = '^ !';
const expected = '-----|';
expectObservable(e1.pipe(auditTime(50, rxTestScheduler))).toBe(expected);
expectSubscriptions(e1.subscriptions).toBe(subs);
});
it('should raise error when source does not emit and raises error', () => {
const e1 = hot('-----#');
const subs = '^ !';
const expected = '-----#';
expectObservable(e1.pipe(auditTime(10, rxTestScheduler))).toBe(expected);
expectSubscriptions(e1.subscriptions).toBe(subs);
});
it('should handle an empty source', () => {
const e1 = cold('|');
const subs = '(^!)';
const expected = '|';
expectObservable(e1.pipe(auditTime(30, rxTestScheduler))).toBe(expected);
expectSubscriptions(e1.subscriptions).toBe(subs);
});
it('should handle a never source', () => {
const e1 = cold('-');
const subs = '^';
const expected = '-';
expectObservable(e1.pipe(auditTime(30, rxTestScheduler))).toBe(expected);
expectSubscriptions(e1.subscriptions).toBe(subs);
});
it('should handle a throw source', () => {
const e1 = cold('#');
const subs = '(^!)';
const expected = '#';
expectObservable(e1.pipe(auditTime(30, rxTestScheduler))).toBe(expected);
expectSubscriptions(e1.subscriptions).toBe(subs);
});
it('should not complete when source does not complete', () => {
const e1 = hot('-a--(bc)-------d----------------');
const unsub = ' !';
const subs = '^ !';
const expected = '------c-------------d-----------';
expectObservable(e1.pipe(auditTime(50, rxTestScheduler)), unsub).toBe(expected);
expectSubscriptions(e1.subscriptions).toBe(subs);
});
it('should not break unsubscription chains when result is unsubscribed explicitly', () => {
const e1 = hot('-a--(bc)-------d----------------');
const subs = '^ !';
const expected = '------c-------------d-----------';
const unsub = ' !';
const result = e1.pipe(
mergeMap((x: string) => of(x)),
auditTime(50, rxTestScheduler),
mergeMap((x: string) => of(x))
);
expectObservable(result, unsub).toBe(expected);
expectSubscriptions(e1.subscriptions).toBe(subs);
});
it('should auditTime values until source raises error', () => {
const e1 = hot('-a--(bc)-------d---------------#');
const subs = '^ !';
const expected = '------c-------------d----------#';
expectObservable(e1.pipe(auditTime(50, rxTestScheduler))).toBe(expected);
expectSubscriptions(e1.subscriptions).toBe(subs);
});
});