mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-04 09:01:01 +01:00
c90eb42ead
* move decryptFromBytes, decryptToBytes, and encryptToBytes from CryptoService to EncryptService * leave redirects in CryptoService * combine encryptService decryptFromBytes and decryptToBytes methods * move parsing logic into EncArrayBuffer * add tests
39 lines
1.3 KiB
TypeScript
39 lines
1.3 KiB
TypeScript
import { mock, mockReset } from "jest-mock-extended";
|
|
|
|
import { AbstractEncryptService } from "@bitwarden/common/abstractions/abstractEncrypt.service";
|
|
import { CryptoFunctionService } from "@bitwarden/common/abstractions/cryptoFunction.service";
|
|
import { LogService } from "@bitwarden/common/abstractions/log.service";
|
|
import { PlatformUtilsService } from "@bitwarden/common/abstractions/platformUtils.service";
|
|
import { StateService } from "@bitwarden/common/abstractions/state.service";
|
|
import { CryptoService } from "@bitwarden/common/services/crypto.service";
|
|
|
|
describe("cryptoService", () => {
|
|
let cryptoService: CryptoService;
|
|
|
|
const cryptoFunctionService = mock<CryptoFunctionService>();
|
|
const encryptService = mock<AbstractEncryptService>();
|
|
const platformUtilService = mock<PlatformUtilsService>();
|
|
const logService = mock<LogService>();
|
|
const stateService = mock<StateService>();
|
|
|
|
beforeEach(() => {
|
|
mockReset(cryptoFunctionService);
|
|
mockReset(encryptService);
|
|
mockReset(platformUtilService);
|
|
mockReset(logService);
|
|
mockReset(stateService);
|
|
|
|
cryptoService = new CryptoService(
|
|
cryptoFunctionService,
|
|
encryptService,
|
|
platformUtilService,
|
|
logService,
|
|
stateService
|
|
);
|
|
});
|
|
|
|
it("instantiates", () => {
|
|
expect(cryptoService).not.toBeFalsy();
|
|
});
|
|
});
|