| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 | 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');});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();  var out = selection.display({    text: 'test'  }, $container);  assert.ok(called);  assert.equal(out, 'test');  assert.ok($container.hasClass('testclass'));});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');  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.attr('title'),    undefined,    'The title should be removed if nothing is rendered'  );});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');});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'),    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'  );});
 |