Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix and tests for unloadRecord => findRecord issue #5011

Merged
merged 1 commit into from
Jun 16, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion addon/-private/system/model/internal-model.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ const {
isEmpty,
isEqual,
setOwner,
run,
RSVP,
RSVP: { Promise }
} = Ember;
Expand Down Expand Up @@ -136,6 +137,7 @@ export default class InternalModel {
// `objectAt(len - 1)` to test whether or not `firstObject` or `lastObject`
// have changed.
this._isDematerializing = false;
this._scheduledDestroy = null;

this.resetRecord();

Expand Down Expand Up @@ -490,11 +492,22 @@ export default class InternalModel {
unloadRecord() {
this.send('unloadRecord');
this.dematerializeRecord();
Ember.run.schedule('destroy', this, '_checkForOrphanedInternalModels');
if (this._scheduledDestroy === null) {
this._scheduledDestroy = run.schedule('destroy', this, '_checkForOrphanedInternalModels');
}
}

cancelDestroy() {
assert(`You cannot cancel the destruction of an InternalModel once it has already been destroyed`, !this.isDestroyed);

this._isDematerializing = false;
run.cancel(this._scheduledDestroy);
this._scheduledDestroy = null;
}

_checkForOrphanedInternalModels() {
this._isDematerializing = false;
this._scheduledDestroy = null;
if (this.isDestroyed) { return; }

this._cleanupOrphanedInternalModels();
Expand Down
4 changes: 4 additions & 0 deletions addon/-private/system/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -1127,6 +1127,10 @@ Store = Service.extend({

if (!internalModel) {
internalModel = this._buildInternalModel(modelName, trueId);
} else {
// if we already have an internalModel, we need to ensure any async teardown is cancelled
// since we want it again.
internalModel.cancelDestroy();
}

return internalModel;
Expand Down
157 changes: 157 additions & 0 deletions tests/integration/records/unload-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -419,3 +419,160 @@ test('unloading a disconnected subgraph clears the relevant internal models', fu

assert.equal(relPayloads.get('person', 1, 'cars'), null, 'person - cars relationship payload unloaded');
});


test("Unloading a record twice only schedules destroy once", function(assert) {
const store = env.store;
let record;

// populate initial record
run(function() {
record = store.push({
data: {
type: 'person',
id: '1',
attributes: {
name: 'Adam Sunderland'
}
}
});
});

const internalModel = record._internalModel;

run(function() {
store.unloadRecord(record);
store.unloadRecord(record);
internalModel.cancelDestroy();
});

assert.equal(internalModel.isDestroyed, false, 'We cancelled destroy');
});

test("Cancelling destroy leaves the record in the empty state", function(assert) {
const store = env.store;
let record;

// populate initial record
run(function() {
record = store.push({
data: {
type: 'person',
id: '1',
attributes: {
name: 'Adam Sunderland'
}
}
});
});

const internalModel = record._internalModel;
assert.equal(internalModel.currentState.stateName, 'root.loaded.saved', 'We are loaded initially');

run(function() {
store.unloadRecord(record);
assert.equal(record.isDestroying, true, 'the record is destroying');
assert.equal(internalModel.isDestroyed, false, 'the internal model is not destroyed');
assert.equal(internalModel._isDematerializing, true, 'the internal model is dematerializing');
internalModel.cancelDestroy();
assert.equal(internalModel.currentState.stateName, 'root.empty', 'We are unloaded after unloadRecord');
});

assert.equal(internalModel.isDestroyed, false, 'the internal model was not destroyed');
assert.equal(internalModel._isDematerializing, false, 'the internal model is no longer dematerializing');
assert.equal(internalModel.currentState.stateName, 'root.empty', 'We are still unloaded after unloadRecord');
});

test("after unloading a record, the record can be fetched again immediately", function(assert) {
const store = env.store;
let record;

// stub findRecord
env.adapter.findRecord = () => {
return Ember.RSVP.Promise.resolve({
data: {
type: 'person',
id: '1',
attributes: {
name: 'Adam Sunderland'
}
}
});
};

// populate initial record
run(function() {
record = store.push({
data: {
type: 'person',
id: '1',
attributes: {
name: 'Adam Sunderland'
}
}
});
});

const internalModel = record._internalModel;
assert.equal(internalModel.currentState.stateName, 'root.loaded.saved', 'We are loaded initially');

// we test that we can sync call unloadRecord followed by findRecord
run(function() {
store.unloadRecord(record);
assert.equal(record.isDestroying, true, 'the record is destroying');
assert.equal(internalModel.currentState.stateName, 'root.empty', 'We are unloaded after unloadRecord');
store.findRecord('person', '1');
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should likely cancel the above unloadRecords's _checkForOrphanedInternalModels and unset _isDematerializing, so it can be back in a pristine place, ready for a findRecord

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

});

assert.equal(internalModel.currentState.stateName, 'root.loaded.saved', 'We are loaded after findRecord');
});


test("after unloading a record, the record can be fetched again soon there after", function(assert) {
const store = env.store;
let record;

// stub findRecord
env.adapter.findRecord = () => {
return Ember.RSVP.Promise.resolve({
data: {
type: 'person',
id: '1',
attributes: {
name: 'Adam Sunderland'
}
}
});
};

// populate initial record
run(function() {
record = store.push({
data: {
type: 'person',
id: '1',
attributes: {
name: 'Adam Sunderland'
}
}
});
});

let internalModel = record._internalModel;
assert.equal(internalModel.currentState.stateName, 'root.loaded.saved', 'We are loaded initially');

run(function() {
store.unloadRecord(record);
assert.equal(record.isDestroying, true, 'the record is destroying');
assert.equal(internalModel.currentState.stateName, 'root.empty', 'We are unloaded after unloadRecord');
});

run(function() {
store.findRecord('person', '1');
});

record = store.peekRecord('person', '1');
internalModel = record._internalModel;

assert.equal(internalModel.currentState.stateName, 'root.loaded.saved', 'We are loaded after findRecord');
});