mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
* update password reprompt to use the dialog CL * Override showPasswordPrompt and submit method on web child classes from base classes to allow dialog work on web and modal on other clients * Override showPasswordPrompt and submit method on web child classes from base classes to allow dialog work on web and modal on other clients * Fixed lint issues * Corrected comments * Refactored passwored reprompt to use dialog service after changes to make the dialog service work on the desktop and browser * Changed access modifier from protected to protected * Refactored passwprd reprompt component to a stand alone component and fixed all references * fix merge changes * fix import aliases in password-reprompt.component.ts * fix alias typo in browser tsconfig * import from root vault alias * revert tsconfig changes * remove service abstraction and update imports * remove component from imports * Removed unneccesary show password toggle * renamed selector to use vault prefix * removed unnecessary data dismiss * merged and fixed conflicts * remove reintroduced file * Added appAutoFocus to reprompt dialog * delayed validation until submit happens --------- Co-authored-by: William Martin <contact@willmartian.com>
34 lines
1.3 KiB
TypeScript
34 lines
1.3 KiB
TypeScript
import { MockProxy, mock } from "jest-mock-extended";
|
|
|
|
import { UserVerificationService } from "@bitwarden/common/src/auth/abstractions/user-verification/user-verification.service.abstraction";
|
|
import { DialogService } from "@bitwarden/components";
|
|
|
|
import { PasswordRepromptService } from "./password-reprompt.service";
|
|
|
|
describe("PasswordRepromptService", () => {
|
|
let passwordRepromptService: PasswordRepromptService;
|
|
|
|
let userVerificationService: MockProxy<UserVerificationService>;
|
|
let dialogService: MockProxy<DialogService>;
|
|
|
|
beforeEach(() => {
|
|
dialogService = mock<DialogService>();
|
|
userVerificationService = mock<UserVerificationService>();
|
|
|
|
passwordRepromptService = new PasswordRepromptService(dialogService, userVerificationService);
|
|
});
|
|
|
|
describe("enabled()", () => {
|
|
it("returns false if a user does not have a master password", async () => {
|
|
userVerificationService.hasMasterPasswordAndMasterKeyHash.mockResolvedValue(false);
|
|
|
|
expect(await passwordRepromptService.enabled()).toBe(false);
|
|
});
|
|
it("returns true if the user has a master password", async () => {
|
|
userVerificationService.hasMasterPasswordAndMasterKeyHash.mockResolvedValue(true);
|
|
|
|
expect(await passwordRepromptService.enabled()).toBe(true);
|
|
});
|
|
});
|
|
});
|