forked from highcharts/highcharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-template.js
226 lines (226 loc) · 7.11 KB
/
test-template.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/*!*
*
* Copyright (c) Highsoft AS. All rights reserved.
*
*!*/
/* *
*
* Classes
*
* */
/**
* This class creates a new template for testing on generic charts. It also
* provides static functions to use registered templates in test cases.
*/
var TestTemplate = /** @class */ (function () {
/* *
*
* Constructor
*
* */
/**
* This class creates a new template for testing on generic charts. It also
* provides static functions to use registered templates in test cases.
*
* @param name
* The reference name of the chart.
*
* @param chartConstructor
* The chart factory function for the template.
*
* @param chartOptions
* The default chart Options for the template.
*
* @param testInitializer
* The initializer function for a test case. (optional)
*/
function TestTemplate(name, chartConstructor, chartOptions, testInitializer) {
if (!(this instanceof TestTemplate)) {
return new TestTemplate(name, chartConstructor, chartOptions, testInitializer);
}
this.chart = chartConstructor(TestTemplate.createContainer(), chartOptions);
this.chart.template = name;
this.name = name;
this.ready = true;
this.testCases = [];
this.testInitializer = testInitializer;
}
/* *
*
* Static Functions
*
* */
/**
* Creates a new container in the DOM tree.
*/
TestTemplate.createContainer = function () {
var container = document.createElement('div'), containerStyle = container.style;
containerStyle.left = '0';
containerStyle.position = 'absolute';
containerStyle.top = '0';
document.body.appendChild(container);
return container;
};
/**
* Prepares a chart template for a test. This function works asynchronously.
*
* @param name
* The reference name of the template to prepare for the test.
*
* @param chartOptions
* The additional options to customize the chart of the template.
*
* @param testCallback
* The callback with the prepared chart template as the first
* argument.
*/
TestTemplate.test = function (name, chartOptions, testCallback) {
if (chartOptions === void 0) { chartOptions = {}; }
if (testCallback === void 0) { testCallback = undefined; }
var template = TestTemplate.templates[name];
if (!template) {
throw new Error('Template "' + name + '" is not registered');
}
if (!(template instanceof TestTemplate)) {
TestTemplate.templates[name] = template = new TestTemplate(template.name, template.chartConstructor, template.chartOptions, template.testInitializer);
}
template.test(chartOptions, testCallback);
};
/**
* Creates a deep copy of entries and properties.
*
* @param source
* The source to copy from.
*
* @param propertiesTree
* The properties tree to copy.
*/
TestTemplate.treeCopy = function (source, propertiesTree) {
if (!source ||
typeof source !== 'object') {
return source;
}
// @todo handle arrays (peek into karma-setup how it is handled there)
var copy = {};
for (var key in propertiesTree) {
if (propertiesTree.hasOwnProperty(key) &&
source.hasOwnProperty(key)) {
copy[key] = TestTemplate.treeCopy(source[key], propertiesTree[key]);
}
else {
copy[key] = undefined;
}
}
return copy;
};
/**
* Listens on the update event of a chart and saves changes for the
* returned undo function.
*
* @param chart
* The instance of the chart
*/
TestTemplate.updateUndoFor = function (chart) {
var undoStack = [], removeEvent;
removeEvent = Highcharts.addEvent(chart, 'update', function (args) {
undoStack.push(TestTemplate.treeCopy(chart.options, args.options));
});
return function () {
removeEvent();
var undoOption;
while (!!(undoOption = undoStack.pop())) {
chart.update(undoOption, false, true, false);
}
};
};
/* *
*
* Functions
*
* */
/**
* Creates a test case for the current template chart and add it to the
* queue array.
*
* @param chartOptions
* Additional options for the chart
*
* @param testCallback
* The callback to test the chart
*/
TestTemplate.prototype.test = function (chartOptions, testCallback) {
if (chartOptions === void 0) { chartOptions = {}; }
if (testCallback === void 0) { testCallback = undefined; }
var chart = this.chart;
var testInitializer = this.testInitializer;
this.testCases.push({
chartOptions: chartOptions,
testCallback: testCallback
});
if (!this.ready) {
return;
}
this.ready = false;
try {
var testCase = void 0;
while (!!(testCase = this.testCases.shift())) {
var undoUpdates = void 0;
try {
undoUpdates = TestTemplate.updateUndoFor(chart);
if (typeof testInitializer === 'function') {
testInitializer.call(chart, testCase.chartOptions);
}
chart.update(testCase.chartOptions, true, true, false);
chart.container.style.zIndex = '9999';
testCase.testCallback(this);
}
finally {
if (typeof undoUpdates === 'function') {
undoUpdates();
}
chart.container.style.zIndex = '';
}
}
}
finally {
this.ready = true;
}
};
/* *
*
* Static Properties
*
* */
/**
* The registered chart templates
*/
TestTemplate.templates = {};
/**
* Registers a chart template for additional tests
*
* @param name
* The reference name of the chart.
*
* @param chartConstructor
* The chart factory function for the template.
*
* @param chartOptions
* The default chart options for the template.
*
* @param testInitializer
* The initializer function for a test case. (optional)
*/
TestTemplate.register = function (name, chartConstructor, chartOptions, testInitializer) {
if (testInitializer === void 0) { testInitializer = undefined; }
if (TestTemplate.templates[name]) {
throw new Error('Chart template already registered');
}
TestTemplate.templates[name] = {
name: name,
chartConstructor: chartConstructor,
chartOptions: chartOptions,
testInitializer: testInitializer
};
};
return TestTemplate;
}());