UNPKG

passbolt-styleguide

Version:

Passbolt styleguide contains common styling assets used by the different sites, plugin, etc.

50 lines (42 loc) 1.82 kB
/** * Passbolt ~ Open source password manager for teams * Copyright (c) 2022 Passbolt SA (https://www.passbolt.com) * * Licensed under GNU Affero General Public License version 3 of the or any later version. * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain the above copyright notice. * * @copyright Copyright (c) 2022 Passbolt SA (https://www.passbolt.com) * @license https://opensource.org/licenses/AGPL-3.0 AGPL License * @link https://www.passbolt.com Passbolt(tm) * @since 3.8.0 */ import { mockModel } from "../../../react-extension/components/Administration/DisplayMfaAdministration/DisplayMfaAdministration.test.data"; import MfaDTO from "./MfaDTO"; import { MfaProviders } from "./MfaEnumeration"; describe("MfaDTO model", () => { describe("MfaDTO::constructor", () => { it("should init dto with model", () => { const dto = new MfaDTO(mockModel); expect.assertions(3); expect(dto.providers).toEqual([MfaProviders.totp, MfaProviders.yubikey, MfaProviders.duo]); expect(dto.duo).toEqual({ apiHostName: "api-123456af.duosecurity.com", clientId: "PAGI605APMFKP8YSME6T", clientSecret: "PACNkhAAlVLH0m8d3efssULkizlEtunMhIsOTCLT", }); expect(dto.yubikey).toEqual({ clientId: "80412", secretKey: "pas6lyijz2AIhX3D9eLIYAxv63lt@" }); }); it("should not init with yubikey and duo if not selected", () => { const model = mockModel; model.yubikeyToggle = false; model.duoToggle = false; model.totpProviderToggle = false; const dto = new MfaDTO(model); expect.assertions(3); expect(dto.providers).toEqual([]); expect(dto.duo).toEqual({}); expect(dto.yubikey).toEqual({}); }); }); });