1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 14:53:33 +00:00

Add tests for domain models (#768)

This commit is contained in:
Oscar Hinton
2022-04-16 17:18:12 +02:00
committed by GitHub
parent f8ac1ed12b
commit 6bcadc4f40
23 changed files with 1933 additions and 6 deletions

View File

@@ -1,3 +1,7 @@
import Substitute, { Arg } from "@fluffy-spoon/substitute";
import { EncString } from "jslib-common/models/domain/encString";
function newGuid() {
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, (c) => {
const r = (Math.random() * 16) | 0;
@@ -16,3 +20,18 @@ export function BuildTestObject<T, K extends keyof T = keyof T>(
): T {
return Object.assign(constructor === null ? {} : new constructor(), def) as T;
}
export function mockEnc(s: string): EncString {
const mock = Substitute.for<EncString>();
mock.decrypt(Arg.any(), Arg.any()).resolves(s);
return mock;
}
export function makeStaticByteArray(length: number) {
const arr = new Uint8Array(length);
for (let i = 0; i < length; i++) {
arr[i] = i;
}
return arr;
}