forked from highcharts/highcharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-template.ts
388 lines (323 loc) · 8.98 KB
/
test-template.ts
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
/*!*
*
* Copyright (c) Highsoft AS. All rights reserved.
*
*!*/
/* *
*
* Types
*
* */
/**
* Constructor for a test chart
*/
type TestChartConstructor = (
container: (string|Highcharts.HTMLDOMElement),
options: Highcharts.Options
) => Highcharts.Chart;
/**
* Callback for one test
*/
type TestTemplateCallback = (testTemplate: TestTemplate) => void;
/**
* Initializer for each test
*/
type TestTemplateInitializer =(
this: Highcharts.Chart,
chartOptions: Highcharts.Options
) => void;
/* *
*
* Interfaces
*
* */
interface TestChart extends Highcharts.Chart {
template?: string;
}
interface TestTemplateCase {
chartOptions: Highcharts.Options;
testCallback: TestTemplateCallback;
}
interface TestTemplateRegistry {
name: string;
chartConstructor: TestChartConstructor;
chartOptions: Highcharts.Options;
testInitializer: TestTemplateInitializer;
}
/* *
*
* Classes
*
* */
/**
* This class creates a new template for testing on generic charts. It also
* provides static functions to use registered templates in test cases.
*/
class TestTemplate {
/* *
*
* Static Properties
*
* */
/**
* The registered chart templates
*/
public static templates: Highcharts.Dictionary<TestTemplate|TestTemplateRegistry> = {};
/* *
*
* Static Functions
*
* */
/**
* Creates a new container in the DOM tree.
*/
private static createContainer (): HTMLElement {
var container = document.createElement('div'),
containerStyle = container.style;
containerStyle.left = '0';
containerStyle.position = 'absolute';
containerStyle.top = '0';
document.body.appendChild(container);
return container;
}
/**
* 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)
*/
public static register = function (
name: string,
chartConstructor: TestChartConstructor,
chartOptions: Highcharts.Options,
testInitializer: TestTemplateInitializer = undefined
) {
if (TestTemplate.templates[name]) {
throw new Error('Chart template already registered');
}
TestTemplate.templates[name] = {
name: name,
chartConstructor: chartConstructor,
chartOptions: chartOptions,
testInitializer: testInitializer
};
}
/**
* 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.
*/
public static test (
name: string,
chartOptions: Highcharts.Options = {},
testCallback: TestTemplateCallback = undefined
) {
let 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.
*/
private static treeCopy (source: any, propertiesTree: any): any {
if (!source ||
typeof source !== 'object'
) {
return source;
}
// @todo handle arrays (peek into karma-setup how it is handled there)
var copy = {} as any;
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
*/
private static updateUndoFor(chart: Highcharts.Chart): Function {
var undoStack = [] as Array<Highcharts.Options>,
removeEvent: Function;
removeEvent = Highcharts.addEvent(
chart,
'update',
function (args: any) {
undoStack.push(
TestTemplate.treeCopy(chart.options, args.options)
);
}
);
return function () {
removeEvent();
let undoOption;
while (!!(undoOption = undoStack.pop())) {
chart.update(undoOption, false, true, false);
}
};
}
/* *
*
* 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)
*/
constructor (
name: string,
chartConstructor: TestChartConstructor,
chartOptions: Highcharts.Options,
testInitializer?: TestTemplateInitializer
) {
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;
}
/* *
*
* Properties
*
* */
/**
* The name of the chart template
*/
public name: string;
/**
* The chart instance of the chart template
*/
public chart: TestChart;
/**
* The state of the chart template
*/
public ready: boolean;
/**
* The queue of waiting test cases for the chart template
*/
public testCases: Array<TestTemplateCase>;
/**
* An initializer for each test case (optional)
*/
public testInitializer?: TestTemplateInitializer;
/* *
*
* 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
*/
public test (
chartOptions: Highcharts.Options = {},
testCallback: TestTemplateCallback = undefined
) {
const chart = this.chart;
const testInitializer = this.testInitializer;
this.testCases.push({
chartOptions: chartOptions,
testCallback: testCallback
});
if (!this.ready) {
return;
}
this.ready = false;
try {
let testCase: (TestTemplateCase|undefined);
while (!!(testCase = this.testCases.shift())) {
let undoUpdates: (Function|undefined);
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;
}
}
}