mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 20:41:24 +08:00
Add tests for our store
This commit is contained in:
40
test/javascripts/models/store-test.js.es6
Normal file
40
test/javascripts/models/store-test.js.es6
Normal file
@ -0,0 +1,40 @@
|
||||
module('store:main');
|
||||
|
||||
import createStore from 'helpers/create-store';
|
||||
|
||||
test('createRecord', function() {
|
||||
const store = createStore();
|
||||
const widget = store.createRecord('widget', {id: 111, name: 'hello'});
|
||||
equal(widget.get('name'), 'hello');
|
||||
equal(widget.get('id'), 111);
|
||||
});
|
||||
|
||||
test('find', function() {
|
||||
const store = createStore();
|
||||
store.find('widget', 123).then(function(w) {
|
||||
equal(w.get('name'), 'Trout Lure');
|
||||
equal(w.get('id'), 123);
|
||||
|
||||
// A second find by id returns the same object
|
||||
store.find('widget', 123).then(function(w2) {
|
||||
equal(w, w2);
|
||||
});
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
test('findAll', function() {
|
||||
const store = createStore();
|
||||
store.findAll('widget').then(function(result) {
|
||||
equal(result.length, 2);
|
||||
const w = result.findBy('id', 124);
|
||||
equal(w.get('name'), 'Evil Repellant');
|
||||
});
|
||||
});
|
||||
|
||||
test('destroyRecord', function() {
|
||||
const store = createStore();
|
||||
store.destroyRecord('widget', 124).then(function(result) {
|
||||
ok(result);
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user