forked from crossfilter/reductio
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaliasProp.spec.js
66 lines (55 loc) · 1.98 KB
/
aliasProp.spec.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
// Alias tests
describe('Alias property', function () {
var group;
beforeEach(function () {
var data = crossfilter([
{ foo: 'one', num: 1 },
{ foo: 'two', num: 2 },
{ foo: 'three', num: 3 },
{ foo: 'one', num: 3 },
{ foo: 'one', num: 2 },
{ foo: 'two', num: 2 },
]);
var dim = data.dimension(function(d) { return d.foo; });
group = dim.group();
var reducer = reductio()
.count(true)
.sum(function(d) { return +d.num; })
.aliasProp({
newCount: function(g) { return g.count; },
average: function(g) { return g.sum / g.count; },
description: function(g, v) { return v.foo; }
});
reducer(group);
});
it('has three groups', function () {
expect(group.top(Infinity).length).toEqual(3);
});
it('grouping have the right counts', function () {
var values = {};
group.top(Infinity).forEach(function (d) {
values[d.key] = d.value;
});
expect(values['one'].newCount).toEqual(3);
expect(values['two'].newCount).toEqual(2);
expect(values['three'].newCount).toEqual(1);
});
it('grouping have the right averages', function () {
var values = {};
group.top(Infinity).forEach(function (d) {
values[d.key] = d.value;
});
expect(values['one'].average).toEqual(2);
expect(values['two'].average).toEqual(2);
expect(values['three'].average).toEqual(3);
});
it('grouping have the right descriptions', function () {
var values = {};
group.top(Infinity).forEach(function (d) {
values[d.key] = d.value;
});
expect(values['one'].description).toEqual('one');
expect(values['two'].description).toEqual('two');
expect(values['three'].description).toEqual('three');
});
});