Skip to content

Commit d69183a

Browse files
committed
Add tests, need some help here
1 parent 2511fd4 commit d69183a

File tree

1 file changed

+78
-4
lines changed

1 file changed

+78
-4
lines changed

tests/builders/tests/unit/json-api-builder-test.ts

+78-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { module, test } from 'qunit';
1+
import { module, skip, test } from 'qunit';
22

33
import { setupTest } from 'ember-qunit';
44

5-
import { createRecord, findRecord, query } from '@ember-data/json-api/request';
5+
import { createRecord, deleteRecord, findRecord, query, updateRecord } from '@ember-data/json-api/request';
66
import { setBuildURLConfig } from '@ember-data/request-utils';
77
import Store from '@ember-data/store';
88

@@ -115,10 +115,12 @@ module('JSON:API | Request Builders', function (hooks) {
115115
assert.deepEqual(headersToObject(result.headers), JSON_API_HEADERS);
116116
});
117117

118-
test('createRecord', function (assert) {
118+
test('createRecord with identifier', function (assert) {
119119
const store = this.owner.lookup('service:store') as Store;
120120
const record = { type: 'user-setting' };
121121
const userSettingIdentifier = store.identifierCache.getOrCreateRecordIdentifier(record);
122+
123+
console.log({ userSettingIdentifier });
122124
// TODO: This still fails: `is not a record instantiated by @ember-data/store`
123125
const result = createRecord(userSettingIdentifier);
124126

@@ -133,7 +135,79 @@ module('JSON:API | Request Builders', function (hooks) {
133135
record,
134136
},
135137
},
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`
137211
);
138212
assert.deepEqual(headersToObject(result.headers), JSON_API_HEADERS);
139213
});

0 commit comments

Comments
 (0)