@bigtest/mirage
Version:
A client-side server to develop, test and prototype your app.
35 lines (27 loc) • 1.22 kB
JavaScript
import Helper, { states } from './_helper';
import { module, test } from 'qunit';
module('Integration | ORM | Has Many | Reflexive | association #new', {
beforeEach() {
this.helper = new Helper();
}
});
/*
The model can make a new unsaved belongs-to association, for all states
*/
states.forEach((state) => {
test(`a ${state} can build a new associated child`, function(assert) {
let [ tag ] = this.helper[state]();
let initialCount = tag.tags.models.length;
let blueTag = tag.newTag({ name: 'Blue' });
assert.ok(!blueTag.id, 'the child was not persisted');
assert.equal(tag.tags.models.length, initialCount + 1);
assert.equal(blueTag.tags.models.length, 1, 'the inverse was set');
blueTag.save();
tag.reload();
assert.deepEqual(blueTag.attrs, { id: blueTag.id, name: 'Blue', tagIds: [ tag.id ] }, 'the child was persisted');
assert.equal(tag.tags.models.length, initialCount + 1, 'the collection size was increased');
assert.ok(tag.tags.includes(blueTag), 'the model was added to tag.tags');
assert.ok(tag.tagIds.indexOf(blueTag.id) > -1, 'the id was added to the fks array');
assert.ok(blueTag.tags.includes(tag), 'the inverse was set');
});
});