blob: 69dadb349190f9e5d2ca37c7ca9290dfa8c834ad [file] [log] [blame]
Matteo Scandolo9e6c6fc2016-04-14 14:59:09 -07001/**
2 * © OpenCORD
3 *
4 * Created by teone on 3/24/16.
5 */
6
7(function () {
8 'use strict';
9
Matteo Scandolof9700a32016-05-06 09:42:45 -070010 var scope, element, isolatedScope, rootScope, compile;
11 const compileElement = () => {
12
13 if(!scope){
14 scope = rootScope.$new();
15 }
16
17 element = angular.element('<xos-table config="config" data="data"></xos-table>');
18 compile(element)(scope);
19 scope.$digest();
20 isolatedScope = element.isolateScope().vm;
21 }
22
23
Matteo Scandolo9e6c6fc2016-04-14 14:59:09 -070024 describe('The xos.helper module', function(){
25 describe('The xos-table component', () => {
26
27 beforeEach(module('xos.helpers'));
28
Matteo Scandolof9700a32016-05-06 09:42:45 -070029 beforeEach(inject(function ($compile, $rootScope) {
30 compile = $compile;
31 rootScope = $rootScope;
32 }));
33
Matteo Scandolo9e6c6fc2016-04-14 14:59:09 -070034 it('should throw an error if no config is specified', inject(($compile, $rootScope) => {
35 function errorFunctionWrapper(){
Matteo Scandolof9700a32016-05-06 09:42:45 -070036 compileElement();
Matteo Scandolo9e6c6fc2016-04-14 14:59:09 -070037 }
38 expect(errorFunctionWrapper).toThrow(new Error('[xosTable] Please provide a configuration via the "config" attribute'));
39 }));
40
41 it('should throw an error if no config columns are specified', inject(($compile, $rootScope) => {
42 function errorFunctionWrapper(){
43 // setup the parent scope
Matteo Scandolof9700a32016-05-06 09:42:45 -070044 scope = $rootScope.$new();
Matteo Scandolo9e6c6fc2016-04-14 14:59:09 -070045 scope.config = 'green';
Matteo Scandolof9700a32016-05-06 09:42:45 -070046 compileElement();
Matteo Scandolo9e6c6fc2016-04-14 14:59:09 -070047 }
48 expect(errorFunctionWrapper).toThrow(new Error('[xosTable] Please provide a columns list in the configuration'));
49 }));
50
Matteo Scandoloa6a9e612016-04-14 16:52:13 -070051 describe('when basicly configured', function() {
Matteo Scandolo9e6c6fc2016-04-14 14:59:09 -070052
Matteo Scandoloa6a9e612016-04-14 16:52:13 -070053 beforeEach(inject(function ($compile, $rootScope) {
Matteo Scandolof9700a32016-05-06 09:42:45 -070054
Matteo Scandoloa6a9e612016-04-14 16:52:13 -070055 scope = $rootScope.$new();
Matteo Scandolo9e6c6fc2016-04-14 14:59:09 -070056
Matteo Scandoloa6a9e612016-04-14 16:52:13 -070057 scope.config = {
58 columns: [
59 {
60 label: 'Label 1',
61 prop: 'label-1'
62 },
63 {
64 label: 'Label 2',
65 prop: 'label-2'
66 }
67 ]
68 };
Matteo Scandolo9e6c6fc2016-04-14 14:59:09 -070069
Matteo Scandoloa6a9e612016-04-14 16:52:13 -070070 scope.data = [
Matteo Scandolo9e6c6fc2016-04-14 14:59:09 -070071 {
Matteo Scandoloa6a9e612016-04-14 16:52:13 -070072 'label-1': 'Sample 1.1',
73 'label-2': 'Sample 1.2'
Matteo Scandolo9e6c6fc2016-04-14 14:59:09 -070074 },
75 {
Matteo Scandoloa6a9e612016-04-14 16:52:13 -070076 'label-1': 'Sample 2.1',
77 'label-2': 'Sample 2.2'
Matteo Scandolo9e6c6fc2016-04-14 14:59:09 -070078 }
79 ]
Matteo Scandolo9e6c6fc2016-04-14 14:59:09 -070080
Matteo Scandoloa6a9e612016-04-14 16:52:13 -070081 element = angular.element('<xos-table config="config" data="data"></xos-table>');
82 $compile(element)(scope);
83 scope.$digest();
84 isolatedScope = element.isolateScope().vm;
85 }));
Matteo Scandolo9e6c6fc2016-04-14 14:59:09 -070086
Matteo Scandoloa6a9e612016-04-14 16:52:13 -070087 it('should contain 2 columns', function() {
88 var th = element[0].getElementsByTagName('th');
89 expect(th.length).toEqual(2);
90 expect(isolatedScope.columns.length).toEqual(2);
91 });
Matteo Scandolo9e6c6fc2016-04-14 14:59:09 -070092
Matteo Scandoloa6a9e612016-04-14 16:52:13 -070093 it('should contain 3 rows', function() {
94 var tr = element[0].getElementsByTagName('tr');
95 expect(tr.length).toEqual(3);
96 });
97
Matteo Scandolof9700a32016-05-06 09:42:45 -070098 it('should render labels', () => {
99 let label1 = $(element).find('thead tr th')[0]
100 let label2 = $(element).find('thead tr th')[1]
101 expect($(label1).text().trim()).toEqual('Label 1');
102 expect($(label2).text().trim()).toEqual('Label 2');
103 });
104
Matteo Scandoloe15a8202016-04-15 14:27:54 -0700105 describe('when no data are provided', () => {
106 beforeEach(() => {
107 isolatedScope.data = [];
108 scope.$digest();
109 });
110 it('should render an alert', () => {
111 let alert = element[0].getElementsByClassName('alert');
112 let table = element[0].getElementsByTagName('table');
113 expect(alert.length).toEqual(1);
114 expect(table.length).toEqual(1);
115 });
116 });
117
Matteo Scandolof9700a32016-05-06 09:42:45 -0700118 describe('when a field type is provided', () => {
Matteo Scandoloeabfb712016-04-27 17:26:21 -0700119 describe('and is boolean', () => {
120 beforeEach(() => {
Matteo Scandolof9700a32016-05-06 09:42:45 -0700121 scope.config = {
Matteo Scandoloeabfb712016-04-27 17:26:21 -0700122 columns: [
123 {
124 label: 'Label 1',
125 prop: 'label-1',
126 type: 'boolean'
127 }
128 ]
129 };
Matteo Scandolof9700a32016-05-06 09:42:45 -0700130 scope.data = [
Matteo Scandoloeabfb712016-04-27 17:26:21 -0700131 {
132 'label-1': true
133 },
134 {
135 'label-1': false
136 }
137 ];
Matteo Scandolof9700a32016-05-06 09:42:45 -0700138 compileElement();
Matteo Scandoloeabfb712016-04-27 17:26:21 -0700139 });
140
141 it('should render an incon', () => {
142 let td1 = $(element).find('tbody tr:first-child td')[0];
143 let td2 = $(element).find('tbody tr:last-child td')[0];
Matteo Scandoloeabfb712016-04-27 17:26:21 -0700144 expect($(td1).find('i')).toHaveClass('glyphicon-ok');
145 expect($(td2).find('i')).toHaveClass('glyphicon-remove');
146 });
147 });
148
149 describe('and is date', () => {
150 beforeEach(() => {
Matteo Scandolof9700a32016-05-06 09:42:45 -0700151 scope.config = {
Matteo Scandoloeabfb712016-04-27 17:26:21 -0700152 columns: [
153 {
154 label: 'Label 1',
155 prop: 'label-1',
156 type: 'date'
157 }
158 ]
159 };
Matteo Scandolof9700a32016-05-06 09:42:45 -0700160 scope.data = [
Matteo Scandoloeabfb712016-04-27 17:26:21 -0700161 {
162 'label-1': '2015-02-17T22:06:38.059000Z'
163 }
164 ];
Matteo Scandolof9700a32016-05-06 09:42:45 -0700165 compileElement();
Matteo Scandoloeabfb712016-04-27 17:26:21 -0700166 });
167
168 it('should render an formatted date', () => {
169 let td1 = $(element).find('tbody tr:first-child td')[0];
Matteo Scandolof9700a32016-05-06 09:42:45 -0700170 expect($(td1).text().trim()).toEqual('14:06 Feb 17, 2015');
171 });
172 });
173
174 describe('and is array', () => {
175 beforeEach(() => {
176 scope.data = [
177 {categories: ['Film', 'Music']}
178 ];
179 scope.config = {
180 columns: [
181 {
182 label: 'Categories',
183 prop: 'categories',
184 type: 'array'
185 }
186 ]
187 }
188 compileElement();
189 });
190 it('should render a comma separated list', () => {
191 let td1 = $(element).find('tbody tr:first-child')[0];
Matteo Scandolof9700a32016-05-06 09:42:45 -0700192 expect($(td1).text().trim()).toEqual('Film, Music');
193 });
194 });
195
Matteo Scandolo58705a42016-05-06 10:08:34 -0700196 describe('and is object', () => {
197 beforeEach(() => {
198 scope.data = [
199 {
200 attributes: {
201 age: 20,
202 height: 50
203 }
204 }
205 ];
206 scope.config = {
207 columns: [
208 {
209 label: 'Categories',
210 prop: 'attributes',
211 type: 'object'
212 }
213 ]
214 }
215 compileElement();
216 });
217 it('should render a list of key-values', () => {
218 let td = $(element).find('tbody tr:first-child')[0];
Matteo Scandolo0cd52c12016-05-06 11:39:56 -0700219 let ageLabel = $(td).find('dl dt')[0];
220 let ageValue = $(td).find('dl dd')[0];
221 let heightLabel = $(td).find('dl dt')[1];
222 let heightValue = $(td).find('dl dd')[1];
Matteo Scandolo58705a42016-05-06 10:08:34 -0700223 expect($(ageLabel).text().trim()).toEqual('age');
224 expect($(ageValue).text().trim()).toEqual('20');
225 expect($(heightLabel).text().trim()).toEqual('height');
226 expect($(heightValue).text().trim()).toEqual('50');
227 });
228 });
229
Matteo Scandolof9700a32016-05-06 09:42:45 -0700230 describe('and is custom', () => {
Matteo Scandoloa7ad4992016-05-09 15:27:47 -0700231
232 let formatterFn = jasmine.createSpy('formatter').and.returnValue('Formatted Content');
233
Matteo Scandolof9700a32016-05-06 09:42:45 -0700234 beforeEach(() => {
235 scope.data = [
236 {categories: ['Film', 'Music']}
237 ];
238 scope.config = {
239 columns: [
240 {
241 label: 'Categories',
242 prop: 'categories',
243 type: 'custom',
Matteo Scandoloa7ad4992016-05-09 15:27:47 -0700244 formatter: formatterFn
Matteo Scandolof9700a32016-05-06 09:42:45 -0700245 }
246 ]
247 }
248 compileElement();
249 });
250
251 it('should check for a formatter property', () => {
252 function errorFunctionWrapper(){
253 // setup the parent scope
254 scope = rootScope.$new();
255 scope.config = {
256 columns: [
257 {
258 label: 'Categories',
259 prop: 'categories',
260 type: 'custom'
261 }
262 ]
263 };
264 compileElement();
265 }
266 expect(errorFunctionWrapper).toThrow(new Error('[xosTable] You have provided a custom field type, a formatter function should provided too.'));
267 });
268
Matteo Scandolobee3eaf2016-05-06 13:09:19 -0700269 it('should check that the formatter property is a function', () => {
270 function errorFunctionWrapper(){
271 // setup the parent scope
272 scope = rootScope.$new();
273 scope.config = {
274 columns: [
275 {
276 label: 'Categories',
277 prop: 'categories',
278 type: 'custom',
279 formatter: 'formatter'
280 }
281 ]
282 };
283 compileElement();
284 }
285 expect(errorFunctionWrapper).toThrow(new Error('[xosTable] You have provided a custom field type, a formatter function should provided too.'));
286 });
287
Matteo Scandolof9700a32016-05-06 09:42:45 -0700288 it('should format data using the formatter property', () => {
289 let td1 = $(element).find('tbody tr:first-child')[0];
290 expect($(td1).text().trim()).toEqual('Formatted Content');
Matteo Scandoloa7ad4992016-05-09 15:27:47 -0700291 // the custom formatted should receive the entire object, otherwise is not so custom
292 expect(formatterFn).toHaveBeenCalledWith({categories: ['Film', 'Music']});
Matteo Scandoloeabfb712016-04-27 17:26:21 -0700293 });
294 });
Matteo Scandolod49ed5f2016-05-13 10:12:09 -0700295
296 describe('and is icon', () => {
297
298 beforeEach(() => {
299 scope.config = {
300 columns: [
301 {
302 label: 'Label 1',
303 prop: 'label-1',
304 type: 'icon',
305 formatter: item => {
306 switch (item['label-1']){
307 case 1:
308 return 'ok';
309 case 2:
310 return 'remove';
311 case 3:
312 return 'plus'
313 }
314 }
315 }
316 ]
317 };
318 scope.data = [
319 {
320 'label-1': 1
321 },
322 {
323 'label-1': 2
324 },
325 {
326 'label-1': 3
327 }
328 ];
329 compileElement();
330 });
331
332 it('should render a custom icon', () => {
333 let td1 = $(element).find('tbody tr:first-child td')[0];
334 let td2 = $(element).find('tbody tr:nth-child(2) td')[0];
335 let td3 = $(element).find('tbody tr:last-child td')[0];
336 expect($(td1).find('i')).toHaveClass('glyphicon-ok');
337 expect($(td2).find('i')).toHaveClass('glyphicon-remove');
338 expect($(td3).find('i')).toHaveClass('glyphicon-plus');
339 });
340 });
Matteo Scandoloeabfb712016-04-27 17:26:21 -0700341 });
342
Matteo Scandolobee3eaf2016-05-06 13:09:19 -0700343 describe('when a link property is provided', () => {
344 beforeEach(() => {
345 scope.data = [
346 {
347 id: 1}
348 ];
349 scope.config = {
350 columns: [
351 {
352 label: 'Id',
353 prop: 'id',
354 link: (item) => {
355 return `/link/${item.id}`;
356 }
357 }
358 ]
359 }
360 compileElement();
361 });
362
363 it('should check that the link property is a function', () => {
364 function errorFunctionWrapper(){
365 // setup the parent scope
366 scope = rootScope.$new();
367 scope.config = {
368 columns: [
369 {
370 label: 'Categories',
371 prop: 'categories',
372 link: 'custom'
373 }
374 ]
375 };
376 compileElement();
377 }
378 expect(errorFunctionWrapper).toThrow(new Error('[xosTable] The link property should be a function.'));
379 });
380
Matteo Scandoloa7ad4992016-05-09 15:27:47 -0700381 it('should render a link with the correct url', () => {
Matteo Scandolobee3eaf2016-05-06 13:09:19 -0700382 let link = $(element).find('tbody tr:first-child td a')[0];
383 expect($(link).attr('href')).toEqual('/link/1');
384 });
385 });
386
Matteo Scandoloa6a9e612016-04-14 16:52:13 -0700387 describe('when actions are passed', () => {
388
389 let cb = jasmine.createSpy('callback')
390
391 beforeEach(() => {
392 isolatedScope.config.actions = [
393 {
394 label: 'delete',
395 icon: 'remove',
396 cb: cb,
397 color: 'red'
398 }
399 ];
400 scope.$digest();
401 });
402
403 it('should have 3 columns', () => {
404 var th = element[0].getElementsByTagName('th');
405 expect(th.length).toEqual(3);
406 expect(isolatedScope.columns.length).toEqual(2);
407 });
408
409 it('when clicking on action should invoke callback', () => {
410 var link = element[0].getElementsByTagName('a')[0];
411 link.click();
412 expect(cb).toHaveBeenCalledWith(scope.data[0]);
413 });
414 });
415
416 describe('when filter is fulltext', () => {
417 beforeEach(() => {
418 isolatedScope.config.filter = 'fulltext';
419 scope.$digest();
420 });
421
422 it('should render a text field', () => {
423 var textField = element[0].getElementsByTagName('input');
424 expect(textField.length).toEqual(1);
425 });
426
427 describe('and a value is enterd', () => {
428 beforeEach(() => {
429 isolatedScope.query = '2.2';
430 scope.$digest();
431 });
432
433 it('should contain 2 rows', function() {
434 var tr = element[0].getElementsByTagName('tr');
435 expect(tr.length).toEqual(2);
436 });
437 });
438 });
439
440 describe('when filter is field', () => {
441 beforeEach(() => {
442 isolatedScope.config.filter = 'field';
443 scope.$digest();
444 });
445
446 it('should render a text field for each column', () => {
447 var textField = element[0].getElementsByTagName('input');
448 expect(textField.length).toEqual(2);
449 });
450
451 describe('and a value is enterd', () => {
452 beforeEach(() => {
453 isolatedScope.query = {'label-1': '2.1'};
454 scope.$digest();
455 });
456
457 it('should contain 3 rows', function() {
458 var tr = element[0].getElementsByTagName('tr');
459 expect(tr.length).toEqual(3);
460 });
461 });
462 });
Matteo Scandolo03e59602016-04-14 17:19:08 -0700463
464 describe('when order is true', () => {
465 beforeEach(() => {
466 isolatedScope.config.order = true;
467 scope.$digest();
468 });
469
470 it('should render a arrows beside', () => {
471 var arrows = element[0].getElementsByTagName('i');
472 expect(arrows.length).toEqual(4);
473 });
474
Matteo Scandolod49ed5f2016-05-13 10:12:09 -0700475 describe('and a default ordering is passed', () => {
476
477 beforeEach(() => {
478 scope.config.order = {
479 field: 'label-1',
480 reverse: true
481 };
482 compileElement();
483 });
484
485 it('should orderBy the default order', () => {
486 var tr = $(element).find('tr');
487 expect($(tr[1]).text()).toContain('Sample 2.2');
488 expect($(tr[2]).text()).toContain('Sample 1.1');
489 });
490 });
491
Matteo Scandolo03e59602016-04-14 17:19:08 -0700492 describe('and an order is set', () => {
493 beforeEach(() => {
494 isolatedScope.orderBy = 'label-1';
495 isolatedScope.reverse = true;
496 scope.$digest();
497 });
498
499 it('should orderBy', function() {
Matteo Scandolod49ed5f2016-05-13 10:12:09 -0700500 // console.log($(element).find('table'));
Matteo Scandolobee3eaf2016-05-06 13:09:19 -0700501 var tr = $(element).find('tr');
502 expect($(tr[1]).text()).toContain('Sample 2.2');
503 expect($(tr[2]).text()).toContain('Sample 1.1');
Matteo Scandolo03e59602016-04-14 17:19:08 -0700504 });
505 });
506 });
Matteo Scandolo9e6c6fc2016-04-14 14:59:09 -0700507 });
508 });
509 });
510})();
511