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
|
describe("multiSelect", function() {
describe('init', function(){
it ('should be chainable', function(){
select.multiSelect().addClass('chainable');
expect(select.hasClass('chainable')).toBeTruthy();
});
describe('without options', function(){
beforeEach(function() {
select.multiSelect();
msContainer = select.next();
});
it('should hide the original select', function(){
expect(select.css('position')).toBe('absolute');
expect(select.css('left')).toBe('-9999px');
});
it('should create a container', function(){
expect(msContainer).toBe('div.ms-container');
});
it ('should create a selectable and a selection container', function(){
expect(msContainer).toContain('div.ms-selectable, div.ms-selection');
});
it ('should create a list for both selectable and selection container', function(){
expect(msContainer).toContain('div.ms-selectable ul.ms-list, div.ms-selection ul.ms-list');
});
it ('should populate the selectable list', function(){
expect($('.ms-selectable ul.ms-list li').length).toEqual(10);
});
it ('should populate the selection list', function(){
expect($('.ms-selectable ul.ms-list li').length).toEqual(10);
});
});
describe('with pre-selected options', function(){
var selectedValues = [];
beforeEach(function() {
var firstOption = select.children('option').first();
var lastOption = select.children('option').last();
firstOption.prop('selected', true);
lastOption.prop('selected', true);
selectedValues.push(firstOption.val(), lastOption.val());
select.multiSelect();
msContainer = select.next();
});
it ('should select the pre-selected options', function(){
$.each(selectedValues, function(index, value){
expect($('.ms-selectable ul.ms-list li#'+sanitize(value)+'-selectable')).toBe('.ms-selected');
});
expect($('.ms-selectable ul.ms-list li.ms-selected').length).toEqual(2);
});
});
describe("with disabled pre-selected options", function(){
var selectedValues = ['value1', 'value2', 'value3'];
beforeEach(function() {
$('#multi-select').find('option')
.first().prop('selected', true).prop('disabled', true)
.next().prop('selected', true)
.next().prop('selected', true).prop('disabled', true)
;
$('#multi-select').multiSelect();
})
it ('should select the disabled pre-selected options', function(){
$.each(selectedValues, function(index, value){
expect($('.ms-selectable ul.ms-list li#'+sanitize(value)+'-selectable')).toBe('.ms-selected');
});
expect($('.ms-selectable ul.ms-list li.ms-selected').length).toEqual(3);
});
});
describe("with disabled non-selected options", function(){
var selectedValues = ['value1', 'value3'];
beforeEach(function() {
$('#multi-select').find('option')
.first().prop('selected', true)
.next().prop('disabled', true)
.next().prop('selected', true)
;
$('#multi-select').multiSelect();
})
it ('should not select the disabled non-selected options', function(){
$.each(selectedValues, function(index, value){
expect($('.ms-selectable ul.ms-list li#'+sanitize(value)+'-selectable')).toBe('.ms-selected');
});
expect($('.ms-selectable ul.ms-list li.ms-selected').length).toEqual(2);
});
});
});
describe('destroy', function(){
describe('destroy multi select', function(){
beforeEach(function(){
select.multiSelect();
msContainer = select.next();
select.multiSelect('destroy');
});
it('should show the original select', function(){
expect(select.css('position')).not.toBe('absolute');
expect(select.css('left')).not.toBe('-9999px');
});
it('should destroy the multiSelect container', function(){
expect(select.next().size()).toEqual(0);
});
});
});
describe('optgroup', function(){
var optgroupMsContainer, optgroupSelect, optgroupLabels;
beforeEach(function() {
$('<select id="multi-select-optgroup" multiple="multiple" name="testy[]"></select>').appendTo('body');
for (var o=1; o <= 10; o++) {
var optgroup = $('<optgroup label="opgroup'+o+'"></optgroup>')
for (var i=1; i <= 10; i++) {
var value = i + (o * 10);
$('<option value="value'+value+'">text'+value+'</option>').appendTo(optgroup);
};
optgroup.appendTo($("#multi-select-optgroup"));
}
optgroupSelect = $("#multi-select-optgroup");
});
describe('init', function(){
describe('with selectableOptgroup option set to false', function(){
beforeEach(function(){
optgroupSelect.multiSelect({ selectableOptgroup: false });
optgroupMsContainer = optgroupSelect.next();
optgroupLabels = optgroupMsContainer.find('.ms-selectable .ms-optgroup-label');
});
it ('sould display all optgroups', function(){
expect(optgroupLabels.length).toEqual(10);
});
it ('should do nothing when clicking on optgroup', function(){
var clickedOptGroupLabel = optgroupLabels.first();
clickedOptGroupLabel.trigger('click');
expect(optgroupSelect.val()).toBeNull();
});
});
describe('with selectableOptgroup option set to true', function(){
beforeEach(function(){
optgroupSelect.multiSelect({ selectableOptgroup: true });
optgroupMsContainer = optgroupSelect.next();
optgroupLabels = optgroupMsContainer.find('.ms-selectable .ms-optgroup-label');
});
it ('should select all nested options when clicking on optgroup', function(){
var clickedOptGroupLabel = optgroupLabels.first();
clickedOptGroupLabel.trigger('click');
expect(optgroupSelect.val().length).toBe(10);
});
});
});
});
describe('select', function(){
describe('multiple values (Array)', function(){
var values = ['value1', 'value2', 'value7'];
beforeEach(function(){
$('#multi-select').multiSelect();
$('#multi-select').multiSelect('select', values);
});
it('should select corresponding option', function(){
expect(select.val()).toEqual(values);
});
});
describe('single value (String)', function(){
var value = 'value1';
beforeEach(function(){
$('#multi-select').multiSelect();
$('#multi-select').multiSelect('select', value);
});
it('should select corresponding option', function(){
expect($.inArray(value, select.val()) > -1).toBeTruthy();
});
});
describe("on click", function(){
var clickedItem, value;
beforeEach(function() {
$('#multi-select').multiSelect();
clickedItem = $('.ms-selectable ul.ms-list li').first();
value = clickedItem.data('ms-value');
spyOnEvent(select, 'change');
spyOnEvent(select, 'focus');
clickedItem.trigger('click');
});
it('should hide selected item', function(){
expect(clickedItem).toBeHidden();
});
it('should add the .ms-selected class to the selected item', function(){
expect(clickedItem.hasClass('ms-selected')).toBeTruthy();
});
it('should select corresponding option', function(){
expect(select.find('option[value="'+value+'"]')).toBeSelected();
});
it('should show the associated selected item', function(){
expect($('#'+sanitize(value)+'-selection')).toBe(':visible');
});
it('should trigger the original select change event', function(){
expect('change').toHaveBeenTriggeredOn("#multi-select");
});
afterEach(function(){
select.multiSelect('deselect_all');
});
});
describe("on click on disabled non-selected option", function(){
var clickedItem, value;
beforeEach(function() {
$('#multi-select').find('option').first().prop('disabled', true);
$('#multi-select').multiSelect();
clickedItem = $('.ms-selectable ul.ms-list li').first();
value = clickedItem.data('ms-value');
spyOnEvent(select, 'change');
spyOnEvent(select, 'focus');
clickedItem.trigger('click');
});
it('should not hide selected item', function(){
expect(clickedItem).not.toBeHidden();
});
it('should not add the .ms-selected class to the selected item', function(){
expect(clickedItem.hasClass('ms-selected')).not.toBeTruthy();
});
it('should not select corresponding option', function(){
expect(select.find('option[value="'+value+'"]')).not.toBeSelected();
});
it('should not show the associated selected item', function(){
expect($('#'+sanitize(value)+'-selection')).not.toBe(':visible');
});
it('should not trigger the original select change event', function(){
expect('change').not.toHaveBeenTriggeredOn("#multi-select");
});
afterEach(function(){
select.multiSelect('deselect_all');
});
});
});
describe('deselect', function(){
describe('multiple values (Array)', function(){
var selectedValues = ['value1', 'value2', 'value7'],
deselectValues = ['value1', 'value2'];
beforeEach(function(){
$('#multi-select').multiSelect();
$('#multi-select').multiSelect('select', selectedValues);
$('#multi-select').multiSelect('deselect', deselectValues);
});
it('should select corresponding option', function(){
expect(select.val()).toEqual(['value7']);
});
});
describe('single value (String)', function(){
var selectedValues = ['value1', 'value2', 'value7'],
deselectValue = 'value2';
beforeEach(function(){
$('#multi-select').multiSelect();
$('#multi-select').multiSelect('select', selectedValues);
$('#multi-select').multiSelect('deselect', deselectValue);
});
it('should select corresponding option', function(){
expect($.inArray(deselectValue, select.val()) > -1).toBeFalsy();
});
});
describe("on click", function(){
var clickedItem, value;
var correspondingSelectableItem;
beforeEach(function() {
$('#multi-select').find('option').first().prop('selected', true);
$('#multi-select').multiSelect();
clickedItem = $('.ms-selection ul.ms-list li').first();
value = clickedItem.data('ms-value');
correspondingSelectableItem = $('.ms-selection ul.ms-list li').first();
spyOnEvent(select, 'change');
spyOnEvent(select, 'focus');
clickedItem.trigger('click');
});
it ('should hide clicked item', function(){
expect(clickedItem).toBe(':hidden');
});
it('should show associated selectable item', function(){
expect($('#'+sanitize(value)+'-selectable')).toBe(':visible');
});
it('should remove the .ms-selected class to the corresponding selectable item', function(){
expect(correspondingSelectableItem.hasClass('ms-selected')).toBeFalsy();
});
it('should deselect corresponding option', function(){
expect(select.find('option[value="'+value+'"]')).not.toBeSelected();
});
it('should trigger the original select change event', function(){
expect('change').toHaveBeenTriggeredOn("#multi-select");
});
afterEach(function(){
select.multiSelect('deselect_all');
});
});
describe("on click on disabled selected option", function(){
var clickedItem, value;
var correspondingSelectableItem;
beforeEach(function() {
$('#multi-select').find('option').first().prop('selected', true).prop('disabled', true);
$('#multi-select').multiSelect();
clickedItem = $('.ms-selection ul.ms-list li').first();
value = clickedItem.data('ms-value');
correspondingSelectableItem = $('.ms-selection ul.ms-list li').first();
spyOnEvent(select, 'change');
spyOnEvent(select, 'focus');
clickedItem.trigger('click');
});
it ('should not hide clicked item', function(){
expect(clickedItem).not.toBe(':hidden');
});
it('should not show associated selectable item', function(){
expect($('#'+value+'-selectable')).not.toBe(':visible');
});
it('should not remove the .ms-selected class to the corresponding selectable item', function(){
expect(correspondingSelectableItem.hasClass('ms-selected')).not.toBeFalsy();
});
it('should not deselect corresponding option', function(){
expect(select.find('option[value="'+value+'"]')).toBeSelected();
});
it('should not trigger the original select change event', function(){
expect('change').not.toHaveBeenTriggeredOn("#multi-select");
});
afterEach(function(){
select.multiSelect('deselect_all');
});
});
});
});
|