Merge branch 'master' of https://github.com/danvk/dygraphs
[dygraphs.git] / auto_tests / tests / range_tests.js
1 // Copyright (c) 2011 Google, Inc.
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 /**
23 * @fileoverview Test valueRange and dateWindow changes.
24 *
25 * @author konigsberg@google.com (Robert Konigsberg)
26 */
27 var ZERO_TO_FIFTY = [[ 10, 0 ] , [ 20, 50 ]];
28 var ZERO_TO_FIFTY_STEPS = function() {
29 var a = [];
30 var x = 10;
31 var y = 0;
32 var step = 0;
33 for (step = 0; step <= 50; step++) {
34 a.push([x + (step * .2), y + step]);
35 }
36 return a;
37 } ();
38
39 var RangeTestCase = TestCase("range-tests");
40
41 RangeTestCase.prototype.setUp = function() {
42 document.body.innerHTML = "<div id='graph'></div>";
43 };
44
45 RangeTestCase.prototype.createGraph = function(opts) {
46 var graph = document.getElementById("graph");
47 var g = new Dygraph(graph, ZERO_TO_FIFTY_STEPS, opts);
48
49 assertEquals([10, 20], g.xAxisRange());
50 assertEquals([0, 55], g.yAxisRange(0));
51
52 return g;
53 };
54
55 /**
56 * Test that changes to valueRange and dateWindow are reflected
57 * appropriately.
58 */
59 RangeTestCase.prototype.testRangeSetOperations = function() {
60 var g = this.createGraph({valueRange : [ 0, 55 ]});
61
62 g.updateOptions({ dateWindow : [ 12, 18 ] });
63 assertEquals([12, 18], g.xAxisRange());
64 assertEquals([0, 55], g.yAxisRange(0));
65
66 g.updateOptions({ valueRange : [ 10, 40 ] });
67 assertEquals([12, 18], g.xAxisRange());
68 assertEquals([10, 40], g.yAxisRange(0));
69
70 g.updateOptions({ });
71 assertEquals([12, 18], g.xAxisRange());
72 assertEquals([10, 40], g.yAxisRange(0));
73
74 g.updateOptions({ dateWindow : null, valueRange : null });
75 assertEquals([10, 20], g.xAxisRange());
76 assertEquals([0, 55], g.yAxisRange(0));
77 };
78
79 /**
80 * Verify that when zoomed in by mouse operations, an empty call to
81 * updateOptions doesn't change the displayed ranges.
82 */
83 RangeTestCase.prototype.zoom = function(g, xRange, yRange) {
84 var originalXRange = g.xAxisRange();
85 var originalYRange = g.yAxisRange(0);
86
87 // Editing e.shiftKey post construction doesn't work for Firefox. Damn.
88 DygraphOps.dispatchMouseDown(g, xRange[0], yRange[0], function(e) { e.shiftKey = true; });
89 DygraphOps.dispatchMouseMove(g, xRange[1], yRange[0]); // this is really necessary.
90 DygraphOps.dispatchMouseUp(g, xRange[1], yRange[0]);
91
92 assertEqualsDelta(xRange, g.xAxisRange(), 0.2);
93 // assertEqualsDelta(originalYRange, g.yAxisRange(0), 0.2); // Not true, it's something in the middle.
94
95 var midX = (xRange[1] - xRange[0]) / 2;
96 DygraphOps.dispatchMouseDown(g, midX, yRange[0], function(e) { e.shiftKey = true; });
97 DygraphOps.dispatchMouseMove(g, midX, yRange[1]); // this is really necessary.
98 DygraphOps.dispatchMouseUp(g, midX, yRange[1]);
99
100 assertEqualsDelta(xRange, g.xAxisRange(), 0.2);
101 assertEqualsDelta(yRange, g.yAxisRange(0), 0.2);
102 }
103
104
105 /**
106 * Verify that when zoomed in by mouse operations, an empty call to
107 * updateOptions doesn't change the displayed ranges.
108 */
109 RangeTestCase.prototype.testEmptyUpdateOptions_doesntUnzoom = function() {
110 var g = this.createGraph();
111 this.zoom(g, [ 11, 18 ], [ 35, 40 ]);
112
113 g.updateOptions({});
114
115 assertEqualsDelta([11, 18], g.xAxisRange(), 0.1);
116 assertEqualsDelta([35, 40], g.yAxisRange(0), 0.2);
117 }
118
119 /**
120 * Verify that when zoomed in by mouse operations, a call to
121 * updateOptions({ dateWindow : null, valueRange : null }) fully
122 * unzooms.
123 */
124 RangeTestCase.prototype.testRestoreOriginalRanges_viaUpdateOptions = function() {
125 var g = this.createGraph();
126 this.zoom(g, [ 11, 18 ], [ 35, 40 ]);
127
128 g.updateOptions({ dateWindow : null, valueRange : null });
129
130 assertEquals([0, 55], g.yAxisRange(0));
131 assertEquals([10, 20], g.xAxisRange());
132 }