|
@@ -50,7 +50,7 @@ test('templateSelection can addClass', function (assert) {
|
|
|
);
|
|
|
|
|
|
var $container = selection.selectionContainer();
|
|
|
-
|
|
|
+
|
|
|
var out = selection.display({
|
|
|
text: 'test'
|
|
|
}, $container);
|
|
@@ -58,7 +58,7 @@ test('templateSelection can addClass', function (assert) {
|
|
|
assert.ok(called);
|
|
|
|
|
|
assert.equal(out, 'test');
|
|
|
-
|
|
|
+
|
|
|
assert.ok($container.hasClass('testclass'));
|
|
|
});
|
|
|
|
|
@@ -72,12 +72,34 @@ test('empty update clears the selection', function (assert) {
|
|
|
var $rendered = $selection.find('.select2-selection__rendered');
|
|
|
|
|
|
$rendered.text('testing');
|
|
|
+
|
|
|
+ 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');
|
|
|
+
|
|
|
$rendered.attr('title', 'testing');
|
|
|
|
|
|
selection.update([]);
|
|
|
|
|
|
- assert.equal($rendered.text(), '');
|
|
|
- assert.equal($rendered.attr('title'), undefined);
|
|
|
+ assert.equal(
|
|
|
+ $rendered.attr('title'),
|
|
|
+ undefined,
|
|
|
+ 'The title should be removed if nothing is rendered'
|
|
|
+ );
|
|
|
});
|
|
|
|
|
|
test('update renders the data text', function (assert) {
|
|
@@ -96,6 +118,92 @@ test('update renders the data text', function (assert) {
|
|
|
assert.equal($rendered.text(), 'test');
|
|
|
});
|
|
|
|
|
|
+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'
|
|
|
+ );
|
|
|
+});
|
|
|
+
|
|
|
test('escapeMarkup is being used', function (assert) {
|
|
|
var selection = new SingleSelection(
|
|
|
$('#qunit-fixture .single'),
|