-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: assign unknown properties in init after initialization is finish…
…ed to ensure proper setup timing (#7771) * Add failing test case which illustrates the createRecord bug createRecord crashes when a setter which sets an attribute is involved in the createRecord. * update test location and add fix Co-authored-by: Chris Thoburn <[email protected]>
- Loading branch information
Showing
3 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,25 @@ module('Store.createRecord() coverage', function (hooks) { | |
store = owner.lookup('service:store'); | ||
}); | ||
|
||
test("createRecord doesn't crash when setter is involved", async function (assert) { | ||
class User extends Model { | ||
@attr() email; | ||
|
||
get name() { | ||
return this.email ? this.email.substring(0, this.email.indexOf('@')) : ''; | ||
} | ||
|
||
set name(value) { | ||
this.email = `${value.toLowerCase()}@ember.js`; | ||
} | ||
} | ||
this.owner.register(`model:user`, User); | ||
const store = this.owner.lookup('service:store'); | ||
|
||
const user = store.createRecord('user', { name: 'Robert' }); | ||
assert.strictEqual(user.email, '[email protected]'); | ||
}); | ||
|
||
test('unloading a newly created a record with a sync belongsTo relationship', async function (assert) { | ||
let chris = store.push({ | ||
data: { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters