2014-11-27 04:25:56 +03:00
|
|
|
module('Selection containers - Single');
|
|
|
|
|
|
|
|
var SingleSelection = require('select2/selection/single');
|
|
|
|
|
|
|
|
var $ = require('jquery');
|
|
|
|
var Options = require('select2/options');
|
|
|
|
var Utils = require('select2/utils');
|
|
|
|
|
|
|
|
var options = new Options({});
|
|
|
|
|
|
|
|
test('display uses templateSelection', function (assert) {
|
|
|
|
var called = false;
|
|
|
|
|
|
|
|
var templateOptions = new Options({
|
|
|
|
templateSelection: function (data) {
|
|
|
|
called = true;
|
|
|
|
|
|
|
|
return data.text;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var selection = new SingleSelection(
|
|
|
|
$('#qunit-fixture .single'),
|
|
|
|
templateOptions
|
|
|
|
);
|
|
|
|
|
|
|
|
var out = selection.display({
|
|
|
|
text: 'test'
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.ok(called);
|
|
|
|
|
|
|
|
assert.equal(out, 'test');
|
|
|
|
});
|
|
|
|
|
2015-06-10 13:05:07 +03:00
|
|
|
test('templateSelection can addClass', function (assert) {
|
|
|
|
var called = false;
|
|
|
|
|
|
|
|
var templateOptions = new Options({
|
|
|
|
templateSelection: function (data, container) {
|
|
|
|
called = true;
|
|
|
|
container.addClass('testclass');
|
|
|
|
return data.text;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var selection = new SingleSelection(
|
|
|
|
$('#qunit-fixture .single'),
|
|
|
|
templateOptions
|
|
|
|
);
|
|
|
|
|
|
|
|
var $container = selection.selectionContainer();
|
2019-07-28 07:36:51 +03:00
|
|
|
|
2015-06-10 13:05:07 +03:00
|
|
|
var out = selection.display({
|
|
|
|
text: 'test'
|
|
|
|
}, $container);
|
|
|
|
|
|
|
|
assert.ok(called);
|
|
|
|
|
|
|
|
assert.equal(out, 'test');
|
2019-07-28 07:36:51 +03:00
|
|
|
|
2015-06-10 13:05:07 +03:00
|
|
|
assert.ok($container.hasClass('testclass'));
|
|
|
|
});
|
|
|
|
|
2014-11-27 04:25:56 +03:00
|
|
|
test('empty update clears the selection', function (assert) {
|
|
|
|
var selection = new SingleSelection(
|
|
|
|
$('#qunit-fixture .single'),
|
|
|
|
options
|
|
|
|
);
|
|
|
|
|
|
|
|
var $selection = selection.render();
|
|
|
|
var $rendered = $selection.find('.select2-selection__rendered');
|
|
|
|
|
|
|
|
$rendered.text('testing');
|
2019-07-28 07:36:51 +03:00
|
|
|
|
|
|
|
selection.update([]);
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
$rendered.text(),
|
|
|
|
'',
|
|
|
|
'There should have been nothing rendered'
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('empty update clears the selection title', function (assert) {
|
|
|
|
var selection = new SingleSelection(
|
|
|
|
$('#qunit-fixture .single'),
|
|
|
|
options
|
|
|
|
);
|
|
|
|
|
|
|
|
var $selection = selection.render();
|
|
|
|
var $rendered = $selection.find('.select2-selection__rendered');
|
|
|
|
|
2016-10-17 21:55:58 +03:00
|
|
|
$rendered.attr('title', 'testing');
|
2014-11-27 04:25:56 +03:00
|
|
|
|
|
|
|
selection.update([]);
|
|
|
|
|
2019-07-28 07:36:51 +03:00
|
|
|
assert.equal(
|
|
|
|
$rendered.attr('title'),
|
|
|
|
undefined,
|
|
|
|
'The title should be removed if nothing is rendered'
|
|
|
|
);
|
2014-11-27 04:25:56 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
test('update renders the data text', function (assert) {
|
|
|
|
var selection = new SingleSelection(
|
|
|
|
$('#qunit-fixture .single'),
|
|
|
|
options
|
|
|
|
);
|
|
|
|
|
|
|
|
var $selection = selection.render();
|
|
|
|
var $rendered = $selection.find('.select2-selection__rendered');
|
|
|
|
|
|
|
|
selection.update([{
|
|
|
|
text: 'test'
|
|
|
|
}]);
|
|
|
|
|
|
|
|
assert.equal($rendered.text(), 'test');
|
|
|
|
});
|
2015-01-29 16:41:18 +03:00
|
|
|
|
2019-07-28 07:36:51 +03:00
|
|
|
test('update sets the title to the data text', function (assert) {
|
|
|
|
var selection = new SingleSelection(
|
|
|
|
$('#qunit-fixture .single'),
|
|
|
|
options
|
|
|
|
);
|
|
|
|
|
|
|
|
var $selection = selection.render();
|
|
|
|
var $rendered = $selection.find('.select2-selection__rendered');
|
|
|
|
|
|
|
|
selection.update([{
|
|
|
|
text: 'test'
|
|
|
|
}]);
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
$rendered.attr('title'),
|
|
|
|
'test',
|
|
|
|
'The title should have been set to the text'
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('update sets the title to the data title', function (assert) {
|
|
|
|
var selection = new SingleSelection(
|
|
|
|
$('#qunit-fixture .single'),
|
|
|
|
options
|
|
|
|
);
|
|
|
|
|
|
|
|
var $selection = selection.render();
|
|
|
|
var $rendered = $selection.find('.select2-selection__rendered');
|
|
|
|
|
|
|
|
selection.update([{
|
|
|
|
text: 'test',
|
|
|
|
title: 'correct'
|
|
|
|
}]);
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
$rendered.attr('title'),
|
|
|
|
'correct',
|
|
|
|
'The title should have taken precedence over the text'
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('update should clear title for placeholder options', function (assert) {
|
|
|
|
var selection = new SingleSelection(
|
|
|
|
$('#qunit-fixture .single'),
|
|
|
|
options
|
|
|
|
);
|
|
|
|
|
|
|
|
var $selection = selection.render();
|
|
|
|
var $rendered = $selection.find('.select2-selection__rendered');
|
|
|
|
|
|
|
|
$rendered.attr('title', 'testing');
|
|
|
|
|
|
|
|
selection.update([{
|
|
|
|
id: '',
|
|
|
|
text: ''
|
|
|
|
}]);
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
$rendered.attr('title'),
|
|
|
|
undefined,
|
|
|
|
'The title should be removed if a placeholder is rendered'
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('update should clear title for options without text', function (assert) {
|
|
|
|
var selection = new SingleSelection(
|
|
|
|
$('#qunit-fixture .single'),
|
|
|
|
options
|
|
|
|
);
|
|
|
|
|
|
|
|
var $selection = selection.render();
|
|
|
|
var $rendered = $selection.find('.select2-selection__rendered');
|
|
|
|
|
|
|
|
$rendered.attr('title', 'testing');
|
|
|
|
|
|
|
|
selection.update([{
|
|
|
|
id: ''
|
|
|
|
}]);
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
$rendered.attr('title'),
|
|
|
|
undefined,
|
|
|
|
'The title should be removed if there is no text or title property'
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2015-02-09 23:29:28 +03:00
|
|
|
test('escapeMarkup is being used', function (assert) {
|
2015-01-29 16:41:18 +03:00
|
|
|
var selection = new SingleSelection(
|
|
|
|
$('#qunit-fixture .single'),
|
|
|
|
options
|
|
|
|
);
|
|
|
|
|
|
|
|
var $selection = selection.render();
|
|
|
|
var $rendered = $selection.find('.select2-selection__rendered');
|
|
|
|
|
|
|
|
var unescapedText = '<script>bad("stuff");</script>';
|
|
|
|
|
|
|
|
selection.update([{
|
|
|
|
text: unescapedText
|
|
|
|
}]);
|
|
|
|
|
|
|
|
assert.equal(
|
|
|
|
$rendered.text(),
|
|
|
|
unescapedText,
|
|
|
|
'The text should be escaped by default to prevent injection'
|
|
|
|
);
|
|
|
|
});
|