2023-10-17 19:02:33 +02:00
|
|
|
import { mock, MockProxy } from "jest-mock-extended";
|
2023-10-19 21:41:01 +02:00
|
|
|
import { Observable } from "rxjs";
|
2022-04-16 17:18:12 +02:00
|
|
|
|
2023-06-06 22:34:53 +02:00
|
|
|
import { EncString } from "@bitwarden/common/platform/models/domain/enc-string";
|
2022-04-16 17:18:12 +02:00
|
|
|
|
2020-12-30 22:08:02 +01:00
|
|
|
function newGuid() {
|
2021-12-16 13:36:21 +01:00
|
|
|
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, (c) => {
|
|
|
|
const r = (Math.random() * 16) | 0;
|
|
|
|
const v = c === "x" ? r : (r & 0x3) | 0x8;
|
|
|
|
return v.toString(16);
|
|
|
|
});
|
2020-12-30 22:08:02 +01:00
|
|
|
}
|
|
|
|
|
2022-02-22 15:39:11 +01:00
|
|
|
export function GetUniqueString(prefix = "") {
|
2021-12-16 13:36:21 +01:00
|
|
|
return prefix + "_" + newGuid();
|
2020-12-30 22:08:02 +01:00
|
|
|
}
|
|
|
|
|
2021-12-16 13:36:21 +01:00
|
|
|
export function BuildTestObject<T, K extends keyof T = keyof T>(
|
|
|
|
def: Partial<Pick<T, K>> | T,
|
2023-11-29 22:15:20 +01:00
|
|
|
constructor?: new () => T,
|
2021-12-16 13:36:21 +01:00
|
|
|
): T {
|
|
|
|
return Object.assign(constructor === null ? {} : new constructor(), def) as T;
|
2020-12-30 22:08:02 +01:00
|
|
|
}
|
2022-04-16 17:18:12 +02:00
|
|
|
|
2023-10-17 19:02:33 +02:00
|
|
|
export function mockEnc(s: string): MockProxy<EncString> {
|
|
|
|
const mocked = mock<EncString>();
|
|
|
|
mocked.decrypt.mockResolvedValue(s);
|
2022-04-16 17:18:12 +02:00
|
|
|
|
2023-10-17 19:02:33 +02:00
|
|
|
return mocked;
|
2022-04-16 17:18:12 +02:00
|
|
|
}
|
|
|
|
|
2022-07-26 03:40:32 +02:00
|
|
|
export function makeStaticByteArray(length: number, start = 0) {
|
2022-04-16 17:18:12 +02:00
|
|
|
const arr = new Uint8Array(length);
|
|
|
|
for (let i = 0; i < length; i++) {
|
2022-07-26 03:40:32 +02:00
|
|
|
arr[i] = start + i;
|
2022-04-16 17:18:12 +02:00
|
|
|
}
|
|
|
|
return arr;
|
|
|
|
}
|
2022-10-03 22:50:43 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use to mock a return value of a static fromJSON method.
|
|
|
|
*/
|
|
|
|
export const mockFromJson = (stub: any) => (stub + "_fromJSON") as any;
|
2023-10-19 21:41:01 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tracks the emissions of the given observable.
|
|
|
|
*
|
|
|
|
* Call this function before you expect any emissions and then use code that will cause the observable to emit values,
|
|
|
|
* then assert after all expected emissions have occurred.
|
|
|
|
* @param observable
|
|
|
|
* @returns An array that will be populated with all emissions of the observable.
|
|
|
|
*/
|
|
|
|
export function trackEmissions<T>(observable: Observable<T>): T[] {
|
|
|
|
const emissions: T[] = [];
|
|
|
|
observable.subscribe((value) => {
|
|
|
|
switch (value) {
|
|
|
|
case undefined:
|
|
|
|
case null:
|
|
|
|
emissions.push(value);
|
|
|
|
return;
|
|
|
|
default:
|
|
|
|
// process by type
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (typeof value) {
|
|
|
|
case "string":
|
|
|
|
case "number":
|
|
|
|
case "boolean":
|
|
|
|
emissions.push(value);
|
|
|
|
break;
|
2023-12-13 14:06:24 +01:00
|
|
|
case "symbol":
|
|
|
|
// Cheating types to make symbols work at all
|
|
|
|
emissions.push(value.toString() as T);
|
|
|
|
break;
|
2023-11-09 23:06:42 +01:00
|
|
|
default: {
|
|
|
|
emissions.push(clone(value));
|
|
|
|
}
|
2023-10-19 21:41:01 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
return emissions;
|
|
|
|
}
|
2023-11-09 23:06:42 +01:00
|
|
|
|
|
|
|
function clone(value: any): any {
|
|
|
|
if (global.structuredClone != undefined) {
|
|
|
|
return structuredClone(value);
|
|
|
|
} else {
|
|
|
|
return JSON.parse(JSON.stringify(value));
|
|
|
|
}
|
|
|
|
}
|
2023-11-16 20:15:34 +01:00
|
|
|
|
2023-12-13 14:06:24 +01:00
|
|
|
export async function awaitAsync(ms = 1) {
|
2023-11-16 20:15:34 +01:00
|
|
|
if (ms < 1) {
|
|
|
|
await Promise.resolve();
|
|
|
|
} else {
|
|
|
|
await new Promise((resolve) => setTimeout(resolve, ms));
|
|
|
|
}
|
|
|
|
}
|