-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathstore-test.js
583 lines (475 loc) · 14 KB
/
store-test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
import setupStore from 'dummy/tests/helpers/store';
import Ember from 'ember';
import {module, test} from 'qunit';
import DS from 'ember-data';
var store, env;
var Person = DS.Model.extend({
name: DS.attr('string'),
cars: DS.hasMany('car', { async: false })
});
var run = Ember.run;
var Car = DS.Model.extend({
make: DS.attr('string'),
model: DS.attr('string'),
person: DS.belongsTo('person', { async: false })
});
function initializeStore(adapter) {
env = setupStore({
adapter: adapter
});
store = env.store;
env.registry.register('model:car', Car);
env.registry.register('model:person', Person);
}
module("integration/store - destroy", {
beforeEach() {
initializeStore(DS.Adapter.extend());
}
});
function tap(obj, methodName, callback) {
var old = obj[methodName];
var summary = { called: [] };
obj[methodName] = function() {
var result = old.apply(obj, arguments);
if (callback) {
callback.apply(obj, arguments);
}
summary.called.push(arguments);
return result;
};
return summary;
}
test("destroying record during find doesn't cause error", function(assert) {
assert.expect(0);
let done = assert.async();
var TestAdapter = DS.Adapter.extend({
findRecord(store, type, id, snapshot) {
return new Ember.RSVP.Promise(function(resolve, reject) {
Ember.run.next(function() {
store.unloadAll(type.modelName);
reject();
});
});
}
});
initializeStore(TestAdapter);
var type = "car";
var id = 1;
run(function() {
store.findRecord(type, id).then(done, done);
});
});
test("find calls do not resolve when the store is destroyed", function(assert) {
assert.expect(0);
let done = assert.async();
var TestAdapter = DS.Adapter.extend({
findRecord(store, type, id, snapshot) {
store.destroy();
Ember.RSVP.resolve(null);
}
});
initializeStore(TestAdapter);
var type = "car";
var id = 1;
store.push = function() {
Ember.assert("The test should have destroyed the store by now", store.get("isDestroyed"));
throw new Error("We shouldn't be pushing data into the store when it is destroyed");
};
run(function() {
store.findRecord(type, id);
});
setTimeout(function() {
done();
}, 500);
});
test("destroying the store correctly cleans everything up", function(assert) {
var car, person;
env.adapter.shouldBackgroundReloadRecord = () => false;
run(function() {
store.push({
data: [{
type: 'car',
id: '1',
attributes: {
make: 'BMC',
model: 'Mini'
},
relationships: {
person: {
data: { type: 'person', id: '1' }
}
}
}, {
type: 'person',
id: '1',
attributes: {
name: 'Tom Dale'
},
relationships: {
cars: {
data: [
{ type: 'car', id: '1' }
]
}
}
}]
});
car = store.peekRecord('car', 1);
person = store.peekRecord('person', 1);
});
var personWillDestroy = tap(person, 'willDestroy');
var carWillDestroy = tap(car, 'willDestroy');
var carsWillDestroy = tap(car.get('person.cars'), 'willDestroy');
env.adapter.query = function() {
return [{
id: 2,
name: 'Yehuda'
}];
};
var adapterPopulatedPeople, filterdPeople;
run(function() {
adapterPopulatedPeople = store.query('person', {
someCrazy: 'query'
});
});
run(function() {
filterdPeople = store.filter('person', function() { return true; });
});
var filterdPeopleWillDestroy = tap(filterdPeople.get('content'), 'willDestroy');
var adapterPopulatedPeopleWillDestroy = tap(adapterPopulatedPeople.get('content'), 'willDestroy');
run(function() {
store.findRecord('person', 2);
});
assert.equal(personWillDestroy.called.length, 0, 'expected person.willDestroy to not have been called');
assert.equal(carWillDestroy.called.length, 0, 'expected car.willDestroy to not have been called');
assert.equal(carsWillDestroy.called.length, 0, 'expected cars.willDestroy to not have been called');
assert.equal(adapterPopulatedPeopleWillDestroy.called.length, 0, 'expected adapterPopulatedPeople.willDestroy to not have been called');
assert.equal(filterdPeopleWillDestroy.called.length, 0, 'expected filterdPeople.willDestroy to not have been called');
assert.equal(filterdPeople.get('length'), 2, 'expected filterdPeople to have 2 entries');
assert.equal(car.get('person'), person, "expected car's person to be the correct person");
assert.equal(person.get('cars.firstObject'), car, " expected persons cars's firstRecord to be the correct car");
Ember.run(person, person.destroy);
Ember.run(store, 'destroy');
assert.equal(car.get('person'), null, "expected car.person to no longer be present");
assert.equal(personWillDestroy.called.length, 1, 'expected person to have recieved willDestroy once');
assert.equal(carWillDestroy.called.length, 1, 'expected car to recieve willDestroy once');
assert.equal(carsWillDestroy.called.length, 1, 'expected cars to recieve willDestroy once');
assert.equal(adapterPopulatedPeopleWillDestroy.called.length, 1, 'expected adapterPopulatedPeople to recieve willDestroy once');
assert.equal(filterdPeopleWillDestroy.called.length, 1, 'expected filterdPeople.willDestroy to have been called once');
});
function ajaxResponse(value) {
var passedUrl, passedVerb, passedHash;
env.adapter.ajax = function(url, verb, hash) {
passedUrl = url;
passedVerb = verb;
passedHash = hash;
return run(Ember.RSVP, 'resolve', Ember.copy(value, true));
};
}
module("integration/store - findRecord");
test("store#findRecord fetches record from server when cached record is not present", function(assert) {
assert.expect(2);
initializeStore(DS.RESTAdapter.extend());
env.registry.register('serializer:application', DS.RESTSerializer);
ajaxResponse({
cars: [{
id: 20,
make: 'BMC',
model: 'Mini'
}]
});
let cachedRecordIsPresent = store.hasRecordForId('car', 20);
assert.ok(!cachedRecordIsPresent, 'Car with id=20 should not exist');
run(function() {
store.findRecord('car', 20).then(function(car) {
assert.equal(car.get('make'), 'BMC', 'Car with id=20 is now loaded');
});
});
});
test("store#findRecord returns cached record immediately and reloads record in the background", function(assert) {
assert.expect(2);
run(function() {
store.push({
data: {
type: 'car',
id: '1',
attributes: {
make: 'BMC',
model: 'Mini'
}
}
});
});
ajaxResponse({
cars: [{
id: 1,
make: 'BMC',
model: 'Princess'
}]
});
run(function() {
store.findRecord('car', 1).then(function(car) {
assert.equal(car.get('model'), 'Mini', 'cached car record is returned');
});
});
run(function() {
let car = store.peekRecord('car', 1);
assert.equal(car.get('model'), 'Princess', 'car record was reloaded');
});
});
test("store#findRecord { reload: true } ignores cached record and reloads record from server", function(assert) {
assert.expect(2);
const testAdapter = DS.RESTAdapter.extend({
shouldReloadRecord(store, type, id, snapshot) {
assert.ok(false, 'shouldReloadRecord should not be called when { reload: true }');
}
});
initializeStore(testAdapter);
run(function() {
store.push({
data: {
type: 'car',
id: '1',
attributes: {
make: 'BMC',
model: 'Mini'
}
}
});
});
ajaxResponse({
cars: [{
id: 1,
make: 'BMC',
model: 'Princess'
}]
});
let cachedCar = store.peekRecord('car', 1);
assert.equal(cachedCar.get('model'), 'Mini', 'cached car has expected model');
run(function() {
store.findRecord('car', 1, { reload: true }).then(function(car) {
assert.equal(car.get('model'), 'Princess', 'cached record ignored, record reloaded via server');
});
});
});
test('store#findRecord call with `id` of type different than non-empty string or number should trigger an assertion', assert => {
const badValues = ['', undefined, null, NaN, false];
assert.expect(badValues.length);
initializeStore(DS.RESTAdapter.extend());
run(function() {
badValues.map(item => {
assert.expectAssertion(function() {
store.findRecord('car', item);
}, '`id` has to be non-empty string or number');
});
});
});
module("integration/store - findAll", {
beforeEach() {
initializeStore(DS.RESTAdapter.extend());
}
});
test("Using store#findAll with no records triggers a query", function(assert) {
assert.expect(2);
ajaxResponse({
cars: [{
id: 1,
make: 'BMC',
model: 'Mini'
},
{
id: 2,
make: 'BMCW',
model: 'Isetta'
}]
});
var cars = store.peekAll('car');
assert.ok(!cars.get('length'), 'There is no cars in the store');
run(function() {
store.findAll('car').then(function(cars) {
assert.equal(cars.get('length'), 2, 'Two car were fetched');
});
});
});
test("Using store#findAll with existing records performs a query in the background, updating existing records and returning new ones", function(assert) {
assert.expect(4);
run(function() {
store.push({
data: {
type: 'car',
id: '1',
attributes: {
make: 'BMC',
model: 'Mini'
}
}
});
});
ajaxResponse({
cars: [{
id: 1,
make: 'BMC',
model: 'New Mini'
},
{
id: 2,
make: 'BMCW',
model: 'Isetta'
}]
});
var cars = store.peekAll('car');
assert.equal(cars.get('length'), 1, 'There is one car in the store');
run(function() {
store.findAll('car').then(function(cars) {
assert.equal(cars.get('length'), 1, 'Store resolves with the existing records');
});
});
run(function() {
var cars = store.peekAll('car');
assert.equal(cars.get('length'), 2, 'There is 2 cars in the store now');
var mini = cars.findBy('id', '1');
assert.equal(mini.get('model'), 'New Mini', 'Existing records have been updated');
});
});
test("store#findAll should eventually return all known records even if they are not in the adapter response", function(assert) {
assert.expect(5);
run(function() {
store.push({
data: [{
type: 'car',
id: '1',
attributes: {
make: 'BMC',
model: 'Mini'
}
}, {
type: 'car',
id: '2',
attributes: {
make: 'BMCW',
model: 'Isetta'
}
}]
});
});
ajaxResponse({
cars: [{
id: 1,
make: 'BMC',
model: 'New Mini'
}]
});
var cars = store.peekAll('car');
assert.equal(cars.get('length'), 2, 'There is two cars in the store');
run(function() {
store.findAll('car').then(function(cars) {
assert.equal(cars.get('length'), 2, 'It returns all cars');
var carsInStore = store.peekAll('car');
assert.equal(carsInStore.get('length'), 2, 'There is 2 cars in the store');
});
});
run(function() {
var cars = store.peekAll('car');
var mini = cars.findBy('id', '1');
assert.equal(mini.get('model'), 'New Mini', 'Existing records have been updated');
var carsInStore = store.peekAll('car');
assert.equal(carsInStore.get('length'), 2, 'There is 2 cars in the store');
});
});
test("Using store#fetch on an empty record calls find", function(assert) {
assert.expect(2);
ajaxResponse({
cars: [{
id: 20,
make: 'BMCW',
model: 'Mini'
}]
});
run(function() {
store.push({
data: {
type: 'person',
id: '1',
attributes: {
name: 'Tom Dale'
},
relationships: {
cars: {
data: [
{ type: 'car', id: '20' }
]
}
}
}
});
});
var car = store.recordForId('car', 20);
assert.ok(car.get('isEmpty'), 'Car with id=20 should be empty');
run(function() {
store.findRecord('car', 20, { reload: true }).then(function (car) {
assert.equal(car.get('make'), 'BMCW', 'Car with id=20 is now loaded');
});
});
});
test("Using store#adapterFor should not throw an error when looking up the application adapter", function(assert) {
assert.expect(1);
run(function() {
var applicationAdapter = store.adapterFor('application');
assert.ok(applicationAdapter);
});
});
test("Using store#serializerFor should not throw an error when looking up the application serializer", function(assert) {
assert.expect(1);
run(function() {
var applicationSerializer = store.serializerFor('application');
assert.ok(applicationSerializer);
});
});
module("integration/store - deleteRecord", {
beforeEach() {
initializeStore(DS.RESTAdapter.extend());
}
});
test("Using store#deleteRecord should mark the model for removal", function(assert) {
assert.expect(3);
var person;
run(function() {
store.push({
data: {
type: 'person',
id: '1',
attributes: {
name: 'Tom Dale'
}
}
});
person = store.peekRecord('person', 1);
});
assert.ok(store.hasRecordForId('person', 1), 'expected the record to be in the store');
var personDeleteRecord = tap(person, 'deleteRecord');
run(function() {
store.deleteRecord(person);
});
assert.equal(personDeleteRecord.called.length, 1, 'expected person.deleteRecord to have been called');
assert.ok(person.get('isDeleted'), 'expect person to be isDeleted');
});
test("Store should accept a null value for `data`", function(assert) {
assert.expect(0);
run(function() {
store.push({
data: null
});
});
});
test('store#findRecord that returns an array should assert', assert => {
initializeStore(DS.JSONAPIAdapter.extend({
findRecord: function() {
return { data: [] };
}
}));
assert.expectAssertion(function() {
run(function() {
store.findRecord('car', 1);
});
}, /expected the primary data returned from a `findRecord` response to be an object but instead it found an array/);
});