-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathutils.ts
194 lines (176 loc) · 4.59 KB
/
utils.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
import {
CompleteNotification,
ErrorNotification,
NextNotification,
Observable,
ObservableNotification,
Subscription,
} from 'rxjs';
import { TestScheduler } from 'rxjs/testing';
import { isEqual } from 'lodash';
import { getTestScheduler } from './scheduler';
import { TestObservable } from './test-observables';
import { mapSymbolsToNotifications } from './map-symbols-to-notifications';
import { TestMessages } from './types';
import { unparseMarble } from './marble-unparser';
/*
* Based on source code found in rxjs library
* https://github.com/ReactiveX/rxjs/blob/master/src/testing/TestScheduler.ts
*
*/
export function materializeInnerObservable<T>(
observable: Observable<T>,
outerFrame: number,
): TestMessages {
const messages: TestMessages = [];
const scheduler = getTestScheduler();
observable.subscribe({
next: (value: any) => {
messages.push({
frame: scheduler.frame - outerFrame,
notification: {
kind: 'N',
value,
error: undefined,
} as NextNotification<T>,
});
},
error: (error: any) => {
messages.push({
frame: scheduler.frame - outerFrame,
notification: {
kind: 'E',
value: undefined,
error,
} as ErrorNotification,
});
},
complete: () => {
messages.push({
frame: scheduler.frame - outerFrame,
notification: {
kind: 'C',
value: undefined,
error: undefined,
} as CompleteNotification,
});
},
});
return messages;
}
export function toHaveSubscriptionsComparer(
actual: TestObservable,
marbles: string | string[],
) {
const marblesArray: string[] =
typeof marbles === 'string' ? [marbles] : marbles;
const results = marblesArray.map((marbles) =>
TestScheduler.parseMarblesAsSubscriptions(marbles),
);
expect(results).toEqual(actual.getSubscriptions());
return { pass: true, message: () => '' };
}
export function toBeObservableComparer(
actual: TestObservable,
fixture: TestObservable,
) {
const results: TestMessages = [];
let subscription: Subscription;
const scheduler = getTestScheduler();
scheduler.schedule(() => {
subscription = actual.subscribe({
next: (x: any) => {
let value = x;
// Support Observable-of-Observables
if (x instanceof Observable) {
value = materializeInnerObservable(value, scheduler.frame);
}
results.push({
frame: scheduler.frame,
notification: {
kind: 'N',
value,
error: undefined,
} as NextNotification<any>,
});
},
error: (error: any) => {
results.push({
frame: scheduler.frame,
notification: {
kind: 'E',
value: undefined,
error,
} as ErrorNotification,
});
},
complete: () => {
results.push({
frame: scheduler.frame,
notification: {
kind: 'C',
value: undefined,
error: undefined,
} as CompleteNotification,
});
},
});
});
scheduler.flush();
const expected = TestScheduler.parseMarbles(
fixture.marbles,
fixture.values,
fixture.error,
true,
true,
);
try {
expect(results).toEqual(expected);
return { pass: true, message: () => '' };
} catch (e) {
const mapNotificationToSymbol = buildNotificationToSymbolMapper(
fixture.marbles,
expected,
isEqual,
);
const receivedMarble = unparseMarble(results, mapNotificationToSymbol);
const message = formatMessage(
fixture.marbles,
expected,
receivedMarble,
results,
);
return { pass: false, message: () => message };
}
}
function buildNotificationToSymbolMapper(
expectedMarbles: string,
expectedMessages: TestMessages,
equalityFn: (a: any, b: any) => boolean,
) {
const symbolsToNotificationsMap = mapSymbolsToNotifications(
expectedMarbles,
expectedMessages,
);
return (notification: ObservableNotification<any>) => {
const mapped = Object.keys(symbolsToNotificationsMap).find((key) =>
equalityFn(symbolsToNotificationsMap[key], notification),
)!;
return mapped || '?';
};
}
function formatMessage(
expectedMarbles: string,
expectedMessages: TestMessages,
receivedMarbles: string,
receivedMessages: TestMessages,
) {
return `
Expected: ${expectedMarbles},
Received: ${receivedMarbles},
Expected:
${JSON.stringify(expectedMessages)}
Received:
${JSON.stringify(receivedMessages)},
`;
}