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 pathdistinct.js
134 lines (110 loc) · 2.83 KB
/
distinct.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
(function () {
/* jshint undef: true, unused: true */
/* globals QUnit, test, Rx */
QUnit.module('distinct');
var TestScheduler = Rx.TestScheduler,
onNext = Rx.ReactiveTest.onNext,
onCompleted = Rx.ReactiveTest.onCompleted,
subscribe = Rx.ReactiveTest.subscribe;
test('distinct default comparer all distinct', function () {
var scheduler = new TestScheduler();
var xs = scheduler.createHotObservable(
onNext(280, 4),
onNext(300, 2),
onNext(350, 1),
onNext(380, 3),
onNext(400, 5),
onCompleted(420)
);
var results = scheduler.startScheduler(function () {
return xs.distinct();
});
results.messages.assertEqual(
onNext(280, 4),
onNext(300, 2),
onNext(350, 1),
onNext(380, 3),
onNext(400, 5),
onCompleted(420)
);
xs.subscriptions.assertEqual(
subscribe(200, 420)
);
});
test('distinct default comparer some duplicates', function () {
var scheduler = new TestScheduler();
var xs = scheduler.createHotObservable(
onNext(280, 4),
onNext(300, 2),
onNext(350, 2),
onNext(380, 3),
onNext(400, 4),
onCompleted(420)
);
var results = scheduler.startScheduler(function () {
return xs.distinct();
});
results.messages.assertEqual(
onNext(280, 4),
onNext(300, 2),
onNext(380, 3),
onCompleted(420)
);
xs.subscriptions.assertEqual(
subscribe(200, 420)
);
});
function modComparer(mod) {
return function (x, y) {
return Rx.helpers.defaultComparer(x % mod, y % mod);
};
}
test('distinct CustomComparer all distinct', function () {
var scheduler = new TestScheduler();
var xs = scheduler.createHotObservable(
onNext(280, 4),
onNext(300, 2),
onNext(350, 1),
onNext(380, 3),
onNext(400, 5),
onCompleted(420)
);
var res = scheduler.startScheduler(function () {
return xs.distinct(null, modComparer(10));
});
res.messages.assertEqual(
onNext(280, 4),
onNext(300, 2),
onNext(350, 1),
onNext(380, 3),
onNext(400, 5),
onCompleted(420)
);
xs.subscriptions.assertEqual(
subscribe(200, 420)
);
});
test('distinct CustomComparer some duplicates', function () {
var scheduler = new TestScheduler();
var xs = scheduler.createHotObservable(
onNext(280, 4),
onNext(300, 2),
onNext(350, 12),
onNext(380, 3),
onNext(400, 24),
onCompleted(420)
);
var res = scheduler.startScheduler(function () {
return xs.distinct(null, modComparer(10));
});
res.messages.assertEqual(
onNext(280, 4),
onNext(300, 2),
onNext(380, 3),
onCompleted(420)
);
xs.subscriptions.assertEqual(
subscribe(200, 420)
);
});
}());