working with tests

This commit is contained in:
Kendall Werts
2020-01-07 14:14:19 -06:00
parent d033292784
commit f7b20f97b8
5 changed files with 107 additions and 44 deletions
+5 -1
View File
@@ -11,6 +11,10 @@ const identityState = {
const storeKey = this.getContainerStoreKey(cookieStoreId);
const storageResponse = await this.area.get([storeKey]);
if (storageResponse && storeKey in storageResponse) {
if (!storageResponse[storeKey].macAddonUUID){
await identityState.addUUID(cookieStoreId);
return this.get(cookieStoreId);
}
return storageResponse[storeKey];
}
const identities = await browser.contextualIdentities.query({});
@@ -91,7 +95,7 @@ const identityState = {
const containerState = await this.storageArea.get(cookieStoreId);
containerState.macAddonUUID = uuid;
await this.storageArea.set(cookieStoreId, containerState);
return;
return uuid;
}
throw new Error ("cookieStoreId or uuid missing");
},
+17 -36
View File
@@ -37,7 +37,7 @@ const sync = {
},
async backup(options) {
console.log("backup");
if (SYNC_DEBUG) console.log("backup");
// remove listeners to avoid an infinite loop!
browser.storage.onChanged.removeListener(sync.storageArea.onChangedListener);
removeContextualIdentityListeners(syncCIListenerList);
@@ -281,51 +281,32 @@ async function reconcileSiteAssignments() {
for(const urlKey of Object.keys(assignedSitesFromSync)) {
const assignedSite = assignedSitesFromSync[urlKey];
if (assignedSitesLocal.hasOwnProperty(urlKey)) {
const syncUUID =
await lookupSyncSiteAssigmentIdentityUUID(
assignedSite, cookieStoreIDmap, urlKey
);
const localIdentityUUID =
await lookupLocalSiteAssignmentIdentityUUID(urlKey);
if (syncUUID === localIdentityUUID) {
continue;
}
// overwrite with Sync data. Sync is the source of truth
await setAssignmentWithUUID(syncUUID, assignedSite, urlKey);
const syncUUID =
await lookupSyncSiteAssigmentIdentityUUID(
assignedSite, cookieStoreIDmap, urlKey
);
if (syncUUID) {
// Sync is truth.
// Not even looking it up. Just overwrite
console.log("new assignment ", assignedSite, ": ",
assignedSite.userContextId);
const newUUID = cookieStoreIDmap[
"firefox-container-" + assignedSite.userContextId
];
await setAssignmentWithUUID(newUUID, assignedSite, urlKey);
continue;
}
console.log("new assignment ", assignedSite, ": ",
assignedSite.userContextId);
const newUUID = cookieStoreIDmap[
"firefox-container-" + assignedSite.userContextId
];
await setAssignmentWithUUID(newUUID, assignedSite, urlKey);
}
async function lookupLocalSiteAssignmentIdentityUUID(urlKey){
const localAssignedSite =
await assignManager.storageArea.getByUrlKey(urlKey);
if (!localAssignedSite || !localAssignedSite.userContextId)
throw new Error (urlKey, "userContextId does not exist");
const localCookieStoreId = "firefox-container-" +
localAssignedSite.userContextId;
return await identityState.storageArea
.get(localCookieStoreId).macAddonUUID;
// if there's no syncUUID, something is wrong, since these site
// assignments are from sync
throw new Error("Sync storage not aligned");
}
async function lookupSyncSiteAssigmentIdentityUUID(
assignedSite,
cookieStoreIDmap,
urlKey
){
if (!assignedSite.userContextId)
throw new Error (`${urlKey} userContextId does not exist`);
const syncCookieStoreId = "firefox-container-" + assignedSite.userContextId;
if (!cookieStoreIDmap[syncCookieStoreId])
throw new Error (syncCookieStoreId, " does not have a uuid");
return cookieStoreIDmap[syncCookieStoreId];
}
}