Tests for showing/hiding virtual folders
This commit is contained in:
parent
36db3c98b3
commit
0fc91a4ef2
2 changed files with 74 additions and 5 deletions
|
@ -22,8 +22,8 @@ describe("Zotero.CollectionTreeView", function() {
|
||||||
Zotero.Prefs.clear('duplicateLibraries');
|
Zotero.Prefs.clear('duplicateLibraries');
|
||||||
Zotero.Prefs.clear('unfiledLibraries');
|
Zotero.Prefs.clear('unfiledLibraries');
|
||||||
yield cv.refresh();
|
yield cv.refresh();
|
||||||
yield assert.eventually.ok(cv.selectByID("D" + userLibraryID));
|
assert.isTrue(cv.getRowIndexByID("D" + userLibraryID));
|
||||||
yield assert.eventually.ok(cv.selectByID("U" + userLibraryID));
|
assert.isTrue(cv.getRowIndexByID("U" + userLibraryID));
|
||||||
assert.equal(Zotero.Prefs.get('duplicateLibraries'), "" + userLibraryID);
|
assert.equal(Zotero.Prefs.get('duplicateLibraries'), "" + userLibraryID);
|
||||||
assert.equal(Zotero.Prefs.get('unfiledLibraries'), "" + userLibraryID);
|
assert.equal(Zotero.Prefs.get('unfiledLibraries'), "" + userLibraryID);
|
||||||
});
|
});
|
||||||
|
@ -32,8 +32,8 @@ describe("Zotero.CollectionTreeView", function() {
|
||||||
Zotero.Prefs.set('duplicateLibraries', "");
|
Zotero.Prefs.set('duplicateLibraries', "");
|
||||||
Zotero.Prefs.set('unfiledLibraries', "");
|
Zotero.Prefs.set('unfiledLibraries', "");
|
||||||
yield cv.refresh();
|
yield cv.refresh();
|
||||||
yield assert.eventually.notOk(cv.selectByID("D" + userLibraryID));
|
assert.isFalse(cv.getRowIndexByID("D" + userLibraryID));
|
||||||
yield assert.eventually.notOk(cv.selectByID("U" + userLibraryID));
|
assert.isFalse(cv.getRowIndexByID("U" + userLibraryID));
|
||||||
assert.strictEqual(Zotero.Prefs.get('duplicateLibraries'), "");
|
assert.strictEqual(Zotero.Prefs.get('duplicateLibraries'), "");
|
||||||
assert.strictEqual(Zotero.Prefs.get('unfiledLibraries'), "");
|
assert.strictEqual(Zotero.Prefs.get('unfiledLibraries'), "");
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,13 +1,14 @@
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
describe("ZoteroPane", function() {
|
describe("ZoteroPane", function() {
|
||||||
var win, doc, zp;
|
var win, doc, zp, userLibraryID;
|
||||||
|
|
||||||
// Load Zotero pane and select library
|
// Load Zotero pane and select library
|
||||||
before(function* () {
|
before(function* () {
|
||||||
win = yield loadZoteroPane();
|
win = yield loadZoteroPane();
|
||||||
doc = win.document;
|
doc = win.document;
|
||||||
zp = win.ZoteroPane;
|
zp = win.ZoteroPane;
|
||||||
|
userLibraryID = Zotero.Libraries.userLibraryID;
|
||||||
});
|
});
|
||||||
|
|
||||||
after(function () {
|
after(function () {
|
||||||
|
@ -201,4 +202,72 @@ describe("ZoteroPane", function() {
|
||||||
assert.equal((yield Zotero.File.getContentsAsync(path)), text);
|
assert.equal((yield Zotero.File.getContentsAsync(path)), text);
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
describe("#setVirtual()", function () {
|
||||||
|
var cv;
|
||||||
|
|
||||||
|
before(function* () {
|
||||||
|
cv = zp.collectionsView;
|
||||||
|
});
|
||||||
|
beforeEach(function () {
|
||||||
|
Zotero.Prefs.clear('duplicateLibraries');
|
||||||
|
Zotero.Prefs.clear('unfiledLibraries');
|
||||||
|
return selectLibrary(win);
|
||||||
|
})
|
||||||
|
|
||||||
|
it("should show a hidden virtual folder", function* () {
|
||||||
|
// Start hidden
|
||||||
|
Zotero.Prefs.set('duplicateLibraries', "");
|
||||||
|
Zotero.Prefs.set('unfiledLibraries', "");
|
||||||
|
yield cv.refresh();
|
||||||
|
|
||||||
|
// Show Duplicate Items
|
||||||
|
var id = "D" + userLibraryID;
|
||||||
|
assert.isFalse(cv.getRowIndexByID(id));
|
||||||
|
yield zp.setVirtual(userLibraryID, 'duplicates', true);
|
||||||
|
assert.ok(cv.getRowIndexByID(id));
|
||||||
|
|
||||||
|
// Show Unfiled Items
|
||||||
|
id = "U" + userLibraryID;
|
||||||
|
assert.isFalse(cv.getRowIndexByID(id));
|
||||||
|
yield zp.setVirtual(userLibraryID, 'unfiled', true);
|
||||||
|
assert.ok(cv.getRowIndexByID(id));
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should hide a virtual folder shown by default", function* () {
|
||||||
|
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));
|
||||||
|
|
||||||
|
// Hide Unfiled Items
|
||||||
|
id = "U" + userLibraryID;
|
||||||
|
assert.ok(yield cv.selectByID(id));
|
||||||
|
yield zp.setVirtual(userLibraryID, 'unfiled', false);
|
||||||
|
assert.isFalse(cv.getRowIndexByID(id));
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should hide an explicitly shown virtual folder", function* () {
|
||||||
|
// Start shown
|
||||||
|
Zotero.Prefs.set('duplicateLibraries', "" + userLibraryID);
|
||||||
|
Zotero.Prefs.set('unfiledLibraries' "" + userLibraryID);
|
||||||
|
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));
|
||||||
|
|
||||||
|
// Hide Unfiled Items
|
||||||
|
id = "U" + userLibraryID;
|
||||||
|
assert.ok(yield cv.selectByID(id));
|
||||||
|
yield zp.setVirtual(userLibraryID, 'unfiled', false);
|
||||||
|
assert.isFalse(cv.getRowIndexByID(id));
|
||||||
|
});
|
||||||
|
});
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue