-
Notifications
You must be signed in to change notification settings - Fork 1
/
app3.js
443 lines (371 loc) · 13.1 KB
/
app3.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
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
const assert = require('assert');
const lodash = require('lodash');
const angular = lodash;
function makeChart(ctx, opt) {
return {
update: function () {
}
};
}
function makeLineChart(canvasContext) {
var _chartData = {
datasets: [
{data: (new Array(60)).fill(0)}
]
},
_opt = {
data: _chartData
},
_info = {};
return {
chart: makeChart(canvasContext, _opt),
update: function (data) {
var chartData = _chartData.datasets[0].data;
angular.forEach(chartData, function (el, index, array) {
if (index !== 0) {
array[index - 1] = el;
}
});
chartData[chartData.length - 1] = data.utilization;
this.chart.update();
_info = data;
},
reset: function () {
var chartData = _chartData.datasets[0].data;
angular.forEach(chartData, function (el, index, array) {
array[index] = 0;
});
},
chartLast: function (n) {
n = n || 1;
var chartData = _chartData.datasets[0].data;
if (chartData.length < n) {
n = chartData.length;
}
return chartData.slice(chartData.length - n, chartData.length)
.reverse();
},
last: function () {
return _info;
}
};
}
function makeStackChart(canvasContext) {
var _chartData = {
datasets: [
{data: (new Array(60)).fill(0)},
{data: (new Array(60)).fill(0)}
]
},
_opt = {
data: _chartData
},
_info = {};
return {
chart: makeChart(canvasContext, _opt),
update: function (data) {
var chartData = _chartData.datasets[0].data;
angular.forEach(chartData, function (el, index, array) {
if (index !== 0) {
array[index - 1] = el;
}
});
chartData[chartData.length - 1] = data.transmitInKbps;
chartData = _chartData.datasets[1].data;
angular.forEach(chartData, function (el, index, array) {
if (index !== 0) {
array[index - 1] = el;
}
});
chartData[chartData.length - 1] = data.receiveInKbps;
this.chart.update();
_info = data;
},
reset: function () {
var chartData = _chartData.datasets[0].data;
angular.forEach(chartData, function (el, index, array) {
array[index] = 0;
});
chartData = _chartData.datasets[1].data;
angular.forEach(chartData, function (el, index, array) {
array[index] = 0;
});
},
chartLast: function (n) {
n = n || 1;
var chartData = _chartData.datasets[0].data,
ret = [];
if (chartData.length < n) {
n = chartData.length;
}
ret[0] = chartData.slice(chartData.length - n, chartData.length)
.reverse();
chartData = _chartData.datasets[1].data;
ret[1] = chartData.slice(chartData.length - n, chartData.length)
.reverse();
return ret;
},
last: function () {
return _info;
}
};
}
function makeController() {
return {
name: '',
cpu: makeLineChart(),
memory: makeLineChart(),
ethernet: makeStackChart(),
update: function (data) {
this.name = data.name;
this.cpu.update(data.cpu);
this.memory.update(data.memory);
this.ethernet.update(data.ethernet);
},
reset: function () {
this.name = '';
this.cpu.reset();
this.memory.reset();
this.ethernet.reset();
},
isShow: function () {
return this.name !== '';
},
columns: function (ctrls) {
// return 12 / total-displaied-controlled
if (!this.isShow()) {
return 12;
}
var total = 0;
angular.forEach(ctrls, function (ctrl) {
if (ctrl.isShow()) {
total += 1;
}
});
return 12 / total;
}
};
}
function updateControllerCharts(controllers, resp) {
var r_resp = {};
angular.forEach(resp, function (value, key) {
// unique
r_resp[value.name] = value;
});
// drop existing data if no receiving data for specify controller
angular.forEach(controllers, function (value, key) {
if (typeof r_resp[value.name] === 'undefined') {
// controllers[key].name = '';
controllers[key].reset();
}
});
angular.forEach(r_resp, function (value, key) {
var index = controllers.findIndex(function (ctrl) {
return (ctrl.name === value.name);
});
if (index === -1) {
index = controllers.findIndex(function (ctrl) {
return (ctrl.name === '');
});
}
if (index === -1) {
// something error...
console.log('something error...');
return;
}
controllers[index].update(value);
});
// angular.forEach(controllers, function(value, key) {
// if (typeof r_resp[value.name] === 'undefined') {
// controllers[key].name = '';
// }
// });
}
function makeControllerUtilization(name) {
return {
name: name,
cpu: {
utilization: 15,
frequencyInGhz: 2.20
},
memory: {
utilization: 51,
totalInGb: 4,
usedInGb: 1.5
},
ethernet: {
transmitInKbps: 50,
receiveInKbps: 55
}
};
}
(function test_for_init() {
var controllers = [
makeController(), makeController(), makeController()
],
respCtrl1 = makeControllerUtilization('ctrl1'),
respCtrl2 = makeControllerUtilization('ctrl2'),
resp = {
status: 200,
dashboardControllers: [
respCtrl1, respCtrl2
]
};
updateControllerCharts(controllers, resp.dashboardControllers);
assert.equal(respCtrl1.name, controllers[0].name);
assert.deepEqual(respCtrl1.cpu, controllers[0].cpu.last());
assert.deepEqual(respCtrl1.memory, controllers[0].memory.last());
assert.deepEqual(respCtrl1.ethernet, controllers[0].ethernet.last());
assert.equal(respCtrl2.name, controllers[1].name);
})();
(function test_for_response_element_position_is_changed() {
var controllers = [
makeController(), makeController(), makeController()
],
respCtrl1 = makeControllerUtilization('ctrl1'),
respCtrl2 = makeControllerUtilization('ctrl2'),
resp = {
status: 200,
dashboardControllers: [
respCtrl1, respCtrl2
]
};
updateControllerCharts(controllers, resp.dashboardControllers);
assert.equal(respCtrl1.name, controllers[0].name);
assert.deepEqual(respCtrl1.cpu, controllers[0].cpu.last());
assert.deepEqual(respCtrl1.memory, controllers[0].memory.last());
assert.deepEqual(respCtrl1.ethernet, controllers[0].ethernet.last());
assert.equal(respCtrl2.name, controllers[1].name);
var resp2 = {
status: 200,
dashboardControllers: [
makeControllerUtilization('ctrl2'),
makeControllerUtilization('ctrl1')
]
};
updateControllerCharts(controllers, resp2.dashboardControllers);
assert.equal(respCtrl1.name, controllers[0].name);
assert.deepEqual(respCtrl1.cpu, controllers[0].cpu.last());
assert.deepEqual(respCtrl1.memory, controllers[0].memory.last());
assert.deepEqual(respCtrl1.ethernet, controllers[0].ethernet.last());
assert.equal(respCtrl2.name, controllers[1].name);
})();
(function test_for_response_element_disappear() {
var controllers = [
makeController(), makeController(), makeController()
],
respCtrl1 = makeControllerUtilization('ctrl1'),
respCtrl2 = makeControllerUtilization('ctrl2'),
resp = {
status: 200,
dashboardControllers: [
respCtrl1, respCtrl2
]
};
updateControllerCharts(controllers, resp.dashboardControllers);
assert.equal(respCtrl1.name, controllers[0].name);
assert.deepEqual(respCtrl1.cpu, controllers[0].cpu.last());
assert.deepEqual(respCtrl1.memory, controllers[0].memory.last());
assert.deepEqual(respCtrl1.ethernet, controllers[0].ethernet.last());
assert.equal(respCtrl2.name, controllers[1].name);
var resp2 = {
status: 200,
dashboardControllers: [
makeControllerUtilization('ctrl2')
]
};
updateControllerCharts(controllers, resp2.dashboardControllers);
assert.equal('', controllers[0].name);
assert.equal(respCtrl2.name, controllers[1].name);
})();
(function test_for_response_element_update_continuously() {
var controllers = [
makeController(), makeController(), makeController()
];
updateControllerCharts(controllers, [{
name: 'ctrl1',
cpu: {utilization: 1},
memory: {utilization: 1},
ethernet: {transmitInKbps: 1, receiveInKbps: 1}
}]);
assert.equal('ctrl1', controllers[0].name);
assert.deepEqual([1], controllers[0].cpu.chartLast());
assert.deepEqual([1], controllers[0].memory.chartLast());
assert.deepEqual([[1], [1]], controllers[0].ethernet.chartLast());
assert.equal(1, controllers[0].cpu.last().utilization);
assert.equal(1, controllers[0].memory.last().utilization);
assert.equal(1, controllers[0].ethernet.last().transmitInKbps);
updateControllerCharts(controllers, [{
name: 'ctrl1',
cpu: {utilization: 2},
memory: {utilization: 2},
ethernet: {transmitInKbps: 2, receiveInKbps: 2}
}]);
assert.equal('ctrl1', controllers[0].name);
assert.deepEqual([2, 1], controllers[0].cpu.chartLast(2));
assert.deepEqual([2, 1], controllers[0].memory.chartLast(2));
assert.equal(2, controllers[0].cpu.last().utilization);
assert.equal(2, controllers[0].memory.last().utilization);
assert.equal(2, controllers[0].ethernet.last().transmitInKbps);
updateControllerCharts(controllers, [{
name: 'ctrl1',
cpu: {utilization: 3},
memory: {utilization: 3},
ethernet: {transmitInKbps: 3, receiveInKbps: 3}
}]);
assert.equal('ctrl1', controllers[0].name);
assert.deepEqual([3, 2, 1], controllers[0].cpu.chartLast(3));
assert.deepEqual([3, 2, 1], controllers[0].memory.chartLast(3));
assert.equal(3, controllers[0].cpu.last().utilization);
assert.equal(3, controllers[0].memory.last().utilization);
assert.equal(3, controllers[0].ethernet.last().transmitInKbps);
})();
(function test_for_response_element_replace() {
var controllers = [
makeController()
];
updateControllerCharts(controllers, [{
name: 'ctrl1',
cpu: {utilization: 1},
memory: {utilization: 1},
ethernet: {transmitInKbps: 1, receiveInKbps: 1}
}]);
assert.equal('ctrl1', controllers[0].name);
assert.deepEqual([1], controllers[0].cpu.chartLast());
assert.deepEqual([1], controllers[0].memory.chartLast());
assert.deepEqual([[1], [1]], controllers[0].ethernet.chartLast());
assert.equal(1, controllers[0].cpu.last().utilization);
assert.equal(1, controllers[0].memory.last().utilization);
assert.equal(1, controllers[0].ethernet.last().transmitInKbps);
updateControllerCharts(controllers, [{
name: 'ctrl2',
cpu: {utilization: 2},
memory: {utilization: 2},
ethernet: {transmitInKbps: 2, receiveInKbps: 2}
}]);
assert.equal('ctrl2', controllers[0].name);
assert.deepEqual([2, 0], controllers[0].cpu.chartLast(2));
assert.deepEqual([2, 0], controllers[0].memory.chartLast(2));
assert.deepEqual([[2, 0], [2, 0]], controllers[0].ethernet.chartLast(2));
assert.equal(2, controllers[0].cpu.last().utilization);
assert.equal(2, controllers[0].memory.last().utilization);
assert.equal(2, controllers[0].ethernet.last().transmitInKbps);
})();
(function test_for_response_element_replace() {
var controllers = [
makeController(), makeController(), makeController()
];
assert.equal(12, controllers[0].columns(controllers));
assert.equal(12, controllers[1].columns(controllers));
assert.equal(12, controllers[2].columns(controllers));
controllers[0].name = 'hello';
assert.equal(12, controllers[0].columns(controllers));
assert.equal(12, controllers[1].columns(controllers));
assert.equal(12, controllers[2].columns(controllers));
controllers[1].name = 'hi';
assert.equal(6, controllers[0].columns(controllers));
assert.equal(6, controllers[1].columns(controllers));
assert.equal(12, controllers[2].columns(controllers));
})();
console.log('pass');
process.exit(0);