Update plugin registry
[dygraphs.git] / auto_tests / misc / fake-jstestdriver.js
CommitLineData
644eff8b
RK
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 * @fileoverview Mocked-out jstestdriver api that lets me test locally.
23 *
24 * @author konigsberg@google.com (Robert Konigsberg)
25 */
26var jstestdriver = {
e07e165f 27 jQuery : jQuery
644eff8b
RK
28};
29
30var jstd = {
31 include : function(name) {
32 this.sucker("Not including " + name);
33 },
34 sucker : function(text) {
35 console.log(text + ", sucker!");
36 }
37};
38
3914c8e1
DV
39var testCaseList = [];
40
644eff8b 41function TestCase(name) {
357f7a8a
RK
42 var testCase = function() { return this; };
43 testCase.name = name;
44 testCase.toString = function() {
644eff8b
RK
45 return "Fake test case " + name;
46 };
47
9d076ffe
RK
48 testCase.prototype.setUp = function() { };
49 testCase.prototype.tearDown = function() { };
47c97d86
RK
50 /**
51 * name can be a string, which is looked up in this object, or it can be a
52 * function, in which case it's run.
53 *
54 * Examples:
55 * var tc = new MyTestCase();
56 * tc.runTest("testThis");
57 * tc.runTest(tc.testThis);
58 *
59 * The duplication tc in runTest is irritating, but it plays well with
60 * Chrome's console completion.
61 */
62 testCase.prototype.runTest = function(func) {
ca6c43aa
RK
63 try {
64 this.setUp();
47c97d86
RK
65
66 var fn = null;
67 var parameterType = typeof(func);
68 if (typeof(func) == "function") {
69 fn = func;
70 } else if (typeof(func) == "string") {
71 fn = this[func];
72 } else {
73 fail("can't supply " + typeof(func) + " to runTest");
74 }
75
ca6c43aa
RK
76 fn.apply(this, []);
77 this.tearDown();
9d076ffe 78 return true;
ca6c43aa 79 } catch (e) {
7479008d
RK
80 console.log(e);
81 if (e.stack) {
82 console.log(e.stack);
83 }
9d076ffe 84 return false;
ca6c43aa 85 }
644eff8b 86 };
da11a9a7 87
9d076ffe 88 testCase.prototype.runAllTests = function() {
ca17c249 89 var results = {};
357f7a8a
RK
90 var names = this.getTestNames();
91 for (var idx in names) {
92 var name = names[idx];
93 console.log("Running " + name);
94 var result = this.runTest(name);
ca17c249 95 results[name] = result;
357f7a8a 96 }
ca17c249
RK
97 console.log(prettyPrintEntity_(results));
98 return results;
357f7a8a
RK
99 };
100
101 testCase.prototype.getTestNames = function() {
102 // what's better than for ... in for non-array objects?
103 var tests = [];
9d076ffe
RK
104 for (var name in this) {
105 if (name.indexOf('test') == 0 && typeof(this[name]) == 'function') {
357f7a8a 106 tests.push(name);
9d076ffe
RK
107 }
108 }
357f7a8a
RK
109 return tests;
110 }
3914c8e1 111
357f7a8a 112 testCaseList.push({name : name, testCase : testCase});
9d076ffe 113 return testCase;
644eff8b 114};
3914c8e1
DV
115
116// Note: this creates a bunch of global variables intentionally.
117function addGlobalTestSymbols() {
118 globalTestDb = {}; // maps test name -> test function wrapper
119
120 var num_tests = 0;
121 for (var i = 0; i < testCaseList.length; i++) {
357f7a8a 122 var tc_class = testCaseList[i].testCase;
3914c8e1
DV
123 for (var name in tc_class.prototype) {
124 if (name.indexOf('test') == 0 && typeof(tc_class.prototype[name]) == 'function') {
125 if (globalTestDb.hasOwnProperty(name)) {
126 console.log('Duplicated test name: ' + name);
127 } else {
128 globalTestDb[name] = function(name, tc_class) {
129 return function() {
130 var tc = new tc_class;
3914c8e1
DV
131 return tc.runTest(name);
132 };
133 }(name, tc_class);
134 eval(name + " = globalTestDb['" + name + "'];");
135 num_tests += 1;
136 }
137 }
138 }
139 }
140 console.log('Loaded ' + num_tests + ' tests in ' +
141 testCaseList.length + ' test cases');
142}
357f7a8a
RK
143
144function getAllTestCases() {
145 return testCaseList;
146}