@@ -4,7 +4,7 @@ import { setupTest } from 'ember-qunit';
4
4
5
5
import { createRecord , deleteRecord , findRecord , query , updateRecord } from '@ember-data/json-api/request' ;
6
6
import { setBuildURLConfig } from '@ember-data/request-utils' ;
7
- import Store from '@ember-data/store' ;
7
+ import Store , { recordIdentifierFor } from '@ember-data/store' ;
8
8
9
9
import { headersToObject } from '../helpers/utils' ;
10
10
@@ -115,14 +115,13 @@ module('JSON:API | Request Builders', function (hooks) {
115
115
assert . deepEqual ( headersToObject ( result . headers ) , JSON_API_HEADERS ) ;
116
116
} ) ;
117
117
118
- test ( 'createRecord with identifier ' , function ( assert ) {
118
+ test ( 'createRecord with store.createRecord ' , function ( assert ) {
119
119
const store = this . owner . lookup ( 'service:store' ) as Store ;
120
- const record = { type : 'user-setting' } ;
121
- const userSettingIdentifier = store . identifierCache . getOrCreateRecordIdentifier ( record ) ;
122
-
123
- console . log ( { userSettingIdentifier } ) ;
124
- // TODO: This still fails: `is not a record instantiated by @ember-data/store`
125
- const result = createRecord ( userSettingIdentifier ) ;
120
+ const userSetting = store . createRecord ( 'user-setting' , {
121
+ name : 'test' ,
122
+ } ) ;
123
+ const identifier = recordIdentifierFor ( userSetting ) ;
124
+ const result = createRecord ( userSetting ) ;
126
125
127
126
assert . deepEqual (
128
127
result ,
@@ -132,83 +131,120 @@ module('JSON:API | Request Builders', function (hooks) {
132
131
headers : new Headers ( JSON_API_HEADERS ) ,
133
132
op : 'createRecord' ,
134
133
data : {
135
- record,
134
+ record : identifier ,
136
135
} ,
137
136
} ,
138
137
`createRecord works with record identifier passed`
139
138
) ;
140
- assert . deepEqual ( headersToObject ( result . headers ) , JSON_API_HEADERS ) ;
139
+ assert . deepEqual ( headersToObject ( result . headers ) , JSON_API_HEADERS , "headers are set to JSON API's" ) ;
141
140
} ) ;
142
141
143
- // Do we need this?
144
- skip ( 'createRecord with store record object' , function ( assert ) { } ) ;
145
-
146
- skip ( 'updateRecord with identifier' , function ( assert ) {
142
+ test ( 'updateRecord with identifier' , function ( assert ) {
147
143
const store = this . owner . lookup ( 'service:store' ) as Store ;
148
- const record = { type : 'user-setting' } ;
149
- const userSettingIdentifier = store . identifierCache . getOrCreateRecordIdentifier ( record ) ;
150
144
151
- const result = updateRecord ( userSettingIdentifier ) ;
145
+ const expectedData = {
146
+ data : {
147
+ id : '12' ,
148
+ type : 'user-setting' ,
149
+ attributes : {
150
+ name : 'test' ,
151
+ } ,
152
+ } ,
153
+ } ;
154
+ store . push ( expectedData ) ;
155
+
156
+ const userSetting = store . peekRecord ( 'user-setting' , '12' ) ;
157
+ const identifier = recordIdentifierFor ( userSetting ) ;
158
+
159
+ userSetting . name = 'test2' ;
160
+
161
+ const result = updateRecord ( userSetting ) ;
152
162
153
163
assert . deepEqual (
154
164
result ,
155
165
{
156
- url : 'https://api.example.com/api/v1/user-settings' ,
166
+ url : 'https://api.example.com/api/v1/user-settings/12 ' ,
157
167
method : 'PUT' ,
158
168
headers : new Headers ( JSON_API_HEADERS ) ,
159
169
op : 'updateRecord' ,
160
170
data : {
161
- record,
171
+ record : identifier ,
162
172
} ,
163
173
} ,
164
174
`updateRecord works with record identifier passed`
165
175
) ;
166
- assert . deepEqual ( headersToObject ( result . headers ) , JSON_API_HEADERS ) ;
176
+ assert . deepEqual ( headersToObject ( result . headers ) , JSON_API_HEADERS , "headers are set to JSON API's" ) ;
167
177
} ) ;
168
178
169
- skip ( 'updateRecord with PATCH method' , function ( assert ) {
179
+ test ( 'updateRecord with PATCH method' , function ( assert ) {
170
180
const store = this . owner . lookup ( 'service:store' ) as Store ;
171
- const record = { type : 'user-setting' } ;
172
- const userSettingIdentifier = store . identifierCache . getOrCreateRecordIdentifier ( record ) ;
173
181
174
- const result = updateRecord ( userSettingIdentifier , { patch : true } ) ;
182
+ const expectedData = {
183
+ data : {
184
+ id : '12' ,
185
+ type : 'user-setting' ,
186
+ attributes : {
187
+ name : 'test' ,
188
+ } ,
189
+ } ,
190
+ } ;
191
+ store . push ( expectedData ) ;
192
+
193
+ const userSetting = store . peekRecord ( 'user-setting' , '12' ) ;
194
+ const identifier = recordIdentifierFor ( userSetting ) ;
195
+
196
+ userSetting . name = 'test2' ;
197
+
198
+ const result = updateRecord ( userSetting , { patch : true } ) ;
175
199
176
200
assert . deepEqual (
177
201
result ,
178
202
{
179
- url : 'https://api.example.com/api/v1/user-settings' ,
203
+ url : 'https://api.example.com/api/v1/user-settings/12 ' ,
180
204
method : 'PATCH' ,
181
205
headers : new Headers ( JSON_API_HEADERS ) ,
182
206
op : 'updateRecord' ,
183
207
data : {
184
- record,
208
+ record : identifier ,
185
209
} ,
186
210
} ,
187
211
`updateRecord works with patch option`
188
212
) ;
189
- assert . deepEqual ( headersToObject ( result . headers ) , JSON_API_HEADERS ) ;
213
+ assert . deepEqual ( headersToObject ( result . headers ) , JSON_API_HEADERS , "headers are set to JSON API's" ) ;
190
214
} ) ;
191
215
192
- skip ( 'deleteRecord with identifier' , function ( assert ) {
216
+ test ( 'deleteRecord with identifier' , function ( assert ) {
193
217
const store = this . owner . lookup ( 'service:store' ) as Store ;
194
- const record = { type : 'user-setting' } ;
195
- const userSettingIdentifier = store . identifierCache . getOrCreateRecordIdentifier ( record ) ;
196
218
197
- const result = deleteRecord ( userSettingIdentifier ) ;
219
+ const expectedData = {
220
+ data : {
221
+ id : '12' ,
222
+ type : 'user-setting' ,
223
+ attributes : {
224
+ name : 'test' ,
225
+ } ,
226
+ } ,
227
+ } ;
228
+ store . push ( expectedData ) ;
229
+
230
+ const userSetting = store . peekRecord ( 'user-setting' , '12' ) ;
231
+ const identifier = recordIdentifierFor ( userSetting ) ;
232
+
233
+ const result = deleteRecord ( userSetting ) ;
198
234
199
235
assert . deepEqual (
200
236
result ,
201
237
{
202
- url : 'https://api.example.com/api/v1/user-settings' ,
238
+ url : 'https://api.example.com/api/v1/user-settings/12 ' ,
203
239
method : 'DELETE' ,
204
240
headers : new Headers ( JSON_API_HEADERS ) ,
205
241
op : 'deleteRecord' ,
206
242
data : {
207
- record,
243
+ record : identifier ,
208
244
} ,
209
245
} ,
210
246
`deleteRecord works with patch option`
211
247
) ;
212
- assert . deepEqual ( headersToObject ( result . headers ) , JSON_API_HEADERS ) ;
248
+ assert . deepEqual ( headersToObject ( result . headers ) , JSON_API_HEADERS , "headers are set to JSON API's" ) ;
213
249
} ) ;
214
250
} ) ;
0 commit comments