Fix possible skipped group download when another group is archived

This commit is contained in:
Dan Stillman 2017-10-26 19:04:38 -04:00
parent 14f40218a9
commit 5901a3c7af
2 changed files with 17 additions and 11 deletions

View File

@ -371,10 +371,8 @@ Zotero.Sync.Runner_Module = function (options = {}) {
} }
let remoteGroupVersions = yield client.getGroupVersions(keyInfo.userID); let remoteGroupVersions = yield client.getGroupVersions(keyInfo.userID);
Zotero.debug(remoteGroupVersions);
let remoteGroupIDs = Object.keys(remoteGroupVersions).map(id => parseInt(id)); let remoteGroupIDs = Object.keys(remoteGroupVersions).map(id => parseInt(id));
let skippedGroups = Zotero.Sync.Data.Local.getSkippedGroups(); let skippedGroups = Zotero.Sync.Data.Local.getSkippedGroups();
Zotero.debug(skippedGroups);
// Remove skipped groups // Remove skipped groups
if (syncAllLibraries) { if (syncAllLibraries) {
@ -456,9 +454,9 @@ Zotero.Sync.Runner_Module = function (options = {}) {
// //
// TODO: Localize // TODO: Localize
for (let group of remotelyMissingGroups) { for (let group of remotelyMissingGroups) {
// Ignore archived groups // Ignore remotely missing archived groups
if (group.archived) { if (group.archived) {
groupsToDownload.splice(groupsToDownload.indexOf(group.id), 1); groupsToDownload = groupsToDownload.filter(groupID => groupID != group.id);
continue; continue;
} }

View File

@ -296,12 +296,12 @@ describe("Zotero.Sync.Runner", function () {
}); });
it("should filter out remotely missing archived libraries if library list not provided", function* () { it("should filter out remotely missing archived libraries if library list not provided", function* () {
var syncedGroupID = responses.groups.ownerGroup.json.id; var ownerGroupID = responses.groups.ownerGroup.json.id;
var archivedGroupID = 162512451; // nonexistent group id var archivedGroupID = 162512451; // nonexistent group id
var syncedGroup = yield createGroup({ var ownerGroup = yield createGroup({
id: syncedGroupID, id: ownerGroupID,
version: responses.groups.ownerGroup.json.version - 1 version: responses.groups.ownerGroup.json.version
}); });
var archivedGroup = yield createGroup({ var archivedGroup = yield createGroup({
id: archivedGroupID, id: archivedGroupID,
@ -310,15 +310,23 @@ describe("Zotero.Sync.Runner", function () {
}); });
setResponse('userGroups.groupVersions'); setResponse('userGroups.groupVersions');
setResponse('groups.ownerGroup'); setResponse('groups.memberGroup');
var libraries = yield runner.checkLibraries( var libraries = yield runner.checkLibraries(
runner.getAPIClient({ apiKey }), runner.getAPIClient({ apiKey }),
false, false,
responses.keyInfo.fullAccess.json responses.keyInfo.fullAccess.json
); );
assert.lengthOf(libraries, 2); assert.lengthOf(libraries, 3);
assert.sameMembers(libraries, [userLibraryID, syncedGroup.libraryID]); assert.sameMembers(
libraries,
[
userLibraryID,
ownerGroup.libraryID,
// Nonexistent group should've been created
Zotero.Groups.getLibraryIDFromGroupID(responses.groups.memberGroup.json.id)
]
);
}); });
it("should unarchive library if available remotely", function* () { it("should unarchive library if available remotely", function* () {