2017-06-14 13:57:58 -04:00
|
|
|
QUnit.module('rest-model');
|
2015-03-06 12:56:32 -05:00
|
|
|
|
|
|
|
import createStore from 'helpers/create-store';
|
2015-04-08 14:44:44 -04:00
|
|
|
import RestModel from 'discourse/models/rest';
|
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.test('munging', assert => {
|
2015-04-08 14:44:44 -04:00
|
|
|
const store = createStore();
|
|
|
|
const Grape = RestModel.extend();
|
|
|
|
Grape.reopenClass({
|
|
|
|
munge: function(json) {
|
|
|
|
json.inverse = 1 - json.percent;
|
|
|
|
return json;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var g = Grape.create({ store, percent: 0.4 });
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.equal(g.get('inverse'), 0.6, 'it runs `munge` on `create`');
|
2015-04-08 14:44:44 -04:00
|
|
|
});
|
2015-03-06 12:56:32 -05:00
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.test('update', assert => {
|
2015-03-06 12:56:32 -05:00
|
|
|
const store = createStore();
|
2015-05-11 11:30:14 -04:00
|
|
|
return store.find('widget', 123).then(function(widget) {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.equal(widget.get('name'), 'Trout Lure');
|
2015-04-14 14:21:02 -04:00
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(!widget.get('isSaving'));
|
2015-04-14 14:21:02 -04:00
|
|
|
const promise = widget.update({ name: 'new name' });
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(widget.get('isSaving'));
|
2015-04-14 14:21:02 -04:00
|
|
|
promise.then(function() {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(!widget.get('isSaving'));
|
|
|
|
assert.equal(widget.get('name'), 'new name');
|
2015-03-06 12:56:32 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.test('updating simultaneously', assert => {
|
|
|
|
assert.expect(2);
|
2015-04-14 14:21:02 -04:00
|
|
|
|
|
|
|
const store = createStore();
|
2015-05-05 13:44:19 -04:00
|
|
|
return store.find('widget', 123).then(function(widget) {
|
2015-04-14 14:21:02 -04:00
|
|
|
|
|
|
|
const firstPromise = widget.update({ name: 'new name' });
|
|
|
|
const secondPromise = widget.update({ name: 'new name' });
|
|
|
|
firstPromise.then(function() {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(true, 'the first promise succeeeds');
|
2015-04-14 14:21:02 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
secondPromise.catch(function() {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(true, 'the second promise fails');
|
2015-04-14 14:21:02 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.test('save new', assert => {
|
2015-04-09 14:54:17 -04:00
|
|
|
const store = createStore();
|
|
|
|
const widget = store.createRecord('widget');
|
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(widget.get('isNew'), 'it is a new record');
|
|
|
|
assert.ok(!widget.get('isCreated'), 'it is not created');
|
|
|
|
assert.ok(!widget.get('isSaving'));
|
2015-04-14 14:21:02 -04:00
|
|
|
|
|
|
|
const promise = widget.save({ name: 'Evil Widget' });
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(widget.get('isSaving'));
|
2015-04-09 14:54:17 -04:00
|
|
|
|
2015-05-11 11:30:14 -04:00
|
|
|
return promise.then(function() {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(!widget.get('isSaving'));
|
|
|
|
assert.ok(widget.get('id'), 'it has an id');
|
|
|
|
assert.ok(widget.get('name'), 'Evil Widget');
|
|
|
|
assert.ok(widget.get('isCreated'), 'it is created');
|
|
|
|
assert.ok(!widget.get('isNew'), 'it is no longer new');
|
2015-04-09 14:54:17 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.test('creating simultaneously', assert => {
|
|
|
|
assert.expect(2);
|
2015-04-14 14:21:02 -04:00
|
|
|
|
|
|
|
const store = createStore();
|
|
|
|
const widget = store.createRecord('widget');
|
|
|
|
|
|
|
|
const firstPromise = widget.save({ name: 'Evil Widget' });
|
|
|
|
const secondPromise = widget.save({ name: 'Evil Widget' });
|
|
|
|
firstPromise.then(function() {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(true, 'the first promise succeeeds');
|
2015-04-14 14:21:02 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
secondPromise.catch(function() {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(true, 'the second promise fails');
|
2015-04-14 14:21:02 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.test('destroyRecord', assert => {
|
2015-03-06 12:56:32 -05:00
|
|
|
const store = createStore();
|
2015-05-05 13:44:19 -04:00
|
|
|
return store.find('widget', 123).then(function(widget) {
|
2015-03-06 12:56:32 -05:00
|
|
|
widget.destroyRecord().then(function(result) {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(result);
|
2015-03-06 12:56:32 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|