forked from naver/billboard.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtooltip-spec.js
218 lines (182 loc) · 5.56 KB
/
tooltip-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
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/**
* Copyright (c) 2017 NAVER Corp.
* billboard.js project is licensed under the MIT license
*/
/* eslint-disable */
import util from "./assets/util";
import CLASS from "../src/config/classes";
describe("TOOLTIP", function() {
let chart;
let args = {
data: {
columns: [
["data1", 30, 200, 100, 400, 150, 250],
["data2", 50, 20, 10, 40, 15, 25],
["data3", 150, 120, 110, 140, 115, 125]
]
},
tooltip: {}
};
// check for the tooltip's ordering
const checkTooltip = (chart, expected) => {
const eventRect = chart.internal.main
.select(`.${CLASS.eventRect}-2`)
.node();
util.fireEvent(eventRect, "mousemove", {
clientX: 100,
clientY: 100
}, chart);
const tooltips = d3.select(chart.element)
.selectAll(`.${CLASS.tooltip} tr`)
.nodes();
if (expected) {
for (let i = 1, el; (el = tooltips[i]); i++) {
expect(el.className).to.be.equal(expected[i - 1]);
}
}
};
beforeEach(() => {
chart = util.generate(args);
});
describe("tooltip position", () => {
describe("without left margin", () => {
it("should show tooltip on proper position", () => {
const eventRect = chart.internal.main.select(`.${CLASS.eventRect}-2`).node();
util.fireEvent(eventRect, "mousemove", {
clientX: 100,
clientY: 100
}, chart);
const tooltipContainer = chart.internal.tooltip;
const top = Math.floor(+tooltipContainer.style("top").replace(/px/, ""));
const left = Math.floor(+tooltipContainer.style("left").replace(/px/, ""));
const topExpected = 115;
const leftExpected = 280;
expect(top).to.be.equal(topExpected);
expect(left).to.be.above(leftExpected);
});
});
describe("with left margin", () => {
before(() => {
chart.element.style.marginLeft = "300px";
});
it("should show tooltip on proper position", () => {
const eventRect = chart.internal.main.select(`.${CLASS.eventRect}-2`).node();
util.fireEvent(eventRect, "mousemove", {
clientX: 100,
clientY: 100
}, chart);
const tooltipContainer = d3.select(chart.element).select(`.${CLASS.tooltipContainer}`);
const top = Math.floor(+tooltipContainer.style("top").replace(/px/, ""));
const left = Math.floor(+tooltipContainer.style("left").replace(/px/, ""));
const topExpected = 115;
const leftExpected = 280;
expect(top).to.be.equal(topExpected);
expect(left).to.be.above(leftExpected);
});
});
});
describe("tooltip positionFunction", () => {
const topExpected = 37;
const leftExpected = 79;
before(() => {
args.tooltip = {
position: (data, width, height, element) => {
expect(data.length).to.be.equal(args.data.columns.length);
expect(data[0].index).to.be.equal(2);
expect(data[0].value).to.be.equal(100);
expect(data[0].id).to.be.equal("data1");
expect(width).to.be.above(0);
expect(height).to.be.above(0);
expect(element).to.be.equal(chart.internal.main.select(`.${CLASS.eventRect}-2`).node());
return {
top: topExpected,
left: leftExpected
};
}
};
});
it("should be set to the coordinate where the function returned", () => {
const eventRect = chart.internal.main.select(`.${CLASS.eventRect}-2`).node();
util.fireEvent(eventRect, "mousemove", {
clientX: 100,
clientY: 100
}, chart);
const tooltipContainer = d3.select(chart.element).select(`.${CLASS.tooltipContainer}`);
const top = Math.floor(+tooltipContainer.style("top").replace(/px/, ""));
const left = Math.floor(+tooltipContainer.style("left").replace(/px/, ""));
expect(top).to.be.equal(topExpected);
expect(left).to.be.equal(leftExpected);
});
});
describe("tooltip order", () => {
it("should sort values in data display order", () => {
checkTooltip(chart, [
"bb-tooltip-name-data1",
"bb-tooltip-name-data2",
"bb-tooltip-name-data3"
]);
});
it("set options tooltip.order=asc", () => {
args.tooltip.order = "asc";
});
it("should sort values ascending order", () => {
checkTooltip(chart, [
"bb-tooltip-name-data2",
"bb-tooltip-name-data1",
"bb-tooltip-name-data3"
]);
});
it("set options tooltip.order=desc", () => {
args.tooltip.order = "desc";
});
it("set options tooltip.order=desc", () => {
checkTooltip(chart, [
"bb-tooltip-name-data3",
"bb-tooltip-name-data1",
"bb-tooltip-name-data2"
]);
});
// check for stacking bar
it("set options data.groups", () => {
args.data.type = "bar";
args.data.groups = [["data1", "data2", "data3"]];
args.tooltip.order = args.data.order = "desc";
});
it("stacked bar: should sort values in descending order", () => {
checkTooltip(chart, [
"bb-tooltip-name-data3",
"bb-tooltip-name-data1",
"bb-tooltip-name-data2"
]);
});
it("set options tooltip.order=asc", () => {
args.tooltip.order = args.data.order = "asc";
});
it("stacked bar: should sort values in ascending order", () => {
checkTooltip(chart, [
"bb-tooltip-name-data2",
"bb-tooltip-name-data1",
"bb-tooltip-name-data3"
]);
});
it("set options tooltip.order=null", () => {
args.tooltip.order = args.data.order = null;
});
it("stacked bar: should be ordered in data input order", () => {
checkTooltip(chart, [
"bb-tooltip-name-data3",
"bb-tooltip-name-data2",
"bb-tooltip-name-data1"
]);
});
it("set options tooltip.order=function", () => {
args.tooltip.order = sinon.spy(function(a, b) {
return a.value - b.value;
});
});
it("data.order function should be called", () => {
checkTooltip(chart);
expect(args.tooltip.order.called).to.be.true;
});
});
});