-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathgauge.spec.ts
509 lines (455 loc) · 19.8 KB
/
gauge.spec.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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
/**
* Linear gauge spec document
*/
import { Browser, EventHandler, createElement, EmitType } from '@syncfusion/ej2-base';
import { ILoadedEventArgs, ILoadEventArgs } from '../../src/linear-gauge/model/interface';
import { LinearGauge } from '../../src/linear-gauge/linear-gauge';
import { Annotations } from '../../src/linear-gauge/annotations/annotations';
import {profile , inMB, getMemoryProfile} from '../common.spec';
import { Pointer } from '../../src';
LinearGauge.Inject(Annotations);
describe('Linear gauge control', () => {
beforeAll(() => {
const isDef = (o: any) => o !== undefined && o !== null;
if (!isDef(window.performance)) {
console.log("Unsupported environment, window.performance.memory is unavailable");
this.skip(); //Skips test (in Chai)
return;
}
});
describe('linear gauge direct properties', () => {
let gauge: LinearGauge;
let element: HTMLElement;
let svg: HTMLElement;
beforeAll((): void => {
element = createElement('div', { id: 'container' });
document.body.appendChild(element);
gauge = new LinearGauge();
gauge.appendTo('#container');
});
afterAll((): void => {
element.remove();
gauge.destroy();
});
it('checking with guage instance', () => {
gauge.loaded = (args: ILoadedEventArgs): void => {
expect(gauge != null).toBe(true);
};
});
it('checking wkith gauge element', () => {
let ele: HTMLElement = document.getElementById("container");
expect(ele.childNodes.length).toBeGreaterThan(0);
});
it('checking with module name', (): void => {
expect(gauge.getModuleName()).toBe('lineargauge');
});
it('checking with empty width property', (): void => {
svg = document.getElementById('container_svg');
expect(svg.getAttribute('width') != null).toBe(true);
});
it('checking with empty height property', (): void => {
svg = document.getElementById('container_svg');
expect(svg.getAttribute('height')).toEqual('450');
});
it('checking with background color', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_svg');
expect(svg != null).toBe(true);
};
gauge.background = 'red';
gauge.border.width = 2;
gauge.refresh();
});
it('checking with background color', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_LinearGaugeBorder');
expect(svg != null).toBe(true);
};
gauge.background = 'green';
gauge.refresh();
});
it('checking with height property', () => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_svg');
expect(svg.getAttribute('height')).toEqual('600');
};
gauge.height = '600';
gauge.refresh();
});
it('checking with height in percentage', (done: Function) => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_svg');
expect(svg.getAttribute('height') == '450').toBe(true);
done();
};
gauge.height = '50%';
gauge.refresh();
});
it('checking with width in percentage', () => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_svg');
expect(svg !== null).toBe(true);
};
gauge.width = '50%';
gauge.refresh();
});
it('checking with width property', () => {
gauge.loaded = (arg: ILoadedEventArgs): void => {
svg = document.getElementById('container_svg');
expect(svg.getAttribute('width')).toBe('800');
};
gauge.width = '800';
gauge.refresh();
});
it('checking the load event', () => {
gauge.width = '600';
gauge.height = '450';
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById("container_svg");
expect(svg.getAttribute('width')).toEqual('900');
expect(svg.getAttribute('height')).toEqual('600');
};
gauge.load = (args: ILoadEventArgs): void => {
gauge.width = '900';
gauge.height = '600';
};
gauge.refresh();
});
it('checking with empty gauge title', () => {
svg = document.getElementById('container_LinearGaugeTitle');
expect(svg == null).toEqual(true);
});
it('checking with gauge title', () => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_LinearGaugeTitle');
expect(svg != null).toBe(true);
};
gauge.title = 'linear gauge';
gauge.refresh();
});
it('checking with gauge title content', () => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_LinearGaugeTitle');
expect(svg.textContent == 'linear gauge').toBe(true);
};
gauge.title = 'linear gauge';
gauge.refresh();
});
it('checking with title font size', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_LinearGaugeTitle');
expect(svg.style.fontSize).toEqual('20px');
};
gauge.titleStyle.size = '20px';
gauge.refresh();
});
it('checking with title font family', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_LinearGaugeTitle');
expect(svg.style.fontFamily).toEqual('serif');
};
gauge.titleStyle.fontFamily = 'Serif';
gauge.refresh();
});
it('checking with title font style', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_LinearGaugeTitle');
expect(svg.style.fontStyle).toEqual('oblique');
};
gauge.titleStyle.fontStyle = 'oblique';
gauge.refresh();
});
it('checking with title font weight', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_LinearGaugeTitle');
expect(svg.style.fontWeight).toEqual('bold');
};
gauge.titleStyle.fontWeight = 'bold';
gauge.refresh();
});
it('checking with gauge border color', () => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_LinearGaugeBorder');
expect(svg.getAttribute('stroke')).toEqual('green');
};
gauge.border.color = 'green';
gauge.border.width = 1;
gauge.refresh();
});
it('checking with gauge border opacity', () => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_LinearGaugeBorder');
expect(svg != null).toBe(true);
};
gauge.border.width = 5;
gauge.refresh();
});
it('checking with gauge border color', () => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_LinearGaugeBorder');
expect(svg.getAttribute('stroke')).toEqual('red');
};
gauge.border.color = 'red';
gauge.refresh();
});
it('checking with gauge border width', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_LinearGaugeBorder');
expect(svg.getAttribute('stroke-width')).toEqual('5');
};
gauge.border.width = 5;
gauge.refresh();
});
it('checking with container group', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_Normal_Layout');
expect(svg != null).toBe(true);
};
gauge.container.height = 400;
gauge.container.width = 30;
gauge.refresh();
});
it('checking with container normal rectangle box', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_Normal_Layout');
expect(svg != null).toBe(true);
};
gauge.container.height = 400;
gauge.container.width = 30;
gauge.container.type = 'Normal';
gauge.refresh();
});
it('checking with container rounded rectangle box', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_RoundedRectangle_Layout');
expect(svg != null).toBe(true);
};
gauge.container.height = 400;
gauge.container.width = 30;
gauge.container.type = 'RoundedRectangle';
gauge.refresh();
});
it('checking with container thermometer', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_Thermometer_Layout');
expect(svg != null).toBe(true);
};
gauge.container.height = 400;
gauge.container.width = 30;
gauge.container.type = 'Thermometer';
gauge.refresh();
});
it('checking with container fill', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_Thermometer_Layout');
expect(svg.getAttribute('stroke') == '#bfbfbf').toBe(true);
};
gauge.container.height = 400;
gauge.container.width = 30;
gauge.refresh();
});
it('checking with container fill', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_Thermometer_Layout');
expect(svg.getAttribute('fill') == 'green').toBe(true);
};
gauge.container.height = 400;
gauge.container.width = 30;
gauge.container.backgroundColor = 'green';
gauge.refresh();
});
it('checking with container stroke', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_Thermometer_Layout');
expect(svg.getAttribute('stroke') == 'red').toBe(true);
};
gauge.container.height = 400;
gauge.container.width = 30;
gauge.container.border.color = 'red';
gauge.refresh();
});
it('checking with container stroke width', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_Thermometer_Layout');
expect(svg.getAttribute('stroke-width') == '5').toBe(true);
};
gauge.container.height = 400;
gauge.container.width = 30;
gauge.container.border.width = 5;
gauge.refresh();
});
it('checking with horizontal orientation', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_svg');
expect(svg != null).toBe(true);
};
gauge.orientation = 'Horizontal';
gauge.refresh();
});
it('checking with Normal Container', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_Normal_Layout');
expect(svg != null).toBe(true);
};
gauge.container.type = 'Normal'
gauge.orientation = 'Horizontal';
gauge.refresh();
});
it('checking with Container height and width', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_Normal_Layout');
expect(svg != null).toBe(true);
};
gauge.orientation = 'Horizontal';
gauge.container.height = 400;
gauge.container.width = 20;
gauge.refresh();
});
it('checking with Rounded Rectangle Container', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_RoundedRectangle_Layout');
expect(svg != null).toBe(true);
};
gauge.orientation = 'Horizontal';
gauge.container.type = 'RoundedRectangle';
gauge.refresh();
});
it('checking with Thermometer Container', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
svg = document.getElementById('container_Thermometer_Layout');
// expect(svg != null).toBe(true);
};
gauge.orientation = 'Horizontal';
gauge.container.type = 'Thermometer';
gauge.refresh();
});
it('checking with persist data method', (): void => {
gauge.getPersistData();
});
});
describe('set pointer value', () => {
let element: HTMLElement;
let gauge: LinearGauge;
beforeAll((): void => {
element = createElement('div', { id: 'container' });
document.body.appendChild(element);
gauge = new LinearGauge();
gauge.appendTo('#container');
});
afterAll((): void => {
element.remove();
});
it('checking with setPointerValue Method in vertical orientation', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
let svg: HTMLElement = document.getElementById('container_AxisIndex_0_MarkerPointer_0');
expect(svg != null).toBe(true);
};
gauge.setPointerValue(0, 0, 30);
});
it('checking with setPointerValue Method in horizontal orientation', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
let svg: HTMLElement = document.getElementById('container_AxisIndex_0_MarkerPointer_0');
expect(svg != null).toBe(true);
};
gauge.setPointerValue(0, 0, 30);
});
it('checking with setPointerValue Method in horizontal orientation with value greater than axis maximum', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
let svg: HTMLElement = <HTMLElement>document.getElementById('container_AxisIndex_0_MarkerPointer_0').children[0];
gauge.setPointerValue(0, 0, 60);
let pointer:Pointer = <Pointer>gauge.axes[0].pointers[0];
expect(pointer.currentValue == 50).toBe(true);
};
gauge.orientation = 'Horizontal';
gauge.axes[0].minimum = 0;
gauge.axes[0].maximum = 50;
});
it('checking with setPointerValue Method in horizontal orientation with value less than axis minimum', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
let svg: HTMLElement = <HTMLElement>document.getElementById('container_AxisIndex_0_MarkerPointer_0').children[0];
gauge.setPointerValue(0, 0, -20);
let pointer:Pointer = <Pointer>gauge.axes[0].pointers[0];
expect(pointer.currentValue == 0).toBe(true);
};
gauge.axes[0].minimum = 0;
gauge.axes[0].maximum = 50;
});
it('checking with setPointerValue Method in vertical orientation with value greater than axis maximum', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
let svg: HTMLElement = <HTMLElement>document.getElementById('container_AxisIndex_0_MarkerPointer_0').children[0];
gauge.setPointerValue(0, 0, 60);
let pointer:Pointer = <Pointer>gauge.axes[0].pointers[0];
expect(pointer.currentValue == 50).toBe(true);
};
gauge.axes[0].minimum = 0;
gauge.axes[0].maximum = 50;
gauge.orientation = 'Vertical';
});
it('checking with setPointerValue Method in vertical orientation with value less than axis minimum', (): void => {
gauge.loaded = (args: ILoadedEventArgs): void => {
let svg: HTMLElement = <HTMLElement>document.getElementById('container_AxisIndex_0_MarkerPointer_0').children[0];
gauge.setPointerValue(0, 0, -20);
let pointer:Pointer = <Pointer>gauge.axes[0].pointers[0];
expect(pointer.currentValue == 0).toBe(true);
};
gauge.axes[0].minimum = 0;
gauge.axes[0].maximum = 50;
});
});
describe('Checking onproperty changed method ', () => {
let element: HTMLElement;
let gauge: LinearGauge;
beforeAll((): void => {
element = createElement('div', { id: 'container' });
document.body.appendChild(element);
gauge = new LinearGauge();
gauge.appendTo('#container');
});
afterAll((): void => {
element.remove();
gauge.destroy();
});
it('checking with height and width', (): void => {
gauge.height = '600';
gauge.width = '900';
gauge.dataBind();
});
it('checking with title', (): void => {
gauge.title = 'Linear gauge';
gauge.dataBind();
});
it('checking with title style', (): void => {
gauge.titleStyle.size = '30px';
gauge.dataBind();
});
it('checking with border', (): void => {
gauge.border.color = 'red';
gauge.border.width = 5;
gauge.dataBind();
});
it('checking with background', (): void => {
gauge.background = 'green';
gauge.dataBind();
});
it('checking with title font Weight', (): void => {
gauge.titleStyle.fontWeight = 'Bold';
gauge.dataBind();
});
it('checking with container', (): void => {
gauge.container.type = 'Thermometer';
gauge.dataBind();
});
it('Checking resize event', () => {
gauge.gaugeResize(<Event>{});
});
});
it('memory leak', () => {
profile.sample();
let average: any = inMB(profile.averageChange)
//Check average change in memory samples to not be over 10MB
expect(average).toBeLessThan(10);
let memory: any = inMB(getMemoryProfile())
//Check the final memory usage against the first usage, there should be little change if everything was properly deallocated
expect(memory).toBeLessThan(profile.samples[0] + 0.25);
});
});