1
- import { module , test } from 'qunit' ;
1
+ import { module , skip , test } from 'qunit' ;
2
2
3
3
import { setupTest } from 'ember-qunit' ;
4
4
5
- import { createRecord , findRecord , query } from '@ember-data/json-api/request' ;
5
+ import { createRecord , deleteRecord , findRecord , query , updateRecord } from '@ember-data/json-api/request' ;
6
6
import { setBuildURLConfig } from '@ember-data/request-utils' ;
7
7
import Store from '@ember-data/store' ;
8
8
@@ -115,10 +115,12 @@ module('JSON:API | Request Builders', function (hooks) {
115
115
assert . deepEqual ( headersToObject ( result . headers ) , JSON_API_HEADERS ) ;
116
116
} ) ;
117
117
118
- test ( 'createRecord' , function ( assert ) {
118
+ test ( 'createRecord with identifier ' , function ( assert ) {
119
119
const store = this . owner . lookup ( 'service:store' ) as Store ;
120
120
const record = { type : 'user-setting' } ;
121
121
const userSettingIdentifier = store . identifierCache . getOrCreateRecordIdentifier ( record ) ;
122
+
123
+ console . log ( { userSettingIdentifier } ) ;
122
124
// TODO: This still fails: `is not a record instantiated by @ember-data/store`
123
125
const result = createRecord ( userSettingIdentifier ) ;
124
126
@@ -133,7 +135,79 @@ module('JSON:API | Request Builders', function (hooks) {
133
135
record,
134
136
} ,
135
137
} ,
136
- `createRecord works with record object passed`
138
+ `createRecord works with record identifier passed`
139
+ ) ;
140
+ assert . deepEqual ( headersToObject ( result . headers ) , JSON_API_HEADERS ) ;
141
+ } ) ;
142
+
143
+ // Do we need this?
144
+ skip ( 'createRecord with store record object' , function ( assert ) { } ) ;
145
+
146
+ skip ( 'updateRecord with identifier' , function ( assert ) {
147
+ const store = this . owner . lookup ( 'service:store' ) as Store ;
148
+ const record = { type : 'user-setting' } ;
149
+ const userSettingIdentifier = store . identifierCache . getOrCreateRecordIdentifier ( record ) ;
150
+
151
+ const result = updateRecord ( userSettingIdentifier ) ;
152
+
153
+ assert . deepEqual (
154
+ result ,
155
+ {
156
+ url : 'https://api.example.com/api/v1/user-settings' ,
157
+ method : 'PUT' ,
158
+ headers : new Headers ( JSON_API_HEADERS ) ,
159
+ op : 'updateRecord' ,
160
+ data : {
161
+ record,
162
+ } ,
163
+ } ,
164
+ `updateRecord works with record identifier passed`
165
+ ) ;
166
+ assert . deepEqual ( headersToObject ( result . headers ) , JSON_API_HEADERS ) ;
167
+ } ) ;
168
+
169
+ skip ( 'updateRecord with PATCH method' , function ( assert ) {
170
+ const store = this . owner . lookup ( 'service:store' ) as Store ;
171
+ const record = { type : 'user-setting' } ;
172
+ const userSettingIdentifier = store . identifierCache . getOrCreateRecordIdentifier ( record ) ;
173
+
174
+ const result = updateRecord ( userSettingIdentifier , { patch : true } ) ;
175
+
176
+ assert . deepEqual (
177
+ result ,
178
+ {
179
+ url : 'https://api.example.com/api/v1/user-settings' ,
180
+ method : 'PATCH' ,
181
+ headers : new Headers ( JSON_API_HEADERS ) ,
182
+ op : 'updateRecord' ,
183
+ data : {
184
+ record,
185
+ } ,
186
+ } ,
187
+ `updateRecord works with patch option`
188
+ ) ;
189
+ assert . deepEqual ( headersToObject ( result . headers ) , JSON_API_HEADERS ) ;
190
+ } ) ;
191
+
192
+ skip ( 'deleteRecord with identifier' , function ( assert ) {
193
+ const store = this . owner . lookup ( 'service:store' ) as Store ;
194
+ const record = { type : 'user-setting' } ;
195
+ const userSettingIdentifier = store . identifierCache . getOrCreateRecordIdentifier ( record ) ;
196
+
197
+ const result = deleteRecord ( userSettingIdentifier ) ;
198
+
199
+ assert . deepEqual (
200
+ result ,
201
+ {
202
+ url : 'https://api.example.com/api/v1/user-settings' ,
203
+ method : 'DELETE' ,
204
+ headers : new Headers ( JSON_API_HEADERS ) ,
205
+ op : 'deleteRecord' ,
206
+ data : {
207
+ record,
208
+ } ,
209
+ } ,
210
+ `deleteRecord works with patch option`
137
211
) ;
138
212
assert . deepEqual ( headersToObject ( result . headers ) , JSON_API_HEADERS ) ;
139
213
} ) ;
0 commit comments