Files
ThreadNet-Web/apps/web/test/unit-tests/contexts/SdkContext-test.ts
T

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

57 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.
*/
2025-02-05 13:25:06 +00:00
import { type MatrixClient } from "matrix-js-sdk/src/matrix";
2026-07-01 13:49:18 +01:00
import { SDKContextClass } from "../../../src/contexts/SDKContextClass";
2024-10-15 14:57:26 +01:00
import { UserProfilesStore } from "../../../src/stores/UserProfilesStore";
import { createTestClient } from "../../test-utils";
import { TestSDKContext } from "../TestSDKContext.ts";
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);
});
});
});