mirror of
https://github.com/bitwarden/browser
synced 2025-12-21 10:43:35 +00:00
* [PM-5277] Introduce lastSync state via State Providers * [PM-5277] Add migrator and tests * [PM-5277] Use memory for web storage location * [PM-5277] Remove lastSync methods from state service * [PM-5277] Remove lastSync from AccountProfile * [PM-5277] Use string instead of Date to fix serialization for chrome.storage API in Browser * [PM-5277] Only set account if lastSync was deleted during migration * [PM-5277] Fix spec file
113 lines
2.8 KiB
TypeScript
113 lines
2.8 KiB
TypeScript
import { any, MockProxy } from "jest-mock-extended";
|
|
|
|
import { MigrationHelper } from "../migration-helper";
|
|
import { mockMigrationHelper } from "../migration-helper.spec";
|
|
|
|
import { LastSyncMigrator } from "./16-move-last-sync-to-state-provider";
|
|
|
|
function exampleJSON() {
|
|
return {
|
|
global: {
|
|
otherStuff: "otherStuff1",
|
|
},
|
|
authenticatedAccounts: ["user-1", "user-2"],
|
|
"user-1": {
|
|
profile: {
|
|
lastSync: "2024-01-24T00:00:00.000Z",
|
|
otherStuff: "otherStuff4",
|
|
},
|
|
otherStuff: "otherStuff5",
|
|
},
|
|
};
|
|
}
|
|
|
|
function rollbackJSON() {
|
|
return {
|
|
"user_user-1_sync_lastSync": "2024-01-24T00:00:00.000Z",
|
|
"user_user-2_sync_lastSync": null as any,
|
|
global: {
|
|
otherStuff: "otherStuff1",
|
|
},
|
|
authenticatedAccounts: ["user-1", "user-2"],
|
|
"user-1": {
|
|
profile: {
|
|
lastSync: "2024-01-24T00:00:00.000Z",
|
|
otherStuff: "otherStuff4",
|
|
},
|
|
otherStuff: "otherStuff5",
|
|
},
|
|
};
|
|
}
|
|
|
|
describe("LastSyncMigrator", () => {
|
|
let helper: MockProxy<MigrationHelper>;
|
|
let sut: LastSyncMigrator;
|
|
|
|
const keyDefinitionLike = {
|
|
key: "lastSync",
|
|
stateDefinition: {
|
|
name: "sync",
|
|
},
|
|
};
|
|
|
|
describe("migrate", () => {
|
|
beforeEach(() => {
|
|
helper = mockMigrationHelper(exampleJSON(), 15);
|
|
sut = new LastSyncMigrator(15, 16);
|
|
});
|
|
|
|
it("should remove lastSync from all accounts", async () => {
|
|
await sut.migrate(helper);
|
|
expect(helper.set).toHaveBeenCalledWith("user-1", {
|
|
profile: {
|
|
otherStuff: "otherStuff4",
|
|
},
|
|
otherStuff: "otherStuff5",
|
|
});
|
|
});
|
|
|
|
it("should set lastSync provider value for each account", async () => {
|
|
await sut.migrate(helper);
|
|
|
|
expect(helper.setToUser).toHaveBeenCalledWith(
|
|
"user-1",
|
|
keyDefinitionLike,
|
|
"2024-01-24T00:00:00.000Z",
|
|
);
|
|
|
|
expect(helper.setToUser).toHaveBeenCalledWith("user-2", keyDefinitionLike, null);
|
|
});
|
|
});
|
|
|
|
describe("rollback", () => {
|
|
beforeEach(() => {
|
|
helper = mockMigrationHelper(rollbackJSON(), 16);
|
|
sut = new LastSyncMigrator(15, 16);
|
|
});
|
|
|
|
it.each(["user-1", "user-2"])("should null out new values", async (userId) => {
|
|
await sut.rollback(helper);
|
|
|
|
expect(helper.setToUser).toHaveBeenCalledWith(userId, keyDefinitionLike, null);
|
|
});
|
|
|
|
it("should add lastSync back to accounts", async () => {
|
|
await sut.rollback(helper);
|
|
|
|
expect(helper.set).toHaveBeenCalledWith("user-1", {
|
|
profile: {
|
|
lastSync: "2024-01-24T00:00:00.000Z",
|
|
otherStuff: "otherStuff4",
|
|
},
|
|
otherStuff: "otherStuff5",
|
|
});
|
|
});
|
|
|
|
it("should not try to restore values to missing accounts", async () => {
|
|
await sut.rollback(helper);
|
|
|
|
expect(helper.set).not.toHaveBeenCalledWith("user-2", any());
|
|
});
|
|
});
|
|
});
|