Files
ThreadNet-Web/apps/web/src/contexts/SDKContextClass.test.ts
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.9 KiB
TypeScript
Raw Normal View History

/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
Copyright 2022 The Matrix.org Foundation C.I.C.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
*/
// @vitest-environment happy-dom
import { describe, it, expect, beforeAll, beforeEach } from "vitest";
import { type MatrixClient } from "matrix-js-sdk/src/matrix";
import { createTestClient, TestSDKContext } from "test-utils";
import { SDKContextClass } from "./SDKContextClass";
import { UserProfilesStore } from "../stores/UserProfilesStore";
2026-07-01 13:49:18 +01:00
describe("SDKContextClass", () => {
let sdkContext: TestSDKContext;
let client: MatrixClient;
beforeAll(() => {
client = createTestClient();
});
beforeEach(() => {
sdkContext = new TestSDKContext();
});
it("instance should always return the same instance", () => {
2026-07-01 13:49:18 +01:00
const globalInstance = SDKContextClass.instance;
expect(SDKContextClass.instance).toBe(globalInstance);
});
it("userProfilesStore should raise an error without a client", () => {
2024-10-16 16:43:07 +01:00
expect(() => sdkContext.userProfilesStore).toThrow("Unable to create UserProfilesStore without a client");
});
describe("when SDKContext has a client", () => {
beforeEach(() => {
sdkContext._client = client;
});
it("userProfilesStore should return a UserProfilesStore", () => {
const store = sdkContext.userProfilesStore;
expect(store).toBeInstanceOf(UserProfilesStore);
// it should return the same instance
expect(sdkContext.userProfilesStore).toBe(store);
});
it("onLoggedOut should clear the UserProfilesStore", () => {
const store = sdkContext.userProfilesStore;
sdkContext.onLoggedOut();
sdkContext._client = client;
expect(sdkContext.userProfilesStore).not.toBe(store);
});
});
});