Move getLibraryAndKeyFromID() tests to dataObjectsTest.js
This commit is contained in:
parent
6933f64616
commit
bf1ee0d52b
2 changed files with 47 additions and 32 deletions
46
test/tests/dataObjectsTest.js
Normal file
46
test/tests/dataObjectsTest.js
Normal file
|
@ -0,0 +1,46 @@
|
|||
"use strict";
|
||||
|
||||
describe("Zotero.DataObjects", function () {
|
||||
var types = ['collection', 'item', 'search'];
|
||||
|
||||
describe("#getLibraryAndKeyFromID()", function () {
|
||||
it("should return a libraryID and key within a transaction", function* () {
|
||||
for (let type of types) {
|
||||
let objectsClass = Zotero.DataObjectUtilities.getObjectsClassForObjectType(type);
|
||||
yield Zotero.DB.executeTransaction(function* () {
|
||||
let obj = createUnsavedDataObject(type);
|
||||
yield obj.save();
|
||||
|
||||
var {libraryID, key} = objectsClass.getLibraryAndKeyFromID(obj.id);
|
||||
assert.equal(libraryID, Zotero.Libraries.userLibraryID);
|
||||
assert.ok(key);
|
||||
assert.typeOf(key, 'string');
|
||||
assert.equal(key, obj.key);
|
||||
|
||||
yield obj.erase();
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
it("should return false after a save failure", function* () {
|
||||
for (let type of types) {
|
||||
let objectsClass = Zotero.DataObjectUtilities.getObjectsClassForObjectType(type);
|
||||
var obj;
|
||||
try {
|
||||
yield Zotero.DB.executeTransaction(function* () {
|
||||
obj = createUnsavedDataObject(type);
|
||||
yield obj.save();
|
||||
throw 'Aborting transaction -- ignore';
|
||||
});
|
||||
}
|
||||
catch (e) {
|
||||
if (typeof e != 'string' || !e.startsWith('Aborting transaction')) throw e;
|
||||
}
|
||||
|
||||
// The registered identifiers should be reset in a rollback handler
|
||||
var libraryKey = objectsClass.getLibraryAndKeyFromID(obj.id);
|
||||
assert.isFalse(libraryKey);
|
||||
}
|
||||
});
|
||||
});
|
||||
})
|
|
@ -1,34 +1,3 @@
|
|||
describe("Zotero.Items", function() {
|
||||
describe("#getLibraryAndKeyFromID()", function () {
|
||||
it("should return a libraryID and key within a transaction", function* () {
|
||||
return Zotero.DB.executeTransaction(function* () {
|
||||
var item = new Zotero.Item('book');
|
||||
var itemID = yield item.save();
|
||||
|
||||
var {libraryID, key} = Zotero.Items.getLibraryAndKeyFromID(itemID);
|
||||
assert.equal(libraryID, Zotero.Libraries.userLibraryID);
|
||||
assert.ok(key);
|
||||
assert.typeOf(key, 'string');
|
||||
assert.equal(key, item.key);
|
||||
});
|
||||
});
|
||||
|
||||
it("should return false after a save failure", function* () {
|
||||
var itemID;
|
||||
try {
|
||||
yield Zotero.DB.executeTransaction(function* () {
|
||||
var item = new Zotero.Item('book');
|
||||
itemID = yield item.save();
|
||||
throw 'Aborting transaction -- ignore';
|
||||
});
|
||||
}
|
||||
catch (e) {
|
||||
if (typeof e != 'string' || !e.startsWith('Aborting transaction')) throw e;
|
||||
}
|
||||
|
||||
// The registered identifiers should be reset in a rollback handler
|
||||
var libraryKey = Zotero.Items.getLibraryAndKeyFromID(itemID);
|
||||
assert.isFalse(libraryKey);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue