mirror of
https://github.com/bitwarden/browser.git
synced 2025-04-09 19:17:09 +02:00
* WIP: PoC with lots of terrible code with web push * fix service worker building * Work on WebPush Tailored to Browser * Clean Up Web And MV2 * Fix Merge Conflicts * Prettier * Use Unsupported for MV2 * Add Doc Comments * Remove Permission Button * Fix Type Test * Write Time In More Readable Format * Add SignalR Logger * `sheduleReconnect` -> `scheduleReconnect` Co-authored-by: Matt Gibson <mgibson@bitwarden.com> * Capture Support Context In Connector * Remove Unneeded CSP Change * Fix Build * Simplify `getOrCreateSubscription` * Add More Docs to Matrix * Update libs/common/src/platform/notifications/internal/worker-webpush-connection.service.ts Co-authored-by: Matt Gibson <mgibson@bitwarden.com> * Move API Service Into Notifications Folder * Allow Connection When Account Is Locked * Add Comments to NotificationsService * Only Change Support Status If Public Key Changes * Move Service Choice Out To Method * Use Named Constant For Disabled Notification Url * Add Test & Cleanup * Flatten * Move Tests into `beforeEach` & `afterEach` * Add Tests * Test `distinctUntilChanged`'s Operators More * Make Helper And Cleanup Chain * Add Back Cast * Add extra safety to incoming config check * Put data through response object * Apply TS Strict Rules * Finish PushTechnology comment * Use `instanceof` check * Do Safer Worker Based Registration for MV3 * Remove TODO * Switch to SignalR on any WebPush Error * Fix Manifest Permissions * Add Back `webNavigation` * Sorry, Remove `webNavigation` * Fixed merge conflicts. --------- Co-authored-by: Matt Gibson <mgibson@bitwarden.com> Co-authored-by: Todd Martin <tmartin@bitwarden.com> Co-authored-by: Todd Martin <106564991+trmartin4@users.noreply.github.com>
77 lines
2.0 KiB
TypeScript
77 lines
2.0 KiB
TypeScript
import { Matrix } from "./matrix";
|
|
|
|
class TestObject {
|
|
value: number = 0;
|
|
|
|
constructor() {}
|
|
|
|
increment() {
|
|
this.value++;
|
|
}
|
|
}
|
|
|
|
describe("matrix", () => {
|
|
it("caches entries in a matrix properly with a single argument", () => {
|
|
const mockFunction = jest.fn<TestObject, [arg1: string]>();
|
|
const getter = Matrix.autoMockMethod(mockFunction, () => new TestObject());
|
|
|
|
const obj = getter("test1");
|
|
expect(obj.value).toBe(0);
|
|
|
|
// Change the state of the object
|
|
obj.increment();
|
|
|
|
// Should return the same instance the second time this is called
|
|
expect(getter("test1").value).toBe(1);
|
|
|
|
// Using the getter should not call the mock function
|
|
expect(mockFunction).not.toHaveBeenCalled();
|
|
|
|
const mockedFunctionReturn1 = mockFunction("test1");
|
|
expect(mockedFunctionReturn1.value).toBe(1);
|
|
|
|
// Totally new value
|
|
const mockedFunctionReturn2 = mockFunction("test2");
|
|
expect(mockedFunctionReturn2.value).toBe(0);
|
|
|
|
expect(mockFunction).toHaveBeenCalledTimes(2);
|
|
});
|
|
|
|
it("caches entries in matrix properly with multiple arguments", () => {
|
|
const mockFunction = jest.fn<TestObject, [arg1: string, arg2: number]>();
|
|
|
|
const getter = Matrix.autoMockMethod(mockFunction, () => {
|
|
return new TestObject();
|
|
});
|
|
|
|
const obj = getter("test1", 4);
|
|
expect(obj.value).toBe(0);
|
|
|
|
obj.increment();
|
|
|
|
expect(getter("test1", 4).value).toBe(1);
|
|
|
|
expect(mockFunction("test1", 3).value).toBe(0);
|
|
});
|
|
|
|
it("should give original args in creator even if it has multiple key layers", () => {
|
|
const mockFunction = jest.fn<TestObject, [arg1: string, arg2: number, arg3: boolean]>();
|
|
|
|
let invoked = false;
|
|
|
|
const getter = Matrix.autoMockMethod(mockFunction, (args) => {
|
|
expect(args).toHaveLength(3);
|
|
expect(args[0]).toBe("test");
|
|
expect(args[1]).toBe(42);
|
|
expect(args[2]).toBe(true);
|
|
|
|
invoked = true;
|
|
|
|
return new TestObject();
|
|
});
|
|
|
|
getter("test", 42, true);
|
|
expect(invoked).toBe(true);
|
|
});
|
|
});
|