2015-10-29 07:41:54 +00:00
|
|
|
"use strict";
|
|
|
|
|
2015-05-04 06:00:52 +00:00
|
|
|
describe("ZoteroPane", function() {
|
2016-03-12 10:03:47 +00:00
|
|
|
var win, doc, zp, userLibraryID;
|
2015-05-04 06:00:52 +00:00
|
|
|
|
|
|
|
// Load Zotero pane and select library
|
|
|
|
before(function* () {
|
|
|
|
win = yield loadZoteroPane();
|
|
|
|
doc = win.document;
|
|
|
|
zp = win.ZoteroPane;
|
2016-03-12 10:03:47 +00:00
|
|
|
userLibraryID = Zotero.Libraries.userLibraryID;
|
2015-05-04 06:00:52 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
after(function () {
|
|
|
|
win.close();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("#newItem", function () {
|
|
|
|
it("should create an item and focus the title field", function* () {
|
|
|
|
yield zp.newItem(Zotero.ItemTypes.getID('book'), {}, null, true);
|
|
|
|
var itemBox = doc.getElementById('zotero-editpane-item-box');
|
|
|
|
var textboxes = doc.getAnonymousNodes(itemBox)[0].getElementsByTagName('textbox');
|
|
|
|
assert.lengthOf(textboxes, 1);
|
|
|
|
assert.equal(textboxes[0].getAttribute('fieldname'), 'title');
|
|
|
|
textboxes[0].blur();
|
|
|
|
yield Zotero.Promise.delay(1);
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should save an entered value when New Item is used", function* () {
|
|
|
|
var value = "Test";
|
|
|
|
var item = yield zp.newItem(Zotero.ItemTypes.getID('book'), {}, null, true);
|
|
|
|
var itemBox = doc.getElementById('zotero-editpane-item-box');
|
|
|
|
var textbox = doc.getAnonymousNodes(itemBox)[0].getElementsByTagName('textbox')[0];
|
|
|
|
textbox.value = value;
|
|
|
|
yield itemBox.blurOpenField();
|
|
|
|
item = yield Zotero.Items.getAsync(item.id);
|
|
|
|
assert.equal(item.getField('title'), value);
|
|
|
|
})
|
|
|
|
});
|
2015-05-08 20:01:25 +00:00
|
|
|
|
2015-05-26 01:47:06 +00:00
|
|
|
describe("#newNote()", function () {
|
|
|
|
it("should create a child note and select it", function* () {
|
|
|
|
var item = yield createDataObject('item');
|
|
|
|
var noteID = yield zp.newNote(false, item.key, "Test");
|
|
|
|
var selected = zp.itemsView.getSelectedItems(true);
|
|
|
|
assert.lengthOf(selected, 1);
|
|
|
|
assert.equal(selected, noteID);
|
|
|
|
})
|
2015-11-15 22:41:21 +00:00
|
|
|
|
|
|
|
it("should create a standalone note within a collection and select it", function* () {
|
|
|
|
var collection = yield createDataObject('collection');
|
|
|
|
var noteID = yield zp.newNote(false, false, "Test");
|
|
|
|
assert.equal(zp.collectionsView.getSelectedCollection(), collection);
|
|
|
|
var selected = zp.itemsView.getSelectedItems(true);
|
|
|
|
assert.lengthOf(selected, 1);
|
|
|
|
assert.equal(selected, noteID);
|
|
|
|
})
|
2015-05-26 01:47:06 +00:00
|
|
|
})
|
|
|
|
|
2016-02-03 06:13:30 +00:00
|
|
|
describe("#newCollection()", function () {
|
|
|
|
it("should create a collection", function* () {
|
|
|
|
var promise = waitForDialog();
|
|
|
|
var id = yield zp.newCollection();
|
|
|
|
yield promise;
|
|
|
|
var collection = Zotero.Collections.get(id);
|
|
|
|
assert.isTrue(collection.name.startsWith(Zotero.getString('pane.collections.untitled')));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-09-24 01:02:36 +00:00
|
|
|
describe("#newSearch()", function () {
|
|
|
|
it("should create a saved search", function* () {
|
|
|
|
var promise = waitForDialog(
|
|
|
|
// TODO: Test changing a condition
|
|
|
|
function (dialog) {},
|
|
|
|
'accept',
|
|
|
|
'chrome://zotero/content/searchDialog.xul'
|
|
|
|
);
|
|
|
|
var id = yield zp.newSearch();
|
|
|
|
yield promise;
|
|
|
|
var search = Zotero.Searches.get(id);
|
|
|
|
assert.ok(search);
|
|
|
|
assert.isTrue(search.name.startsWith(Zotero.getString('pane.collections.untitled')));
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should handle clicking Cancel in the search window", function* () {
|
|
|
|
var promise = waitForDialog(
|
|
|
|
function (dialog) {},
|
|
|
|
'cancel',
|
|
|
|
'chrome://zotero/content/searchDialog.xul'
|
|
|
|
);
|
|
|
|
var id = yield zp.newSearch();
|
|
|
|
yield promise;
|
|
|
|
assert.isFalse(id);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-05-08 20:01:25 +00:00
|
|
|
describe("#itemSelected()", function () {
|
2015-05-19 07:55:54 +00:00
|
|
|
it.skip("should update the item count", function* () {
|
2015-05-08 20:01:25 +00:00
|
|
|
var collection = new Zotero.Collection;
|
|
|
|
collection.name = "Count Test";
|
2015-05-10 08:20:47 +00:00
|
|
|
var id = yield collection.saveTx();
|
2015-05-08 20:01:25 +00:00
|
|
|
yield waitForItemsLoad(win);
|
|
|
|
|
|
|
|
// Unselected, with no items in view
|
|
|
|
assert.equal(
|
2016-03-24 12:55:32 +00:00
|
|
|
doc.getElementById('zotero-item-pane-message-box').textContent,
|
2015-05-08 20:01:25 +00:00
|
|
|
Zotero.getString('pane.item.unselected.zero', 0)
|
|
|
|
);
|
|
|
|
|
|
|
|
// Unselected, with one item in view
|
|
|
|
var item = new Zotero.Item('newspaperArticle');
|
|
|
|
item.setCollections([id]);
|
2015-05-10 08:20:47 +00:00
|
|
|
var itemID1 = yield item.saveTx({
|
2015-05-08 20:01:25 +00:00
|
|
|
skipSelect: true
|
|
|
|
});
|
|
|
|
assert.equal(
|
2016-03-24 12:55:32 +00:00
|
|
|
doc.getElementById('zotero-item-pane-message-box').textContent,
|
2015-05-08 20:01:25 +00:00
|
|
|
Zotero.getString('pane.item.unselected.singular', 1)
|
|
|
|
);
|
|
|
|
|
|
|
|
// Unselected, with multiple items in view
|
|
|
|
var item = new Zotero.Item('audioRecording');
|
|
|
|
item.setCollections([id]);
|
2015-05-10 08:20:47 +00:00
|
|
|
var itemID2 = yield item.saveTx({
|
2015-05-08 20:01:25 +00:00
|
|
|
skipSelect: true
|
|
|
|
});
|
|
|
|
assert.equal(
|
2016-03-24 12:55:32 +00:00
|
|
|
doc.getElementById('zotero-item-pane-message-box').textContent,
|
2015-05-08 20:01:25 +00:00
|
|
|
Zotero.getString('pane.item.unselected.plural', 2)
|
|
|
|
);
|
|
|
|
|
|
|
|
// Multiple items selected
|
|
|
|
var promise = zp.itemsView._getItemSelectedPromise();
|
|
|
|
zp.itemsView.rememberSelection([itemID1, itemID2]);
|
|
|
|
yield promise;
|
|
|
|
assert.equal(
|
2016-03-24 12:55:32 +00:00
|
|
|
doc.getElementById('zotero-item-pane-message-box').textContent,
|
2015-05-08 20:01:25 +00:00
|
|
|
Zotero.getString('pane.item.selected.multiple', 2)
|
|
|
|
);
|
|
|
|
})
|
|
|
|
})
|
2015-10-29 07:41:54 +00:00
|
|
|
|
|
|
|
describe("#viewAttachment", function () {
|
|
|
|
Components.utils.import("resource://zotero-unit/httpd.js");
|
|
|
|
var apiKey = Zotero.Utilities.randomString(24);
|
|
|
|
var port = 16213;
|
|
|
|
var baseURL = `http://localhost:${port}/`;
|
|
|
|
var server;
|
|
|
|
var responses = {};
|
|
|
|
|
|
|
|
var setup = Zotero.Promise.coroutine(function* (options = {}) {
|
|
|
|
server = sinon.fakeServer.create();
|
|
|
|
server.autoRespond = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
function setResponse(response) {
|
|
|
|
setHTTPResponse(server, baseURL, response, responses);
|
|
|
|
}
|
|
|
|
|
|
|
|
before(function () {
|
|
|
|
Zotero.HTTP.mock = sinon.FakeXMLHttpRequest;
|
|
|
|
|
2016-12-21 13:23:31 +00:00
|
|
|
Zotero.Prefs.set("api.url", baseURL);
|
2015-10-29 07:41:54 +00:00
|
|
|
Zotero.Sync.Runner.apiKey = apiKey;
|
|
|
|
})
|
|
|
|
beforeEach(function* () {
|
|
|
|
this.httpd = new HttpServer();
|
|
|
|
this.httpd.start(port);
|
|
|
|
|
|
|
|
yield Zotero.Users.setCurrentUserID(1);
|
|
|
|
yield Zotero.Users.setCurrentUsername("testuser");
|
|
|
|
})
|
|
|
|
afterEach(function* () {
|
|
|
|
var defer = new Zotero.Promise.defer();
|
|
|
|
this.httpd.stop(() => defer.resolve());
|
|
|
|
yield defer.promise;
|
|
|
|
})
|
|
|
|
|
|
|
|
it("should download an attachment on-demand", function* () {
|
|
|
|
yield setup();
|
|
|
|
Zotero.Sync.Storage.Local.downloadAsNeeded(Zotero.Libraries.userLibraryID, true);
|
|
|
|
|
|
|
|
var item = new Zotero.Item("attachment");
|
|
|
|
item.attachmentLinkMode = 'imported_file';
|
|
|
|
item.attachmentPath = 'storage:test.txt';
|
|
|
|
// TODO: Test binary data
|
|
|
|
var text = Zotero.Utilities.randomString();
|
Deasyncification :back: :cry:
While trying to get translation and citing working with asynchronously
generated data, we realized that drag-and-drop support was going to
be...problematic. Firefox only supports synchronous methods for
providing drag data (unlike, it seems, the DataTransferItem interface
supported by Chrome), which means that we'd need to preload all relevant
data on item selection (bounded by export.quickCopy.dragLimit) and keep
the translate/cite methods synchronous (or maintain two separate
versions).
What we're trying instead is doing what I said in #518 we weren't going
to do: loading most object data on startup and leaving many more
functions synchronous. Essentially, this takes the various load*()
methods described in #518, moves them to startup, and makes them operate
on entire libraries rather than individual objects.
The obvious downside here (other than undoing much of the work of the
last many months) is that it increases startup time, potentially quite a
lot for larger libraries. On my laptop, with a 3,000-item library, this
adds about 3 seconds to startup time. I haven't yet tested with larger
libraries. But I'm hoping that we can optimize this further to reduce
that delay. Among other things, this is loading data for all libraries,
when it should be able to load data only for the library being viewed.
But this is also fundamentally just doing some SELECT queries and
storing the results, so it really shouldn't need to be that slow (though
performance may be bounded a bit here by XPCOM overhead).
If we can make this fast enough, it means that third-party plugins
should be able to remain much closer to their current designs. (Some
things, including saving, will still need to be made asynchronous.)
2016-03-07 21:05:51 +00:00
|
|
|
item.attachmentSyncState = "to_download";
|
2015-10-29 07:41:54 +00:00
|
|
|
yield item.saveTx();
|
|
|
|
|
|
|
|
var mtime = "1441252524000";
|
|
|
|
var md5 = Zotero.Utilities.Internal.md5(text)
|
|
|
|
|
|
|
|
var s3Path = `pretend-s3/${item.key}`;
|
|
|
|
this.httpd.registerPathHandler(
|
|
|
|
`/users/1/items/${item.key}/file`,
|
|
|
|
{
|
|
|
|
handle: function (request, response) {
|
|
|
|
response.setStatusLine(null, 302, "Found");
|
|
|
|
response.setHeader("Zotero-File-Modification-Time", mtime, false);
|
|
|
|
response.setHeader("Zotero-File-MD5", md5, false);
|
|
|
|
response.setHeader("Zotero-File-Compressed", "No", false);
|
|
|
|
response.setHeader("Location", baseURL + s3Path, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
this.httpd.registerPathHandler(
|
|
|
|
"/" + s3Path,
|
|
|
|
{
|
|
|
|
handle: function (request, response) {
|
|
|
|
response.setStatusLine(null, 200, "OK");
|
|
|
|
response.write(text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2016-11-20 07:46:04 +00:00
|
|
|
// Disable loadURI() so viewAttachment() doesn't trigger translator loading
|
|
|
|
var stub = sinon.stub(zp, "loadURI");
|
|
|
|
|
2015-10-29 07:41:54 +00:00
|
|
|
yield zp.viewAttachment(item.id);
|
|
|
|
|
2016-11-20 07:46:04 +00:00
|
|
|
assert.ok(stub.calledOnce);
|
|
|
|
assert.ok(stub.calledWith(OS.Path.toFileURI(item.getFilePath())));
|
|
|
|
stub.restore();
|
|
|
|
|
2015-10-29 07:41:54 +00:00
|
|
|
assert.equal((yield item.attachmentHash), md5);
|
|
|
|
assert.equal((yield item.attachmentModificationTime), mtime);
|
|
|
|
var path = yield item.getFilePathAsync();
|
|
|
|
assert.equal((yield Zotero.File.getContentsAsync(path)), text);
|
|
|
|
})
|
|
|
|
})
|
2016-03-12 10:03:47 +00:00
|
|
|
|
2016-09-27 06:10:14 +00:00
|
|
|
describe("#deleteSelectedCollection()", function () {
|
|
|
|
it("should delete collection but not descendant items by default", function* () {
|
|
|
|
var collection = yield createDataObject('collection');
|
|
|
|
var item = yield createDataObject('item', { collections: [collection.id] });
|
|
|
|
var promise = waitForDialog();
|
|
|
|
yield zp.deleteSelectedCollection();
|
|
|
|
assert.isFalse(Zotero.Collections.exists(collection.id));
|
|
|
|
assert.isTrue(Zotero.Items.exists(item.id));
|
|
|
|
assert.isFalse(item.deleted);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should delete collection and descendant items when deleteItems=true", function* () {
|
|
|
|
var collection = yield createDataObject('collection');
|
|
|
|
var item = yield createDataObject('item', { collections: [collection.id] });
|
|
|
|
var promise = waitForDialog();
|
|
|
|
yield zp.deleteSelectedCollection(true);
|
|
|
|
assert.isFalse(Zotero.Collections.exists(collection.id));
|
|
|
|
assert.isTrue(Zotero.Items.exists(item.id));
|
|
|
|
assert.isTrue(item.deleted);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-03-12 10:03:47 +00:00
|
|
|
|
|
|
|
describe("#setVirtual()", function () {
|
|
|
|
var cv;
|
|
|
|
|
|
|
|
before(function* () {
|
|
|
|
cv = zp.collectionsView;
|
|
|
|
});
|
|
|
|
beforeEach(function () {
|
|
|
|
Zotero.Prefs.clear('duplicateLibraries');
|
|
|
|
Zotero.Prefs.clear('unfiledLibraries');
|
|
|
|
return selectLibrary(win);
|
|
|
|
})
|
|
|
|
|
2016-07-01 09:48:19 +00:00
|
|
|
it("should show a hidden virtual collection in My Library", function* () {
|
2016-03-14 00:31:15 +00:00
|
|
|
// Create unfiled, duplicate items
|
|
|
|
var title = Zotero.Utilities.randomString();
|
|
|
|
var item1 = yield createDataObject('item', { title });
|
|
|
|
var item2 = yield createDataObject('item', { title });
|
|
|
|
|
2016-07-01 09:48:19 +00:00
|
|
|
// Start hidden (tested in collectionTreeViewTest)
|
|
|
|
Zotero.Prefs.set('duplicateLibraries', `{"${userLibraryID}": false}`);
|
|
|
|
Zotero.Prefs.set('unfiledLibraries', `{"${userLibraryID}": false}`);
|
2016-03-12 10:03:47 +00:00
|
|
|
yield cv.refresh();
|
|
|
|
|
|
|
|
// Show Duplicate Items
|
|
|
|
var id = "D" + userLibraryID;
|
|
|
|
assert.isFalse(cv.getRowIndexByID(id));
|
|
|
|
yield zp.setVirtual(userLibraryID, 'duplicates', true);
|
2016-07-01 09:48:19 +00:00
|
|
|
// Duplicate Items should be selected
|
|
|
|
assert.equal(cv.selectedTreeRow.id, id);
|
|
|
|
// Should be missing from pref
|
|
|
|
assert.isUndefined(JSON.parse(Zotero.Prefs.get('duplicateLibraries'))[userLibraryID])
|
2016-03-14 00:31:15 +00:00
|
|
|
|
|
|
|
// Clicking should select both items
|
|
|
|
var row = cv.getRowIndexByID(id);
|
|
|
|
assert.ok(row);
|
|
|
|
assert.equal(cv.selection.currentIndex, row);
|
|
|
|
yield waitForItemsLoad(win);
|
|
|
|
var iv = zp.itemsView;
|
|
|
|
row = iv.getRowIndexByID(item1.id);
|
|
|
|
assert.isNumber(row);
|
|
|
|
clickOnItemsRow(iv, row);
|
|
|
|
assert.equal(iv.selection.count, 2);
|
2016-03-12 10:03:47 +00:00
|
|
|
|
|
|
|
// Show Unfiled Items
|
|
|
|
id = "U" + userLibraryID;
|
|
|
|
assert.isFalse(cv.getRowIndexByID(id));
|
|
|
|
yield zp.setVirtual(userLibraryID, 'unfiled', true);
|
2016-07-01 09:48:19 +00:00
|
|
|
// Unfiled Items should be selected
|
|
|
|
assert.equal(cv.selectedTreeRow.id, id);
|
|
|
|
// Should be missing from pref
|
|
|
|
assert.isUndefined(JSON.parse(Zotero.Prefs.get('unfiledLibraries'))[userLibraryID])
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should expand library if collapsed when showing virtual collection", function* () {
|
|
|
|
// Start hidden (tested in collectionTreeViewTest)
|
|
|
|
Zotero.Prefs.set('duplicateLibraries', `{"${userLibraryID}": false}`);
|
|
|
|
yield cv.refresh();
|
|
|
|
|
|
|
|
var libraryRow = cv.getRowIndexByID(Zotero.Libraries.userLibrary.treeViewID);
|
|
|
|
if (cv.isContainerOpen(libraryRow)) {
|
|
|
|
yield cv.toggleOpenState(libraryRow);
|
|
|
|
cv._saveOpenStates();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Show Duplicate Items
|
|
|
|
var id = "D" + userLibraryID;
|
|
|
|
yield zp.setVirtual(userLibraryID, 'duplicates', true);
|
|
|
|
|
|
|
|
// Library should have been expanded and Duplicate Items selected
|
2016-03-12 10:03:47 +00:00
|
|
|
assert.ok(cv.getRowIndexByID(id));
|
2016-07-01 09:48:19 +00:00
|
|
|
assert.equal(cv.selectedTreeRow.id, id);
|
2016-03-12 10:03:47 +00:00
|
|
|
});
|
|
|
|
|
2016-07-01 09:48:19 +00:00
|
|
|
it("should hide a virtual collection in My Library", function* () {
|
2016-03-12 10:03:47 +00:00
|
|
|
yield cv.refresh();
|
|
|
|
|
|
|
|
// Hide Duplicate Items
|
|
|
|
var id = "D" + userLibraryID;
|
|
|
|
assert.ok(yield cv.selectByID(id));
|
|
|
|
yield zp.setVirtual(userLibraryID, 'duplicates', false);
|
|
|
|
assert.isFalse(cv.getRowIndexByID(id));
|
2016-07-01 09:48:19 +00:00
|
|
|
assert.isFalse(JSON.parse(Zotero.Prefs.get('duplicateLibraries'))[userLibraryID])
|
2016-03-12 10:03:47 +00:00
|
|
|
|
|
|
|
// Hide Unfiled Items
|
|
|
|
id = "U" + userLibraryID;
|
|
|
|
assert.ok(yield cv.selectByID(id));
|
|
|
|
yield zp.setVirtual(userLibraryID, 'unfiled', false);
|
|
|
|
assert.isFalse(cv.getRowIndexByID(id));
|
2016-07-01 09:48:19 +00:00
|
|
|
assert.isFalse(JSON.parse(Zotero.Prefs.get('unfiledLibraries'))[userLibraryID])
|
2016-03-12 10:03:47 +00:00
|
|
|
});
|
|
|
|
|
2016-07-01 09:48:19 +00:00
|
|
|
it("should hide a virtual collection in a group", function* () {
|
2016-03-12 10:03:47 +00:00
|
|
|
yield cv.refresh();
|
|
|
|
|
2016-07-01 09:48:19 +00:00
|
|
|
var group = yield createGroup();
|
|
|
|
var groupRow = cv.getRowIndexByID(group.treeViewID);
|
|
|
|
var rowCount = cv.rowCount;
|
|
|
|
|
|
|
|
// Make sure group is open
|
|
|
|
if (!cv.isContainerOpen(groupRow)) {
|
|
|
|
yield cv.toggleOpenState(groupRow);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure Duplicate Items is showing
|
|
|
|
var id = "D" + group.libraryID;
|
|
|
|
assert.ok(cv.getRowIndexByID(id));
|
|
|
|
|
2016-03-12 10:03:47 +00:00
|
|
|
// Hide Duplicate Items
|
|
|
|
assert.ok(yield cv.selectByID(id));
|
2016-07-01 09:48:19 +00:00
|
|
|
yield zp.setVirtual(group.libraryID, 'duplicates', false);
|
|
|
|
// Row should have been removed
|
2016-03-12 10:03:47 +00:00
|
|
|
assert.isFalse(cv.getRowIndexByID(id));
|
2016-07-01 09:48:19 +00:00
|
|
|
// Pref should have been updated
|
|
|
|
Zotero.debug(Zotero.Prefs.get('duplicateLibraries'));
|
|
|
|
assert.isFalse(JSON.parse(Zotero.Prefs.get('duplicateLibraries'))[group.libraryID]);
|
|
|
|
// Group row shouldn't have changed
|
|
|
|
assert.equal(cv.getRowIndexByID(group.treeViewID), groupRow);
|
|
|
|
// Group should remain open
|
|
|
|
assert.isTrue(cv.isContainerOpen(groupRow));
|
|
|
|
// Row count should be 1 less
|
|
|
|
assert.equal(cv.rowCount, --rowCount);
|
2016-03-12 10:03:47 +00:00
|
|
|
|
|
|
|
// Hide Unfiled Items
|
2016-07-01 09:48:19 +00:00
|
|
|
id = "U" + group.libraryID;
|
2016-03-12 10:03:47 +00:00
|
|
|
assert.ok(yield cv.selectByID(id));
|
2016-07-01 09:48:19 +00:00
|
|
|
// Hide Unfiled Items
|
|
|
|
yield zp.setVirtual(group.libraryID, 'unfiled', false);
|
|
|
|
// Row should have been removed
|
2016-03-12 10:03:47 +00:00
|
|
|
assert.isFalse(cv.getRowIndexByID(id));
|
2016-07-01 09:48:19 +00:00
|
|
|
// Pref should have been udpated
|
|
|
|
assert.isFalse(JSON.parse(Zotero.Prefs.get('unfiledLibraries'))[group.libraryID]);
|
|
|
|
// Group row shouldn't have changed
|
|
|
|
assert.equal(cv.getRowIndexByID(group.treeViewID), groupRow);
|
|
|
|
// Group should remain open
|
|
|
|
assert.isTrue(cv.isContainerOpen(groupRow));
|
|
|
|
// Row count should be 1 less
|
|
|
|
assert.equal(cv.rowCount, --rowCount);
|
2016-03-12 10:03:47 +00:00
|
|
|
});
|
|
|
|
});
|
2016-03-26 06:59:54 +00:00
|
|
|
|
|
|
|
describe("#editSelectedCollection()", function () {
|
|
|
|
it("should edit a saved search", function* () {
|
|
|
|
var search = yield createDataObject('search');
|
|
|
|
var promise = waitForWindow('chrome://zotero/content/searchDialog.xul', function (win) {
|
|
|
|
let searchBox = win.document.getElementById('search-box');
|
|
|
|
var c = searchBox.search.getCondition(
|
|
|
|
searchBox.search.addCondition("title", "contains", "foo")
|
|
|
|
);
|
|
|
|
searchBox.addCondition(c);
|
|
|
|
win.document.documentElement.acceptDialog();
|
|
|
|
});
|
|
|
|
yield zp.editSelectedCollection();
|
2016-10-21 02:55:42 +00:00
|
|
|
yield promise;
|
|
|
|
var conditions = search.getConditions();
|
|
|
|
assert.lengthOf(Object.keys(conditions), 3);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should edit a saved search in a group", function* () {
|
|
|
|
var group = yield getGroup();
|
|
|
|
var search = yield createDataObject('search', { libraryID: group.libraryID });
|
|
|
|
var promise = waitForWindow('chrome://zotero/content/searchDialog.xul', function (win) {
|
|
|
|
let searchBox = win.document.getElementById('search-box');
|
|
|
|
var c = searchBox.search.getCondition(
|
|
|
|
searchBox.search.addCondition("title", "contains", "foo")
|
|
|
|
);
|
|
|
|
searchBox.addCondition(c);
|
|
|
|
win.document.documentElement.acceptDialog();
|
|
|
|
});
|
|
|
|
yield zp.editSelectedCollection();
|
2016-03-26 06:59:54 +00:00
|
|
|
yield promise;
|
|
|
|
var conditions = search.getConditions();
|
2016-07-07 12:39:19 +00:00
|
|
|
assert.lengthOf(Object.keys(conditions), 3);
|
2016-03-26 06:59:54 +00:00
|
|
|
});
|
|
|
|
});
|
2016-06-29 00:12:54 +00:00
|
|
|
|
|
|
|
describe("#onCollectionSelected()", function() {
|
|
|
|
var cv;
|
|
|
|
|
|
|
|
beforeEach(function* () {
|
|
|
|
cv = zp.collectionsView;
|
|
|
|
yield cv.selectLibrary(Zotero.Libraries.userLibraryID);
|
|
|
|
Zotero.Prefs.clear('itemsView.columnVisibility');
|
|
|
|
yield clearFeeds();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should store column visibility settings when switching from default to feeds", function* () {
|
|
|
|
doc.getElementById('zotero-items-column-dateAdded').setAttribute('hidden', false);
|
|
|
|
var feed = yield createFeed();
|
|
|
|
yield cv.selectLibrary(feed.libraryID);
|
|
|
|
var settings = JSON.parse(Zotero.Prefs.get('itemsView.columnVisibility'));
|
|
|
|
assert.isOk(settings.default.dateAdded);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should restore column visiblity when switching between default and feeds", function* () {
|
|
|
|
doc.getElementById('zotero-items-column-dateAdded').setAttribute('hidden', false);
|
|
|
|
var feed = yield createFeed();
|
|
|
|
yield cv.selectLibrary(feed.libraryID);
|
|
|
|
assert.equal(doc.getElementById('zotero-items-column-dateAdded').getAttribute('hidden'), 'true');
|
|
|
|
doc.getElementById('zotero-items-column-firstCreator').setAttribute('hidden', true);
|
|
|
|
yield cv.selectLibrary(Zotero.Libraries.userLibraryID);
|
|
|
|
assert.equal(doc.getElementById('zotero-items-column-dateAdded').getAttribute('hidden'), 'false');
|
|
|
|
yield cv.selectLibrary(feed.libraryID);
|
|
|
|
assert.equal(doc.getElementById('zotero-items-column-firstCreator').getAttribute('hidden'), 'true');
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should restore column visibility settings on restart", function* () {
|
|
|
|
doc.getElementById('zotero-items-column-dateAdded').setAttribute('hidden', false);
|
|
|
|
assert.equal(doc.getElementById('zotero-items-column-dateAdded').getAttribute('hidden'), 'false');
|
|
|
|
|
|
|
|
win.close();
|
|
|
|
win = yield loadZoteroPane();
|
|
|
|
doc = win.document;
|
|
|
|
zp = win.ZoteroPane;
|
|
|
|
|
|
|
|
assert.equal(doc.getElementById('zotero-items-column-dateAdded').getAttribute('hidden'), 'false');
|
|
|
|
});
|
|
|
|
});
|
2015-05-04 06:00:52 +00:00
|
|
|
})
|