2022-02-09 19:21:40 +03:00
|
|
|
/*
|
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
2022-10-17 19:42:04 +03:00
|
|
|
import { render, screen, fireEvent } from "@testing-library/react";
|
2022-02-09 19:21:40 +03:00
|
|
|
import { mocked } from "jest-mock";
|
2022-03-01 23:42:05 +03:00
|
|
|
import { MatrixClient } from "matrix-js-sdk/src/matrix";
|
2022-02-09 19:21:40 +03:00
|
|
|
|
2022-12-27 10:39:26 +03:00
|
|
|
import UnwrappedSpacePanel from "../../../../src/components/views/spaces/SpacePanel";
|
2022-02-09 19:21:40 +03:00
|
|
|
import { MatrixClientPeg } from "../../../../src/MatrixClientPeg";
|
2023-02-13 14:39:16 +03:00
|
|
|
import { MetaSpace, SpaceKey } from "../../../../src/stores/spaces";
|
2022-02-09 19:21:40 +03:00
|
|
|
import { shouldShowComponent } from "../../../../src/customisations/helpers/UIComponents";
|
|
|
|
import { UIComponent } from "../../../../src/settings/UIFeature";
|
2022-12-27 10:39:26 +03:00
|
|
|
import { wrapInSdkContext } from "../../../test-utils";
|
|
|
|
import { SdkContextClass } from "../../../../src/contexts/SDKContext";
|
2022-02-09 19:21:40 +03:00
|
|
|
|
|
|
|
jest.mock("../../../../src/stores/spaces/SpaceStore", () => {
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
|
|
const EventEmitter = require("events");
|
|
|
|
class MockSpaceStore extends EventEmitter {
|
2023-02-13 14:39:16 +03:00
|
|
|
invitedSpaces: SpaceKey[] = [];
|
|
|
|
enabledMetaSpaces: MetaSpace[] = [];
|
|
|
|
spacePanelSpaces: string[] = [];
|
2022-02-09 19:21:40 +03:00
|
|
|
activeSpace: SpaceKey = "!space1";
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
instance: new MockSpaceStore(),
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
jest.mock("../../../../src/customisations/helpers/UIComponents", () => ({
|
|
|
|
shouldShowComponent: jest.fn(),
|
|
|
|
}));
|
|
|
|
|
|
|
|
describe("<SpacePanel />", () => {
|
|
|
|
const mockClient = {
|
|
|
|
getUserId: jest.fn().mockReturnValue("@test:test"),
|
2023-02-28 11:55:59 +03:00
|
|
|
getSafeUserId: jest.fn().mockReturnValue("@test:test"),
|
2022-02-09 19:21:40 +03:00
|
|
|
isGuest: jest.fn(),
|
|
|
|
getAccountData: jest.fn(),
|
|
|
|
} as unknown as MatrixClient;
|
2022-12-27 10:39:26 +03:00
|
|
|
const SpacePanel = wrapInSdkContext(UnwrappedSpacePanel, SdkContextClass.instance);
|
2022-02-09 19:21:40 +03:00
|
|
|
|
|
|
|
beforeAll(() => {
|
|
|
|
jest.spyOn(MatrixClientPeg, "get").mockReturnValue(mockClient);
|
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
mocked(shouldShowComponent).mockClear().mockReturnValue(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("create new space button", () => {
|
|
|
|
it("renders create space button when UIComponent.CreateSpaces component should be shown", () => {
|
2022-10-17 19:42:04 +03:00
|
|
|
render(<SpacePanel />);
|
|
|
|
screen.getByTestId("create-space-button");
|
2022-02-09 19:21:40 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it("does not render create space button when UIComponent.CreateSpaces component should not be shown", () => {
|
|
|
|
mocked(shouldShowComponent).mockReturnValue(false);
|
2022-10-17 19:42:04 +03:00
|
|
|
render(<SpacePanel />);
|
2022-02-09 19:21:40 +03:00
|
|
|
expect(shouldShowComponent).toHaveBeenCalledWith(UIComponent.CreateSpaces);
|
2022-10-17 19:42:04 +03:00
|
|
|
expect(screen.queryByTestId("create-space-button")).toBeFalsy();
|
2022-02-09 19:21:40 +03:00
|
|
|
});
|
|
|
|
|
2022-10-17 19:42:04 +03:00
|
|
|
it("opens context menu on create space button click", () => {
|
|
|
|
render(<SpacePanel />);
|
|
|
|
fireEvent.click(screen.getByTestId("create-space-button"));
|
|
|
|
screen.getByTestId("create-space-button");
|
2022-02-09 19:21:40 +03:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|