You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
207 lines
6.7 KiB
207 lines
6.7 KiB
QUnit.done = function(results){
|
|
if (results.failed)
|
|
console.log("failed")
|
|
else
|
|
console.log("success")
|
|
};
|
|
|
|
$(document).ready(function() {
|
|
var Library = Backbone.Collection.extend({
|
|
localStorage: new Backbone.LocalStorage("libraryStore")
|
|
|
|
// is the problem with my library that is has no model reference?
|
|
});
|
|
|
|
var attrs = {
|
|
title : 'The Tempest',
|
|
author : 'Bill Shakespeare',
|
|
length : 123
|
|
};
|
|
|
|
var library = null;
|
|
|
|
module("localStorage on collections", {
|
|
setup: function() {
|
|
window.localStorage.clear();
|
|
library = new Library();
|
|
}
|
|
});
|
|
|
|
test("should be empty initially", function() {
|
|
equals(library.length, 0, 'empty initially');
|
|
library.fetch();
|
|
equals(library.length, 0, 'empty read');
|
|
});
|
|
|
|
test("should create item", function() {
|
|
library.create(attrs);
|
|
equals(library.length, 1, 'one item added');
|
|
equals(library.first().get('title'), 'The Tempest', 'title was read');
|
|
equals(library.first().get('author'), 'Bill Shakespeare', 'author was read');
|
|
equals(library.first().get('length'), 123, 'length was read');
|
|
});
|
|
|
|
test("should discard unsaved changes on fetch", function() {
|
|
library.create(attrs);
|
|
library.first().set({ 'title': "Wombat's Fun Adventure" });
|
|
equals(library.first().get('title'), "Wombat's Fun Adventure", 'title changed, but not saved');
|
|
library.fetch();
|
|
equals(library.first().get('title'), 'The Tempest', 'title was read');
|
|
});
|
|
|
|
test("should persist changes", function(){
|
|
library.create(attrs);
|
|
equals(library.first().get('author'), 'Bill Shakespeare', 'author was read');
|
|
library.first().save({ author: 'William Shakespeare' });
|
|
library.fetch();
|
|
equals(library.first().get('author'), 'William Shakespeare', 'verify author update');
|
|
});
|
|
|
|
test("should pass attributes to parse after creating", function() {
|
|
var book = new Backbone.Model(attrs);
|
|
book.collection = library;
|
|
|
|
book.parse = function(savedAttrs) {
|
|
equal(savedAttrs.title, attrs.title, 'attributes passed to parse')
|
|
equal(savedAttrs.author, attrs.author, 'attributes passed to parse')
|
|
equal(savedAttrs.length, attrs.length, 'attributes passed to parse')
|
|
};
|
|
|
|
book.save();
|
|
});
|
|
|
|
test("should pass attributes to parse after updating", function() {
|
|
var book = library.create(attrs);
|
|
|
|
book.parse = function(savedAttrs) {
|
|
equal(savedAttrs.title, attrs.title, 'attributes passed to parse')
|
|
equal(savedAttrs.author, attrs.author, 'attributes passed to parse')
|
|
equal(savedAttrs.length, attrs.length, 'attributes passed to parse')
|
|
};
|
|
|
|
book.save();
|
|
});
|
|
|
|
test("should store model id inside collection", function() {
|
|
var book = library.create(attrs);
|
|
equals(library.get(book.id), book, 'book has been read by id from collection');
|
|
});
|
|
|
|
test("should allow to change id", function() {
|
|
library.create(attrs);
|
|
library.first().save({id: '1-the-tempest', author: 'William Shakespeare'});
|
|
equals(library.first().get('id'), '1-the-tempest', 'verify ID update');
|
|
equals(library.first().get('title'), 'The Tempest', 'verify title is still there');
|
|
equals(library.first().get('author'), 'William Shakespeare', 'verify author update');
|
|
equals(library.first().get('length'), 123, 'verify length is still there');
|
|
|
|
library.fetch();
|
|
equals(library.length, 2, 'should not auto remove first object when changing ID');
|
|
});
|
|
|
|
test("should remove from collection", function() {
|
|
_(23).times(function(index) {
|
|
library.create({id: index});
|
|
});
|
|
_(library.toArray()).chain().clone().each(function(book) {
|
|
book.destroy();
|
|
});
|
|
equals(library.length, 0, 'item was destroyed and library is empty');
|
|
library.fetch()
|
|
equals(library.length, 0, 'item was destroyed and library is empty even after fetch');
|
|
});
|
|
|
|
test("should not try to load items from localstorage if they are not there anymore", function() {
|
|
library.create(attrs);
|
|
localStorage.clear();
|
|
library.fetch();
|
|
equals(0, library.length);
|
|
});
|
|
|
|
test("should load from session store without server request", function() {
|
|
library.create(attrs);
|
|
|
|
secondLibrary = new Library();
|
|
secondLibrary.fetch();
|
|
equals(1, secondLibrary.length);
|
|
});
|
|
|
|
test("should cope with arbitrary idAttributes", function() {
|
|
var Model = Backbone.Model.extend({
|
|
idAttribute: '_id'
|
|
});
|
|
var Collection = Backbone.Collection.extend({
|
|
model: Model,
|
|
localStorage: new Store('strangeID')
|
|
});
|
|
|
|
var collection = new Collection();
|
|
collection.create({});
|
|
equals(collection.first().id, collection.first().get('_id'));
|
|
});
|
|
|
|
|
|
module("localStorage on models", {
|
|
setup: function() {
|
|
window.localStorage.clear();
|
|
book = new Book();
|
|
}
|
|
});
|
|
|
|
var Book = Backbone.Model.extend({
|
|
defaults: {
|
|
title : 'The Tempest',
|
|
author : 'Bill Shakespeare',
|
|
length : 123
|
|
},
|
|
localStorage : new Backbone.LocalStorage('TheTempest')
|
|
});
|
|
|
|
var book = null;
|
|
|
|
test("should overwrite unsaved changes when fetching", function() {
|
|
book.save()
|
|
book.set({ 'title': "Wombat's Fun Adventure" });
|
|
book.fetch();
|
|
equals(book.get('title'), 'The Tempest', 'model created');
|
|
});
|
|
|
|
test("should persist changes", function(){
|
|
book.save({ author: 'William Shakespeare'});
|
|
book.fetch();
|
|
equals(book.get('author'), 'William Shakespeare', 'author successfully updated');
|
|
equals(book.get('length'), 123, 'verify length is still there');
|
|
});
|
|
|
|
test("should remove book when destroying", function() {
|
|
book.save({author: 'fnord'})
|
|
equals(Book.prototype.localStorage.findAll().length, 1, 'book removed');
|
|
book.destroy()
|
|
equals(Book.prototype.localStorage.findAll().length, 0, 'book removed');
|
|
});
|
|
|
|
test("Book should use local sync", function()
|
|
{
|
|
var method = Backbone.getSyncMethod(book);
|
|
equals(method, Backbone.localSync);
|
|
});
|
|
|
|
var MyRemoteModel = Backbone.Model.extend();
|
|
|
|
var remoteModel = new MyRemoteModel();
|
|
|
|
test("remoteModel should use ajax sync", function()
|
|
{
|
|
var method = Backbone.getSyncMethod(remoteModel);
|
|
equals(method, Backbone.ajaxSync);
|
|
});
|
|
|
|
test("Backbone.sync should return a value when ajax is used.", function ()
|
|
{
|
|
var returnValue = remoteModel.fetch({url: '/'});
|
|
notEqual(returnValue, undefined);
|
|
});
|
|
|
|
|
|
|
|
}); |