mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
* Implement automatic kdf upgrades * Fix kdf config not being updated * Update legacy kdf state on master password unlock sync * Fix cli build * Fix * Deduplicate prompts * Fix dismiss time * Fix default kdf setting * Fix build * Undo changes * Fix test * Fix prettier * Fix test * Update libs/angular/src/key-management/encrypted-migration/encrypted-migrations-scheduler.service.ts Co-authored-by: Maciej Zieniuk <167752252+mzieniukbw@users.noreply.github.com> * Update libs/common/src/key-management/master-password/abstractions/master-password.service.abstraction.ts Co-authored-by: Maciej Zieniuk <167752252+mzieniukbw@users.noreply.github.com> * Update libs/angular/src/key-management/encrypted-migration/encrypted-migrations-scheduler.service.ts Co-authored-by: Maciej Zieniuk <167752252+mzieniukbw@users.noreply.github.com> * Only sync when there is at least one migration * Relative imports * Add tech debt comment * Resolve inconsistent prefix * Clean up * Update docs * Use default PBKDF2 iteratinos instead of custom threshold * Undo type check * Fix build * Add comment * Cleanup * Cleanup * Address component feedback * Use isnullorwhitespace * Fix tests * Allow migration only on vault * Fix tests * Run prettier * Fix tests * Prevent await race condition * Fix min and default values in kdf migration * Run sync only when a migration was run * Update libs/common/src/key-management/encrypted-migrator/default-encrypted-migrator.ts Co-authored-by: Maciej Zieniuk <167752252+mzieniukbw@users.noreply.github.com> * Fix link not being blue * Fix later button on browser --------- Co-authored-by: Maciej Zieniuk <167752252+mzieniukbw@users.noreply.github.com>
322 lines
13 KiB
TypeScript
322 lines
13 KiB
TypeScript
import { mock } from "jest-mock-extended";
|
|
import { of } from "rxjs";
|
|
|
|
import { OrganizationApiServiceAbstraction } from "@bitwarden/common/admin-console/abstractions/organization/organization-api.service.abstraction";
|
|
import { Account, AccountService } from "@bitwarden/common/auth/abstractions/account.service";
|
|
import { UserVerificationService } from "@bitwarden/common/auth/abstractions/user-verification/user-verification.service.abstraction";
|
|
import { VerificationType } from "@bitwarden/common/auth/enums/verification-type";
|
|
import { MasterPasswordVerificationResponse } from "@bitwarden/common/auth/types/verification";
|
|
import { CryptoFunctionService } from "@bitwarden/common/key-management/crypto/abstractions/crypto-function.service";
|
|
import { EncryptedMigrator } from "@bitwarden/common/key-management/encrypted-migrator/encrypted-migrator.abstraction";
|
|
import { KeyConnectorService } from "@bitwarden/common/key-management/key-connector/abstractions/key-connector.service";
|
|
import { MasterPasswordUnlockService } from "@bitwarden/common/key-management/master-password/abstractions/master-password-unlock.service";
|
|
import { InternalMasterPasswordServiceAbstraction } from "@bitwarden/common/key-management/master-password/abstractions/master-password.service.abstraction";
|
|
import { ConfigService } from "@bitwarden/common/platform/abstractions/config/config.service";
|
|
import { EnvironmentService } from "@bitwarden/common/platform/abstractions/environment.service";
|
|
import { Utils } from "@bitwarden/common/platform/misc/utils";
|
|
import { SymmetricCryptoKey } from "@bitwarden/common/platform/models/domain/symmetric-crypto-key";
|
|
import { CsprngArray } from "@bitwarden/common/types/csprng";
|
|
import { MasterKey, UserKey } from "@bitwarden/common/types/key";
|
|
import { KeyService } from "@bitwarden/key-management";
|
|
import { ConsoleLogService } from "@bitwarden/logging";
|
|
import { UserId } from "@bitwarden/user-core";
|
|
|
|
import { MessageResponse } from "../../models/response/message.response";
|
|
import { I18nService } from "../../platform/services/i18n.service";
|
|
import { ConvertToKeyConnectorCommand } from "../convert-to-key-connector.command";
|
|
|
|
import { UnlockCommand } from "./unlock.command";
|
|
|
|
describe("UnlockCommand", () => {
|
|
let command: UnlockCommand;
|
|
|
|
const accountService = mock<AccountService>();
|
|
const masterPasswordService = mock<InternalMasterPasswordServiceAbstraction>();
|
|
const keyService = mock<KeyService>();
|
|
const userVerificationService = mock<UserVerificationService>();
|
|
const cryptoFunctionService = mock<CryptoFunctionService>();
|
|
const logService = mock<ConsoleLogService>();
|
|
const keyConnectorService = mock<KeyConnectorService>();
|
|
const environmentService = mock<EnvironmentService>();
|
|
const organizationApiService = mock<OrganizationApiServiceAbstraction>();
|
|
const logout = jest.fn();
|
|
const i18nService = mock<I18nService>();
|
|
const encryptedMigrator = mock<EncryptedMigrator>();
|
|
const masterPasswordUnlockService = mock<MasterPasswordUnlockService>();
|
|
const configService = mock<ConfigService>();
|
|
|
|
const mockMasterPassword = "testExample";
|
|
const activeAccount: Account = {
|
|
id: "user-id" as UserId,
|
|
email: "user@example.com",
|
|
emailVerified: true,
|
|
name: "User",
|
|
};
|
|
const mockUserKey = new SymmetricCryptoKey(new Uint8Array(64)) as UserKey;
|
|
const mockSessionKey = new Uint8Array(64) as CsprngArray;
|
|
const b64sessionKey = Utils.fromBufferToB64(mockSessionKey);
|
|
const expectedSuccessMessage = new MessageResponse(
|
|
"Your vault is now unlocked!",
|
|
"\n" +
|
|
"To unlock your vault, set your session key to the `BW_SESSION` environment variable. ex:\n" +
|
|
'$ export BW_SESSION="' +
|
|
b64sessionKey +
|
|
'"\n' +
|
|
'> $env:BW_SESSION="' +
|
|
b64sessionKey +
|
|
'"\n\n' +
|
|
"You can also pass the session key to any command with the `--session` option. ex:\n" +
|
|
"$ bw list items --session " +
|
|
b64sessionKey,
|
|
);
|
|
expectedSuccessMessage.raw = b64sessionKey;
|
|
|
|
// Legacy test data
|
|
const mockMasterKey = new SymmetricCryptoKey(new Uint8Array(32)) as MasterKey;
|
|
|
|
beforeEach(async () => {
|
|
jest.clearAllMocks();
|
|
|
|
i18nService.t.mockImplementation((key: string) => key);
|
|
accountService.activeAccount$ = of(activeAccount);
|
|
keyConnectorService.convertAccountRequired$ = of(false);
|
|
cryptoFunctionService.randomBytes.mockResolvedValue(mockSessionKey);
|
|
|
|
command = new UnlockCommand(
|
|
accountService,
|
|
masterPasswordService,
|
|
keyService,
|
|
userVerificationService,
|
|
cryptoFunctionService,
|
|
logService,
|
|
keyConnectorService,
|
|
environmentService,
|
|
organizationApiService,
|
|
logout,
|
|
i18nService,
|
|
encryptedMigrator,
|
|
masterPasswordUnlockService,
|
|
configService,
|
|
);
|
|
});
|
|
|
|
describe("run", () => {
|
|
test.each([null as unknown as Account, undefined as unknown as Account])(
|
|
"returns error response when the active account is %s",
|
|
async (account) => {
|
|
accountService.activeAccount$ = of(account);
|
|
|
|
const response = await command.run(mockMasterPassword, {});
|
|
|
|
expect(response).not.toBeNull();
|
|
expect(response.success).toEqual(false);
|
|
expect(response.message).toEqual("No active account found");
|
|
expect(keyService.setUserKey).not.toHaveBeenCalled();
|
|
},
|
|
);
|
|
|
|
test.each([null as unknown as string, undefined as unknown as string, ""])(
|
|
"returns error response when the provided password is %s",
|
|
async (mockMasterPassword) => {
|
|
process.env.BW_NOINTERACTION = "true";
|
|
|
|
const response = await command.run(mockMasterPassword, {});
|
|
|
|
expect(response).not.toBeNull();
|
|
expect(response.success).toEqual(false);
|
|
expect(response.message).toEqual(
|
|
"Master password is required. Try again in interactive mode or provide a password file or environment variable.",
|
|
);
|
|
expect(keyService.setUserKey).not.toHaveBeenCalled();
|
|
},
|
|
);
|
|
|
|
describe("UnlockWithMasterPasswordUnlockData feature flag enabled", () => {
|
|
beforeEach(() => {
|
|
configService.getFeatureFlag$.mockReturnValue(of(true));
|
|
});
|
|
|
|
it("calls masterPasswordUnlockService successfully", async () => {
|
|
masterPasswordUnlockService.unlockWithMasterPassword.mockResolvedValue(mockUserKey);
|
|
|
|
const response = await command.run(mockMasterPassword, {});
|
|
|
|
expect(response).not.toBeNull();
|
|
expect(response.success).toEqual(true);
|
|
expect(response.data).toEqual(expectedSuccessMessage);
|
|
expect(masterPasswordUnlockService.unlockWithMasterPassword).toHaveBeenCalledWith(
|
|
mockMasterPassword,
|
|
activeAccount.id,
|
|
);
|
|
expect(keyService.setUserKey).toHaveBeenCalledWith(mockUserKey, activeAccount.id);
|
|
});
|
|
|
|
it("returns error response if unlockWithMasterPassword fails", async () => {
|
|
masterPasswordUnlockService.unlockWithMasterPassword.mockRejectedValue(
|
|
new Error("Unlock failed"),
|
|
);
|
|
|
|
const response = await command.run(mockMasterPassword, {});
|
|
|
|
expect(response).not.toBeNull();
|
|
expect(response.success).toEqual(false);
|
|
expect(response.message).toEqual("Unlock failed");
|
|
expect(masterPasswordUnlockService.unlockWithMasterPassword).toHaveBeenCalledWith(
|
|
mockMasterPassword,
|
|
activeAccount.id,
|
|
);
|
|
expect(keyService.setUserKey).not.toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe("unlock with feature flag off", () => {
|
|
beforeEach(() => {
|
|
configService.getFeatureFlag$.mockReturnValue(of(false));
|
|
});
|
|
|
|
it("calls decryptUserKeyWithMasterKey successfully", async () => {
|
|
userVerificationService.verifyUserByMasterPassword.mockResolvedValue({
|
|
masterKey: mockMasterKey,
|
|
} as MasterPasswordVerificationResponse);
|
|
masterPasswordService.decryptUserKeyWithMasterKey.mockResolvedValue(mockUserKey);
|
|
|
|
const response = await command.run(mockMasterPassword, {});
|
|
|
|
expect(response).not.toBeNull();
|
|
expect(response.success).toEqual(true);
|
|
expect(response.data).toEqual(expectedSuccessMessage);
|
|
expect(userVerificationService.verifyUserByMasterPassword).toHaveBeenCalledWith(
|
|
{
|
|
type: VerificationType.MasterPassword,
|
|
secret: mockMasterPassword,
|
|
},
|
|
activeAccount.id,
|
|
activeAccount.email,
|
|
);
|
|
expect(masterPasswordService.decryptUserKeyWithMasterKey).toHaveBeenCalledWith(
|
|
mockMasterKey,
|
|
activeAccount.id,
|
|
);
|
|
expect(keyService.setUserKey).toHaveBeenCalledWith(mockUserKey, activeAccount.id);
|
|
});
|
|
|
|
it("returns error response when verifyUserByMasterPassword throws", async () => {
|
|
userVerificationService.verifyUserByMasterPassword.mockRejectedValue(
|
|
new Error("Verification failed"),
|
|
);
|
|
|
|
const response = await command.run(mockMasterPassword, {});
|
|
|
|
expect(response).not.toBeNull();
|
|
expect(response.success).toEqual(false);
|
|
expect(response.message).toEqual("Verification failed");
|
|
expect(userVerificationService.verifyUserByMasterPassword).toHaveBeenCalledWith(
|
|
{
|
|
type: VerificationType.MasterPassword,
|
|
secret: mockMasterPassword,
|
|
},
|
|
activeAccount.id,
|
|
activeAccount.email,
|
|
);
|
|
expect(masterPasswordService.decryptUserKeyWithMasterKey).not.toHaveBeenCalled();
|
|
expect(keyService.setUserKey).not.toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
describe("calls convertToKeyConnectorCommand if required", () => {
|
|
let convertToKeyConnectorSpy: jest.SpyInstance;
|
|
beforeEach(() => {
|
|
keyConnectorService.convertAccountRequired$ = of(true);
|
|
|
|
// Feature flag on
|
|
masterPasswordUnlockService.unlockWithMasterPassword.mockResolvedValue(mockUserKey);
|
|
|
|
// Feature flag off
|
|
userVerificationService.verifyUserByMasterPassword.mockResolvedValue({
|
|
masterKey: mockMasterKey,
|
|
} as MasterPasswordVerificationResponse);
|
|
masterPasswordService.decryptUserKeyWithMasterKey.mockResolvedValue(mockUserKey);
|
|
});
|
|
|
|
test.each([true, false])("returns failure when feature flag is %s", async (flagValue) => {
|
|
configService.getFeatureFlag$.mockReturnValue(of(flagValue));
|
|
|
|
// Mock the ConvertToKeyConnectorCommand
|
|
const mockRun = jest.fn().mockResolvedValue({ success: false, message: "convert failed" });
|
|
convertToKeyConnectorSpy = jest
|
|
.spyOn(ConvertToKeyConnectorCommand.prototype, "run")
|
|
.mockImplementation(mockRun);
|
|
|
|
const response = await command.run(mockMasterPassword, {});
|
|
|
|
expect(response).not.toBeNull();
|
|
expect(response.success).toEqual(false);
|
|
expect(response.message).toEqual("convert failed");
|
|
expect(keyService.setUserKey).toHaveBeenCalledWith(mockUserKey, activeAccount.id);
|
|
expect(convertToKeyConnectorSpy).toHaveBeenCalled();
|
|
|
|
if (flagValue === true) {
|
|
expect(masterPasswordUnlockService.unlockWithMasterPassword).toHaveBeenCalledWith(
|
|
mockMasterPassword,
|
|
activeAccount.id,
|
|
);
|
|
} else {
|
|
expect(userVerificationService.verifyUserByMasterPassword).toHaveBeenCalledWith(
|
|
{
|
|
type: VerificationType.MasterPassword,
|
|
secret: mockMasterPassword,
|
|
},
|
|
activeAccount.id,
|
|
activeAccount.email,
|
|
);
|
|
expect(masterPasswordService.decryptUserKeyWithMasterKey).toHaveBeenCalledWith(
|
|
mockMasterKey,
|
|
activeAccount.id,
|
|
);
|
|
}
|
|
});
|
|
|
|
test.each([true, false])(
|
|
"returns expected success when feature flag is %s",
|
|
async (flagValue) => {
|
|
configService.getFeatureFlag$.mockReturnValue(of(flagValue));
|
|
|
|
// Mock the ConvertToKeyConnectorCommand
|
|
const mockRun = jest.fn().mockResolvedValue({ success: true });
|
|
const convertToKeyConnectorSpy = jest
|
|
.spyOn(ConvertToKeyConnectorCommand.prototype, "run")
|
|
.mockImplementation(mockRun);
|
|
|
|
const response = await command.run(mockMasterPassword, {});
|
|
|
|
expect(response).not.toBeNull();
|
|
expect(response.success).toEqual(true);
|
|
expect(response.data).toEqual(expectedSuccessMessage);
|
|
expect(keyService.setUserKey).toHaveBeenCalledWith(mockUserKey, activeAccount.id);
|
|
expect(convertToKeyConnectorSpy).toHaveBeenCalled();
|
|
|
|
if (flagValue === true) {
|
|
expect(masterPasswordUnlockService.unlockWithMasterPassword).toHaveBeenCalledWith(
|
|
mockMasterPassword,
|
|
activeAccount.id,
|
|
);
|
|
} else {
|
|
expect(userVerificationService.verifyUserByMasterPassword).toHaveBeenCalledWith(
|
|
{
|
|
type: VerificationType.MasterPassword,
|
|
secret: mockMasterPassword,
|
|
},
|
|
activeAccount.id,
|
|
activeAccount.email,
|
|
);
|
|
expect(masterPasswordService.decryptUserKeyWithMasterKey).toHaveBeenCalledWith(
|
|
mockMasterKey,
|
|
activeAccount.id,
|
|
);
|
|
}
|
|
},
|
|
);
|
|
});
|
|
});
|
|
});
|