glyph-spec.js
12.5 KB
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
/*
* Copyright 2015 Open Networking Laboratory
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
ONOS GUI -- SVG -- Glyph Service - Unit Tests
*/
describe('factory: fw/svg/glyph.js', function() {
var $log, fs, gs, d3Elem, svg;
var numBaseGlyphs = 30,
vbBird = '352 224 113 112',
vbGlyph = '0 0 110 110',
vbBadge = '0 0 10 10',
longPrefix = 'M95.8,9.2H14.2c-2.8,0-5,2.2-5,5v81.5c0,2.8,2.2,5,5,' +
'5h81.5c2.8,0,5-2.2,5-5V14.2C100.8,11.5,98.5,9.2,95.8,9.2z ',
prefixLookup = {
bird: 'M427.7,300.4',
unknown: 'M35,40a5',
node: 'M15,100a5',
switch: 'M10,20a10',
roadm: 'M10,35l25-',
endstation: 'M10,15a5,5',
router: 'M10,55A45,45',
bgpSpeaker: 'M10,40a45,35',
chain: 'M60.4,77.6c-',
crown: 'M99.5,21.6c0,',
lock: 'M79.4,48.6h',
// toolbar specific glyphs
summary: longPrefix + 'M16.7',
details: longPrefix + 'M16.9',
ports: 'M98,9.2H79.6c',
map: 'M95.8,9.2H14.2c-2.8,0-5,2.2-5,5v66',
cycleLabels: 'M72.5,33.9c',
oblique: 'M80.9,30.2h',
resetZoom: 'M86,79.8L',
relatedIntents: 'M99.9,43.7',
nextIntent: 'M88.1,55.7',
prevIntent: 'M22.5,55.6',
intentTraffic: 'M14.7,71.5h',
allTraffic: 'M15.7,64.5h-7v',
flows: 'M93.8,46.1c',
eqMaster: 'M94.6,80.1c0,5.7',
// badges
uiAttached: 'M2,2.5a.5,.5',
checkMark: 'M2.6,4.5c0',
xMark: 'M9.0,7.2C8.2',
triangleUp: 'M0.5,6.2c0',
triangleDown: 'M9.5,4.2c0',
// our test ones..
triangle: 'M.5,.2',
diamond: 'M.2,.5'
};
beforeEach(module('onosUtil', 'onosSvg'));
beforeEach(inject(function (_$log_, FnService, GlyphService) {
var body = d3.select('body');
$log = _$log_;
fs = FnService;
gs = GlyphService;
d3Elem = body.append('defs').attr('id', 'myDefs');
svg = body.append('svg').attr('id', 'mySvg');
}));
afterEach(function () {
d3.select('#mySvg').remove();
d3.select('#myDefs').remove();
gs.clear();
});
it('should define GlyphService', function () {
expect(gs).toBeDefined();
});
it('should define api functions', function () {
expect(fs.areFunctions(gs, [
'clear', 'init', 'register', 'ids', 'glyph', 'loadDefs', 'addGlyph'
])).toBeTruthy();
});
it('should start with no glyphs loaded', function () {
expect(gs.ids()).toEqual([]);
});
it('should load the base set of glyphs into the cache', function () {
gs.init();
expect(gs.ids().length).toEqual(numBaseGlyphs);
});
it('should remove glyphs from the cache on clear', function () {
gs.init();
expect(gs.ids().length).toEqual(numBaseGlyphs);
gs.clear();
expect(gs.ids().length).toEqual(0);
});
function verifyGlyphLoadedInCache(id, vbox, expPfxId) {
var pfxId = expPfxId || id,
glyph = gs.glyph(id),
prefix = prefixLookup[pfxId],
plen = prefix.length;
expect(fs.contains(gs.ids(), id)).toBeTruthy();
expect(glyph).toBeDefined();
expect(glyph.id).toEqual(id);
expect(glyph.vb).toEqual(vbox);
expect(glyph.d.slice(0, plen)).toEqual(prefix);
}
it('should load the bird glyph', function() {
gs.init();
verifyGlyphLoadedInCache('bird', vbBird);
});
it('should load the unknown glyph', function() {
gs.init();
verifyGlyphLoadedInCache('unknown', vbGlyph);
});
it('should load the node glyph', function() {
gs.init();
verifyGlyphLoadedInCache('node', vbGlyph);
});
it('should load the switch glyph', function() {
gs.init();
verifyGlyphLoadedInCache('switch', vbGlyph);
});
it('should load the roadm glyph', function() {
gs.init();
verifyGlyphLoadedInCache('roadm', vbGlyph);
});
it('should load the endstation glyph', function() {
gs.init();
verifyGlyphLoadedInCache('endstation', vbGlyph);
});
it('should load the router glyph', function() {
gs.init();
verifyGlyphLoadedInCache('router', vbGlyph);
});
it('should load the bgpSpeaker glyph', function() {
gs.init();
verifyGlyphLoadedInCache('bgpSpeaker', vbGlyph);
});
it('should load the chain glyph', function() {
gs.init();
verifyGlyphLoadedInCache('chain', vbGlyph);
});
it('should load the crown glyph', function() {
gs.init();
verifyGlyphLoadedInCache('crown', vbGlyph);
});
it('should load the lock glyph', function() {
gs.init();
verifyGlyphLoadedInCache('lock', vbGlyph);
});
it('should load the summary glyph', function () {
gs.init();
verifyGlyphLoadedInCache('summary', vbGlyph);
});
it('should load the details glyph', function () {
gs.init();
verifyGlyphLoadedInCache('details', vbGlyph);
});
it('should load the ports glyph', function () {
gs.init();
verifyGlyphLoadedInCache('ports', vbGlyph);
});
it('should load the map glyph', function () {
gs.init();
verifyGlyphLoadedInCache('map', vbGlyph);
});
it('should load the cycleLabels glyph', function () {
gs.init();
verifyGlyphLoadedInCache('cycleLabels', vbGlyph);
});
it('should load the oblique glyph', function () {
gs.init();
verifyGlyphLoadedInCache('oblique', vbGlyph);
});
it('should load the resetZoom glyph', function () {
gs.init();
verifyGlyphLoadedInCache('resetZoom', vbGlyph);
});
it('should load the relatedIntents glyph', function () {
gs.init();
verifyGlyphLoadedInCache('relatedIntents', vbGlyph);
});
it('should load the nextIntent glyph', function () {
gs.init();
verifyGlyphLoadedInCache('nextIntent', vbGlyph);
});
it('should load the prevIntent glyph', function () {
gs.init();
verifyGlyphLoadedInCache('prevIntent', vbGlyph);
});
it('should load the intentTraffic glyph', function () {
gs.init();
verifyGlyphLoadedInCache('intentTraffic', vbGlyph);
});
it('should load the flows glyph', function () {
gs.init();
verifyGlyphLoadedInCache('flows', vbGlyph);
});
it('should load the flows eqMaster', function () {
gs.init();
verifyGlyphLoadedInCache('eqMaster', vbGlyph);
});
it('should load the uiAttached glyph', function() {
gs.init();
verifyGlyphLoadedInCache('uiAttached', vbBadge);
});
it('should load the checkMark glyph', function() {
gs.init();
verifyGlyphLoadedInCache('checkMark', vbBadge);
});
it('should load the xMark glyph', function() {
gs.init();
verifyGlyphLoadedInCache('xMark', vbBadge);
});
// define some glyphs that we want to install
var testVbox = '0 0 1 1',
dTriangle = 'M.5,.2l.3,.6,h-.6z',
dDiamond = 'M.2,.5l.3,-.3l.3,.3l-.3,.3z',
newGlyphs = {
triangle: dTriangle,
diamond: dDiamond
},
dupGlyphs = {
router: dTriangle,
switch: dDiamond
},
idCollision = 'GlyphService.register(): ID collision: ';
it('should install new glyphs', function () {
gs.init();
expect(gs.ids().length).toEqual(numBaseGlyphs);
spyOn($log, 'warn');
var ok = gs.register(testVbox, newGlyphs);
expect(ok).toBeTruthy();
expect($log.warn).not.toHaveBeenCalled();
expect(gs.ids().length).toEqual(numBaseGlyphs + 2);
verifyGlyphLoadedInCache('triangle', testVbox);
verifyGlyphLoadedInCache('diamond', testVbox);
});
it('should not overwrite glyphs with dup IDs', function () {
gs.init();
expect(gs.ids().length).toEqual(numBaseGlyphs);
spyOn($log, 'warn');
var ok = gs.register(testVbox, dupGlyphs);
expect(ok).toBeFalsy();
expect($log.warn).toHaveBeenCalledWith(idCollision + '"switch"');
expect($log.warn).toHaveBeenCalledWith(idCollision + '"router"');
expect(gs.ids().length).toEqual(numBaseGlyphs);
// verify original glyphs still exist...
verifyGlyphLoadedInCache('router', vbGlyph);
verifyGlyphLoadedInCache('switch', vbGlyph);
});
it('should replace glyphs if asked nicely', function () {
gs.init();
expect(gs.ids().length).toEqual(numBaseGlyphs);
spyOn($log, 'warn');
var ok = gs.register(testVbox, dupGlyphs, true);
expect(ok).toBeTruthy();
expect($log.warn).not.toHaveBeenCalled();
expect(gs.ids().length).toEqual(numBaseGlyphs);
// verify glyphs have been overwritten...
verifyGlyphLoadedInCache('router', testVbox, 'triangle');
verifyGlyphLoadedInCache('switch', testVbox, 'diamond');
});
function verifyPathPrefix(elem, prefix) {
var plen = prefix.length,
d = elem.select('path').attr('d');
expect(d.slice(0, plen)).toEqual(prefix);
}
function verifyLoadedInDom(id, vb, expPfxId) {
var pfxId = expPfxId || id,
symbol = d3Elem.select('#' + id);
expect(symbol.size()).toEqual(1);
expect(symbol.attr('viewBox')).toEqual(vb);
verifyPathPrefix(symbol, prefixLookup[pfxId]);
}
it('should load base glyphs into the DOM', function () {
gs.init();
gs.loadDefs(d3Elem);
expect(d3Elem.selectAll('symbol').size()).toEqual(numBaseGlyphs);
verifyLoadedInDom('bgpSpeaker', vbGlyph);
});
it('should load custom glyphs into the DOM', function () {
gs.init();
gs.register(testVbox, newGlyphs);
gs.loadDefs(d3Elem);
expect(d3Elem.selectAll('symbol').size()).toEqual(numBaseGlyphs + 2);
verifyLoadedInDom('diamond', testVbox);
});
it('should load only specified glyphs into the DOM', function () {
gs.init();
gs.loadDefs(d3Elem, ['crown', 'chain', 'node']);
expect(d3Elem.selectAll('symbol').size()).toEqual(3);
verifyLoadedInDom('crown', vbGlyph);
verifyLoadedInDom('chain', vbGlyph);
verifyLoadedInDom('node', vbGlyph);
});
it('should add a glyph with default size', function () {
gs.init();
var retval = gs.addGlyph(svg, 'crown');
var what = svg.selectAll('use');
expect(what.size()).toEqual(1);
expect(what.attr('width')).toEqual('40');
expect(what.attr('height')).toEqual('40');
expect(what.attr('xlink:href')).toEqual('#crown');
expect(what.classed('glyph')).toBeTruthy();
expect(what.classed('overlay')).toBeFalsy();
// check a couple on retval, which should be the same thing..
expect(retval.attr('xlink:href')).toEqual('#crown');
expect(retval.classed('glyph')).toBeTruthy();
});
it('should add a glyph with given size', function () {
gs.init();
gs.addGlyph(svg, 'crown', 37);
var what = svg.selectAll('use');
expect(what.size()).toEqual(1);
expect(what.attr('width')).toEqual('37');
expect(what.attr('height')).toEqual('37');
expect(what.attr('xlink:href')).toEqual('#crown');
expect(what.classed('glyph')).toBeTruthy();
expect(what.classed('overlay')).toBeFalsy();
});
it('should add a glyph marked as overlay', function () {
gs.init();
gs.addGlyph(svg, 'crown', 20, true);
var what = svg.selectAll('use');
expect(what.size()).toEqual(1);
expect(what.attr('width')).toEqual('20');
expect(what.attr('height')).toEqual('20');
expect(what.attr('xlink:href')).toEqual('#crown');
expect(what.classed('glyph')).toBeTruthy();
expect(what.classed('overlay')).toBeTruthy();
});
});