1 <!-- A local source file that allows dygraph developers to test locally. --
>
4 <!-- Standard Dygraph scripts --
>
5 <meta http-equiv=
"X-UA-Compatible" content=
"IE=EmulateIE7; IE=EmulateIE9">
7 <script type=
"text/javascript" src=
"../../excanvas.js"></script>
9 <script type=
"text/javascript" src=
"../../dygraph-dev.js"></script>
11 <!-- Scripts for automated tests --
>
12 <script type=
"text/javascript" src=
"../lib/jquery-1.4.2.js"></script>
13 <script type=
"text/javascript" src=
"../lib/Asserts.js"></script>
14 <script type=
"text/javascript" src=
"fake-jstestdriver.js"></script>
15 <script type=
"text/javascript" src=
"../tests/MoreAsserts.js"></script>
16 <script type=
"text/javascript" src=
"../tests/Proxy.js"></script>
17 <script type=
"text/javascript" src=
"../tests/CanvasAssertions.js"></script>
18 <script type=
"text/javascript" src=
"../tests/DygraphOps.js"></script>
19 <script type=
"text/javascript" src=
"../tests/sanity.js"></script>
20 <script type=
"text/javascript" src=
"../tests/simple_drawing.js"></script>
21 <script type=
"text/javascript" src=
"../tests/range_tests.js"></script>
22 <script type=
"text/javascript" src=
"../tests/axis_labels.js"></script>
23 <script type=
"text/javascript" src=
"../tests/multi_csv.js"></script>
24 <script type=
"text/javascript" src=
"../tests/to_dom_coords.js"></script>
25 <script type=
"text/javascript" src=
"../tests/interaction_model.js"></script>
26 <script type=
"text/javascript" src=
"../tests/scrolling_div.js"></script>
27 <script type=
"text/javascript" src=
"../tests/custom_bars.js"></script>
28 <script type=
"text/javascript">
30 function processVariables() {
31 var splitVariables = function() { // http://www.idealog.us/
2006/
06/javascript_to_p.html
32 var query = window.location.search.substring(
1);
34 var vars = query.split(
"&");
35 for (var i =
0;i < vars.length; i++) {
36 var pair = vars[i].split(
"=");
37 args[pair[
0]] = pair[
1];
42 var args = splitVariables();
44 var command = args.command;
47 eval(
"tc = new " + args.testCase +
"()");
49 if (args.command ==
"runAllTests") {
50 console.log(
"Running all tests for " + args.testCase);
53 if (args.command ==
"runTest") {
54 console.log(
"Running test " + args.testCase +
"." + args.test);
55 tc.runTest(args.test);
63 <div id='graph'
></div>
64 This file is really nothing more than all the tests coalesced into a single
65 HTML file. To run a test, open a Javascript console and execute, for
67 <code>tc = new SimpleDrawingTestCase() ;
<br>
68 tc.runTest(
"testDrawSimpleRangePlusOne")
</code>
70 <p>Alternatively you can use query args:
<ul>
71 <li>testCase - for the name of the test case
72 <li>test - for the name of the test (use command=runTest)
73 <li>command - either runTest or runAllTests.
75 Example:
<code>local.html?testCase=ScrollingDivTestCase&test=testNestedDiv_Scrolled&command=runTest
</code>