1 // Copyright (c) 2012 Google, Inc.
3 // Permission is hereby granted, free of charge, to any person obtaining a copy
4 // of this software and associated documentation files (the "Software"), to deal
5 // in the Software without restriction, including without limitation the rights
6 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 // copies of the Software, and to permit persons to whom the Software is
8 // furnished to do so, subject to the following conditions:
10 // The above copyright notice and this permission notice shall be included in
11 // all copies or substantial portions of the Software.
13 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * @fileoverview Test cases for drawing lines with missing points.
24 * @author konigsberg@google.com (Robert Konigsberg)
26 var ZERO_TO_FIFTY
= [[ 10, 0 ] , [ 20, 50 ]];
28 var MissingPointsTestCase
= TestCase("missing-points");
30 MissingPointsTestCase
._origFunc
= Dygraph
.getContext
;
31 MissingPointsTestCase
.prototype.setUp
= function() {
32 document
.body
.innerHTML
= "<div id='graph'></div>";
33 Dygraph
.getContext
= function(canvas
) {
34 return new Proxy(MissingPointsTestCase
._origFunc(canvas
));
38 MissingPointsTestCase
.prototype.tearDown
= function() {
39 Dygraph
.getContext
= MissingPointsTestCase
._origFunc
;
42 MissingPointsTestCase
.prototype.testSeparatedPointsDontDraw
= function() {
43 var graph
= document
.getElementById("graph");
49 { colors
: ['red', 'blue']});
50 var htx
= g
.hidden_ctx_
;
51 assertEquals(2, CanvasAssertions
.numLinesDrawn(htx
, '#ff0000'));
52 assertEquals(0, CanvasAssertions
.numLinesDrawn(htx
, '#0000ff'));
55 MissingPointsTestCase
.prototype.testSeparatedPointsDontDraw_expanded
= function() {
56 var graph
= document
.getElementById("graph");
65 var htx
= g
.hidden_ctx_
;
67 assertEquals(2, CanvasAssertions
.numLinesDrawn(htx
, '#0000ff'));
68 CanvasAssertions
.assertLineDrawn(htx
, [56, 275], [161, 212],
69 { strokeStyle
: '#0000ff', });
70 CanvasAssertions
.assertLineDrawn(htx
, [370, 87], [475, 25],
71 { strokeStyle
: '#0000ff', });
74 MissingPointsTestCase
.prototype.testSeparatedPointsDontDraw_expanded_connected
= function() {
75 var graph
= document
.getElementById("graph");
83 { colors
: ['blue'], connectSeparatedPoints
: true});
84 var htx
= g
.hidden_ctx_
;
87 assertEquals(3, CanvasAssertions
.numLinesDrawn(htx
, '#0000ff'));
88 CanvasAssertions
.assertConsecutiveLinesDrawn(htx
,
89 [[56, 275], [161, 212], [370, 87], [475, 25]],
90 { strokeStyle
: '#0000ff' });
94 * At the time of writing this test, the blue series is only points, and not lines.
96 MissingPointsTestCase
.prototype.testConnectSeparatedPoints
= function() {
98 document
.getElementById("graph"),
108 connectSeparatedPoints
: true,
110 colors
: ['red', 'blue']
114 var htx
= g
.hidden_ctx_
;
116 assertEquals(2, CanvasAssertions
.numLinesDrawn(htx
, '#0000ff'));
117 CanvasAssertions
.assertConsecutiveLinesDrawn(htx
,
118 [[56, 225], [223, 25], [391, 125]],
119 { strokeStyle
: '#0000ff' });
121 assertEquals(2, CanvasAssertions
.numLinesDrawn(htx
, '#ff0000'));
122 CanvasAssertions
.assertConsecutiveLinesDrawn(htx
,
123 [[140, 275], [307, 125], [475, 225]],
124 { strokeStyle
: '#ff0000' });
128 * At the time of writing this test, the blue series is only points, and not lines.
130 MissingPointsTestCase
.prototype.testConnectSeparatedPointsWithNan
= function() {
132 document
.getElementById("graph"),
143 connectSeparatedPoints
: true,
145 colors
: ['red', 'blue']
149 var htx
= g
.hidden_ctx_
;
151 // Red has two disconnected line segments
152 assertEquals(2, CanvasAssertions
.numLinesDrawn(htx
, '#ff0000'));
153 CanvasAssertions
.assertLineDrawn(htx
, [102, 275], [195, 212], { strokeStyle
: '#ff0000' });
154 CanvasAssertions
.assertLineDrawn(htx
, [381, 87], [475, 25], { strokeStyle
: '#ff0000' });
156 // Blue's lines are consecutive, however.
157 assertEquals(2, CanvasAssertions
.numLinesDrawn(htx
, '#0000ff'));
158 CanvasAssertions
.assertConsecutiveLinesDrawn(htx
,
159 [[56, 244], [149, 181], [242, 118]],
160 { strokeStyle
: '#0000ff' });
163 /* These lines contain awesome powa!
164 var lines = CanvasAssertions.getLinesDrawn(htx, {strokeStyle: "#0000ff"});
165 for (var idx = 0; idx < lines.length; idx++) {
166 var line = lines[idx];
167 console.log(line[0].args, line[1].args, line[0].properties.strokeStyle);
171 MissingPointsTestCase
.prototype.testErrorBarsWithMissingPoints
= function() {
181 document
.getElementById("graph"),
189 var htx
= g
.hidden_ctx_
;
191 assertEquals(2, CanvasAssertions
.numLinesDrawn(htx
, '#ff0000'));
193 var p0
= g
.toDomCoords(data
[0][0], data
[0][1][0]);
194 var p1
= g
.toDomCoords(data
[1][0], data
[1][1][0]);
195 var p2
= g
.toDomCoords(data
[3][0], data
[3][1][0]);
196 var p3
= g
.toDomCoords(data
[4][0], data
[4][1][0]);
197 CanvasAssertions
.assertConsecutiveLinesDrawn(htx
,
198 [p0
, p1
], { strokeStyle
: '#ff0000' });
199 CanvasAssertions
.assertConsecutiveLinesDrawn(htx
,
200 [p2
, p3
], { strokeStyle
: '#ff0000' });
203 MissingPointsTestCase
.prototype.testErrorBarsWithMissingPointsConnected
= function() {
213 document
.getElementById("graph"),
216 connectSeparatedPoints
: true,
223 var htx
= g
.hidden_ctx_
;
225 assertEquals(2, CanvasAssertions
.numLinesDrawn(htx
, '#ff0000'));
227 var p1
= g
.toDomCoords(data
[1][0], data
[1][1][0]);
228 var p2
= g
.toDomCoords(data
[3][0], data
[3][1][0]);
229 var p3
= g
.toDomCoords(data
[5][0], data
[5][1][0]);
230 CanvasAssertions
.assertConsecutiveLinesDrawn(htx
,
232 { strokeStyle
: '#ff0000' });
234 MissingPointsTestCase
.prototype.testCustomBarsWithMissingPoints
= function() {
241 [6, [null,null,null]],
250 document
.getElementById("graph"),
258 var htx
= g
.hidden_ctx_
;
260 assertEquals(4, CanvasAssertions
.numLinesDrawn(htx
, '#ff0000'));
262 var p0
= g
.toDomCoords(data
[0][0], data
[0][1][1]);
263 var p1
= g
.toDomCoords(data
[1][0], data
[1][1][1]);
264 CanvasAssertions
.assertLineDrawn(htx
, p0
, p1
, { strokeStyle
: '#ff0000' });
266 p0
= g
.toDomCoords(data
[3][0], data
[3][1][1]);
267 p1
= g
.toDomCoords(data
[4][0], data
[4][1][1]);
268 CanvasAssertions
.assertLineDrawn(htx
, p0
, p1
, { strokeStyle
: '#ff0000' });
270 p0
= g
.toDomCoords(data
[6][0], data
[6][1][1]);
271 p1
= g
.toDomCoords(data
[7][0], data
[7][1][1]);
272 CanvasAssertions
.assertLineDrawn(htx
, p0
, p1
, { strokeStyle
: '#ff0000' });;
274 p0
= g
.toDomCoords(data
[9][0], data
[9][1][1]);
275 p1
= g
.toDomCoords(data
[10][0], data
[10][1][1]);
276 CanvasAssertions
.assertLineDrawn(htx
, p0
, p1
, { strokeStyle
: '#ff0000' });
279 MissingPointsTestCase
.prototype.testCustomBarsWithMissingPointsConnected
= function() {
285 [5, [null,null,null]],
289 document
.getElementById("graph"),
292 connectSeparatedPoints
: true,
299 var htx
= g
.hidden_ctx_
;
301 assertEquals(2, CanvasAssertions
.numLinesDrawn(htx
, '#ff0000'));
303 var p1
= g
.toDomCoords(data
[1][0], data
[1][1][1]);
304 var p2
= g
.toDomCoords(data
[3][0], data
[3][1][1]);
305 var p3
= g
.toDomCoords(data
[5][0], data
[5][1][1]);
306 CanvasAssertions
.assertConsecutiveLinesDrawn(htx
,
308 { strokeStyle
: '#ff0000' });
311 MissingPointsTestCase
.prototype.testLeftBoundaryWithMisingPoints
= function() {
321 document
.getElementById("graph"),
324 connectSeparatedPoints
: true,
326 colors
: ['red','blue']
329 g
.updateOptions({ dateWindow
: [ 2.5, 4.5 ] });
330 assertEquals(1, g
.getLeftBoundary_(0));
331 assertEquals(0, g
.getLeftBoundary_(1));
333 var domX
= g
.toDomXCoord(1.9);
334 var closestRow
= g
.findClosestRow(domX
);
335 assertEquals(1, closestRow
);
337 g
.setSelection(closestRow
);
338 assertEquals(1, g
.selPoints_
.length
);
339 assertEquals(1, g
.selPoints_
[0].yval
);
342 assertEquals(2, g
.selPoints_
.length
);
343 assertEquals(g
.selPoints_
[0].xval
, g
.selPoints_
[1].xval
);
344 assertEquals(2, g
.selPoints_
[0].yval
);
345 assertEquals(1, g
.selPoints_
[1].yval
);
348 // Regression test for issue #411
349 MissingPointsTestCase
.prototype.testEmptySeries
= function() {
350 var graphDiv
= document
.getElementById("graph");
353 "Time,Empty Series,Series 1,Series 2\n" +
354 "1381134460,,0,100\n" +
355 "1381134461,,1,99\n" +
356 "1381134462,,2,98\n" +
357 "1381134463,,3,97\n" +
358 "1381134464,,4,96\n" +
359 "1381134465,,5,95\n" +
360 "1381134466,,6,94\n" +
361 "1381134467,,7,93\n" +
362 "1381134468,,8,92\n" +
363 "1381134469,,9,91\n", {
364 visibility
: [true, false, true],
365 dateWindow
: [1381134465, 1381134467]
369 assertEquals("1381134466: Series 2: 94", Util
.getLegend(graphDiv
));
372 // Regression test for issue #485
373 MissingPointsTestCase
.prototype.testMissingFill
= function() {
374 var graphDiv
= document
.getElementById("graph");
382 [4, [9, N
, 2] ], // Note: nulls in arrays are not technically valid.
383 [5, [N
, 2, N
] ], // see dygraphs.com/data.html
.
388 connectSeparatedPoints
: false,
389 labels
: [ "X", "Series1"]
393 // Make sure there are no 'NaN' line segments.
394 var htx
= g
.hidden_ctx_
;
395 for (var i
= 0; i
< htx
.calls__
.length
; i
++) {
396 var call
= htx
.calls__
[i
];
397 if ((call
.name
== 'moveTo' || call
.name
== 'lineTo') && call
.args
) {
398 for (var j
= 0; j
< call
.args
.length
; j
++) {
399 assertFalse(isNaN(call
.args
[j
]));