Support stroke patterns (i.e. dashed/dotted lines).
[dygraphs.git] / auto_tests / tests / simple_drawing.js
CommitLineData
718ad8e2 1// Copyright (c) 2011 Google, Inc.
644eff8b
RK
2//
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:
9//
10// The above copyright notice and this permission notice shall be included in
11// all copies or substantial portions of the Software.
12//
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
19// THE SOFTWARE.
20
21/**
22 * @fileoverview Test cases for drawing simple lines.
23 *
24 * @author konigsberg@google.com (Robert Konigsberg)
25 */
7165f97b 26var ZERO_TO_FIFTY = [[ 10, 0 ] , [ 20, 50 ]];
644eff8b
RK
27
28var SimpleDrawingTestCase = TestCase("simple-drawing");
29
30var _origFunc = Dygraph.getContext;
31SimpleDrawingTestCase.prototype.setUp = function() {
32 document.body.innerHTML = "<div id='graph'></div>";
063e83ba
DV
33 Dygraph.getContext = function(canvas) {
34 return new Proxy(_origFunc(canvas));
35 }
644eff8b
RK
36};
37
38SimpleDrawingTestCase.prototype.tearDown = function() {
39 Dygraph.getContext = _origFunc;
40};
41
644eff8b
RK
42SimpleDrawingTestCase.prototype.testDrawSimpleRangePlusOne = function() {
43 var opts = {
44 drawXGrid: false,
45 drawYGrid: false,
46 drawXAxis: false,
47 drawYAxis: false,
48 valueRange: [0,51] }
49
50 var graph = document.getElementById("graph");
51 var g = new Dygraph(graph, ZERO_TO_FIFTY, opts);
124e8d98 52 htx = g.hidden_ctx_;
644eff8b 53
124e8d98 54 CanvasAssertions.assertLineDrawn(htx, [0,320], [475,6.2745], {
063e83ba
DV
55 strokeStyle: "#008080",
56 lineWidth: 1
57 });
644eff8b 58}
79253bd0 59
60/**
61 * Tests that it is drawing dashes, and it remember the dash history between
62 * points.
63 */
64SimpleDrawingTestCase.prototype.testDrawSimpleDash = function() {
65 var opts = {
66 drawXGrid: false,
67 drawYGrid: false,
68 drawXAxis: false,
69 drawYAxis: false,
70 'Y1': {strokePattern: [25, 7, 7, 7]},
71 colors: ['#ff0000']
72 };
73
74 var graph = document.getElementById("graph");
75 // Set the dims so we pass if default changes.
76 graph.style.width='480px';
77 graph.style.height='320px';
78 var g = new Dygraph(graph, [[1, 4], [2, 5], [3, 3], [4, 7], [5, 9]], opts);
79 htx = g.hidden_ctx_;
80
81 assertEquals(29, CanvasAssertions.numLinesDrawn(htx, "#ff0000"));
82};