1 // Copyright (c) 2011 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 simple lines.
24 * @author konigsberg@google.com (Robert Konigsberg)
26 var ZERO_TO_FIFTY
= [[ 10, 0 ] , [ 20, 50 ]];
28 var SimpleDrawingTestCase
= TestCase("simple-drawing");
30 SimpleDrawingTestCase
._origFunc
= Dygraph
.getContext
;
31 SimpleDrawingTestCase
.prototype.setUp
= function() {
32 document
.body
.innerHTML
= "<div id='graph'></div>";
33 Dygraph
.getContext
= function(canvas
) {
34 return new Proxy(SimpleDrawingTestCase
._origFunc(canvas
));
38 SimpleDrawingTestCase
.prototype.tearDown
= function() {
39 Dygraph
.getContext
= SimpleDrawingTestCase
._origFunc
;
42 SimpleDrawingTestCase
.prototype.testDrawSimpleRangePlusOne
= function() {
50 var graph
= document
.getElementById("graph");
51 var g
= new Dygraph(graph
, ZERO_TO_FIFTY
, opts
);
52 var htx
= g
.hidden_ctx_
;
54 CanvasAssertions
.assertLineDrawn(htx
, [0,320], [475,6.2745], {
55 strokeStyle
: "#008080",
58 CanvasAssertions
.assertBalancedSaveRestore(htx
);
61 // See http://code.google.com/p/dygraphs/issues/detail
?id
=185
62 SimpleDrawingTestCase
.prototype.testDrawSimpleRangeZeroToFifty
= function() {
70 var graph
= document
.getElementById("graph");
71 var g
= new Dygraph(graph
, ZERO_TO_FIFTY
, opts
);
72 var htx
= g
.hidden_ctx_
;
74 var lines
= CanvasAssertions
.getLinesDrawn(htx
, {
75 strokeStyle
: "#008080",
78 assertEquals(1, lines
.length
);
79 CanvasAssertions
.assertBalancedSaveRestore(htx
);
82 SimpleDrawingTestCase
.prototype.testDrawWithAxis
= function() {
83 var graph
= document
.getElementById("graph");
84 var g
= new Dygraph(graph
, ZERO_TO_FIFTY
);
86 var htx
= g
.hidden_ctx_
;
87 CanvasAssertions
.assertBalancedSaveRestore(htx
);
91 * Tests that it is drawing dashes, and it remember the dash history between
94 SimpleDrawingTestCase
.prototype.testDrawSimpleDash
= function() {
100 'Y1': {strokePattern
: [25, 7, 7, 7]},
104 var graph
= document
.getElementById("graph");
105 // Set the dims so we pass if default changes.
106 graph
.style
.width
='480px';
107 graph
.style
.height
='320px';
108 var g
= new Dygraph(graph
, [[1, 4], [2, 5], [3, 3], [4, 7], [5, 9]], opts
);
111 // TODO(danvk): figure out a good way to restore this test.
112 // assertEquals(29, CanvasAssertions.numLinesDrawn(htx, "#ff0000"));
113 CanvasAssertions
.assertBalancedSaveRestore(htx
);
117 * Tests that thick lines are drawn continuously.
118 * Regression test for http://code.google.com/p/dygraphs/issues/detail?id=328
120 SimpleDrawingTestCase
.prototype.testDrawThickLine
= function() {
130 var graph
= document
.getElementById("graph");
131 // Set the dims so we pass if default changes.
132 graph
.style
.width
='480px';
133 graph
.style
.height
='320px';
134 var g
= new Dygraph(graph
, [[1, 2], [2, 5], [3, 2], [4, 7], [5, 0]], opts
);
137 // There's a big gap in the line at (2, 5)
138 // If the bug is fixed, then there should be some red going up from here.
139 var xy
= g
.toDomCoords(2, 5);
140 var x
= Math
.round(xy
[0]), y
= Math
.round(xy
[1]);
142 var sampler
= new PixelSampler(g
);
143 assertEquals([255,0,0,255], sampler
.colorAtPixel(x
, y
));
144 assertEquals([255,0,0,255], sampler
.colorAtPixel(x
, y
- 1));
145 assertEquals([255,0,0,255], sampler
.colorAtPixel(x
, y
- 2));
147 // TODO(danvk): figure out a good way to restore this test.
148 // assertEquals(29, CanvasAssertions.numLinesDrawn(htx, "#ff0000"));
149 CanvasAssertions
.assertBalancedSaveRestore(htx
);