This repository was archived by the owner on Apr 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathtomap.js
154 lines (122 loc) · 3.72 KB
/
tomap.js
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
if (!!window.Map) {
(function () {
'use strict';
/* jshint undef: true, unused: true */
/* globals QUnit, test, Rx */
QUnit.module('toMap');
var TestScheduler = Rx.TestScheduler,
onNext = Rx.ReactiveTest.onNext,
onError = Rx.ReactiveTest.onError,
onCompleted = Rx.ReactiveTest.onCompleted,
subscribe = Rx.ReactiveTest.subscribe;
function extractValues(x) {
var arr = [];
x.forEach(function (value, key) {
arr.push(key, value);
});
return arr;
}
test('toMap completed', function () {
var scheduler = new TestScheduler();
var xs = scheduler.createHotObservable(
onNext(110, 1),
onNext(220, 2),
onNext(330, 3),
onNext(440, 4),
onNext(550, 5),
onCompleted(660)
);
var res = scheduler.startScheduler(function () {
return xs.toMap(function (x) { return x * 2; }, function (x) { return x * 4; }).map(extractValues);
});
res.messages.assertEqual(
onNext(660, [4, 8, 6, 12, 8, 16, 10, 20]),
onCompleted(660)
);
xs.subscriptions.assertEqual(
subscribe(200, 660)
);
});
test('toMap error', function () {
var scheduler = new TestScheduler();
var error = new Error();
var xs = scheduler.createHotObservable(
onNext(110, 1),
onNext(220, 2),
onNext(330, 3),
onNext(440, 4),
onNext(550, 5),
onError(660, error)
);
var res = scheduler.startScheduler(function () {
return xs.toMap(function (x) { return x * 2; }, function (x) { return x * 4; }).map(extractValues);
});
res.messages.assertEqual(
onError(660, error)
);
xs.subscriptions.assertEqual(
subscribe(200, 660)
);
});
test('toMap key selector throws', function () {
var scheduler = new TestScheduler();
var error = new Error();
var xs = scheduler.createHotObservable(
onNext(110, 1),
onNext(220, 2),
onNext(330, 3),
onNext(440, 4),
onNext(550, 5),
onCompleted(600)
);
var res = scheduler.startScheduler(function () {
return xs.toMap(function (x) { if (x < 4) { return x * 2; } else { throw error; } }, function (x) { return x * 4; }).map(extractValues);
});
res.messages.assertEqual(
onError(440, error)
);
xs.subscriptions.assertEqual(
subscribe(200, 440)
);
});
test('toMap element selector throws', function () {
var scheduler = new TestScheduler();
var error = new Error();
var xs = scheduler.createHotObservable(
onNext(110, 1),
onNext(220, 2),
onNext(330, 3),
onNext(440, 4),
onNext(550, 5),
onCompleted(600)
);
var res = scheduler.startScheduler(function () {
return xs.toMap(function (x) { return x * 2; }, function (x) { if (x < 4) { return x * 4; } else { throw error; } }).map(extractValues);
});
res.messages.assertEqual(
onError(440, error)
);
xs.subscriptions.assertEqual(
subscribe(200, 440)
);
});
test('toMap disposed', function () {
var scheduler = new TestScheduler();
var xs = scheduler.createHotObservable(
onNext(110, 1),
onNext(220, 2),
onNext(330, 3),
onNext(440, 4),
onNext(550, 5)
);
var res = scheduler.startScheduler(function () {
return xs.toMap(function (x) { return x * 2; }, function (x) { return x * 4; }).map(extractValues);
});
res.messages.assertEqual(
);
xs.subscriptions.assertEqual(
subscribe(200, 1000)
);
});
}());
}