blossom
Version:
Modern, Cross-Platform Application Framework
111 lines (93 loc) • 3.45 kB
JavaScript
// ==========================================================================
// Project: SproutCore - JavaScript Application Framework
// Copyright: ©2006-2011 Apple Inc. and contributors.
// License: Licensed under MIT license (see license.js)
// ==========================================================================
/*globals module ok equals same test MyApp */
var store, storeKey1,storeKey2,storeKey3,storeKey4,storeKey5, storeKey6, json;
var json1, json2, json3, json4, json5, json6;
suite("SC.Store#destroyRecord", {
setup: function() {
SC.RunLoop.begin();
store = SC.Store.create();
json1 = {
guid: "destroyGUID1",
string: "string",
number: 23,
bool: true
};
json2 = {
guid: "destroyGUID2",
string: "string",
number: 23,
bool: true
};
json3 = {
guid: "destroyGUID3",
string: "string",
number: 23,
bool: true
};
json4 = {
guid: "destroyGUID4",
string: "string",
number: 23,
bool: true
};
json5 = {
guid: "destroyGUID5",
string: "string",
number: 23,
bool: true
};
json6 = {
guid: "destroyGUID6",
string: "string",
number: 23,
bool: true
};
storeKey1 = SC.Store.generateStoreKey();
store.writeDataHash(storeKey1, json1, SC.Record.BUSY_DESTROYING);
storeKey2 = SC.Store.generateStoreKey();
store.writeDataHash(storeKey2, json2, SC.Record.DESTROYED);
storeKey3 = SC.Store.generateStoreKey();
store.writeDataHash(storeKey3, json3, SC.Record.EMPTY);
storeKey4 = SC.Store.generateStoreKey();
store.writeDataHash(storeKey4, json4, SC.Record.BUSY);
storeKey5 = SC.Store.generateStoreKey();
store.writeDataHash(storeKey5, json5, SC.Record.READY_NEW);
storeKey6 = SC.Store.generateStoreKey();
store.writeDataHash(storeKey6, json6, SC.Record.READY_CLEAN);
SC.RunLoop.end();
}
});
test("Check for different states after/before executing destroyRecord", function() {
var throwError=false, msg, status;
store.destroyRecord(undefined, undefined, storeKey1);
status = store.readStatus( storeKey1);
equals(status, SC.Record.BUSY_DESTROYING, "the status shouldn't have changed. It should be BUSY_DESTROYING ");
store.destroyRecord(undefined, undefined, storeKey2);
status = store.readStatus( storeKey2);
equals(status, SC.Record.DESTROYED, "the status shouldn't have changed. It should be DESTROYED ");
try{
store.destroyRecord(undefined, undefined, storeKey3);
msg='';
}catch(error1){
msg=error1.message;
}
equals(msg, SC.Record.NOT_FOUND_ERROR.message, "destroyRecord should throw the following error");
try{
store.destroyRecord(undefined, undefined, storeKey4);
msg='';
}catch(error2){
msg=error2.message;
}
equals(msg, SC.Record.BUSY_ERROR.message, "destroyRecord should throw the following error");
store.destroyRecord(undefined, undefined, storeKey5);
status = store.readStatus( storeKey5);
equals(status, SC.Record.DESTROYED_CLEAN, "the status should have changed to DESTROYED_CLEAN ");
store.destroyRecord(undefined, undefined, storeKey6);
status = store.readStatus( storeKey6);
equals(status, SC.Record.DESTROYED_DIRTY, "the status should have changed to DESTROYED_DIRTY ");
equals(store.changelog.length, 1, "The changelog has the following number of entries:");
});