2015-05-05 06:35:04 +00:00
|
|
|
"use strict";
|
|
|
|
|
2015-04-30 21:06:38 +00:00
|
|
|
describe("Zotero.CollectionTreeView", function() {
|
|
|
|
var win, collectionsView;
|
|
|
|
|
|
|
|
// Load Zotero pane and select library
|
|
|
|
before(function* () {
|
|
|
|
win = yield loadZoteroPane();
|
2015-05-04 06:00:52 +00:00
|
|
|
collectionsView = win.ZoteroPane.collectionsView;
|
2015-04-30 21:06:38 +00:00
|
|
|
});
|
|
|
|
after(function () {
|
2015-05-04 06:00:52 +00:00
|
|
|
win.close();
|
2015-04-30 21:06:38 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Select library
|
|
|
|
// TODO: Add a selectCollection() function and select a collection instead
|
2015-05-04 06:17:00 +00:00
|
|
|
var resetSelection = function () {
|
|
|
|
collectionsView.selectLibrary(Zotero.Libraries.userLibraryID);
|
2015-04-30 21:06:38 +00:00
|
|
|
assert.equal(collectionsView.getSelectedLibraryID(), Zotero.Libraries.userLibraryID);
|
2015-05-04 06:17:00 +00:00
|
|
|
}
|
2015-04-30 21:06:38 +00:00
|
|
|
|
|
|
|
describe("#notify()", function () {
|
|
|
|
it("should select a new collection", function* () {
|
2015-05-04 06:17:00 +00:00
|
|
|
resetSelection();
|
2015-04-30 21:06:38 +00:00
|
|
|
|
|
|
|
// Create collection
|
|
|
|
var collection = new Zotero.Collection;
|
|
|
|
collection.name = "Select new collection";
|
|
|
|
var id = yield collection.save();
|
|
|
|
|
|
|
|
// New collection should be selected
|
|
|
|
var selected = collectionsView.getSelectedCollection(true);
|
|
|
|
assert.equal(selected, id);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("shouldn't select a new collection if skipNotifier is passed", function* () {
|
2015-05-04 06:17:00 +00:00
|
|
|
resetSelection();
|
2015-04-30 21:06:38 +00:00
|
|
|
|
|
|
|
// Create collection with skipNotifier flag
|
|
|
|
var collection = new Zotero.Collection;
|
|
|
|
collection.name = "No select on skipNotifier";
|
|
|
|
var id = yield collection.save({
|
|
|
|
skipNotifier: true
|
|
|
|
});
|
|
|
|
|
|
|
|
// Library should still be selected
|
|
|
|
assert.equal(collectionsView.getSelectedLibraryID(), Zotero.Libraries.userLibraryID);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("shouldn't select a new collection if skipSelect is passed", function* () {
|
2015-05-04 06:17:00 +00:00
|
|
|
resetSelection();
|
2015-04-30 21:06:38 +00:00
|
|
|
|
|
|
|
// Create collection with skipSelect flag
|
|
|
|
var collection = new Zotero.Collection;
|
|
|
|
collection.name = "No select on skipSelect";
|
|
|
|
var id = yield collection.save({
|
|
|
|
skipSelect: true
|
|
|
|
});
|
|
|
|
|
|
|
|
// Library should still be selected
|
|
|
|
assert.equal(collectionsView.getSelectedLibraryID(), Zotero.Libraries.userLibraryID);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("shouldn't select a modified collection", function* () {
|
|
|
|
// Create collection
|
|
|
|
var collection = new Zotero.Collection;
|
|
|
|
collection.name = "No select on modify";
|
|
|
|
var id = yield collection.save();
|
|
|
|
collection = yield Zotero.Collections.getAsync(id);
|
|
|
|
|
2015-05-04 06:17:00 +00:00
|
|
|
resetSelection();
|
2015-04-30 21:06:38 +00:00
|
|
|
|
|
|
|
collection.name = "No select on modify 2";
|
|
|
|
yield collection.save();
|
|
|
|
|
|
|
|
// Modified collection should not be selected
|
|
|
|
assert.equal(collectionsView.getSelectedLibraryID(), Zotero.Libraries.userLibraryID);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should reselect a selected modified collection", function* () {
|
|
|
|
// Create collection
|
|
|
|
var collection = new Zotero.Collection;
|
|
|
|
collection.name = "Reselect on modify";
|
|
|
|
var id = yield collection.save();
|
|
|
|
collection = yield Zotero.Collections.getAsync(id);
|
|
|
|
|
|
|
|
var selected = collectionsView.getSelectedCollection(true);
|
|
|
|
assert.equal(selected, id);
|
|
|
|
|
|
|
|
collection.name = "Reselect on modify 2";
|
|
|
|
yield collection.save();
|
|
|
|
|
|
|
|
// Modified collection should still be selected
|
|
|
|
selected = collectionsView.getSelectedCollection(true);
|
|
|
|
assert.equal(selected, id);
|
|
|
|
});
|
|
|
|
})
|
|
|
|
})
|