forked from ExactTarget/fuelux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pillbox-test.js
588 lines (508 loc) · 14.5 KB
/
pillbox-test.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
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
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
/*global QUnit:false, module:false, test:false, asyncTest:false, expect:false*/
/*global start:false, stop:false ok:false, equal:false, notEqual:false, deepEqual:false*/
/*global notDeepEqual:false, strictEqual:false, notStrictEqual:false, raises:false*/
define(function(require) {
var $ = require('jquery');
var html = require('text!test/markup/pillbox-markup.html!strip');
require('bootstrap');
require('fuelux/pillbox');
module('Fuel UX Pillbox');
test('should be defined on jquery object', function() {
ok($().find('#MyPillbox').pillbox, 'pillbox method is defined');
});
test('should return element', function() {
var $pillbox = $(html).find('#MyPillbox');
ok($pillbox.pillbox() === $pillbox, 'pillbox is initialized');
});
test('should behave as designed', function() {
var $pillbox = $(html).find('#MyPillbox').pillbox();
equal($pillbox.pillbox('items').length, 5, 'pillbox returns both items');
$pillbox.find('li > span:last').click();
equal($pillbox.pillbox('items').length, 4, 'pillbox removed an item');
deepEqual($pillbox.pillbox('items')[0], {
text: 'Item 1',
value: 'foo'
}, 'pillbox returns item data');
});
test('getValue alias should function', function() {
var $pillbox = $(html).find('#MyPillbox').pillbox();
deepEqual($pillbox.pillbox('items'), $pillbox.pillbox('getValue'), 'getValue aliases items');
});
test('Input functionality should behave as designed', function() {
var $pillbox = $(html).find('#MyPillbox').pillbox();
var $input = $pillbox.find('.pillbox-add-item');
$input.val('three-value');
$input.trigger($.Event('keydown', {
keyCode: 13
}));
deepEqual($pillbox.pillbox('items')[5], {
text: 'three-value',
value: 'three-value'
}, 'pillbox returns added item');
});
test('Input functionality should, by default, not allow empty pills', function() {
var $pillbox = $(html).find('#MyPillbox').pillbox();
var $input = $pillbox.find('.pillbox-add-item');
$input.val(',');
$input.trigger($.Event('keydown', {
keyCode: 13
}));
equal($pillbox.pillbox('items').length, 5, 'no item added');
});
test('Input functionality should allow empty pills if allowEmptyPills is set to true', function() {
var $pillbox = $(html).find('#MyPillbox').pillbox({
allowEmptyPills: true
});
var $input = $pillbox.find('.pillbox-add-item');
$input.val(',');
$input.trigger($.Event('keydown', {
keyCode: 13
}));
equal($pillbox.pillbox('items').length, 6, 'item added');
});
test('itemCount function', function() {
var $pillbox = $(html).find('#MyPillboxEmpty').pillbox();
equal($pillbox.pillbox('itemCount'), 0, 'itemCount on empty pillbox');
$pillbox = $(html).find('#MyPillbox').pillbox();
equal($pillbox.pillbox('itemCount'), 5, 'itemCount on pillbox with 5 items');
});
test('addItems/removeItems functions', function() {
var $pillbox = $(html).find('#MyPillboxEmpty').pillbox();
equal($pillbox.pillbox('itemCount'), 0, 'pillbox is initially empty');
$pillbox.pillbox('addItems',
{
text: 'Item 1',
value: 1,
attr: {
'cssClass': 'example-pill-class',
'style': 'background-color: #0000FF',
'data-example-attribute': true
}
});
deepEqual($pillbox.pillbox('items')[0],
{
text: 'Item 1',
value: 1,
'exampleAttribute': true
},
'single item added has correct text, value, and data');
$pillbox.pillbox('addItems', {
text: 'Item 2',
value: 2
});
$pillbox.pillbox('removeItems');
equal($pillbox.pillbox('items').length, 0, 'removedItems removed all items');
$pillbox.pillbox('addItems', {
text: 'Item 1',
value: 1
}, {
text: 'Item 2',
value: 2
});
deepEqual($pillbox.pillbox('items')[1], {
text: 'Item 2',
value: 2
}, 'multiple items have been added correctly');
$pillbox.pillbox('removeItems');
$pillbox.pillbox('addItems', [{
text: 'Item 1',
value: 1
}, {
text: 'Item 2',
value: 2
}, {
text: 'Item 3',
value: 3
}]);
deepEqual($pillbox.pillbox('items')[2], {
text: 'Item 3',
value: 3
}, 'multiple items have been added correctly by array');
$pillbox.pillbox('removeItems', 2, 1);
deepEqual($pillbox.pillbox('items')[1], {
text: 'Item 3',
value: 3
}, 'single item has been removed at the correct index');
$pillbox.pillbox('removeItems', 1);
deepEqual($pillbox.pillbox('items')[0], {
text: 'Item 3',
value: 3
}, 'single item has been removed at the correct index');
});
test('removeByValue function', function() {
var $pillbox = $(html).find('#MyPillbox').pillbox();
equal($pillbox.pillbox('itemCount'), 5, 'pillbox has 7 items initially');
$pillbox.pillbox('removeByValue', 'foo');
equal($pillbox.pillbox('itemCount'), 4, 'pillbox has 1 item after removeByValue');
deepEqual($pillbox.pillbox('items')[0], {
text: 'Item 2'
}, 'item not removed has correct text and value');
});
test('removeByText function', function() {
var $pillbox = $(html).find('#MyPillbox').pillbox();
equal($pillbox.pillbox('itemCount'), 5, 'pillbox has 7 items initially');
$pillbox.pillbox('removeByText', 'Item 2');
equal($pillbox.pillbox('itemCount'), 4, 'pillbox has 1 item after removeByText');
deepEqual($pillbox.pillbox('items')[0], {
text: 'Item 1',
value: 'foo'
}, 'item not removed has correct text and value');
});
test('all user defined methods work as expected', function() {
var $pillbox = $(html).find('#MyPillbox').pillbox({
onAdd: function(data, callback) {
callbackTriggers++;
callback(data);
},
onKeyDown: function(data, callback) {
callbackTriggers++;
callback({
data: [
{
text: 'Item 3',
value: 'three-value'
}
]
});
},
onRemove: function(data, callback) {
callbackTriggers++;
callback(data);
}
});
var $input = $pillbox.find('.pillbox-add-item');
var callbackTriggers = 0;
$input.val('anything');
$input.trigger($.Event('keydown', {
keyCode: 13
})); //enter
equal(callbackTriggers, 1, 'onAdd triggered correctly');
deepEqual($pillbox.pillbox('items')[2], {
text: 'Item 3',
value: 'three-value'
}, 'item correctly added after onAdd user callback');
$input.trigger($.Event('keydown', {
keyCode: 97
})); // number 1
equal(callbackTriggers, 2, 'onKeyDown triggered correctly');
$pillbox.find('> li > .glyphicon-close').click();
equal(callbackTriggers, 2, 'onRemove triggered correctly');
deepEqual($pillbox.pillbox('items')[2], {
text: 'Item 3',
value: 'three-value'
}, 'item correctly added after onAdd user callback');
});
test('Suggestions functionality should behave as designed', function() {
var $pillbox = $(html).find('#MyPillboxEmpty').pillbox({
onKeyDown: function(data, callback) {
callback({
data: [
{
text: 'Acai',
value: 'acai'
},
{
text: 'African cherry orange',
value: 'african cherry orange'
},
{
text: 'Banana',
value: 'banana'
},
{
text: 'Bilberry',
value: 'bilberry'
},
{
text: 'Cantaloupe',
value: 'cantaloupe'
},
{
text: 'Ceylon gooseberry',
value: 'ceylon gooseberry'
},
{
text: 'Dragonfruit',
value: 'dragonfruit'
},
{
text: 'Dead Man\'s Fingers',
value: 'dead man\'s fingers'
},
{
text: 'Fig',
value: 'fig'
},
{
text: 'Forest strawberries',
value: 'forest strawberries'
},
{
text: 'Governor’s Plum',
value: 'governor’s plum'
},
{
text: 'Grapefruit',
value: 'grapefruit'
},
{
text: 'Guava',
value: 'guava'
},
{
text: 'Honeysuckle',
value: 'honeysuckle'
},
{
text: 'Huckleberry',
value: 'huckleberry'
},
{
text: 'Jackfruit',
value: 'jackfruit'
},
{
text: 'Japanese Persimmon',
value: 'japanese persimmon'
},
{
text: 'Key Lime',
value: 'key lime'
},
{
text: 'Kiwi',
value: 'kiwi'
},
{
text: 'Lemon',
value: 'lemon'
},
{
text: 'Lillypilly',
value: 'lillypilly'
},
{
text: 'Mandarin',
value: 'mandarin'
},
{
text: 'Miracle Fruit',
value: 'miracle fruit'
},
{
text: 'Orange',
value: 'orange'
},
{
text: 'Oregon grape',
value: 'oregon grape'
},
{
text: 'Persimmon',
value: 'persimmon'
},
{
text: 'Pomegranate',
value: 'pomegranate'
},
{
text: 'Rhubarb',
value: 'rhubarb'
},
{
text: 'Rose hip',
value: 'rose hip'
},
{
text: 'Soursop',
value: 'soursop'
},
{
text: 'Starfruit',
value: 'starfruit'
},
{
text: 'Tamarind',
value: 'tamarind'
},
{
text: 'Thimbleberry',
value: 'thimbleberry'
},
{
text: 'Wineberry',
value: 'wineberry'
},
{
text: 'Wongi',
value: 'wongi'
},
{
text: 'Youngberry',
value: 'youngberry'
}
]
});
}
});
var $input = $pillbox.find('.pillbox-add-item');
$input.trigger($.Event('keydown', {
keyCode: 97
})); // numpad 1
$pillbox.find('.suggest > li').trigger('mousedown');
deepEqual($pillbox.pillbox('items')[0], {
text: 'Acai',
value: 'acai'
}, 'pillbox returns item added after user clicks suggestion');
$input.val('');
$input.trigger($.Event('keydown', {
keyCode: 97
})); // numpad 1
$input.trigger($.Event('keydown', {
keyCode: 40
})); // down
$input.trigger($.Event('keydown', {
keyCode: 13
})); // enter
deepEqual($pillbox.pillbox('items')[1], {
text: 'Acai',
value: 'acai'
}, 'pillbox returns item added after user keys down to suggestions');
$input.val('');
$input.trigger($.Event('keydown', {
keyCode: 97
})); // numpad 1
$input.trigger($.Event('keydown', {
keyCode: 38
})); // up
$input.trigger($.Event('keydown', {
keyCode: 13
})); // enter
deepEqual($pillbox.pillbox('items')[2], {
text: 'Acai',
value: 'acai'
}, 'pillbox returns item added after user keys up to suggestion');
$input.val('');
$input.trigger($.Event('keydown', {
keyCode: 97
})); // numpad 1
$input.trigger($.Event('keydown', {
keyCode: 9
})); // tab
$input.trigger($.Event('keydown', {
keyCode: 13
})); // enter
deepEqual($pillbox.pillbox('items')[3], {
text: 'Acai',
value: 'acai'
}, 'pillbox returns item added after user tabs down to suggestion');
equal($pillbox.pillbox('items').length, 4, 'pillbox removed an item');
});
test('Edit functionality should behave as designed', function() {
var $pillbox = $(html).find('#MyPillbox').pillbox({
edit: true
});
var $ul = $pillbox.find('.pill-group');
var $input = $pillbox.find('.pillbox-add-item');
$pillbox.find('.pill-group > li:first span:first').click();
equal($ul.children().eq(0).hasClass('pillbox-input-wrap'), true, 'pillbox item enters edit mode');
$input.trigger('blur');
equal($ul.children().eq(0).hasClass('pillbox-input-wrap'), false, 'pillbox item exits edit mode');
$pillbox.find('.pill-group > li:first span:first').click();
$input.val('test edit');
$input.trigger($.Event('keydown', {
keyCode: 13
}));
deepEqual($pillbox.pillbox('items')[0], {
text: 'test edit',
value: 'test edit'
}, 'pillbox item was able to be edited');
});
test('Triggers behave as designed', function() {
var $pillbox = $(html).find('#MyPillbox').pillbox({
edit: true
});
var $input = $pillbox.find('.pillbox-add-item');
$pillbox.on('clicked.fu.pillbox', function(ev, item) {
deepEqual(item, {
text: 'Item 1',
value: 'foo'
}, 'clicked event is triggered');
});
$pillbox.find('> ul > li:first span:first').click();
$pillbox.off('clicked.fu.pillbox');
$pillbox.on('added.fu.pillbox', function(ev, item) {
deepEqual(item, {
text: 'added test',
value: 'added test'
}, 'added event is triggered');
});
$input.val('added test');
$input.trigger($.Event('keydown', {
keyCode: 13
}));
$pillbox.off('added.fu.pillbox');
$pillbox.on('removed.fu.pillbox', function(ev, item) {
deepEqual(item, {
text: 'added test',
value: 'added test'
}, 'removed event is triggered');
});
$pillbox.find('> ul > li:first > span:last').click();
$pillbox.off('removed.fu.pillbox');
$pillbox = $(html).pillbox({
edit: true
});
$pillbox.on('edited.fu.pillbox', function(ev, item) {
deepEqual(item, {
text: 'edit test',
value: 'edit test'
}, 'edit event is triggered');
});
$pillbox.find('> ul > li:first').click();
$input.val('edit test');
$input.trigger($.Event('keydown', {
keyCode: 13
}));
});
test('Readonly behaves as designed', function() {
var $pillbox;
$pillbox = $(html).find('#MyPillbox');
$pillbox.attr('data-readonly', 'readonly');
$pillbox.pillbox();
$pillbox.find('.pill:last > span:last').click();
equal($pillbox.pillbox('items').length, 5, 'pillbox correctly in readonly mode via data api');
$pillbox = $(html).find('#MyPillbox');
$pillbox.pillbox({
readonly: true
});
$pillbox.find('.pill:last > span:last').click();
equal($pillbox.pillbox('items').length, 5, 'pillbox correctly in readonly mode via init option');
$pillbox.pillbox('readonly', false);
$pillbox.find('.pill:last > span:last').click();
equal($pillbox.pillbox('items').length, 4, 'pillbox readonly mode disabled via method as appropriate');
$pillbox.pillbox('readonly', true);
$pillbox.find('.pill:last > span:last').click();
equal($pillbox.pillbox('items').length, 4, 'pillbox readonly mode enabled via method as appropriate');
});
//TODO: how can I test this one properly? O.o
test('Truncate behaves as designed', function() {
var $pillbox;
$pillbox = $(html).find('#MyPillbox');
$pillbox.width(100);
$('body').append($pillbox);
$pillbox.pillbox({
readonly: true,
truncate: true
});
equal($pillbox.find('.pill.truncated').length, 5, 'pillbox truncate functioning correctly while in readonly');
$pillbox.pillbox('readonly', false);
equal($pillbox.find('.pill.truncated').length, 0, 'pillbox truncate not enabled while not readonly');
$pillbox.remove();
});
test('should destroy control', function() {
var $el = $(html).find('#MyPillbox');
equal(typeof ($el.pillbox('destroy')), 'string', 'returns string (markup)');
equal($el.parent().length, false, 'control has been removed from DOM');
});
});