array-tests.js 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. module('Data adapters - Array');
  2. var ArrayData = require('select2/data/array');
  3. var $ = require('jquery');
  4. var Options = require('select2/options');
  5. var Utils = require('select2/utils');
  6. var UserDefinedType = function (id, text) {
  7. var self = this;
  8. self.id = id;
  9. self.text = text;
  10. return self;
  11. };
  12. var arrayOptions = new Options({
  13. data: [
  14. {
  15. id: 'default',
  16. text: 'Default'
  17. },
  18. {
  19. id: '1',
  20. text: 'One'
  21. },
  22. {
  23. id: '2',
  24. text: '2'
  25. },
  26. new UserDefinedType(1, 'aaaaaa')
  27. ]
  28. });
  29. var extraOptions = new Options ({
  30. data: [
  31. {
  32. id: 'default',
  33. text: 'Default',
  34. extra: true
  35. },
  36. {
  37. id: 'One',
  38. text: 'One',
  39. extra: true
  40. }
  41. ]
  42. });
  43. var nestedOptions = new Options({
  44. data: [
  45. {
  46. text: 'Default',
  47. children: [
  48. {
  49. text: 'Next',
  50. children: [
  51. {
  52. id: 'a',
  53. text: 'Option'
  54. }
  55. ]
  56. }
  57. ]
  58. }
  59. ]
  60. });
  61. test('current gets default for single', function (assert) {
  62. var $select = $('#qunit-fixture .single-empty');
  63. var data = new ArrayData($select, arrayOptions);
  64. data.current(function (val) {
  65. assert.equal(
  66. val.length,
  67. 1,
  68. 'There should always be a selected item for array data.'
  69. );
  70. var item = val[0];
  71. assert.equal(
  72. item.id,
  73. 'default',
  74. 'The first item should be selected'
  75. );
  76. });
  77. });
  78. test('current gets default for multiple', function (assert) {
  79. var $select = $('#qunit-fixture .multiple');
  80. var data = new ArrayData($select, arrayOptions);
  81. data.current(function (val) {
  82. assert.equal(
  83. val.length,
  84. 0,
  85. 'There should be no default selection.'
  86. );
  87. });
  88. });
  89. test('current works with existing selections', function (assert) {
  90. var $select = $('#qunit-fixture .multiple');
  91. var data = new ArrayData($select, arrayOptions);
  92. $select.val(['One']);
  93. data.current(function (val) {
  94. assert.equal(
  95. val.length,
  96. 1,
  97. 'There should only be one existing selection.'
  98. );
  99. var option = val[0];
  100. assert.equal(
  101. option.id,
  102. 'One',
  103. 'The id should be equal to the value of the option tag.'
  104. );
  105. assert.equal(
  106. option.text,
  107. 'One',
  108. 'The text should be equal to the text of the option tag.'
  109. );
  110. });
  111. });
  112. test('current works with selected data', function (assert) {
  113. var $select = $('#qunit-fixture .single-empty');
  114. var data = new ArrayData($select, arrayOptions);
  115. data.select({
  116. id: '2',
  117. text: '2'
  118. });
  119. data.current(function (val) {
  120. assert.equal(
  121. val.length,
  122. 1,
  123. 'There should only be one option selected.'
  124. );
  125. var option = val[0];
  126. assert.equal(
  127. option.id,
  128. '2',
  129. 'The id should match the original id from the array.'
  130. );
  131. assert.equal(
  132. option.text,
  133. '2',
  134. 'The text should match the original text from the array.'
  135. );
  136. });
  137. });
  138. test('select works for single', function (assert) {
  139. var $select = $('#qunit-fixture .single-empty');
  140. var data = new ArrayData($select, arrayOptions);
  141. assert.equal(
  142. $select.val(),
  143. 'default',
  144. 'There should already be a selection'
  145. );
  146. data.select({
  147. id: '1',
  148. text: 'One'
  149. });
  150. assert.equal(
  151. $select.val(),
  152. '1',
  153. 'The selected value should be the same as the selected id'
  154. );
  155. });
  156. test('multiple sets the value', function (assert) {
  157. var $select = $('#qunit-fixture .multiple');
  158. var data = new ArrayData($select, arrayOptions);
  159. assert.equal($select.val(), null);
  160. data.select({
  161. id: 'default',
  162. text: 'Default'
  163. });
  164. assert.deepEqual($select.val(), ['default']);
  165. });
  166. test('multiple adds to the old value', function (assert) {
  167. var $select = $('#qunit-fixture .multiple');
  168. var data = new ArrayData($select, arrayOptions);
  169. $select.val(['One']);
  170. assert.deepEqual($select.val(), ['One']);
  171. data.select({
  172. id: 'default',
  173. text: 'Default'
  174. });
  175. assert.deepEqual($select.val(), ['One', 'default']);
  176. });
  177. test('option tags are automatically generated', function (assert) {
  178. var $select = $('#qunit-fixture .single-empty');
  179. var data = new ArrayData($select, arrayOptions);
  180. assert.equal(
  181. $select.find('option').length,
  182. 4,
  183. 'An <option> element should be created for each object'
  184. );
  185. });
  186. test('option tags can receive new data', function(assert) {
  187. var $select = $('#qunit-fixture .single');
  188. var data = new ArrayData($select, extraOptions);
  189. assert.equal(
  190. $select.find('option').length,
  191. 2,
  192. 'Only one more <option> element should be created'
  193. );
  194. data.select({
  195. id: 'default'
  196. });
  197. assert.ok(
  198. Utils.GetData($select.find(':selected')[0], 'data').extra,
  199. '<option> default should have new data'
  200. );
  201. data.select({
  202. id: 'One'
  203. });
  204. assert.ok(
  205. Utils.GetData($select.find(':selected')[0], 'data').extra,
  206. '<option> One should have new data'
  207. );
  208. });
  209. test('optgroup tags can also be generated', function (assert) {
  210. var $select = $('#qunit-fixture .single-empty');
  211. var data = new ArrayData($select, nestedOptions);
  212. assert.equal(
  213. $select.find('option').length,
  214. 1,
  215. 'An <option> element should be created for the one selectable object'
  216. );
  217. assert.equal(
  218. $select.find('optgroup').length,
  219. 2,
  220. 'An <optgroup> element should be created for the two with children'
  221. );
  222. });
  223. test('optgroup tags have the right properties', function (assert) {
  224. var $select = $('#qunit-fixture .single-empty');
  225. var data = new ArrayData($select, nestedOptions);
  226. var $group = $select.children('optgroup');
  227. assert.equal(
  228. $group.prop('label'),
  229. 'Default',
  230. 'An `<optgroup>` label should match the text property'
  231. );
  232. assert.equal(
  233. $group.children().length,
  234. 1,
  235. 'The <optgroup> should have one child under it'
  236. );
  237. });
  238. test('existing selections are respected on initialization', function (assert) {
  239. var $select = $(
  240. '<select>' +
  241. '<option>First</option>' +
  242. '<option selected>Second</option>' +
  243. '</select>'
  244. );
  245. var options = new Options({
  246. data: [
  247. {
  248. id: 'Second',
  249. text: 'Second'
  250. },
  251. {
  252. id: 'Third',
  253. text: 'Third'
  254. }
  255. ]
  256. });
  257. assert.equal($select.val(), 'Second');
  258. var data = new ArrayData($select, options);
  259. assert.equal($select.val(), 'Second');
  260. });