|
| 1 | +var assert = require('assert'), |
| 2 | + _ = require('lodash'), |
| 3 | + utils = require('../../../../lib/utils'); |
| 4 | + |
| 5 | +describe('Association Interface', function() { |
| 6 | + |
| 7 | + describe('n:m through association :: .update', function() { |
| 8 | + |
| 9 | + ///////////////////////////////////////////////////// |
| 10 | + // TEST SETUP |
| 11 | + //////////////////////////////////////////////////// |
| 12 | + |
| 13 | + var stadiumRecord, teamRecord; |
| 14 | + |
| 15 | + before(function(done) { |
| 16 | + Associations.Stadium.create({ name: 'update stadium' }, function(err, stadium) { |
| 17 | + if(err) return done(err); |
| 18 | + stadiumRecord = stadium; |
| 19 | + Associations.Team.create({ name: 'populate team', mascot: 'elephant' }, function(err, team) { |
| 20 | + if(err) return done(err); |
| 21 | + teamRecord = team; |
| 22 | + stadiumRecord.teams.add(teamRecord.id); |
| 23 | + stadiumRecord.save(function(err){ |
| 24 | + assert(!err, err); |
| 25 | + done(); |
| 26 | + }); |
| 27 | + }); |
| 28 | + }); |
| 29 | + }); |
| 30 | + |
| 31 | + ///////////////////////////////////////////////////// |
| 32 | + // TEST METHODS |
| 33 | + //////////////////////////////////////////////////// |
| 34 | + describe('update operations should not impact associations', function() { |
| 35 | + |
| 36 | + it('update record without populate with association using collection.update()', function(done) { |
| 37 | + Associations.Stadium.findOne(stadiumRecord.id) |
| 38 | + .then(function(stadium){ |
| 39 | + assert.equal(stadium.teams.length, 0); |
| 40 | + assert.equal(stadium.name, 'update stadium'); |
| 41 | + |
| 42 | + //var updatedStadium = _.merge(stadium, { name: 'update stadium updated' }); |
| 43 | + return Associations.Stadium.update(stadiumRecord.id, { name: 'update stadium updated' }); |
| 44 | + }) |
| 45 | + .then(function(){ |
| 46 | + return Associations.Stadium.findOne(stadiumRecord.id) |
| 47 | + .populate('teams'); |
| 48 | + }) |
| 49 | + .then(function(updatedStadium){ |
| 50 | + assert.equal(updatedStadium.name, 'update stadium updated'); |
| 51 | + assert.equal(updatedStadium.teams.length, 1); |
| 52 | + done(); |
| 53 | + }) |
| 54 | + .catch(done); |
| 55 | + }); |
| 56 | + |
| 57 | + }); |
| 58 | + }); |
| 59 | +}); |
| 60 | + |
| 61 | + |
| 62 | + |
0 commit comments