1(function(QUnit) { 2 3 var a, b, c, d, e, col, otherCol; 4 5 QUnit.module('Backbone.Collection', { 6 7 beforeEach: function(assert) { 8 a = new Backbone.Model({id: 3, label: 'a'}); 9 b = new Backbone.Model({id: 2, label: 'b'}); 10 c = new Backbone.Model({id: 1, label: 'c'}); 11 d = new Backbone.Model({id: 0, label: 'd'}); 12 e = null; 13 col = new Backbone.Collection([a, b, c, d]); 14 otherCol = new Backbone.Collection(); 15 } 16 17 }); 18 19 QUnit.test('new and sort', function(assert) { 20 assert.expect(6); 21 var counter = 0; 22 col.on('sort', function(){ counter++; }); 23 assert.deepEqual(col.pluck('label'), ['a', 'b', 'c', 'd']); 24 col.comparator = function(m1, m2) { 25 return m1.id > m2.id ? -1 : 1; 26 }; 27 col.sort(); 28 assert.equal(counter, 1); 29 assert.deepEqual(col.pluck('label'), ['a', 'b', 'c', 'd']); 30 col.comparator = function(model) { return model.id; }; 31 col.sort(); 32 assert.equal(counter, 2); 33 assert.deepEqual(col.pluck('label'), ['d', 'c', 'b', 'a']); 34 assert.equal(col.length, 4); 35 }); 36 37 QUnit.test('String comparator.', function(assert) { 38 assert.expect(1); 39 var collection = new Backbone.Collection([ 40 {id: 3}, 41 {id: 1}, 42 {id: 2} 43 ], {comparator: 'id'}); 44 assert.deepEqual(collection.pluck('id'), [1, 2, 3]); 45 }); 46 47 QUnit.test('new and parse', function(assert) { 48 assert.expect(3); 49 var Collection = Backbone.Collection.extend({ 50 parse: function(data) { 51 return _.filter(data, function(datum) { 52 return datum.a % 2 === 0; 53 }); 54 } 55 }); 56 var models = [{a: 1}, {a: 2}, {a: 3}, {a: 4}]; 57 var collection = new Collection(models, {parse: true}); 58 assert.strictEqual(collection.length, 2); 59 assert.strictEqual(collection.first().get('a'), 2); 60 assert.strictEqual(collection.last().get('a'), 4); 61 }); 62 63 QUnit.test('clone preserves model and comparator', function(assert) { 64 assert.expect(3); 65 var Model = Backbone.Model.extend(); 66 var comparator = function(model){ return model.id; }; 67 68 var collection = new Backbone.Collection([{id: 1}], { 69 model: Model, 70 comparator: comparator 71 }).clone(); 72 collection.add({id: 2}); 73 assert.ok(collection.at(0) instanceof Model); 74 assert.ok(collection.at(1) instanceof Model); 75 assert.strictEqual(collection.comparator, comparator); 76 }); 77 78 QUnit.test('get', function(assert) { 79 assert.expect(6); 80 assert.equal(col.get(0), d); 81 assert.equal(col.get(d.clone()), d); 82 assert.equal(col.get(2), b); 83 assert.equal(col.get({id: 1}), c); 84 assert.equal(col.get(c.clone()), c); 85 assert.equal(col.get(col.first().cid), col.first()); 86 }); 87 88 QUnit.test('get with non-default ids', function(assert) { 89 assert.expect(5); 90 var MongoModel = Backbone.Model.extend({idAttribute: '_id'}); 91 var model = new MongoModel({_id: 100}); 92 var collection = new Backbone.Collection([model], {model: MongoModel}); 93 assert.equal(collection.get(100), model); 94 assert.equal(collection.get(model.cid), model); 95 assert.equal(collection.get(model), model); 96 assert.equal(collection.get(101), void 0); 97 98 var collection2 = new Backbone.Collection(); 99 collection2.model = MongoModel; 100 collection2.add(model.attributes); 101 assert.equal(collection2.get(model.clone()), collection2.first()); 102 }); 103 104 QUnit.test('has', function(assert) { 105 assert.expect(15); 106 assert.ok(col.has(a)); 107 assert.ok(col.has(b)); 108 assert.ok(col.has(c)); 109 assert.ok(col.has(d)); 110 assert.ok(col.has(a.id)); 111 assert.ok(col.has(b.id)); 112 assert.ok(col.has(c.id)); 113 assert.ok(col.has(d.id)); 114 assert.ok(col.has(a.cid)); 115 assert.ok(col.has(b.cid)); 116 assert.ok(col.has(c.cid)); 117 assert.ok(col.has(d.cid)); 118 var outsider = new Backbone.Model({id: 4}); 119 assert.notOk(col.has(outsider)); 120 assert.notOk(col.has(outsider.id)); 121 assert.notOk(col.has(outsider.cid)); 122 }); 123 124 QUnit.test('update index when id changes', function(assert) { 125 assert.expect(4); 126 var collection = new Backbone.Collection(); 127 collection.add([ 128 {id: 0, name: 'one'}, 129 {id: 1, name: 'two'} 130 ]); 131 var one = collection.get(0); 132 assert.equal(one.get('name'), 'one'); 133 collection.on('change:name', function(model) { assert.ok(this.get(model)); }); 134 one.set({name: 'dalmatians', id: 101}); 135 assert.equal(collection.get(0), null); 136 assert.equal(collection.get(101).get('name'), 'dalmatians'); 137 }); 138 139 QUnit.test('at', function(assert) { 140 assert.expect(2); 141 assert.equal(col.at(2), c); 142 assert.equal(col.at(-2), c); 143 }); 144 145 QUnit.test('pluck', function(assert) { 146 assert.expect(1); 147 assert.equal(col.pluck('label').join(' '), 'a b c d'); 148 }); 149 150 QUnit.test('add', function(assert) { 151 assert.expect(14); 152 var added, opts, secondAdded; 153 added = opts = secondAdded = null; 154 e = new Backbone.Model({id: 10, label: 'e'}); 155 otherCol.add(e); 156 otherCol.on('add', function() { 157 secondAdded = true; 158 }); 159 col.on('add', function(model, collection, options){ 160 added = model.get('label'); 161 opts = options; 162 }); 163 col.add(e, {amazing: true}); 164 assert.equal(added, 'e'); 165 assert.equal(col.length, 5); 166 assert.equal(col.last(), e); 167 assert.equal(otherCol.length, 1); 168 assert.equal(secondAdded, null); 169 assert.ok(opts.amazing); 170 171 var f = new Backbone.Model({id: 20, label: 'f'}); 172 var g = new Backbone.Model({id: 21, label: 'g'}); 173 var h = new Backbone.Model({id: 22, label: 'h'}); 174 var atCol = new Backbone.Collection([f, g, h]); 175 assert.equal(atCol.length, 3); 176 atCol.add(e, {at: 1}); 177 assert.equal(atCol.length, 4); 178 assert.equal(atCol.at(1), e); 179 assert.equal(atCol.last(), h); 180 181 var coll = new Backbone.Collection(new Array(2)); 182 var addCount = 0; 183 coll.on('add', function(){ 184 addCount += 1; 185 }); 186 coll.add([undefined, f, g]); 187 assert.equal(coll.length, 5); 188 assert.equal(addCount, 3); 189 coll.add(new Array(4)); 190 assert.equal(coll.length, 9); 191 assert.equal(addCount, 7); 192 }); 193 194 QUnit.test('add multiple models', function(assert) { 195 assert.expect(6); 196 var collection = new Backbone.Collection([{at: 0}, {at: 1}, {at: 9}]); 197 collection.add([{at: 2}, {at: 3}, {at: 4}, {at: 5}, {at: 6}, {at: 7}, {at: 8}], {at: 2}); 198 for (var i = 0; i <= 5; i++) { 199 assert.equal(collection.at(i).get('at'), i); 200 } 201 }); 202 203 QUnit.test('add; at should have preference over comparator', function(assert) { 204 assert.expect(1); 205 var Col = Backbone.Collection.extend({ 206 comparator: function(m1, m2) { 207 return m1.id > m2.id ? -1 : 1; 208 } 209 }); 210 211 var collection = new Col([{id: 2}, {id: 3}]); 212 collection.add(new Backbone.Model({id: 1}), {at: 1}); 213 214 assert.equal(collection.pluck('id').join(' '), '3 1 2'); 215 }); 216 217 QUnit.test('add; at should add to the end if the index is out of bounds', function(assert) { 218 assert.expect(1); 219 var collection = new Backbone.Collection([{id: 2}, {id: 3}]); 220 collection.add(new Backbone.Model({id: 1}), {at: 5}); 221 222 assert.equal(collection.pluck('id').join(' '), '2 3 1'); 223 }); 224 225 QUnit.test("can't add model to collection twice", function(assert) { 226 var collection = new Backbone.Collection([{id: 1}, {id: 2}, {id: 1}, {id: 2}, {id: 3}]); 227 assert.equal(collection.pluck('id').join(' '), '1 2 3'); 228 }); 229 230 QUnit.test("can't add different model with same id to collection twice", function(assert) { 231 assert.expect(1); 232 var collection = new Backbone.Collection; 233 collection.unshift({id: 101}); 234 collection.add({id: 101}); 235 assert.equal(collection.length, 1); 236 }); 237 238 QUnit.test('merge in duplicate models with {merge: true}', function(assert) { 239 assert.expect(3); 240 var collection = new Backbone.Collection; 241 collection.add([{id: 1, name: 'Moe'}, {id: 2, name: 'Curly'}, {id: 3, name: 'Larry'}]); 242 collection.add({id: 1, name: 'Moses'}); 243 assert.equal(collection.first().get('name'), 'Moe'); 244 collection.add({id: 1, name: 'Moses'}, {merge: true}); 245 assert.equal(collection.first().get('name'), 'Moses'); 246 collection.add({id: 1, name: 'Tim'}, {merge: true, silent: true}); 247 assert.equal(collection.first().get('name'), 'Tim'); 248 }); 249 250 QUnit.test('add model to multiple collections', function(assert) { 251 assert.expect(10); 252 var counter = 0; 253 var m = new Backbone.Model({id: 10, label: 'm'}); 254 m.on('add', function(model, collection) { 255 counter++; 256 assert.equal(m, model); 257 if (counter > 1) { 258 assert.equal(collection, col2); 259 } else { 260 assert.equal(collection, col1); 261 } 262 }); 263 var col1 = new Backbone.Collection([]); 264 col1.on('add', function(model, collection) { 265 assert.equal(m, model); 266 assert.equal(col1, collection); 267 }); 268 var col2 = new Backbone.Collection([]); 269 col2.on('add', function(model, collection) { 270 assert.equal(m, model); 271 assert.equal(col2, collection); 272 }); 273 col1.add(m); 274 assert.equal(m.collection, col1); 275 col2.add(m); 276 assert.equal(m.collection, col1); 277 }); 278 279 QUnit.test('add model with parse', function(assert) { 280 assert.expect(1); 281 var Model = Backbone.Model.extend({ 282 parse: function(obj) { 283 obj.value += 1; 284 return obj; 285 } 286 }); 287 288 var Col = Backbone.Collection.extend({model: Model}); 289 var collection = new Col; 290 collection.add({value: 1}, {parse: true}); 291 assert.equal(collection.at(0).get('value'), 2); 292 }); 293 294 QUnit.test('add with parse and merge', function(assert) { 295 var collection = new Backbone.Collection(); 296 collection.parse = function(attrs) { 297 return _.map(attrs, function(model) { 298 if (model.model) return model.model; 299 return model; 300 }); 301 }; 302 collection.add({id: 1}); 303 collection.add({model: {id: 1, name: 'Alf'}}, {parse: true, merge: true}); 304 assert.equal(collection.first().get('name'), 'Alf'); 305 }); 306 307 QUnit.test('add model to collection with sort()-style comparator', function(assert) { 308 assert.expect(3); 309 var collection = new Backbone.Collection; 310 collection.comparator = function(m1, m2) { 311 return m1.get('name') < m2.get('name') ? -1 : 1; 312 }; 313 var tom = new Backbone.Model({name: 'Tom'}); 314 var rob = new Backbone.Model({name: 'Rob'}); 315 var tim = new Backbone.Model({name: 'Tim'}); 316 collection.add(tom); 317 collection.add(rob); 318 collection.add(tim); 319 assert.equal(collection.indexOf(rob), 0); 320 assert.equal(collection.indexOf(tim), 1); 321 assert.equal(collection.indexOf(tom), 2); 322 }); 323 324 QUnit.test('comparator that depends on `this`', function(assert) { 325 assert.expect(2); 326 var collection = new Backbone.Collection; 327 collection.negative = function(num) { 328 return -num; 329 }; 330 collection.comparator = function(model) { 331 return this.negative(model.id); 332 }; 333 collection.add([{id: 1}, {id: 2}, {id: 3}]); 334 assert.deepEqual(collection.pluck('id'), [3, 2, 1]); 335 collection.comparator = function(m1, m2) { 336 return this.negative(m2.id) - this.negative(m1.id); 337 }; 338 collection.sort(); 339 assert.deepEqual(collection.pluck('id'), [1, 2, 3]); 340 }); 341 342 QUnit.test('remove', function(assert) { 343 assert.expect(12); 344 var removed = null; 345 var result = null; 346 col.on('remove', function(model, collection, options) { 347 removed = model.get('label'); 348 assert.equal(options.index, 3); 349 assert.equal(collection.get(model), undefined, '#3693: model cannot be fetched from collection'); 350 }); 351 result = col.remove(d); 352 assert.equal(removed, 'd'); 353 assert.strictEqual(result, d); 354 //if we try to remove d again, it's not going to actually get removed 355 result = col.remove(d); 356 assert.strictEqual(result, undefined); 357 assert.equal(col.length, 3); 358 assert.equal(col.first(), a); 359 col.off(); 360 result = col.remove([c, d]); 361 assert.equal(result.length, 1, 'only returns removed models'); 362 assert.equal(result[0], c, 'only returns removed models'); 363 result = col.remove([c, b]); 364 assert.equal(result.length, 1, 'only returns removed models'); 365 assert.equal(result[0], b, 'only returns removed models'); 366 result = col.remove([]); 367 assert.deepEqual(result, [], 'returns empty array when nothing removed'); 368 }); 369 370 QUnit.test('add and remove return values', function(assert) { 371 assert.expect(13); 372 var Even = Backbone.Model.extend({ 373 validate: function(attrs) { 374 if (attrs.id % 2 !== 0) return 'odd'; 375 } 376 }); 377 var collection = new Backbone.Collection; 378 collection.model = Even; 379 380 var list = collection.add([{id: 2}, {id: 4}], {validate: true}); 381 assert.equal(list.length, 2); 382 assert.ok(list[0] instanceof Backbone.Model); 383 assert.equal(list[1], collection.last()); 384 assert.equal(list[1].get('id'), 4); 385 386 list = collection.add([{id: 3}, {id: 6}], {validate: true}); 387 assert.equal(collection.length, 3); 388 assert.equal(list[0], false); 389 assert.equal(list[1].get('id'), 6); 390 391 var result = collection.add({id: 6}); 392 assert.equal(result.cid, list[1].cid); 393 394 result = collection.remove({id: 6}); 395 assert.equal(collection.length, 2); 396 assert.equal(result.id, 6); 397 398 list = collection.remove([{id: 2}, {id: 8}]); 399 assert.equal(collection.length, 1); 400 assert.equal(list[0].get('id'), 2); 401 assert.equal(list[1], null); 402 }); 403 404 QUnit.test('shift and pop', function(assert) { 405 assert.expect(2); 406 var collection = new Backbone.Collection([{a: 'a'}, {b: 'b'}, {c: 'c'}]); 407 assert.equal(collection.shift().get('a'), 'a'); 408 assert.equal(collection.pop().get('c'), 'c'); 409 }); 410 411 QUnit.test('slice', function(assert) { 412 assert.expect(2); 413 var collection = new Backbone.Collection([{a: 'a'}, {b: 'b'}, {c: 'c'}]); 414 var array = collection.slice(1, 3); 415 assert.equal(array.length, 2); 416 assert.equal(array[0].get('b'), 'b'); 417 }); 418 419 QUnit.test('events are unbound on remove', function(assert) { 420 assert.expect(3); 421 var counter = 0; 422 var dj = new Backbone.Model(); 423 var emcees = new Backbone.Collection([dj]); 424 emcees.on('change', function(){ counter++; }); 425 dj.set({name: 'Kool'}); 426 assert.equal(counter, 1); 427 emcees.reset([]); 428 assert.equal(dj.collection, undefined); 429 dj.set({name: 'Shadow'}); 430 assert.equal(counter, 1); 431 }); 432 433 QUnit.test('remove in multiple collections', function(assert) { 434 assert.expect(7); 435 var modelData = { 436 id: 5, 437 title: 'Othello' 438 }; 439 var passed = false; 440 var m1 = new Backbone.Model(modelData); 441 var m2 = new Backbone.Model(modelData); 442 m2.on('remove', function() { 443 passed = true; 444 }); 445 var col1 = new Backbone.Collection([m1]); 446 var col2 = new Backbone.Collection([m2]); 447 assert.notEqual(m1, m2); 448 assert.ok(col1.length === 1); 449 assert.ok(col2.length === 1); 450 col1.remove(m1); 451 assert.equal(passed, false); 452 assert.ok(col1.length === 0); 453 col2.remove(m1); 454 assert.ok(col2.length === 0); 455 assert.equal(passed, true); 456 }); 457 458 QUnit.test('remove same model in multiple collection', function(assert) { 459 assert.expect(16); 460 var counter = 0; 461 var m = new Backbone.Model({id: 5, title: 'Othello'}); 462 m.on('remove', function(model, collection) { 463 counter++; 464 assert.equal(m, model); 465 if (counter > 1) { 466 assert.equal(collection, col1); 467 } else { 468 assert.equal(collection, col2); 469 } 470 }); 471 var col1 = new Backbone.Collection([m]); 472 col1.on('remove', function(model, collection) { 473 assert.equal(m, model); 474 assert.equal(col1, collection); 475 }); 476 var col2 = new Backbone.Collection([m]); 477 col2.on('remove', function(model, collection) { 478 assert.equal(m, model); 479 assert.equal(col2, collection); 480 }); 481 assert.equal(col1, m.collection); 482 col2.remove(m); 483 assert.ok(col2.length === 0); 484 assert.ok(col1.length === 1); 485 assert.equal(counter, 1); 486 assert.equal(col1, m.collection); 487 col1.remove(m); 488 assert.equal(null, m.collection); 489 assert.ok(col1.length === 0); 490 assert.equal(counter, 2); 491 }); 492 493 QUnit.test('model destroy removes from all collections', function(assert) { 494 assert.expect(3); 495 var m = new Backbone.Model({id: 5, title: 'Othello'}); 496 m.sync = function(method, model, options) { options.success(); }; 497 var col1 = new Backbone.Collection([m]); 498 var col2 = new Backbone.Collection([m]); 499 m.destroy(); 500 assert.ok(col1.length === 0); 501 assert.ok(col2.length === 0); 502 assert.equal(undefined, m.collection); 503 }); 504 505 QUnit.test('Collection: non-persisted model destroy removes from all collections', function(assert) { 506 assert.expect(3); 507 var m = new Backbone.Model({title: 'Othello'}); 508 m.sync = function(method, model, options) { throw 'should not be called'; }; 509 var col1 = new Backbone.Collection([m]); 510 var col2 = new Backbone.Collection([m]); 511 m.destroy(); 512 assert.ok(col1.length === 0); 513 assert.ok(col2.length === 0); 514 assert.equal(undefined, m.collection); 515 }); 516 517 QUnit.test('fetch', function(assert) { 518 assert.expect(4); 519 var collection = new Backbone.Collection; 520 collection.url = '/test'; 521 collection.fetch(); 522 assert.equal(this.syncArgs.method, 'read'); 523 assert.equal(this.syncArgs.model, collection); 524 assert.equal(this.syncArgs.options.parse, true); 525 526 collection.fetch({parse: false}); 527 assert.equal(this.syncArgs.options.parse, false); 528 }); 529 530 QUnit.test('fetch with an error response triggers an error event', function(assert) { 531 assert.expect(1); 532 var collection = new Backbone.Collection(); 533 collection.on('error', function() { 534 assert.ok(true); 535 }); 536 collection.sync = function(method, model, options) { options.error(); }; 537 collection.fetch(); 538 }); 539 540 QUnit.test('#3283 - fetch with an error response calls error with context', function(assert) { 541 assert.expect(1); 542 var collection = new Backbone.Collection(); 543 var obj = {}; 544 var options = { 545 context: obj, 546 error: function() { 547 assert.equal(this, obj); 548 } 549 }; 550 collection.sync = function(method, model, opts) { 551 opts.error.call(opts.context); 552 }; 553 collection.fetch(options); 554 }); 555 556 QUnit.test('ensure fetch only parses once', function(assert) { 557 assert.expect(1); 558 var collection = new Backbone.Collection; 559 var counter = 0; 560 collection.parse = function(models) { 561 counter++; 562 return models; 563 }; 564 collection.url = '/test'; 565 collection.fetch(); 566 this.syncArgs.options.success([]); 567 assert.equal(counter, 1); 568 }); 569 570 QUnit.test('create', function(assert) { 571 assert.expect(4); 572 var collection = new Backbone.Collection; 573 collection.url = '/test'; 574 var model = collection.create({label: 'f'}, {wait: true}); 575 assert.equal(this.syncArgs.method, 'create'); 576 assert.equal(this.syncArgs.model, model); 577 assert.equal(model.get('label'), 'f'); 578 assert.equal(model.collection, collection); 579 }); 580 581 QUnit.test('create with validate:true enforces validation', function(assert) { 582 assert.expect(3); 583 var ValidatingModel = Backbone.Model.extend({ 584 validate: function(attrs) { 585 return 'fail'; 586 } 587 }); 588 var ValidatingCollection = Backbone.Collection.extend({ 589 model: ValidatingModel 590 }); 591 var collection = new ValidatingCollection(); 592 collection.on('invalid', function(coll, error, options) { 593 assert.equal(error, 'fail'); 594 assert.equal(options.validationError, 'fail'); 595 }); 596 assert.equal(collection.create({foo: 'bar'}, {validate: true}), false); 597 }); 598 599 QUnit.test('create will pass extra options to success callback', function(assert) { 600 assert.expect(1); 601 var Model = Backbone.Model.extend({ 602 sync: function(method, model, options) { 603 _.extend(options, {specialSync: true}); 604 return Backbone.Model.prototype.sync.call(this, method, model, options); 605 } 606 }); 607 608 var Collection = Backbone.Collection.extend({ 609 model: Model, 610 url: '/test' 611 }); 612 613 var collection = new Collection; 614 615 var success = function(model, response, options) { 616 assert.ok(options.specialSync, 'Options were passed correctly to callback'); 617 }; 618 619 collection.create({}, {success: success}); 620 this.ajaxSettings.success(); 621 }); 622 623 QUnit.test('create with wait:true should not call collection.parse', function(assert) { 624 assert.expect(0); 625 var Collection = Backbone.Collection.extend({ 626 url: '/test', 627 parse: function() { 628 assert.ok(false); 629 } 630 }); 631 632 var collection = new Collection; 633 634 collection.create({}, {wait: true}); 635 this.ajaxSettings.success(); 636 }); 637 638 QUnit.test('a failing create returns model with errors', function(assert) { 639 var ValidatingModel = Backbone.Model.extend({ 640 validate: function(attrs) { 641 return 'fail'; 642 } 643 }); 644 var ValidatingCollection = Backbone.Collection.extend({ 645 model: ValidatingModel 646 }); 647 var collection = new ValidatingCollection(); 648 var m = collection.create({foo: 'bar'}); 649 assert.equal(m.validationError, 'fail'); 650 assert.equal(collection.length, 1); 651 }); 652 653 QUnit.test('initialize', function(assert) { 654 assert.expect(1); 655 var Collection = Backbone.Collection.extend({ 656 initialize: function() { 657 this.one = 1; 658 } 659 }); 660 var coll = new Collection; 661 assert.equal(coll.one, 1); 662 }); 663 664 QUnit.test('preinitialize', function(assert) { 665 assert.expect(1); 666 var Collection = Backbone.Collection.extend({ 667 preinitialize: function() { 668 this.one = 1; 669 } 670 }); 671 var coll = new Collection; 672 assert.equal(coll.one, 1); 673 }); 674 675 QUnit.test('preinitialize occurs before the collection is set up', function(assert) { 676 assert.expect(2); 677 var Collection = Backbone.Collection.extend({ 678 preinitialize: function() { 679 assert.notEqual(this.model, FooModel); 680 } 681 }); 682 var FooModel = Backbone.Model.extend({id: 'foo'}); 683 var coll = new Collection({}, { 684 model: FooModel 685 }); 686 assert.equal(coll.model, FooModel); 687 }); 688 689 QUnit.test('toJSON', function(assert) { 690 assert.expect(1); 691 assert.equal(JSON.stringify(col), '[{"id":3,"label":"a"},{"id":2,"label":"b"},{"id":1,"label":"c"},{"id":0,"label":"d"}]'); 692 }); 693 694 QUnit.test('where and findWhere', function(assert) { 695 assert.expect(8); 696 var model = new Backbone.Model({a: 1}); 697 var coll = new Backbone.Collection([ 698 model, 699 {a: 1}, 700 {a: 1, b: 2}, 701 {a: 2, b: 2}, 702 {a: 3} 703 ]); 704 assert.equal(coll.where({a: 1}).length, 3); 705 assert.equal(coll.where({a: 2}).length, 1); 706 assert.equal(coll.where({a: 3}).length, 1); 707 assert.equal(coll.where({b: 1}).length, 0); 708 assert.equal(coll.where({b: 2}).length, 2); 709 assert.equal(coll.where({a: 1, b: 2}).length, 1); 710 assert.equal(coll.findWhere({a: 1}), model); 711 assert.equal(coll.findWhere({a: 4}), void 0); 712 }); 713 714 QUnit.test('Underscore methods', function(assert) { 715 assert.expect(21); 716 assert.equal(col.map(function(model){ return model.get('label'); }).join(' '), 'a b c d'); 717 assert.equal(col.some(function(model){ return model.id === 100; }), false); 718 assert.equal(col.some(function(model){ return model.id === 0; }), true); 719 assert.equal(col.reduce(function(m1, m2) {return m1.id > m2.id ? m1 : m2;}).id, 3); 720 assert.equal(col.reduceRight(function(m1, m2) {return m1.id > m2.id ? m1 : m2;}).id, 3); 721 assert.equal(col.indexOf(b), 1); 722 assert.equal(col.size(), 4); 723 assert.equal(col.rest().length, 3); 724 assert.ok(!_.includes(col.rest(), a)); 725 assert.ok(_.includes(col.rest(), d)); 726 assert.ok(!col.isEmpty()); 727 assert.ok(!_.includes(col.without(d), d)); 728 729 var wrapped = col.chain(); 730 assert.equal(wrapped.map('id').max().value(), 3); 731 assert.equal(wrapped.map('id').min().value(), 0); 732 assert.deepEqual(wrapped 733 .filter(function(o){ return o.id % 2 === 0; }) 734 .map(function(o){ return o.id * 2; }) 735 .value(), 736 [4, 0]); 737 assert.deepEqual(col.difference([c, d]), [a, b]); 738 assert.ok(col.includes(col.sample())); 739 740 var first = col.first(); 741 assert.deepEqual(col.groupBy(function(model){ return model.id; })[first.id], [first]); 742 assert.deepEqual(col.countBy(function(model){ return model.id; }), {0: 1, 1: 1, 2: 1, 3: 1}); 743 assert.deepEqual(col.sortBy(function(model){ return model.id; })[0], col.at(3)); 744 assert.ok(col.indexBy('id')[first.id] === first); 745 }); 746 747 QUnit.test('Underscore methods with object-style and property-style iteratee', function(assert) { 748 assert.expect(26); 749 var model = new Backbone.Model({a: 4, b: 1, e: 3}); 750 var coll = new Backbone.Collection([ 751 {a: 1, b: 1}, 752 {a: 2, b: 1, c: 1}, 753 {a: 3, b: 1}, 754 model 755 ]); 756 assert.equal(coll.find({a: 0}), undefined); 757 assert.deepEqual(coll.find({a: 4}), model); 758 assert.equal(coll.find('d'), undefined); 759 assert.deepEqual(coll.find('e'), model); 760 assert.equal(coll.filter({a: 0}), false); 761 assert.deepEqual(coll.filter({a: 4}), [model]); 762 assert.equal(coll.some({a: 0}), false); 763 assert.equal(coll.some({a: 1}), true); 764 assert.equal(coll.reject({a: 0}).length, 4); 765 assert.deepEqual(coll.reject({a: 4}), _.without(coll.models, model)); 766 assert.equal(coll.every({a: 0}), false); 767 assert.equal(coll.every({b: 1}), true); 768 assert.deepEqual(coll.partition({a: 0})[0], []); 769 assert.deepEqual(coll.partition({a: 0})[1], coll.models); 770 assert.deepEqual(coll.partition({a: 4})[0], [model]); 771 assert.deepEqual(coll.partition({a: 4})[1], _.without(coll.models, model)); 772 assert.deepEqual(coll.map({a: 2}), [false, true, false, false]); 773 assert.deepEqual(coll.map('a'), [1, 2, 3, 4]); 774 assert.deepEqual(coll.sortBy('a')[3], model); 775 assert.deepEqual(coll.sortBy('e')[0], model); 776 assert.deepEqual(coll.countBy({a: 4}), {'false': 3, 'true': 1}); 777 assert.deepEqual(coll.countBy('d'), {'undefined': 4}); 778 assert.equal(coll.findIndex({b: 1}), 0); 779 assert.equal(coll.findIndex({b: 9}), -1); 780 assert.equal(coll.findLastIndex({b: 1}), 3); 781 assert.equal(coll.findLastIndex({b: 9}), -1); 782 }); 783 784 QUnit.test('reset', function(assert) { 785 assert.expect(16); 786 787 var resetCount = 0; 788 var models = col.models; 789 col.on('reset', function() { resetCount += 1; }); 790 col.reset([]); 791 assert.equal(resetCount, 1); 792 assert.equal(col.length, 0); 793 assert.equal(col.last(), null); 794 col.reset(models); 795 assert.equal(resetCount, 2); 796 assert.equal(col.length, 4); 797 assert.equal(col.last(), d); 798 col.reset(_.map(models, function(m){ return m.attributes; })); 799 assert.equal(resetCount, 3); 800 assert.equal(col.length, 4); 801 assert.ok(col.last() !== d); 802 assert.ok(_.isEqual(col.last().attributes, d.attributes)); 803 col.reset(); 804 assert.equal(col.length, 0); 805 assert.equal(resetCount, 4); 806 807 var f = new Backbone.Model({id: 20, label: 'f'}); 808 col.reset([undefined, f]); 809 assert.equal(col.length, 2); 810 assert.equal(resetCount, 5); 811 812 col.reset(new Array(4)); 813 assert.equal(col.length, 4); 814 assert.equal(resetCount, 6); 815 }); 816 817 QUnit.test('reset with different values', function(assert) { 818 var collection = new Backbone.Collection({id: 1}); 819 collection.reset({id: 1, a: 1}); 820 assert.equal(collection.get(1).get('a'), 1); 821 }); 822 823 QUnit.test('same references in reset', function(assert) { 824 var model = new Backbone.Model({id: 1}); 825 var collection = new Backbone.Collection({id: 1}); 826 collection.reset(model); 827 assert.equal(collection.get(1), model); 828 }); 829 830 QUnit.test('reset passes caller options', function(assert) { 831 assert.expect(3); 832 var Model = Backbone.Model.extend({ 833 initialize: function(attrs, options) { 834 this.modelParameter = options.modelParameter; 835 } 836 }); 837 var collection = new (Backbone.Collection.extend({model: Model}))(); 838 collection.reset([{astring: 'green', anumber: 1}, {astring: 'blue', anumber: 2}], {modelParameter: 'model parameter'}); 839 assert.equal(collection.length, 2); 840 collection.each(function(model) { 841 assert.equal(model.modelParameter, 'model parameter'); 842 }); 843 }); 844 845 QUnit.test('reset does not alter options by reference', function(assert) { 846 assert.expect(2); 847 var collection = new Backbone.Collection([{id: 1}]); 848 var origOpts = {}; 849 collection.on('reset', function(coll, opts){ 850 assert.equal(origOpts.previousModels, undefined); 851 assert.equal(opts.previousModels[0].id, 1); 852 }); 853 collection.reset([], origOpts); 854 }); 855 856 QUnit.test('trigger custom events on models', function(assert) { 857 assert.expect(1); 858 var fired = null; 859 a.on('custom', function() { fired = true; }); 860 a.trigger('custom'); 861 assert.equal(fired, true); 862 }); 863 864 QUnit.test('add does not alter arguments', function(assert) { 865 assert.expect(2); 866 var attrs = {}; 867 var models = [attrs]; 868 new Backbone.Collection().add(models); 869 assert.equal(models.length, 1); 870 assert.ok(attrs === models[0]); 871 }); 872 873 QUnit.test('#714: access `model.collection` in a brand new model.', function(assert) { 874 assert.expect(2); 875 var collection = new Backbone.Collection; 876 collection.url = '/test'; 877 var Model = Backbone.Model.extend({ 878 set: function(attrs) { 879 assert.equal(attrs.prop, 'value'); 880 assert.equal(this.collection, collection); 881 return this; 882 } 883 }); 884 collection.model = Model; 885 collection.create({prop: 'value'}); 886 }); 887 888 QUnit.test('#574, remove its own reference to the .models array.', function(assert) { 889 assert.expect(2); 890 var collection = new Backbone.Collection([ 891 {id: 1}, {id: 2}, {id: 3}, {id: 4}, {id: 5}, {id: 6} 892 ]); 893 assert.equal(collection.length, 6); 894 collection.remove(collection.models); 895 assert.equal(collection.length, 0); 896 }); 897 898 QUnit.test('#861, adding models to a collection which do not pass validation, with validate:true', function(assert) { 899 assert.expect(2); 900 var Model = Backbone.Model.extend({ 901 validate: function(attrs) { 902 if (attrs.id === 3) return "id can't be 3"; 903 } 904 }); 905 906 var Collection = Backbone.Collection.extend({ 907 model: Model 908 }); 909 910 var collection = new Collection; 911 collection.on('invalid', function() { assert.ok(true); }); 912 913 collection.add([{id: 1}, {id: 2}, {id: 3}, {id: 4}, {id: 5}, {id: 6}], {validate: true}); 914 assert.deepEqual(collection.pluck('id'), [1, 2, 4, 5, 6]); 915 }); 916 917 QUnit.test('Invalid models are discarded with validate:true.', function(assert) { 918 assert.expect(5); 919 var collection = new Backbone.Collection; 920 collection.on('test', function() { assert.ok(true); }); 921 collection.model = Backbone.Model.extend({ 922 validate: function(attrs){ if (!attrs.valid) return 'invalid'; } 923 }); 924 var model = new collection.model({id: 1, valid: true}); 925 collection.add([model, {id: 2}], {validate: true}); 926 model.trigger('test'); 927 assert.ok(collection.get(model.cid)); 928 assert.ok(collection.get(1)); 929 assert.ok(!collection.get(2)); 930 assert.equal(collection.length, 1); 931 }); 932 933 QUnit.test('multiple copies of the same model', function(assert) { 934 assert.expect(3); 935 var collection = new Backbone.Collection(); 936 var model = new Backbone.Model(); 937 collection.add([model, model]); 938 assert.equal(collection.length, 1); 939 collection.add([{id: 1}, {id: 1}]); 940 assert.equal(collection.length, 2); 941 assert.equal(collection.last().id, 1); 942 }); 943 944 QUnit.test('#964 - collection.get return inconsistent', function(assert) { 945 assert.expect(2); 946 var collection = new Backbone.Collection(); 947 assert.ok(collection.get(null) === undefined); 948 assert.ok(collection.get() === undefined); 949 }); 950 951 QUnit.test('#1112 - passing options.model sets collection.model', function(assert) { 952 assert.expect(2); 953 var Model = Backbone.Model.extend({}); 954 var collection = new Backbone.Collection([{id: 1}], {model: Model}); 955 assert.ok(collection.model === Model); 956 assert.ok(collection.at(0) instanceof Model); 957 }); 958 959 QUnit.test('null and undefined are invalid ids.', function(assert) { 960 assert.expect(2); 961 var model = new Backbone.Model({id: 1}); 962 var collection = new Backbone.Collection([model]); 963 model.set({id: null}); 964 assert.ok(!collection.get('null')); 965 model.set({id: 1}); 966 model.set({id: undefined}); 967 assert.ok(!collection.get('undefined')); 968 }); 969 970 QUnit.test('falsy comparator', function(assert) { 971 assert.expect(4); 972 var Col = Backbone.Collection.extend({ 973 comparator: function(model){ return model.id; } 974 }); 975 var collection = new Col(); 976 var colFalse = new Col(null, {comparator: false}); 977 var colNull = new Col(null, {comparator: null}); 978 var colUndefined = new Col(null, {comparator: undefined}); 979 assert.ok(collection.comparator); 980 assert.ok(!colFalse.comparator); 981 assert.ok(!colNull.comparator); 982 assert.ok(colUndefined.comparator); 983 }); 984 985 QUnit.test('#1355 - `options` is passed to success callbacks', function(assert) { 986 assert.expect(2); 987 var m = new Backbone.Model({x: 1}); 988 var collection = new Backbone.Collection(); 989 var opts = { 990 opts: true, 991 success: function(coll, resp, options) { 992 assert.ok(options.opts); 993 } 994 }; 995 collection.sync = m.sync = function( method, coll, options ){ 996 options.success({}); 997 }; 998 collection.fetch(opts); 999 collection.create(m, opts); 1000 }); 1001 1002 QUnit.test("#1412 - Trigger 'request' and 'sync' events.", function(assert) { 1003 assert.expect(4); 1004 var collection = new Backbone.Collection; 1005 collection.url = '/test'; 1006 Backbone.ajax = function(settings){ settings.success(); }; 1007 1008 collection.on('request', function(obj, xhr, options) { 1009 assert.ok(obj === collection, "collection has correct 'request' event after fetching"); 1010 }); 1011 collection.on('sync', function(obj, response, options) { 1012 assert.ok(obj === collection, "collection has correct 'sync' event after fetching"); 1013 }); 1014 collection.fetch(); 1015 collection.off(); 1016 1017 collection.on('request', function(obj, xhr, options) { 1018 assert.ok(obj === collection.get(1), "collection has correct 'request' event after one of its models save"); 1019 }); 1020 collection.on('sync', function(obj, response, options) { 1021 assert.ok(obj === collection.get(1), "collection has correct 'sync' event after one of its models save"); 1022 }); 1023 collection.create({id: 1}); 1024 collection.off(); 1025 }); 1026 1027 QUnit.test('#3283 - fetch, create calls success with context', function(assert) { 1028 assert.expect(2); 1029 var collection = new Backbone.Collection; 1030 collection.url = '/test'; 1031 Backbone.ajax = function(settings) { 1032 settings.success.call(settings.context); 1033 }; 1034 var obj = {}; 1035 var options = { 1036 context: obj, 1037 success: function() { 1038 assert.equal(this, obj); 1039 } 1040 }; 1041 1042 collection.fetch(options); 1043 collection.create({id: 1}, options); 1044 }); 1045 1046 QUnit.test('#1447 - create with wait adds model.', function(assert) { 1047 assert.expect(1); 1048 var collection = new Backbone.Collection; 1049 var model = new Backbone.Model; 1050 model.sync = function(method, m, options){ options.success(); }; 1051 collection.on('add', function(){ assert.ok(true); }); 1052 collection.create(model, {wait: true}); 1053 }); 1054 1055 QUnit.test('#1448 - add sorts collection after merge.', function(assert) { 1056 assert.expect(1); 1057 var collection = new Backbone.Collection([ 1058 {id: 1, x: 1}, 1059 {id: 2, x: 2} 1060 ]); 1061 collection.comparator = function(model){ return model.get('x'); }; 1062 collection.add({id: 1, x: 3}, {merge: true}); 1063 assert.deepEqual(collection.pluck('id'), [2, 1]); 1064 }); 1065 1066 QUnit.test('#1655 - groupBy can be used with a string argument.', function(assert) { 1067 assert.expect(3); 1068 var collection = new Backbone.Collection([{x: 1}, {x: 2}]); 1069 var grouped = collection.groupBy('x'); 1070 assert.strictEqual(_.keys(grouped).length, 2); 1071 assert.strictEqual(grouped[1][0].get('x'), 1); 1072 assert.strictEqual(grouped[2][0].get('x'), 2); 1073 }); 1074 1075 QUnit.test('#1655 - sortBy can be used with a string argument.', function(assert) { 1076 assert.expect(1); 1077 var collection = new Backbone.Collection([{x: 3}, {x: 1}, {x: 2}]); 1078 var values = _.map(collection.sortBy('x'), function(model) { 1079 return model.get('x'); 1080 }); 1081 assert.deepEqual(values, [1, 2, 3]); 1082 }); 1083 1084 QUnit.test('#1604 - Removal during iteration.', function(assert) { 1085 assert.expect(0); 1086 var collection = new Backbone.Collection([{}, {}]); 1087 collection.on('add', function() { 1088 collection.at(0).destroy(); 1089 }); 1090 collection.add({}, {at: 0}); 1091 }); 1092 1093 QUnit.test('#1638 - `sort` during `add` triggers correctly.', function(assert) { 1094 var collection = new Backbone.Collection; 1095 collection.comparator = function(model) { return model.get('x'); }; 1096 var added = []; 1097 collection.on('add', function(model) { 1098 model.set({x: 3}); 1099 collection.sort(); 1100 added.push(model.id); 1101 }); 1102 collection.add([{id: 1, x: 1}, {id: 2, x: 2}]); 1103 assert.deepEqual(added, [1, 2]); 1104 }); 1105 1106 QUnit.test('fetch parses models by default', function(assert) { 1107 assert.expect(1); 1108 var model = {}; 1109 var Collection = Backbone.Collection.extend({ 1110 url: 'test', 1111 model: Backbone.Model.extend({ 1112 parse: function(resp) { 1113 assert.strictEqual(resp, model); 1114 } 1115 }) 1116 }); 1117 new Collection().fetch(); 1118 this.ajaxSettings.success([model]); 1119 }); 1120 1121 QUnit.test("`sort` shouldn't always fire on `add`", function(assert) { 1122 assert.expect(1); 1123 var collection = new Backbone.Collection([{id: 1}, {id: 2}, {id: 3}], { 1124 comparator: 'id' 1125 }); 1126 collection.sort = function(){ assert.ok(true); }; 1127 collection.add([]); 1128 collection.add({id: 1}); 1129 collection.add([{id: 2}, {id: 3}]); 1130 collection.add({id: 4}); 1131 }); 1132 1133 QUnit.test('#1407 parse option on constructor parses collection and models', function(assert) { 1134 assert.expect(2); 1135 var model = { 1136 namespace: [{id: 1}, {id: 2}] 1137 }; 1138 var Collection = Backbone.Collection.extend({ 1139 model: Backbone.Model.extend({ 1140 parse: function(m) { 1141 m.name = 'test'; 1142 return m; 1143 } 1144 }), 1145 parse: function(m) { 1146 return m.namespace; 1147 } 1148 }); 1149 var collection = new Collection(model, {parse: true}); 1150 1151 assert.equal(collection.length, 2); 1152 assert.equal(collection.at(0).get('name'), 'test'); 1153 }); 1154 1155 QUnit.test('#1407 parse option on reset parses collection and models', function(assert) { 1156 assert.expect(2); 1157 var model = { 1158 namespace: [{id: 1}, {id: 2}] 1159 }; 1160 var Collection = Backbone.Collection.extend({ 1161 model: Backbone.Model.extend({ 1162 parse: function(m) { 1163 m.name = 'test'; 1164 return m; 1165 } 1166 }), 1167 parse: function(m) { 1168 return m.namespace; 1169 } 1170 }); 1171 var collection = new Collection(); 1172 collection.reset(model, {parse: true}); 1173 1174 assert.equal(collection.length, 2); 1175 assert.equal(collection.at(0).get('name'), 'test'); 1176 }); 1177 1178 1179 QUnit.test('Reset includes previous models in triggered event.', function(assert) { 1180 assert.expect(1); 1181 var model = new Backbone.Model(); 1182 var collection = new Backbone.Collection([model]); 1183 collection.on('reset', function(coll, options) { 1184 assert.deepEqual(options.previousModels, [model]); 1185 }); 1186 collection.reset([]); 1187 }); 1188 1189 QUnit.test('set', function(assert) { 1190 var m1 = new Backbone.Model(); 1191 var m2 = new Backbone.Model({id: 2}); 1192 var m3 = new Backbone.Model(); 1193 var collection = new Backbone.Collection([m1, m2]); 1194 1195 // Test add/change/remove events 1196 collection.on('add', function(model) { 1197 assert.strictEqual(model, m3); 1198 }); 1199 collection.on('change', function(model) { 1200 assert.strictEqual(model, m2); 1201 }); 1202 collection.on('remove', function(model) { 1203 assert.strictEqual(model, m1); 1204 }); 1205 1206 // remove: false doesn't remove any models 1207 collection.set([], {remove: false}); 1208 assert.strictEqual(collection.length, 2); 1209 1210 // add: false doesn't add any models 1211 collection.set([m1, m2, m3], {add: false}); 1212 assert.strictEqual(collection.length, 2); 1213 1214 // merge: false doesn't change any models 1215 collection.set([m1, {id: 2, a: 1}], {merge: false}); 1216 assert.strictEqual(m2.get('a'), void 0); 1217 1218 // add: false, remove: false only merges existing models 1219 collection.set([m1, {id: 2, a: 0}, m3, {id: 4}], {add: false, remove: false}); 1220 assert.strictEqual(collection.length, 2); 1221 assert.strictEqual(m2.get('a'), 0); 1222 1223 // default options add/remove/merge as appropriate 1224 collection.set([{id: 2, a: 1}, m3]); 1225 assert.strictEqual(collection.length, 2); 1226 assert.strictEqual(m2.get('a'), 1); 1227 1228 // Test removing models not passing an argument 1229 collection.off('remove').on('remove', function(model) { 1230 assert.ok(model === m2 || model === m3); 1231 }); 1232 collection.set([]); 1233 assert.strictEqual(collection.length, 0); 1234 1235 // Test null models on set doesn't clear collection 1236 collection.off(); 1237 collection.set([{id: 1}]); 1238 collection.set(); 1239 assert.strictEqual(collection.length, 1); 1240 }); 1241 1242 QUnit.test('set with only cids', function(assert) { 1243 assert.expect(3); 1244 var m1 = new Backbone.Model; 1245 var m2 = new Backbone.Model; 1246 var collection = new Backbone.Collection; 1247 collection.set([m1, m2]); 1248 assert.equal(collection.length, 2); 1249 collection.set([m1]); 1250 assert.equal(collection.length, 1); 1251 collection.set([m1, m1, m1, m2, m2], {remove: false}); 1252 assert.equal(collection.length, 2); 1253 }); 1254 1255 QUnit.test('set with only idAttribute', function(assert) { 1256 assert.expect(3); 1257 var m1 = {_id: 1}; 1258 var m2 = {_id: 2}; 1259 var Col = Backbone.Collection.extend({ 1260 model: Backbone.Model.extend({ 1261 idAttribute: '_id' 1262 }) 1263 }); 1264 var collection = new Col; 1265 collection.set([m1, m2]); 1266 assert.equal(collection.length, 2); 1267 collection.set([m1]); 1268 assert.equal(collection.length, 1); 1269 collection.set([m1, m1, m1, m2, m2], {remove: false}); 1270 assert.equal(collection.length, 2); 1271 }); 1272 1273 QUnit.test('set + merge with default values defined', function(assert) { 1274 var Model = Backbone.Model.extend({ 1275 defaults: { 1276 key: 'value' 1277 } 1278 }); 1279 var m = new Model({id: 1}); 1280 var collection = new Backbone.Collection([m], {model: Model}); 1281 assert.equal(collection.first().get('key'), 'value'); 1282 1283 collection.set({id: 1, key: 'other'}); 1284 assert.equal(collection.first().get('key'), 'other'); 1285 1286 collection.set({id: 1, other: 'value'}); 1287 assert.equal(collection.first().get('key'), 'other'); 1288 assert.equal(collection.length, 1); 1289 }); 1290 1291 QUnit.test('merge without mutation', function(assert) { 1292 var Model = Backbone.Model.extend({ 1293 initialize: function(attrs, options) { 1294 if (attrs.child) { 1295 this.set('child', new Model(attrs.child, options), options); 1296 } 1297 } 1298 }); 1299 var Collection = Backbone.Collection.extend({model: Model}); 1300 var data = [{id: 1, child: {id: 2}}]; 1301 var collection = new Collection(data); 1302 assert.equal(collection.first().id, 1); 1303 collection.set(data); 1304 assert.equal(collection.first().id, 1); 1305 collection.set([{id: 2, child: {id: 2}}].concat(data)); 1306 assert.deepEqual(collection.pluck('id'), [2, 1]); 1307 }); 1308 1309 QUnit.test('`set` and model level `parse`', function(assert) { 1310 var Model = Backbone.Model.extend({}); 1311 var Collection = Backbone.Collection.extend({ 1312 model: Model, 1313 parse: function(res) { return _.map(res.models, 'model'); } 1314 }); 1315 var model = new Model({id: 1}); 1316 var collection = new Collection(model); 1317 collection.set({models: [ 1318 {model: {id: 1}}, 1319 {model: {id: 2}} 1320 ]}, {parse: true}); 1321 assert.equal(collection.first(), model); 1322 }); 1323 1324 QUnit.test('`set` data is only parsed once', function(assert) { 1325 var collection = new Backbone.Collection(); 1326 collection.model = Backbone.Model.extend({ 1327 parse: function(data) { 1328 assert.equal(data.parsed, void 0); 1329 data.parsed = true; 1330 return data; 1331 } 1332 }); 1333 collection.set({}, {parse: true}); 1334 }); 1335 1336 QUnit.test('`set` matches input order in the absence of a comparator', function(assert) { 1337 var one = new Backbone.Model({id: 1}); 1338 var two = new Backbone.Model({id: 2}); 1339 var three = new Backbone.Model({id: 3}); 1340 var collection = new Backbone.Collection([one, two, three]); 1341 collection.set([{id: 3}, {id: 2}, {id: 1}]); 1342 assert.deepEqual(collection.models, [three, two, one]); 1343 collection.set([{id: 1}, {id: 2}]); 1344 assert.deepEqual(collection.models, [one, two]); 1345 collection.set([two, three, one]); 1346 assert.deepEqual(collection.models, [two, three, one]); 1347 collection.set([{id: 1}, {id: 2}], {remove: false}); 1348 assert.deepEqual(collection.models, [two, three, one]); 1349 collection.set([{id: 1}, {id: 2}, {id: 3}], {merge: false}); 1350 assert.deepEqual(collection.models, [one, two, three]); 1351 collection.set([three, two, one, {id: 4}], {add: false}); 1352 assert.deepEqual(collection.models, [one, two, three]); 1353 }); 1354 1355 QUnit.test('#1894 - Push should not trigger a sort', function(assert) { 1356 assert.expect(0); 1357 var Collection = Backbone.Collection.extend({ 1358 comparator: 'id', 1359 sort: function() { assert.ok(false); } 1360 }); 1361 new Collection().push({id: 1}); 1362 }); 1363 1364 QUnit.test('#2428 - push duplicate models, return the correct one', function(assert) { 1365 assert.expect(1); 1366 var collection = new Backbone.Collection; 1367 var model1 = collection.push({id: 101}); 1368 var model2 = collection.push({id: 101}); 1369 assert.ok(model2.cid === model1.cid); 1370 }); 1371 1372 QUnit.test('`set` with non-normal id', function(assert) { 1373 var Collection = Backbone.Collection.extend({ 1374 model: Backbone.Model.extend({idAttribute: '_id'}) 1375 }); 1376 var collection = new Collection({_id: 1}); 1377 collection.set([{_id: 1, a: 1}], {add: false}); 1378 assert.equal(collection.first().get('a'), 1); 1379 }); 1380 1381 QUnit.test('#1894 - `sort` can optionally be turned off', function(assert) { 1382 assert.expect(0); 1383 var Collection = Backbone.Collection.extend({ 1384 comparator: 'id', 1385 sort: function() { assert.ok(false); } 1386 }); 1387 new Collection().add({id: 1}, {sort: false}); 1388 }); 1389 1390 QUnit.test('#1915 - `parse` data in the right order in `set`', function(assert) { 1391 var collection = new (Backbone.Collection.extend({ 1392 parse: function(data) { 1393 assert.strictEqual(data.status, 'ok'); 1394 return data.data; 1395 } 1396 })); 1397 var res = {status: 'ok', data: [{id: 1}]}; 1398 collection.set(res, {parse: true}); 1399 }); 1400 1401 QUnit.test('#1939 - `parse` is passed `options`', function(assert) { 1402 var done = assert.async(); 1403 assert.expect(1); 1404 var collection = new (Backbone.Collection.extend({ 1405 url: '/', 1406 parse: function(data, options) { 1407 assert.strictEqual(options.xhr.someHeader, 'headerValue'); 1408 return data; 1409 } 1410 })); 1411 var ajax = Backbone.ajax; 1412 Backbone.ajax = function(params) { 1413 _.defer(params.success, []); 1414 return {someHeader: 'headerValue'}; 1415 }; 1416 collection.fetch({ 1417 success: function() { done(); } 1418 }); 1419 Backbone.ajax = ajax; 1420 }); 1421 1422 QUnit.test('fetch will pass extra options to success callback', function(assert) { 1423 assert.expect(1); 1424 var SpecialSyncCollection = Backbone.Collection.extend({ 1425 url: '/test', 1426 sync: function(method, collection, options) { 1427 _.extend(options, {specialSync: true}); 1428 return Backbone.Collection.prototype.sync.call(this, method, collection, options); 1429 } 1430 }); 1431 1432 var collection = new SpecialSyncCollection(); 1433 1434 var onSuccess = function(coll, resp, options) { 1435 assert.ok(options.specialSync, 'Options were passed correctly to callback'); 1436 }; 1437 1438 collection.fetch({success: onSuccess}); 1439 this.ajaxSettings.success(); 1440 }); 1441 1442 QUnit.test('`add` only `sort`s when necessary', function(assert) { 1443 assert.expect(2); 1444 var collection = new (Backbone.Collection.extend({ 1445 comparator: 'a' 1446 }))([{id: 1}, {id: 2}, {id: 3}]); 1447 collection.on('sort', function() { assert.ok(true); }); 1448 collection.add({id: 4}); // do sort, new model 1449 collection.add({id: 1, a: 1}, {merge: true}); // do sort, comparator change 1450 collection.add({id: 1, b: 1}, {merge: true}); // don't sort, no comparator change 1451 collection.add({id: 1, a: 1}, {merge: true}); // don't sort, no comparator change 1452 collection.add(collection.models); // don't sort, nothing new 1453 collection.add(collection.models, {merge: true}); // don't sort 1454 }); 1455 1456 QUnit.test('`add` only `sort`s when necessary with comparator function', function(assert) { 1457 assert.expect(3); 1458 var collection = new (Backbone.Collection.extend({ 1459 comparator: function(m1, m2) { 1460 return m1.get('a') > m2.get('a') ? 1 : (m1.get('a') < m2.get('a') ? -1 : 0); 1461 } 1462 }))([{id: 1}, {id: 2}, {id: 3}]); 1463 collection.on('sort', function() { assert.ok(true); }); 1464 collection.add({id: 4}); // do sort, new model 1465 collection.add({id: 1, a: 1}, {merge: true}); // do sort, model change 1466 collection.add({id: 1, b: 1}, {merge: true}); // do sort, model change 1467 collection.add({id: 1, a: 1}, {merge: true}); // don't sort, no model change 1468 collection.add(collection.models); // don't sort, nothing new 1469 collection.add(collection.models, {merge: true}); // don't sort 1470 }); 1471 1472 QUnit.test('Attach options to collection.', function(assert) { 1473 assert.expect(2); 1474 var Model = Backbone.Model; 1475 var comparator = function(){}; 1476 1477 var collection = new Backbone.Collection([], { 1478 model: Model, 1479 comparator: comparator 1480 }); 1481 1482 assert.ok(collection.model === Model); 1483 assert.ok(collection.comparator === comparator); 1484 }); 1485 1486 QUnit.test('Pass falsey for `models` for empty Col with `options`', function(assert) { 1487 assert.expect(9); 1488 var opts = {a: 1, b: 2}; 1489 _.forEach([undefined, null, false], function(falsey) { 1490 var Collection = Backbone.Collection.extend({ 1491 initialize: function(models, options) { 1492 assert.strictEqual(models, falsey); 1493 assert.strictEqual(options, opts); 1494 } 1495 }); 1496 1497 var collection = new Collection(falsey, opts); 1498 assert.strictEqual(collection.length, 0); 1499 }); 1500 }); 1501 1502 QUnit.test('`add` overrides `set` flags', function(assert) { 1503 var collection = new Backbone.Collection(); 1504 collection.once('add', function(model, coll, options) { 1505 coll.add({id: 2}, options); 1506 }); 1507 collection.set({id: 1}); 1508 assert.equal(collection.length, 2); 1509 }); 1510 1511 QUnit.test('#2606 - Collection#create, success arguments', function(assert) { 1512 assert.expect(1); 1513 var collection = new Backbone.Collection; 1514 collection.url = 'test'; 1515 collection.create({}, { 1516 success: function(model, resp, options) { 1517 assert.strictEqual(resp, 'response'); 1518 } 1519 }); 1520 this.ajaxSettings.success('response'); 1521 }); 1522 1523 QUnit.test('#2612 - nested `parse` works with `Collection#set`', function(assert) { 1524 1525 var Job = Backbone.Model.extend({ 1526 constructor: function() { 1527 this.items = new Items(); 1528 Backbone.Model.apply(this, arguments); 1529 }, 1530 parse: function(attrs) { 1531 this.items.set(attrs.items, {parse: true}); 1532 return _.omit(attrs, 'items'); 1533 } 1534 }); 1535 1536 var Item = Backbone.Model.extend({ 1537 constructor: function() { 1538 this.subItems = new Backbone.Collection(); 1539 Backbone.Model.apply(this, arguments); 1540 }, 1541 parse: function(attrs) { 1542 this.subItems.set(attrs.subItems, {parse: true}); 1543 return _.omit(attrs, 'subItems'); 1544 } 1545 }); 1546 1547 var Items = Backbone.Collection.extend({ 1548 model: Item 1549 }); 1550 1551 var data = { 1552 name: 'JobName', 1553 id: 1, 1554 items: [{ 1555 id: 1, 1556 name: 'Sub1', 1557 subItems: [ 1558 {id: 1, subName: 'One'}, 1559 {id: 2, subName: 'Two'} 1560 ] 1561 }, { 1562 id: 2, 1563 name: 'Sub2', 1564 subItems: [ 1565 {id: 3, subName: 'Three'}, 1566 {id: 4, subName: 'Four'} 1567 ] 1568 }] 1569 }; 1570 1571 var newData = { 1572 name: 'NewJobName', 1573 id: 1, 1574 items: [{ 1575 id: 1, 1576 name: 'NewSub1', 1577 subItems: [ 1578 {id: 1, subName: 'NewOne'}, 1579 {id: 2, subName: 'NewTwo'} 1580 ] 1581 }, { 1582 id: 2, 1583 name: 'NewSub2', 1584 subItems: [ 1585 {id: 3, subName: 'NewThree'}, 1586 {id: 4, subName: 'NewFour'} 1587 ] 1588 }] 1589 }; 1590 1591 var job = new Job(data, {parse: true}); 1592 assert.equal(job.get('name'), 'JobName'); 1593 assert.equal(job.items.at(0).get('name'), 'Sub1'); 1594 assert.equal(job.items.length, 2); 1595 assert.equal(job.items.get(1).subItems.get(1).get('subName'), 'One'); 1596 assert.equal(job.items.get(2).subItems.get(3).get('subName'), 'Three'); 1597 job.set(job.parse(newData, {parse: true})); 1598 assert.equal(job.get('name'), 'NewJobName'); 1599 assert.equal(job.items.at(0).get('name'), 'NewSub1'); 1600 assert.equal(job.items.length, 2); 1601 assert.equal(job.items.get(1).subItems.get(1).get('subName'), 'NewOne'); 1602 assert.equal(job.items.get(2).subItems.get(3).get('subName'), 'NewThree'); 1603 }); 1604 1605 QUnit.test('_addReference binds all collection events & adds to the lookup hashes', function(assert) { 1606 assert.expect(8); 1607 1608 var calls = {add: 0, remove: 0}; 1609 1610 var Collection = Backbone.Collection.extend({ 1611 1612 _addReference: function(model) { 1613 Backbone.Collection.prototype._addReference.apply(this, arguments); 1614 calls.add++; 1615 assert.equal(model, this._byId[model.id]); 1616 assert.equal(model, this._byId[model.cid]); 1617 assert.equal(model._events.all.length, 1); 1618 }, 1619 1620 _removeReference: function(model) { 1621 Backbone.Collection.prototype._removeReference.apply(this, arguments); 1622 calls.remove++; 1623 assert.equal(this._byId[model.id], void 0); 1624 assert.equal(this._byId[model.cid], void 0); 1625 assert.equal(model.collection, void 0); 1626 } 1627 1628 }); 1629 1630 var collection = new Collection(); 1631 var model = collection.add({id: 1}); 1632 collection.remove(model); 1633 1634 assert.equal(calls.add, 1); 1635 assert.equal(calls.remove, 1); 1636 }); 1637 1638 QUnit.test('Do not allow duplicate models to be `add`ed or `set`', function(assert) { 1639 var collection = new Backbone.Collection(); 1640 1641 collection.add([{id: 1}, {id: 1}]); 1642 assert.equal(collection.length, 1); 1643 assert.equal(collection.models.length, 1); 1644 1645 collection.set([{id: 1}, {id: 1}]); 1646 assert.equal(collection.length, 1); 1647 assert.equal(collection.models.length, 1); 1648 }); 1649 1650 QUnit.test('#3020: #set with {add: false} should not throw.', function(assert) { 1651 assert.expect(2); 1652 var collection = new Backbone.Collection; 1653 collection.set([{id: 1}], {add: false}); 1654 assert.strictEqual(collection.length, 0); 1655 assert.strictEqual(collection.models.length, 0); 1656 }); 1657 1658 QUnit.test('create with wait, model instance, #3028', function(assert) { 1659 assert.expect(1); 1660 var collection = new Backbone.Collection(); 1661 var model = new Backbone.Model({id: 1}); 1662 model.sync = function(){ 1663 assert.equal(this.collection, collection); 1664 }; 1665 collection.create(model, {wait: true}); 1666 }); 1667 1668 QUnit.test('modelId', function(assert) { 1669 var Stooge = Backbone.Model.extend(); 1670 var StoogeCollection = Backbone.Collection.extend({model: Stooge}); 1671 1672 // Default to using `Collection::model::idAttribute`. 1673 assert.equal(StoogeCollection.prototype.modelId({id: 1}), 1); 1674 Stooge.prototype.idAttribute = '_id'; 1675 assert.equal(StoogeCollection.prototype.modelId({_id: 1}), 1); 1676 }); 1677 1678 QUnit.test('Polymorphic models work with "simple" constructors', function(assert) { 1679 var A = Backbone.Model.extend(); 1680 var B = Backbone.Model.extend(); 1681 var C = Backbone.Collection.extend({ 1682 model: function(attrs) { 1683 return attrs.type === 'a' ? new A(attrs) : new B(attrs); 1684 } 1685 }); 1686 var collection = new C([{id: 1, type: 'a'}, {id: 2, type: 'b'}]); 1687 assert.equal(collection.length, 2); 1688 assert.ok(collection.at(0) instanceof A); 1689 assert.equal(collection.at(0).id, 1); 1690 assert.ok(collection.at(1) instanceof B); 1691 assert.equal(collection.at(1).id, 2); 1692 }); 1693 1694 QUnit.test('Polymorphic models work with "advanced" constructors', function(assert) { 1695 var A = Backbone.Model.extend({idAttribute: '_id'}); 1696 var B = Backbone.Model.extend({idAttribute: '_id'}); 1697 var C = Backbone.Collection.extend({ 1698 model: Backbone.Model.extend({ 1699 constructor: function(attrs) { 1700 return attrs.type === 'a' ? new A(attrs) : new B(attrs); 1701 }, 1702 1703 idAttribute: '_id' 1704 }) 1705 }); 1706 var collection = new C([{_id: 1, type: 'a'}, {_id: 2, type: 'b'}]); 1707 assert.equal(collection.length, 2); 1708 assert.ok(collection.at(0) instanceof A); 1709 assert.equal(collection.at(0), collection.get(1)); 1710 assert.ok(collection.at(1) instanceof B); 1711 assert.equal(collection.at(1), collection.get(2)); 1712 1713 C = Backbone.Collection.extend({ 1714 model: function(attrs) { 1715 return attrs.type === 'a' ? new A(attrs) : new B(attrs); 1716 }, 1717 1718 modelId: function(attrs) { 1719 return attrs.type + '-' + attrs.id; 1720 } 1721 }); 1722 collection = new C([{id: 1, type: 'a'}, {id: 1, type: 'b'}]); 1723 assert.equal(collection.length, 2); 1724 assert.ok(collection.at(0) instanceof A); 1725 assert.equal(collection.at(0), collection.get('a-1')); 1726 assert.ok(collection.at(1) instanceof B); 1727 assert.equal(collection.at(1), collection.get('b-1')); 1728 }); 1729 1730 QUnit.test('Collection with polymorphic models receives default id from modelId', function(assert) { 1731 assert.expect(6); 1732 // When the polymorphic models use 'id' for the idAttribute, all is fine. 1733 var C1 = Backbone.Collection.extend({ 1734 model: function(attrs) { 1735 return new Backbone.Model(attrs); 1736 } 1737 }); 1738 var c1 = new C1({id: 1}); 1739 assert.equal(c1.get(1).id, 1); 1740 assert.equal(c1.modelId({id: 1}), 1); 1741 1742 // If the polymorphic models define their own idAttribute, 1743 // the modelId method should be overridden, for the reason below. 1744 var M = Backbone.Model.extend({ 1745 idAttribute: '_id' 1746 }); 1747 var C2 = Backbone.Collection.extend({ 1748 model: function(attrs) { 1749 return new M(attrs); 1750 } 1751 }); 1752 var c2 = new C2({_id: 1}); 1753 assert.equal(c2.get(1), void 0); 1754 assert.equal(c2.modelId(c2.at(0).attributes), void 0); 1755 var m = new M({_id: 2}); 1756 c2.add(m); 1757 assert.equal(c2.get(2), void 0); 1758 assert.equal(c2.modelId(m.attributes), void 0); 1759 }); 1760 1761 QUnit.test('#3039 #3951: adding at index fires with correct at', function(assert) { 1762 assert.expect(4); 1763 var collection = new Backbone.Collection([{val: 0}, {val: 4}]); 1764 collection.on('add', function(model, coll, options) { 1765 assert.equal(model.get('val'), options.index); 1766 }); 1767 collection.add([{val: 1}, {val: 2}, {val: 3}], {at: 1}); 1768 collection.add({val: 5}, {at: 10}); 1769 }); 1770 1771 QUnit.test('#3039: index is not sent when at is not specified', function(assert) { 1772 assert.expect(2); 1773 var collection = new Backbone.Collection([{at: 0}]); 1774 collection.on('add', function(model, coll, options) { 1775 assert.equal(undefined, options.index); 1776 }); 1777 collection.add([{at: 1}, {at: 2}]); 1778 }); 1779 1780 QUnit.test('#3199 - Order changing should trigger a sort', function(assert) { 1781 assert.expect(1); 1782 var one = new Backbone.Model({id: 1}); 1783 var two = new Backbone.Model({id: 2}); 1784 var three = new Backbone.Model({id: 3}); 1785 var collection = new Backbone.Collection([one, two, three]); 1786 collection.on('sort', function() { 1787 assert.ok(true); 1788 }); 1789 collection.set([{id: 3}, {id: 2}, {id: 1}]); 1790 }); 1791 1792 QUnit.test('#3199 - Adding a model should trigger a sort', function(assert) { 1793 assert.expect(1); 1794 var one = new Backbone.Model({id: 1}); 1795 var two = new Backbone.Model({id: 2}); 1796 var three = new Backbone.Model({id: 3}); 1797 var collection = new Backbone.Collection([one, two, three]); 1798 collection.on('sort', function() { 1799 assert.ok(true); 1800 }); 1801 collection.set([{id: 1}, {id: 2}, {id: 3}, {id: 0}]); 1802 }); 1803 1804 QUnit.test('#3199 - Order not changing should not trigger a sort', function(assert) { 1805 assert.expect(0); 1806 var one = new Backbone.Model({id: 1}); 1807 var two = new Backbone.Model({id: 2}); 1808 var three = new Backbone.Model({id: 3}); 1809 var collection = new Backbone.Collection([one, two, three]); 1810 collection.on('sort', function() { 1811 assert.ok(false); 1812 }); 1813 collection.set([{id: 1}, {id: 2}, {id: 3}]); 1814 }); 1815 1816 QUnit.test('add supports negative indexes', function(assert) { 1817 assert.expect(1); 1818 var collection = new Backbone.Collection([{id: 1}]); 1819 collection.add([{id: 2}, {id: 3}], {at: -1}); 1820 collection.add([{id: 2.5}], {at: -2}); 1821 collection.add([{id: 0.5}], {at: -6}); 1822 assert.equal(collection.pluck('id').join(','), '0.5,1,2,2.5,3'); 1823 }); 1824 1825 QUnit.test('#set accepts options.at as a string', function(assert) { 1826 assert.expect(1); 1827 var collection = new Backbone.Collection([{id: 1}, {id: 2}]); 1828 collection.add([{id: 3}], {at: '1'}); 1829 assert.deepEqual(collection.pluck('id'), [1, 3, 2]); 1830 }); 1831 1832 QUnit.test('adding multiple models triggers `update` event once', function(assert) { 1833 assert.expect(1); 1834 var collection = new Backbone.Collection; 1835 collection.on('update', function() { assert.ok(true); }); 1836 collection.add([{id: 1}, {id: 2}, {id: 3}]); 1837 }); 1838 1839 QUnit.test('removing models triggers `update` event once', function(assert) { 1840 assert.expect(1); 1841 var collection = new Backbone.Collection([{id: 1}, {id: 2}, {id: 3}]); 1842 collection.on('update', function() { assert.ok(true); }); 1843 collection.remove([{id: 1}, {id: 2}]); 1844 }); 1845 1846 QUnit.test('remove does not trigger `update` when nothing removed', function(assert) { 1847 assert.expect(0); 1848 var collection = new Backbone.Collection([{id: 1}, {id: 2}]); 1849 collection.on('update', function() { assert.ok(false); }); 1850 collection.remove([{id: 3}]); 1851 }); 1852 1853 QUnit.test('set triggers `set` event once', function(assert) { 1854 assert.expect(1); 1855 var collection = new Backbone.Collection([{id: 1}, {id: 2}]); 1856 collection.on('update', function() { assert.ok(true); }); 1857 collection.set([{id: 1}, {id: 3}]); 1858 }); 1859 1860 QUnit.test('set does not trigger `update` event when nothing added nor removed', function(assert) { 1861 var collection = new Backbone.Collection([{id: 1}, {id: 2}]); 1862 collection.on('update', function(coll, options) { 1863 assert.equal(options.changes.added.length, 0); 1864 assert.equal(options.changes.removed.length, 0); 1865 assert.equal(options.changes.merged.length, 2); 1866 }); 1867 collection.set([{id: 1}, {id: 2}]); 1868 }); 1869 1870 QUnit.test('#3610 - invoke collects arguments', function(assert) { 1871 assert.expect(3); 1872 var Model = Backbone.Model.extend({ 1873 method: function(x, y, z) { 1874 assert.equal(x, 1); 1875 assert.equal(y, 2); 1876 assert.equal(z, 3); 1877 } 1878 }); 1879 var Collection = Backbone.Collection.extend({ 1880 model: Model 1881 }); 1882 var collection = new Collection([{id: 1}]); 1883 collection.invoke('method', 1, 2, 3); 1884 }); 1885 1886 QUnit.test('#3662 - triggering change without model will not error', function(assert) { 1887 assert.expect(1); 1888 var collection = new Backbone.Collection([{id: 1}]); 1889 var model = collection.first(); 1890 collection.on('change', function(m) { 1891 assert.equal(m, undefined); 1892 }); 1893 model.trigger('change'); 1894 }); 1895 1896 QUnit.test('#3871 - falsy parse result creates empty collection', function(assert) { 1897 var collection = new (Backbone.Collection.extend({ 1898 parse: function(data, options) {} 1899 })); 1900 collection.set('', {parse: true}); 1901 assert.equal(collection.length, 0); 1902 }); 1903 1904 QUnit.test("#3711 - remove's `update` event returns one removed model", function(assert) { 1905 var model = new Backbone.Model({id: 1, title: 'First Post'}); 1906 var collection = new Backbone.Collection([model]); 1907 collection.on('update', function(context, options) { 1908 var changed = options.changes; 1909 assert.deepEqual(changed.added, []); 1910 assert.deepEqual(changed.merged, []); 1911 assert.strictEqual(changed.removed[0], model); 1912 }); 1913 collection.remove(model); 1914 }); 1915 1916 QUnit.test("#3711 - remove's `update` event returns multiple removed models", function(assert) { 1917 var model = new Backbone.Model({id: 1, title: 'First Post'}); 1918 var model2 = new Backbone.Model({id: 2, title: 'Second Post'}); 1919 var collection = new Backbone.Collection([model, model2]); 1920 collection.on('update', function(context, options) { 1921 var changed = options.changes; 1922 assert.deepEqual(changed.added, []); 1923 assert.deepEqual(changed.merged, []); 1924 assert.ok(changed.removed.length === 2); 1925 1926 assert.ok(_.indexOf(changed.removed, model) > -1 && _.indexOf(changed.removed, model2) > -1); 1927 }); 1928 collection.remove([model, model2]); 1929 }); 1930 1931 QUnit.test("#3711 - set's `update` event returns one added model", function(assert) { 1932 var model = new Backbone.Model({id: 1, title: 'First Post'}); 1933 var collection = new Backbone.Collection(); 1934 collection.on('update', function(context, options) { 1935 var addedModels = options.changes.added; 1936 assert.ok(addedModels.length === 1); 1937 assert.strictEqual(addedModels[0], model); 1938 }); 1939 collection.set(model); 1940 }); 1941 1942 QUnit.test("#3711 - set's `update` event returns multiple added models", function(assert) { 1943 var model = new Backbone.Model({id: 1, title: 'First Post'}); 1944 var model2 = new Backbone.Model({id: 2, title: 'Second Post'}); 1945 var collection = new Backbone.Collection(); 1946 collection.on('update', function(context, options) { 1947 var addedModels = options.changes.added; 1948 assert.ok(addedModels.length === 2); 1949 assert.strictEqual(addedModels[0], model); 1950 assert.strictEqual(addedModels[1], model2); 1951 }); 1952 collection.set([model, model2]); 1953 }); 1954 1955 QUnit.test("#3711 - set's `update` event returns one removed model", function(assert) { 1956 var model = new Backbone.Model({id: 1, title: 'First Post'}); 1957 var model2 = new Backbone.Model({id: 2, title: 'Second Post'}); 1958 var model3 = new Backbone.Model({id: 3, title: 'My Last Post'}); 1959 var collection = new Backbone.Collection([model]); 1960 collection.on('update', function(context, options) { 1961 var changed = options.changes; 1962 assert.equal(changed.added.length, 2); 1963 assert.equal(changed.merged.length, 0); 1964 assert.ok(changed.removed.length === 1); 1965 assert.strictEqual(changed.removed[0], model); 1966 }); 1967 collection.set([model2, model3]); 1968 }); 1969 1970 QUnit.test("#3711 - set's `update` event returns multiple removed models", function(assert) { 1971 var model = new Backbone.Model({id: 1, title: 'First Post'}); 1972 var model2 = new Backbone.Model({id: 2, title: 'Second Post'}); 1973 var model3 = new Backbone.Model({id: 3, title: 'My Last Post'}); 1974 var collection = new Backbone.Collection([model, model2]); 1975 collection.on('update', function(context, options) { 1976 var removedModels = options.changes.removed; 1977 assert.ok(removedModels.length === 2); 1978 assert.strictEqual(removedModels[0], model); 1979 assert.strictEqual(removedModels[1], model2); 1980 }); 1981 collection.set([model3]); 1982 }); 1983 1984 QUnit.test("#3711 - set's `update` event returns one merged model", function(assert) { 1985 var model = new Backbone.Model({id: 1, title: 'First Post'}); 1986 var model2 = new Backbone.Model({id: 2, title: 'Second Post'}); 1987 var model2Update = new Backbone.Model({id: 2, title: 'Second Post V2'}); 1988 var collection = new Backbone.Collection([model, model2]); 1989 collection.on('update', function(context, options) { 1990 var mergedModels = options.changes.merged; 1991 assert.ok(mergedModels.length === 1); 1992 assert.strictEqual(mergedModels[0].get('title'), model2Update.get('title')); 1993 }); 1994 collection.set([model2Update]); 1995 }); 1996 1997 QUnit.test("#3711 - set's `update` event returns multiple merged models", function(assert) { 1998 var model = new Backbone.Model({id: 1, title: 'First Post'}); 1999 var modelUpdate = new Backbone.Model({id: 1, title: 'First Post V2'}); 2000 var model2 = new Backbone.Model({id: 2, title: 'Second Post'}); 2001 var model2Update = new Backbone.Model({id: 2, title: 'Second Post V2'}); 2002 var collection = new Backbone.Collection([model, model2]); 2003 collection.on('update', function(context, options) { 2004 var mergedModels = options.changes.merged; 2005 assert.ok(mergedModels.length === 2); 2006 assert.strictEqual(mergedModels[0].get('title'), model2Update.get('title')); 2007 assert.strictEqual(mergedModels[1].get('title'), modelUpdate.get('title')); 2008 }); 2009 collection.set([model2Update, modelUpdate]); 2010 }); 2011 2012 QUnit.test("#3711 - set's `update` event should not be triggered adding a model which already exists exactly alike", function(assert) { 2013 var fired = false; 2014 var model = new Backbone.Model({id: 1, title: 'First Post'}); 2015 var collection = new Backbone.Collection([model]); 2016 collection.on('update', function(context, options) { 2017 fired = true; 2018 }); 2019 collection.set([model]); 2020 assert.equal(fired, false); 2021 }); 2022 2023})(QUnit); 2024