2015-03-24 04:52:36 +00:00
|
|
|
// Useful "constants"
|
|
|
|
var sqlDateTimeRe = /^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}$/;
|
|
|
|
var isoDateTimeRe = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}Z$/;
|
2015-06-01 03:59:15 +00:00
|
|
|
var zoteroObjectKeyRe = /^[23456789ABCDEFGHIJKLMNPQRSTUVWXYZ]{8}$/; // based on Zotero.Utilities::generateObjectKey()
|
2015-03-24 04:52:36 +00:00
|
|
|
|
2015-03-08 22:39:42 +00:00
|
|
|
/**
|
|
|
|
* Waits for a DOM event on the specified node. Returns a promise
|
|
|
|
* resolved with the event.
|
|
|
|
*/
|
|
|
|
function waitForDOMEvent(target, event, capture) {
|
2015-04-13 07:27:51 +00:00
|
|
|
var deferred = Zotero.Promise.defer();
|
2015-03-08 22:39:42 +00:00
|
|
|
var func = function(ev) {
|
|
|
|
target.removeEventListener("event", func, capture);
|
|
|
|
deferred.resolve(ev);
|
|
|
|
}
|
|
|
|
target.addEventListener(event, func, capture);
|
|
|
|
return deferred.promise;
|
|
|
|
}
|
|
|
|
|
2015-03-08 19:59:53 +00:00
|
|
|
/**
|
2015-05-05 06:44:17 +00:00
|
|
|
* Open a chrome window and return a promise for the window
|
|
|
|
*
|
|
|
|
* @return {Promise<ChromeWindow>}
|
2015-03-08 19:59:53 +00:00
|
|
|
*/
|
|
|
|
function loadWindow(winurl, argument) {
|
|
|
|
var win = window.openDialog(winurl, "_blank", "chrome", argument);
|
2015-03-08 22:39:42 +00:00
|
|
|
return waitForDOMEvent(win, "load").then(function() {
|
|
|
|
return win;
|
|
|
|
});
|
2015-03-08 19:59:53 +00:00
|
|
|
}
|
|
|
|
|
2015-04-26 20:48:34 +00:00
|
|
|
/**
|
|
|
|
* Open a browser window and return a promise for the window
|
|
|
|
*
|
|
|
|
* @return {Promise<ChromeWindow>}
|
|
|
|
*/
|
|
|
|
function loadBrowserWindow() {
|
2015-05-07 05:40:41 +00:00
|
|
|
var win = window.openDialog("chrome://browser/content/browser.xul", "", "all,height=400,width=1000");
|
2015-05-05 06:44:17 +00:00
|
|
|
return waitForDOMEvent(win, "load").then(function() {
|
|
|
|
return win;
|
|
|
|
});
|
2015-04-26 20:48:34 +00:00
|
|
|
}
|
|
|
|
|
2015-03-08 19:59:53 +00:00
|
|
|
/**
|
2015-05-04 06:00:52 +00:00
|
|
|
* Loads a Zotero pane in a new window and selects My Library. Returns the containing window.
|
2015-03-08 19:59:53 +00:00
|
|
|
*/
|
2015-11-15 22:46:48 +00:00
|
|
|
var loadZoteroPane = Zotero.Promise.coroutine(function* (win) {
|
|
|
|
if (!win) {
|
|
|
|
var win = yield loadBrowserWindow();
|
|
|
|
}
|
2015-05-25 05:43:07 +00:00
|
|
|
Zotero.Prefs.clear('lastViewedFolder');
|
2015-05-04 06:00:52 +00:00
|
|
|
win.ZoteroOverlay.toggleDisplay(true);
|
|
|
|
|
|
|
|
// Hack to wait for pane load to finish. This is the same hack
|
|
|
|
// we use in ZoteroPane.js, so either it's not good enough
|
|
|
|
// there or it should be good enough here.
|
|
|
|
yield Zotero.Promise.delay(52);
|
|
|
|
|
2015-05-08 20:01:25 +00:00
|
|
|
yield waitForItemsLoad(win, 0);
|
2015-05-04 06:00:52 +00:00
|
|
|
|
|
|
|
return win;
|
|
|
|
});
|
2015-03-08 19:59:53 +00:00
|
|
|
|
|
|
|
/**
|
2015-06-01 03:07:24 +00:00
|
|
|
* Waits for a window with a specific URL to open. Returns a promise for the window, and
|
|
|
|
* optionally passes the window to a callback immediately for use with modal dialogs,
|
|
|
|
* which prevent async code from continuing
|
2015-03-08 19:59:53 +00:00
|
|
|
*/
|
2015-06-01 03:07:24 +00:00
|
|
|
function waitForWindow(uri, callback) {
|
2015-04-13 07:27:51 +00:00
|
|
|
var deferred = Zotero.Promise.defer();
|
2015-03-08 19:59:53 +00:00
|
|
|
Components.utils.import("resource://gre/modules/Services.jsm");
|
|
|
|
var loadobserver = function(ev) {
|
|
|
|
ev.originalTarget.removeEventListener("load", loadobserver, false);
|
2015-06-01 03:07:24 +00:00
|
|
|
if(ev.target.location.href == uri) {
|
2015-03-08 19:59:53 +00:00
|
|
|
Services.ww.unregisterNotification(winobserver);
|
2015-06-01 03:07:24 +00:00
|
|
|
var win = ev.target.docShell
|
|
|
|
.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
|
|
|
|
.getInterface(Components.interfaces.nsIDOMWindow);
|
2015-06-23 08:21:54 +00:00
|
|
|
// Give window code time to run on load
|
|
|
|
setTimeout(function () {
|
|
|
|
if (callback) {
|
|
|
|
try {
|
|
|
|
// If callback is a promise, wait for it
|
|
|
|
let maybePromise = callback(win);
|
|
|
|
if (maybePromise && maybePromise.then) {
|
|
|
|
maybePromise.then(() => deferred.resolve(win)).catch(e => deferred.reject(e));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (e) {
|
2015-08-06 08:04:37 +00:00
|
|
|
Zotero.logError(e);
|
|
|
|
win.close();
|
2015-06-23 08:21:54 +00:00
|
|
|
deferred.reject(e);
|
2015-06-04 22:52:47 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2015-06-23 08:21:54 +00:00
|
|
|
deferred.resolve(win);
|
|
|
|
});
|
2015-03-08 19:59:53 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
var winobserver = {"observe":function(subject, topic, data) {
|
|
|
|
if(topic != "domwindowopened") return;
|
|
|
|
var win = subject.QueryInterface(Components.interfaces.nsIDOMWindow);
|
|
|
|
win.addEventListener("load", loadobserver, false);
|
|
|
|
}};
|
2015-03-08 22:39:42 +00:00
|
|
|
Services.ww.registerNotification(winobserver);
|
2015-03-08 19:59:53 +00:00
|
|
|
return deferred.promise;
|
|
|
|
}
|
|
|
|
|
2015-06-04 22:52:47 +00:00
|
|
|
/**
|
|
|
|
* Wait for an alert or confirmation dialog to pop up and then close it
|
|
|
|
*
|
|
|
|
* @param {Function} [onOpen] - Function that is passed the dialog once it is opened.
|
|
|
|
* Can be used to make assertions on the dialog contents
|
|
|
|
* (e.g., with dialog.document.documentElement.textContent)
|
|
|
|
* @param {String} [button='accept'] - Button in dialog to press (e.g., 'cancel', 'extra1')
|
|
|
|
* @return {Promise}
|
|
|
|
*/
|
2015-06-23 08:21:54 +00:00
|
|
|
function waitForDialog(onOpen, button='accept', url) {
|
2015-08-06 08:04:37 +00:00
|
|
|
return waitForWindow(url || "chrome://global/content/commonDialog.xul", Zotero.Promise.method(function (dialog) {
|
2015-06-04 22:52:47 +00:00
|
|
|
var failure = false;
|
|
|
|
if (onOpen) {
|
|
|
|
try {
|
|
|
|
onOpen(dialog);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
failure = e;
|
|
|
|
}
|
|
|
|
}
|
2015-12-10 06:09:40 +00:00
|
|
|
if (button === false) {
|
|
|
|
if (failure) {
|
|
|
|
throw failure;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (button != 'cancel') {
|
2015-06-04 22:52:47 +00:00
|
|
|
let deferred = Zotero.Promise.defer();
|
|
|
|
function acceptWhenEnabled() {
|
2015-06-10 04:32:42 +00:00
|
|
|
// Handle delayed buttons
|
|
|
|
if (dialog.document.documentElement.getButton(button).disabled) {
|
2015-06-04 22:52:47 +00:00
|
|
|
setTimeout(function () {
|
|
|
|
acceptWhenEnabled();
|
|
|
|
}, 250);
|
|
|
|
}
|
|
|
|
else {
|
2015-06-10 04:32:42 +00:00
|
|
|
dialog.document.documentElement.getButton(button).click();
|
2015-06-04 22:52:47 +00:00
|
|
|
if (failure) {
|
|
|
|
deferred.reject(failure);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
deferred.resolve();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
acceptWhenEnabled();
|
|
|
|
return deferred.promise;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
dialog.document.documentElement.getButton(button).click();
|
|
|
|
if (failure) {
|
|
|
|
throw failure;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
Relations overhaul (requires new DB upgrade from 4.0)
Relations are now properties of collections and items rather than
first-class objects, stored in separate collectionRelations and
itemRelations tables with ids for subjects, with foreign keys to the
associated data objects.
Related items now use dc:relation relations rather than a separate table
(among other reasons, because API syncing won't necessarily sync both
items at the same time, so they can't be stored by id).
The UI assigns related-item relations bidirectionally, and checks for
related-item and linked-object relations are done unidirectionally by
default.
dc:isReplacedBy is now dc:replaces, so that the subject is an existing
object, and the predicate is now named
Zotero.Attachments.replacedItemPredicate.
Some additional work is still needed, notably around following
replaced-item relations, and migration needs to be tested more fully,
but this seems to mostly work.
2015-06-02 00:09:39 +00:00
|
|
|
var selectLibrary = Zotero.Promise.coroutine(function* (win, libraryID) {
|
|
|
|
libraryID = libraryID || Zotero.Libraries.userLibraryID;
|
|
|
|
yield win.ZoteroPane.collectionsView.selectLibrary(libraryID);
|
2015-05-25 02:57:46 +00:00
|
|
|
yield waitForItemsLoad(win);
|
|
|
|
});
|
|
|
|
|
2015-06-02 07:33:05 +00:00
|
|
|
var waitForItemsLoad = Zotero.Promise.coroutine(function* (win, collectionRowToSelect) {
|
2015-05-08 20:01:25 +00:00
|
|
|
var zp = win.ZoteroPane;
|
|
|
|
var cv = zp.collectionsView;
|
2015-06-02 07:33:05 +00:00
|
|
|
|
|
|
|
var deferred = Zotero.Promise.defer();
|
|
|
|
cv.addEventListener('load', () => deferred.resolve());
|
|
|
|
yield deferred.promise;
|
|
|
|
if (collectionRowToSelect !== undefined) {
|
|
|
|
yield cv.selectWait(collectionRowToSelect);
|
|
|
|
}
|
|
|
|
deferred = Zotero.Promise.defer();
|
|
|
|
zp.itemsView.addEventListener('load', () => deferred.resolve());
|
|
|
|
return deferred.promise;
|
|
|
|
});
|
2015-05-08 20:01:25 +00:00
|
|
|
|
2015-03-08 19:59:53 +00:00
|
|
|
/**
|
|
|
|
* Waits for a single item event. Returns a promise for the item ID(s).
|
|
|
|
*/
|
|
|
|
function waitForItemEvent(event) {
|
2015-08-08 21:26:42 +00:00
|
|
|
return waitForNotifierEvent(event, 'item').then(x => x.ids);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Wait for a single notifier event and return a promise for the data
|
|
|
|
*/
|
|
|
|
function waitForNotifierEvent(event, type) {
|
2015-04-13 07:27:51 +00:00
|
|
|
var deferred = Zotero.Promise.defer();
|
2015-03-08 19:59:53 +00:00
|
|
|
var notifierID = Zotero.Notifier.registerObserver({notify:function(ev, type, ids, extraData) {
|
|
|
|
if(ev == event) {
|
|
|
|
Zotero.Notifier.unregisterObserver(notifierID);
|
2015-08-08 21:26:42 +00:00
|
|
|
deferred.resolve({
|
|
|
|
ids: ids,
|
|
|
|
extraData: extraData
|
|
|
|
});
|
2015-03-08 19:59:53 +00:00
|
|
|
}
|
2015-08-08 21:26:42 +00:00
|
|
|
}}, [type]);
|
2015-03-08 19:59:53 +00:00
|
|
|
return deferred.promise;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-03-08 22:39:42 +00:00
|
|
|
* Looks for windows with a specific URL.
|
|
|
|
*/
|
|
|
|
function getWindows(uri) {
|
|
|
|
Components.utils.import("resource://gre/modules/Services.jsm");
|
|
|
|
var enumerator = Services.wm.getEnumerator(null);
|
|
|
|
var wins = [];
|
|
|
|
while(enumerator.hasMoreElements()) {
|
|
|
|
var win = enumerator.getNext();
|
|
|
|
if(win.location == uri) {
|
|
|
|
wins.push(win);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return wins;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Resolve a promise when a specified callback returns true. interval
|
|
|
|
* specifies the interval between checks. timeout specifies when we
|
|
|
|
* should assume failure.
|
|
|
|
*/
|
|
|
|
function waitForCallback(cb, interval, timeout) {
|
2015-04-13 07:27:51 +00:00
|
|
|
var deferred = Zotero.Promise.defer();
|
2015-03-08 22:39:42 +00:00
|
|
|
if(interval === undefined) interval = 100;
|
|
|
|
if(timeout === undefined) timeout = 10000;
|
|
|
|
var start = Date.now();
|
|
|
|
var id = setInterval(function() {
|
|
|
|
var success = cb();
|
|
|
|
if(success) {
|
|
|
|
clearInterval(id);
|
|
|
|
deferred.resolve(success);
|
|
|
|
} else if(Date.now() - start > timeout*1000) {
|
|
|
|
clearInterval(id);
|
|
|
|
deferred.reject(new Error("Promise timed out"));
|
|
|
|
}
|
|
|
|
}, interval);
|
|
|
|
return deferred.promise;
|
|
|
|
}
|
|
|
|
|
2015-06-02 00:00:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a default group used by all tests that want one, creating one if necessary
|
|
|
|
*/
|
2015-06-07 19:40:04 +00:00
|
|
|
var _defaultGroup;
|
|
|
|
var getGroup = Zotero.Promise.method(function () {
|
|
|
|
// Cleared in resetDB()
|
|
|
|
if (_defaultGroup) {
|
|
|
|
return _defaultGroup;
|
|
|
|
}
|
|
|
|
return _defaultGroup = createGroup({
|
2015-06-02 00:00:25 +00:00
|
|
|
name: "My Group"
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2015-06-02 04:29:40 +00:00
|
|
|
var createGroup = Zotero.Promise.coroutine(function* (props = {}) {
|
2015-06-02 00:00:25 +00:00
|
|
|
var group = new Zotero.Group;
|
2015-06-07 19:40:04 +00:00
|
|
|
group.id = props.id || Zotero.Utilities.rand(10000, 1000000);
|
2015-06-02 00:00:25 +00:00
|
|
|
group.name = props.name || "Test " + Zotero.Utilities.randomString();
|
|
|
|
group.description = props.description || "";
|
2015-06-02 04:29:40 +00:00
|
|
|
group.editable = props.editable === undefined ? true : props.editable;
|
|
|
|
group.filesEditable = props.filesEditable === undefined ? true : props.filesEditable;
|
|
|
|
group.version = props.version === undefined ? Zotero.Utilities.rand(1000, 10000) : props.version;
|
|
|
|
yield group.saveTx();
|
2015-06-02 00:00:25 +00:00
|
|
|
return group;
|
|
|
|
});
|
|
|
|
|
2015-05-20 23:28:35 +00:00
|
|
|
//
|
|
|
|
// Data objects
|
|
|
|
//
|
2015-07-22 09:21:32 +00:00
|
|
|
/**
|
|
|
|
* @param {String} objectType - 'collection', 'item', 'search'
|
|
|
|
* @param {Object} [params]
|
|
|
|
* @param {Integer} [params.libraryID]
|
|
|
|
* @param {String} [params.itemType] - Item type
|
|
|
|
* @param {String} [params.title] - Item title
|
|
|
|
* @param {Boolean} [params.setTitle] - Assign a random item title
|
|
|
|
* @param {String} [params.name] - Collection/search name
|
|
|
|
* @param {Integer} [params.parentID]
|
|
|
|
* @param {String} [params.parentKey]
|
|
|
|
* @param {Boolean} [params.synced]
|
|
|
|
* @param {Integer} [params.version]
|
2015-08-06 08:04:37 +00:00
|
|
|
* @param {Integer} [params.dateAdded] - Allowed for items
|
|
|
|
* @param {Integer} [params.dateModified] - Allowed for items
|
2015-07-22 09:21:32 +00:00
|
|
|
*/
|
|
|
|
function createUnsavedDataObject(objectType, params = {}) {
|
2015-06-02 00:02:10 +00:00
|
|
|
if (!objectType) {
|
|
|
|
throw new Error("Object type not provided");
|
|
|
|
}
|
|
|
|
|
2015-06-02 04:29:40 +00:00
|
|
|
var allowedParams = ['libraryID', 'parentID', 'parentKey', 'synced', 'version'];
|
|
|
|
|
|
|
|
var itemType;
|
|
|
|
if (objectType == 'item' || objectType == 'feedItem') {
|
|
|
|
itemType = params.itemType || 'book';
|
|
|
|
allowedParams.push('dateAdded', 'dateModified');
|
2015-05-20 23:28:35 +00:00
|
|
|
}
|
2015-06-02 04:29:40 +00:00
|
|
|
|
|
|
|
if (objectType == 'feedItem') {
|
|
|
|
params.guid = params.guid || Zotero.randomString();
|
|
|
|
allowedParams.push('guid');
|
2015-06-02 00:02:10 +00:00
|
|
|
}
|
2015-06-02 04:29:40 +00:00
|
|
|
|
|
|
|
var obj = new Zotero[Zotero.Utilities.capitalize(objectType)](itemType);
|
|
|
|
|
2015-05-20 23:28:35 +00:00
|
|
|
switch (objectType) {
|
2015-06-02 00:02:10 +00:00
|
|
|
case 'item':
|
2015-06-02 04:29:40 +00:00
|
|
|
case 'feedItem':
|
2015-07-22 09:21:32 +00:00
|
|
|
if (params.title !== undefined || params.setTitle) {
|
|
|
|
obj.setField('title', params.title !== undefined ? params.title : Zotero.Utilities.randomString());
|
2015-06-02 00:02:10 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2015-05-20 23:28:35 +00:00
|
|
|
case 'collection':
|
|
|
|
case 'search':
|
2015-07-22 09:21:32 +00:00
|
|
|
obj.name = params.name !== undefined ? params.name : Zotero.Utilities.randomString();
|
2015-05-20 23:28:35 +00:00
|
|
|
break;
|
|
|
|
}
|
2015-06-02 04:29:40 +00:00
|
|
|
|
|
|
|
Zotero.Utilities.assignProps(obj, params, allowedParams);
|
|
|
|
|
2015-05-20 23:28:35 +00:00
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
|
2015-07-22 09:21:32 +00:00
|
|
|
var createDataObject = Zotero.Promise.coroutine(function* (objectType, params = {}, saveOptions) {
|
2015-05-20 23:28:35 +00:00
|
|
|
var obj = createUnsavedDataObject(objectType, params);
|
2015-06-02 04:29:40 +00:00
|
|
|
if (objectType == 'feedItem') {
|
|
|
|
yield obj.forceSaveTx(saveOptions);
|
|
|
|
} else {
|
|
|
|
yield obj.saveTx(saveOptions);
|
|
|
|
}
|
2015-05-22 01:56:04 +00:00
|
|
|
return obj;
|
2015-05-20 23:28:35 +00:00
|
|
|
});
|
|
|
|
|
2015-07-22 09:21:32 +00:00
|
|
|
function getNameProperty(objectType) {
|
|
|
|
return objectType == 'item' ? 'title' : 'name';
|
|
|
|
}
|
|
|
|
|
2015-08-06 08:04:37 +00:00
|
|
|
var modifyDataObject = Zotero.Promise.coroutine(function* (obj, params = {}, saveOptions) {
|
2015-07-22 09:21:32 +00:00
|
|
|
switch (obj.objectType) {
|
|
|
|
case 'item':
|
|
|
|
yield obj.loadItemData();
|
|
|
|
obj.setField(
|
|
|
|
'title',
|
|
|
|
params.title !== undefined ? params.title : Zotero.Utilities.randomString()
|
|
|
|
);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
obj.name = params.name !== undefined ? params.name : Zotero.Utilities.randomString();
|
|
|
|
}
|
2015-08-06 08:04:37 +00:00
|
|
|
return obj.saveTx(saveOptions);
|
2015-07-22 09:21:32 +00:00
|
|
|
});
|
|
|
|
|
2015-04-17 04:20:16 +00:00
|
|
|
/**
|
|
|
|
* Return a promise for the error thrown by a promise, or false if none
|
|
|
|
*/
|
|
|
|
function getPromiseError(promise) {
|
|
|
|
return promise.thenReturn(false).catch(e => e);
|
|
|
|
}
|
|
|
|
|
2015-03-08 22:39:42 +00:00
|
|
|
/**
|
|
|
|
* Ensures that the PDF tools are installed, or installs them if not.
|
2015-06-01 03:07:24 +00:00
|
|
|
*
|
|
|
|
* @return {Promise}
|
2015-03-08 19:59:53 +00:00
|
|
|
*/
|
2015-06-01 03:07:24 +00:00
|
|
|
var installPDFTools = Zotero.Promise.coroutine(function* () {
|
2015-03-08 19:59:53 +00:00
|
|
|
if(Zotero.Fulltext.pdfConverterIsRegistered() && Zotero.Fulltext.pdfInfoIsRegistered()) {
|
2015-06-01 03:07:24 +00:00
|
|
|
return;
|
2015-03-08 19:59:53 +00:00
|
|
|
}
|
2015-06-01 03:07:24 +00:00
|
|
|
var version = yield Zotero.Fulltext.getLatestPDFToolsVersion();
|
|
|
|
yield Zotero.Fulltext.downloadPDFTool('info', version);
|
|
|
|
yield Zotero.Fulltext.downloadPDFTool('converter', version);
|
|
|
|
});
|
2015-03-08 19:59:53 +00:00
|
|
|
|
2015-06-01 03:07:24 +00:00
|
|
|
/**
|
|
|
|
* @return {Promise}
|
|
|
|
*/
|
|
|
|
function uninstallPDFTools() {
|
2015-11-12 07:48:41 +00:00
|
|
|
return Zotero.Fulltext.uninstallPDFTools();
|
2015-03-08 19:59:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-03-24 04:52:36 +00:00
|
|
|
* Returns the nsIFile corresponding to the test data directory
|
|
|
|
* (i.e., test/tests/data)
|
2015-03-08 19:59:53 +00:00
|
|
|
*/
|
|
|
|
function getTestDataDirectory() {
|
|
|
|
Components.utils.import("resource://gre/modules/Services.jsm");
|
|
|
|
var resource = Services.io.getProtocolHandler("resource").
|
|
|
|
QueryInterface(Components.interfaces.nsIResProtocolHandler),
|
|
|
|
resURI = Services.io.newURI("resource://zotero-unit-tests/data", null, null);
|
|
|
|
return Services.io.newURI(resource.resolveURI(resURI), null, null).
|
|
|
|
QueryInterface(Components.interfaces.nsIFileURL).file;
|
2015-03-09 18:25:49 +00:00
|
|
|
}
|
|
|
|
|
2015-04-26 06:31:03 +00:00
|
|
|
/**
|
|
|
|
* Returns an absolute path to an empty temporary directory
|
|
|
|
* (i.e., test/tests/data)
|
|
|
|
*/
|
2015-06-01 03:59:15 +00:00
|
|
|
var getTempDirectory = Zotero.Promise.coroutine(function* getTempDirectory() {
|
2015-04-26 06:31:03 +00:00
|
|
|
Components.utils.import("resource://gre/modules/osfile.jsm");
|
|
|
|
let path,
|
|
|
|
attempts = 3,
|
|
|
|
zoteroTmpDirPath = Zotero.getTempDirectory().path;
|
|
|
|
while (attempts--) {
|
|
|
|
path = OS.Path.join(zoteroTmpDirPath, Zotero.Utilities.randomString());
|
|
|
|
try {
|
|
|
|
yield OS.File.makeDir(path, { ignoreExisting: false });
|
|
|
|
break;
|
|
|
|
} catch (e) {
|
|
|
|
if (!attempts) throw e; // Throw on last attempt
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-01 03:59:15 +00:00
|
|
|
return path;
|
2015-04-26 06:31:03 +00:00
|
|
|
});
|
|
|
|
|
2015-03-09 18:25:49 +00:00
|
|
|
/**
|
|
|
|
* Resets the Zotero DB and restarts Zotero. Returns a promise resolved
|
|
|
|
* when this finishes.
|
2015-07-19 21:58:58 +00:00
|
|
|
*
|
|
|
|
* @param {Object} [options] - Initialization options, as passed to Zotero.init(), overriding
|
|
|
|
* any that were set at startup
|
2015-03-09 18:25:49 +00:00
|
|
|
*/
|
2015-07-19 21:58:58 +00:00
|
|
|
function resetDB(options = {}) {
|
2015-09-29 08:07:26 +00:00
|
|
|
if (options.thisArg) {
|
|
|
|
options.thisArg.timeout(60000);
|
|
|
|
}
|
2015-03-09 18:25:49 +00:00
|
|
|
var db = Zotero.getZoteroDatabase();
|
|
|
|
return Zotero.reinit(function() {
|
|
|
|
db.remove(false);
|
2015-06-07 19:40:04 +00:00
|
|
|
_defaultGroup = null;
|
2015-07-19 21:58:58 +00:00
|
|
|
}, false, options).then(function() {
|
2015-03-11 17:18:11 +00:00
|
|
|
return Zotero.Schema.schemaUpdatePromise;
|
2015-03-09 18:25:49 +00:00
|
|
|
});
|
2015-05-31 21:39:37 +00:00
|
|
|
}
|
|
|
|
|
2015-03-24 04:52:36 +00:00
|
|
|
/**
|
|
|
|
* Equivalent to JSON.stringify, except that object properties are stringified
|
|
|
|
* in a sorted order.
|
|
|
|
*/
|
2015-05-30 00:03:24 +00:00
|
|
|
function stableStringify(obj) {
|
|
|
|
return JSON.stringify(obj, function(k, v) {
|
|
|
|
if (v && typeof v == "object" && !Array.isArray(v)) {
|
|
|
|
let o = {},
|
|
|
|
keys = Object.keys(v).sort();
|
|
|
|
for (let i = 0; i < keys.length; i++) {
|
|
|
|
o[keys[i]] = v[keys[i]];
|
|
|
|
}
|
|
|
|
return o;
|
2015-03-24 04:52:36 +00:00
|
|
|
}
|
2015-05-30 00:03:24 +00:00
|
|
|
return v;
|
|
|
|
}, "\t");
|
2015-03-24 04:52:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads specified sample data from file
|
|
|
|
*/
|
|
|
|
function loadSampleData(dataName) {
|
|
|
|
let data = Zotero.File.getContentsFromURL('resource://zotero-unit-tests/data/' + dataName + '.js');
|
|
|
|
return JSON.parse(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generates sample item data that is stored in data/sampleItemData.js
|
|
|
|
*/
|
|
|
|
function generateAllTypesAndFieldsData() {
|
|
|
|
let data = {};
|
|
|
|
let itemTypes = Zotero.ItemTypes.getTypes();
|
|
|
|
// For most fields, use the field name as the value, but this doesn't
|
|
|
|
// work well for some fields that expect values in certain formats
|
|
|
|
let specialValues = {
|
|
|
|
date: '1999-12-31',
|
|
|
|
filingDate: '2000-01-02',
|
2015-06-07 22:52:31 +00:00
|
|
|
accessDate: '1997-06-13T23:59:58Z',
|
2015-03-24 04:52:36 +00:00
|
|
|
number: 3,
|
|
|
|
numPages: 4,
|
|
|
|
issue: 5,
|
|
|
|
volume: 6,
|
|
|
|
numberOfVolumes: 7,
|
|
|
|
edition: 8,
|
|
|
|
seriesNumber: 9,
|
|
|
|
ISBN: '978-1-234-56789-7',
|
|
|
|
ISSN: '1234-5679',
|
|
|
|
url: 'http://www.example.com',
|
|
|
|
pages: '1-10',
|
|
|
|
DOI: '10.1234/example.doi',
|
|
|
|
runningTime: '1:22:33',
|
|
|
|
language: 'en-US'
|
|
|
|
};
|
|
|
|
|
|
|
|
// Item types that should not be included in sample data
|
|
|
|
let excludeItemTypes = ['note', 'attachment'];
|
|
|
|
|
|
|
|
for (let i = 0; i < itemTypes.length; i++) {
|
|
|
|
if (excludeItemTypes.indexOf(itemTypes[i].name) != -1) continue;
|
|
|
|
|
|
|
|
let itemFields = data[itemTypes[i].name] = {
|
|
|
|
itemType: itemTypes[i].name
|
|
|
|
};
|
|
|
|
|
|
|
|
let fields = Zotero.ItemFields.getItemTypeFields(itemTypes[i].id);
|
|
|
|
for (let j = 0; j < fields.length; j++) {
|
|
|
|
let field = fields[j];
|
|
|
|
field = Zotero.ItemFields.getBaseIDFromTypeAndField(itemTypes[i].id, field) || field;
|
|
|
|
|
|
|
|
let name = Zotero.ItemFields.getName(field),
|
|
|
|
value;
|
|
|
|
|
|
|
|
// Use field name as field value
|
|
|
|
if (specialValues[name]) {
|
|
|
|
value = specialValues[name];
|
|
|
|
} else {
|
|
|
|
value = name.charAt(0).toUpperCase() + name.substr(1);
|
|
|
|
// Make it look nice (sentence case)
|
|
|
|
value = value.replace(/([a-z])([A-Z])/g, '$1 $2')
|
|
|
|
.replace(/ [A-Z](?![A-Z])/g, m => m.toLowerCase()); // not all-caps words
|
|
|
|
}
|
|
|
|
|
|
|
|
itemFields[name] = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
let creatorTypes = Zotero.CreatorTypes.getTypesForItemType(itemTypes[i].id),
|
|
|
|
creators = itemFields.creators = [];
|
|
|
|
for (let j = 0; j < creatorTypes.length; j++) {
|
|
|
|
let typeName = creatorTypes[j].name;
|
|
|
|
creators.push({
|
|
|
|
creatorType: typeName,
|
|
|
|
firstName: typeName + 'First',
|
|
|
|
lastName: typeName + 'Last'
|
|
|
|
});
|
|
|
|
}
|
2015-06-05 21:31:57 +00:00
|
|
|
|
|
|
|
// Also add a single-field mode author, which is valid for all types
|
|
|
|
let primaryCreatorType = Zotero.CreatorTypes.getName(
|
|
|
|
Zotero.CreatorTypes.getPrimaryIDForType(itemTypes[i].id)
|
|
|
|
);
|
|
|
|
creators.push({
|
|
|
|
creatorType: primaryCreatorType,
|
|
|
|
lastName: 'Institutional Author',
|
|
|
|
fieldMode: 1
|
|
|
|
});
|
2015-03-24 04:52:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Populates the database with sample items
|
|
|
|
* The field values should be in the form exactly as they would appear in Zotero
|
|
|
|
*/
|
|
|
|
function populateDBWithSampleData(data) {
|
2015-06-01 03:59:15 +00:00
|
|
|
return Zotero.DB.executeTransaction(function* () {
|
|
|
|
for (let itemName in data) {
|
|
|
|
let item = data[itemName];
|
2015-06-07 22:38:00 +00:00
|
|
|
let zItem = new Zotero.Item;
|
|
|
|
zItem.fromJSON(item);
|
2015-06-01 03:59:15 +00:00
|
|
|
item.id = yield zItem.save();
|
2015-03-24 04:52:36 +00:00
|
|
|
}
|
2015-06-01 03:59:15 +00:00
|
|
|
|
|
|
|
return data;
|
|
|
|
});
|
2015-03-24 04:52:36 +00:00
|
|
|
}
|
|
|
|
|
2015-06-01 03:59:15 +00:00
|
|
|
var generateItemJSONData = Zotero.Promise.coroutine(function* generateItemJSONData(options, currentData) {
|
|
|
|
let items = yield populateDBWithSampleData(loadSampleData('allTypesAndFields')),
|
2015-03-24 04:52:36 +00:00
|
|
|
jsonData = {};
|
|
|
|
|
|
|
|
for (let itemName in items) {
|
2015-06-01 03:59:15 +00:00
|
|
|
let zItem = yield Zotero.Items.getAsync(items[itemName].id);
|
|
|
|
jsonData[itemName] = yield zItem.toJSON(options);
|
2015-05-31 21:02:20 +00:00
|
|
|
|
2015-03-24 04:52:36 +00:00
|
|
|
// Don't replace some fields that _always_ change (e.g. item keys)
|
|
|
|
// as long as it follows expected format
|
|
|
|
// This makes it easier to generate more meaningful diffs
|
|
|
|
if (!currentData || !currentData[itemName]) continue;
|
|
|
|
|
|
|
|
for (let field in jsonData[itemName]) {
|
|
|
|
let oldVal = currentData[itemName][field];
|
|
|
|
if (!oldVal) continue;
|
|
|
|
|
|
|
|
let val = jsonData[itemName][field];
|
|
|
|
switch (field) {
|
|
|
|
case 'dateAdded':
|
|
|
|
case 'dateModified':
|
|
|
|
if (!isoDateTimeRe.test(oldVal) || !isoDateTimeRe.test(val)) continue;
|
|
|
|
break;
|
|
|
|
case 'key':
|
|
|
|
if (!zoteroObjectKeyRe.test(oldVal) || !zoteroObjectKeyRe.test(val)) continue;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
jsonData[itemName][field] = oldVal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return jsonData;
|
2015-06-01 03:59:15 +00:00
|
|
|
});
|
2015-03-24 04:52:36 +00:00
|
|
|
|
2015-06-01 03:59:15 +00:00
|
|
|
var generateCiteProcJSExportData = Zotero.Promise.coroutine(function* generateCiteProcJSExportData(currentData) {
|
|
|
|
let items = yield populateDBWithSampleData(loadSampleData('allTypesAndFields')),
|
2015-03-24 04:52:36 +00:00
|
|
|
cslExportData = {};
|
|
|
|
|
|
|
|
for (let itemName in items) {
|
2015-06-01 03:59:15 +00:00
|
|
|
let zItem = yield Zotero.Items.getAsync(items[itemName].id);
|
2015-03-24 04:52:36 +00:00
|
|
|
cslExportData[itemName] = Zotero.Cite.System.prototype.retrieveItem(zItem);
|
|
|
|
|
|
|
|
if (!currentData || !currentData[itemName]) continue;
|
|
|
|
|
2015-05-14 02:17:30 +00:00
|
|
|
// Don't replace id as long as it follows expected format
|
|
|
|
if (Number.isInteger(currentData[itemName].id)
|
|
|
|
&& Number.isInteger(cslExportData[itemName].id)
|
|
|
|
) {
|
|
|
|
cslExportData[itemName].id = currentData[itemName].id;
|
2015-03-24 04:52:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return cslExportData;
|
2015-06-01 03:59:15 +00:00
|
|
|
});
|
2015-03-24 04:52:36 +00:00
|
|
|
|
2015-06-01 03:59:15 +00:00
|
|
|
var generateTranslatorExportData = Zotero.Promise.coroutine(function* generateTranslatorExportData(legacy, currentData) {
|
|
|
|
let items = yield populateDBWithSampleData(loadSampleData('allTypesAndFields')),
|
2015-03-24 04:52:36 +00:00
|
|
|
translatorExportData = {};
|
|
|
|
|
|
|
|
let itemGetter = new Zotero.Translate.ItemGetter();
|
|
|
|
itemGetter.legacy = !!legacy;
|
|
|
|
|
|
|
|
for (let itemName in items) {
|
2015-06-01 03:59:15 +00:00
|
|
|
let zItem = yield Zotero.Items.getAsync(items[itemName].id);
|
2015-03-24 04:52:36 +00:00
|
|
|
itemGetter._itemsLeft = [zItem];
|
2015-06-01 03:59:15 +00:00
|
|
|
translatorExportData[itemName] = yield itemGetter.nextItem();
|
2015-03-24 04:52:36 +00:00
|
|
|
|
|
|
|
// Don't replace some fields that _always_ change (e.g. item keys)
|
|
|
|
if (!currentData || !currentData[itemName]) continue;
|
|
|
|
|
|
|
|
// For simplicity, be more lenient than for item key
|
|
|
|
let uriRe = /^http:\/\/zotero\.org\/users\/local\/\w{8}\/items\/\w{8}$/;
|
|
|
|
let itemIDRe = /^\d+$/;
|
|
|
|
for (let field in translatorExportData[itemName]) {
|
|
|
|
let oldVal = currentData[itemName][field];
|
|
|
|
if (!oldVal) continue;
|
|
|
|
|
|
|
|
let val = translatorExportData[itemName][field];
|
|
|
|
switch (field) {
|
|
|
|
case 'uri':
|
|
|
|
if (!uriRe.test(oldVal) || !uriRe.test(val)) continue;
|
|
|
|
break;
|
|
|
|
case 'itemID':
|
|
|
|
if (!itemIDRe.test(oldVal) || !itemIDRe.test(val)) continue;
|
|
|
|
break;
|
|
|
|
case 'key':
|
|
|
|
if (!zoteroObjectKeyRe.test(oldVal) || !zoteroObjectKeyRe.test(val)) continue;
|
|
|
|
break;
|
|
|
|
case 'dateAdded':
|
|
|
|
case 'dateModified':
|
|
|
|
if (legacy) {
|
|
|
|
if (!sqlDateTimeRe.test(oldVal) || !sqlDateTimeRe.test(val)) continue;
|
|
|
|
} else {
|
|
|
|
if (!isoDateTimeRe.test(oldVal) || !isoDateTimeRe.test(val)) continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
translatorExportData[itemName][field] = oldVal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return translatorExportData;
|
2015-06-01 03:59:15 +00:00
|
|
|
});
|
2015-05-31 21:39:37 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Imports an attachment from a test file.
|
|
|
|
* @param {string} filename - The filename to import (in data directory)
|
|
|
|
* @return {Promise<Zotero.Item>}
|
|
|
|
*/
|
|
|
|
function importFileAttachment(filename) {
|
|
|
|
let testfile = getTestDataDirectory();
|
|
|
|
filename.split('/').forEach((part) => testfile.append(part));
|
|
|
|
return Zotero.Attachments.importFromFile({file: testfile});
|
|
|
|
}
|
2015-07-20 21:27:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the fake XHR server to response to a given response
|
|
|
|
*
|
|
|
|
* @param {Object} server - Sinon FakeXMLHttpRequest server
|
|
|
|
* @param {Object|String} response - Dot-separated path to predefined response in responses
|
|
|
|
* object (e.g., keyInfo.fullAccess) or a JSON object
|
|
|
|
* that defines the response
|
|
|
|
* @param {Object} responses - Predefined responses
|
|
|
|
*/
|
|
|
|
function setHTTPResponse(server, baseURL, response, responses) {
|
|
|
|
if (typeof response == 'string') {
|
|
|
|
let [topic, key] = response.split('.');
|
|
|
|
if (!responses[topic]) {
|
|
|
|
throw new Error("Invalid topic");
|
|
|
|
}
|
|
|
|
if (!responses[topic][key]) {
|
|
|
|
throw new Error("Invalid response key");
|
|
|
|
}
|
|
|
|
response = responses[topic][key];
|
|
|
|
}
|
|
|
|
|
2015-12-09 09:07:48 +00:00
|
|
|
var responseArray = [response.status !== undefined ? response.status : 200, {}, ""];
|
2015-07-20 21:27:55 +00:00
|
|
|
if (response.json) {
|
|
|
|
responseArray[1]["Content-Type"] = "application/json";
|
|
|
|
responseArray[2] = JSON.stringify(response.json);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
responseArray[1]["Content-Type"] = "text/plain";
|
|
|
|
responseArray[2] = response.text || "";
|
|
|
|
}
|
2015-12-23 09:52:09 +00:00
|
|
|
|
|
|
|
if (!response.headers) {
|
|
|
|
response.headers = {};
|
|
|
|
}
|
|
|
|
response.headers["Fake-Server-Match"] = 1;
|
2015-07-20 21:27:55 +00:00
|
|
|
for (let i in response.headers) {
|
|
|
|
responseArray[1][i] = response.headers[i];
|
|
|
|
}
|
2015-12-23 09:52:09 +00:00
|
|
|
|
2015-07-20 21:27:55 +00:00
|
|
|
server.respondWith(response.method, baseURL + response.url, responseArray);
|
|
|
|
}
|