2022-09-19 14:42:29 +08: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";
|
2023-04-27 09:20:02 +08:00
|
|
|
import { fireEvent, render, RenderResult, screen } from "@testing-library/react";
|
2023-08-09 15:18:41 +08:00
|
|
|
import { MatrixClient, EventType, MatrixEvent, Room, RoomMember } from "matrix-js-sdk/src/matrix";
|
2022-12-01 17:49:46 +08:00
|
|
|
import { mocked } from "jest-mock";
|
2022-09-19 14:42:29 +08:00
|
|
|
|
|
|
|
import RolesRoomSettingsTab from "../../../../../../src/components/views/settings/tabs/room/RolesRoomSettingsTab";
|
2023-06-14 20:42:07 +08:00
|
|
|
import { mkStubRoom, withClientContextRenderOptions, stubClient } from "../../../../../test-utils";
|
2022-09-19 14:42:29 +08:00
|
|
|
import { MatrixClientPeg } from "../../../../../../src/MatrixClientPeg";
|
|
|
|
import { VoiceBroadcastInfoEventType } from "../../../../../../src/voice-broadcast";
|
2022-10-08 02:10:17 +08:00
|
|
|
import SettingsStore from "../../../../../../src/settings/SettingsStore";
|
|
|
|
import { ElementCall } from "../../../../../../src/models/Call";
|
2022-09-19 14:42:29 +08:00
|
|
|
|
|
|
|
describe("RolesRoomSettingsTab", () => {
|
2023-04-27 09:20:02 +08:00
|
|
|
const userId = "@alice:server.org";
|
2022-09-19 14:42:29 +08:00
|
|
|
const roomId = "!room:example.com";
|
|
|
|
let cli: MatrixClient;
|
2022-12-01 17:49:46 +08:00
|
|
|
let room: Room;
|
2022-09-19 14:42:29 +08:00
|
|
|
|
2023-04-27 09:20:02 +08:00
|
|
|
const renderTab = (propRoom: Room = room): RenderResult => {
|
2023-06-14 20:42:07 +08:00
|
|
|
return render(<RolesRoomSettingsTab room={propRoom} />, withClientContextRenderOptions(cli));
|
2022-10-08 02:10:17 +08:00
|
|
|
};
|
|
|
|
|
2022-12-01 17:49:46 +08:00
|
|
|
const getVoiceBroadcastsSelect = (): HTMLElement => {
|
2023-02-14 01:01:43 +08:00
|
|
|
return renderTab().container.querySelector("select[label='Voice broadcasts']")!;
|
2022-09-19 14:42:29 +08:00
|
|
|
};
|
|
|
|
|
2022-12-01 17:49:46 +08:00
|
|
|
const getVoiceBroadcastsSelectedOption = (): HTMLElement => {
|
2023-02-14 01:01:43 +08:00
|
|
|
return renderTab().container.querySelector("select[label='Voice broadcasts'] option:checked")!;
|
2022-09-19 14:42:29 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
stubClient();
|
2023-06-06 01:12:23 +08:00
|
|
|
cli = MatrixClientPeg.safeGet();
|
2022-12-01 17:49:46 +08:00
|
|
|
room = mkStubRoom(roomId, "test room", cli);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should allow an Admin to demote themselves but not others", () => {
|
|
|
|
mocked(cli.getRoom).mockReturnValue(room);
|
|
|
|
// @ts-ignore - mocked doesn't support overloads properly
|
|
|
|
mocked(room.currentState.getStateEvents).mockImplementation((type, key) => {
|
|
|
|
if (key === undefined) return [] as MatrixEvent[];
|
|
|
|
if (type === "m.room.power_levels") {
|
|
|
|
return new MatrixEvent({
|
|
|
|
sender: "@sender:server",
|
|
|
|
room_id: roomId,
|
|
|
|
type: "m.room.power_levels",
|
|
|
|
state_key: "",
|
|
|
|
content: {
|
|
|
|
users: {
|
2023-02-14 01:01:43 +08:00
|
|
|
[cli.getUserId()!]: 100,
|
2022-12-01 17:49:46 +08:00
|
|
|
"@admin:server": 100,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
});
|
|
|
|
mocked(room.currentState.mayClientSendStateEvent).mockReturnValue(true);
|
|
|
|
const { container } = renderTab();
|
|
|
|
|
|
|
|
expect(container.querySelector(`[placeholder="${cli.getUserId()}"]`)).not.toBeDisabled();
|
|
|
|
expect(container.querySelector(`[placeholder="@admin:server"]`)).toBeDisabled();
|
2022-09-19 14:42:29 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("should initially show »Moderator« permission for »Voice broadcasts«", () => {
|
|
|
|
expect(getVoiceBroadcastsSelectedOption().textContent).toBe("Moderator");
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("when setting »Default« permission for »Voice broadcasts«", () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
fireEvent.change(getVoiceBroadcastsSelect(), {
|
|
|
|
target: { value: 0 },
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should update the power levels", () => {
|
|
|
|
expect(cli.sendStateEvent).toHaveBeenCalledWith(roomId, EventType.RoomPowerLevels, {
|
|
|
|
events: {
|
|
|
|
[VoiceBroadcastInfoEventType]: 0,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2022-10-08 02:10:17 +08:00
|
|
|
|
|
|
|
describe("Element Call", () => {
|
|
|
|
const setGroupCallsEnabled = (val: boolean): void => {
|
|
|
|
jest.spyOn(SettingsStore, "getValue").mockImplementation((name: string) => {
|
|
|
|
if (name === "feature_group_calls") return val;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2022-12-01 17:49:46 +08:00
|
|
|
const getStartCallSelect = (tab: RenderResult): HTMLElement => {
|
2023-02-14 01:01:43 +08:00
|
|
|
return tab.container.querySelector("select[label='Start Element Call calls']")!;
|
2022-10-08 02:10:17 +08:00
|
|
|
};
|
|
|
|
|
2022-12-01 17:49:46 +08:00
|
|
|
const getStartCallSelectedOption = (tab: RenderResult): HTMLElement => {
|
2023-02-14 01:01:43 +08:00
|
|
|
return tab.container.querySelector("select[label='Start Element Call calls'] option:checked")!;
|
2022-10-08 02:10:17 +08:00
|
|
|
};
|
|
|
|
|
2022-12-01 17:49:46 +08:00
|
|
|
const getJoinCallSelect = (tab: RenderResult): HTMLElement => {
|
2023-02-14 01:01:43 +08:00
|
|
|
return tab.container.querySelector("select[label='Join Element Call calls']")!;
|
2022-10-08 02:10:17 +08:00
|
|
|
};
|
|
|
|
|
2022-12-01 17:49:46 +08:00
|
|
|
const getJoinCallSelectedOption = (tab: RenderResult): HTMLElement => {
|
2023-02-14 01:01:43 +08:00
|
|
|
return tab.container.querySelector("select[label='Join Element Call calls'] option:checked")!;
|
2022-10-08 02:10:17 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
describe("Element Call enabled", () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
setGroupCallsEnabled(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("Join Element calls", () => {
|
|
|
|
it("defaults to moderator for joining calls", () => {
|
|
|
|
expect(getJoinCallSelectedOption(renderTab())?.textContent).toBe("Moderator");
|
|
|
|
});
|
|
|
|
|
|
|
|
it("can change joining calls power level", () => {
|
|
|
|
const tab = renderTab();
|
|
|
|
|
|
|
|
fireEvent.change(getJoinCallSelect(tab), {
|
|
|
|
target: { value: 0 },
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(getJoinCallSelectedOption(tab)?.textContent).toBe("Default");
|
|
|
|
expect(cli.sendStateEvent).toHaveBeenCalledWith(roomId, EventType.RoomPowerLevels, {
|
|
|
|
events: {
|
|
|
|
[ElementCall.MEMBER_EVENT_TYPE.name]: 0,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("Start Element calls", () => {
|
|
|
|
it("defaults to moderator for starting calls", () => {
|
|
|
|
expect(getStartCallSelectedOption(renderTab())?.textContent).toBe("Moderator");
|
|
|
|
});
|
|
|
|
|
|
|
|
it("can change starting calls power level", () => {
|
|
|
|
const tab = renderTab();
|
|
|
|
|
|
|
|
fireEvent.change(getStartCallSelect(tab), {
|
|
|
|
target: { value: 0 },
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(getStartCallSelectedOption(tab)?.textContent).toBe("Default");
|
|
|
|
expect(cli.sendStateEvent).toHaveBeenCalledWith(roomId, EventType.RoomPowerLevels, {
|
|
|
|
events: {
|
|
|
|
[ElementCall.CALL_EVENT_TYPE.name]: 0,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it("hides when group calls disabled", () => {
|
|
|
|
setGroupCallsEnabled(false);
|
|
|
|
|
|
|
|
const tab = renderTab();
|
|
|
|
|
|
|
|
expect(getStartCallSelect(tab)).toBeFalsy();
|
|
|
|
expect(getStartCallSelectedOption(tab)).toBeFalsy();
|
|
|
|
|
|
|
|
expect(getJoinCallSelect(tab)).toBeFalsy();
|
|
|
|
expect(getJoinCallSelectedOption(tab)).toBeFalsy();
|
|
|
|
});
|
|
|
|
});
|
2023-04-27 09:20:02 +08:00
|
|
|
|
|
|
|
describe("Banned users", () => {
|
|
|
|
it("should not render banned section when no banned users", () => {
|
|
|
|
const room = new Room(roomId, cli, userId);
|
|
|
|
renderTab(room);
|
|
|
|
|
|
|
|
expect(screen.queryByText("Banned users")).not.toBeInTheDocument();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("renders banned users", () => {
|
|
|
|
const bannedMember = new RoomMember(roomId, "@bob:server.org");
|
|
|
|
bannedMember.setMembershipEvent(
|
|
|
|
new MatrixEvent({
|
|
|
|
type: EventType.RoomMember,
|
|
|
|
content: {
|
|
|
|
membership: "ban",
|
|
|
|
reason: "just testing",
|
|
|
|
},
|
|
|
|
sender: userId,
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
const room = new Room(roomId, cli, userId);
|
|
|
|
jest.spyOn(room, "getMembersWithMembership").mockReturnValue([bannedMember]);
|
|
|
|
renderTab(room);
|
|
|
|
|
|
|
|
expect(screen.getByText("Banned users").parentElement).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("uses banners display name when available", () => {
|
|
|
|
const bannedMember = new RoomMember(roomId, "@bob:server.org");
|
|
|
|
const senderMember = new RoomMember(roomId, "@alice:server.org");
|
|
|
|
senderMember.name = "Alice";
|
|
|
|
bannedMember.setMembershipEvent(
|
|
|
|
new MatrixEvent({
|
|
|
|
type: EventType.RoomMember,
|
|
|
|
content: {
|
|
|
|
membership: "ban",
|
|
|
|
reason: "just testing",
|
|
|
|
},
|
|
|
|
sender: userId,
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
const room = new Room(roomId, cli, userId);
|
|
|
|
jest.spyOn(room, "getMembersWithMembership").mockReturnValue([bannedMember]);
|
|
|
|
jest.spyOn(room, "getMember").mockReturnValue(senderMember);
|
|
|
|
renderTab(room);
|
|
|
|
|
|
|
|
expect(screen.getByTitle("Banned by Alice")).toBeInTheDocument();
|
|
|
|
});
|
|
|
|
});
|
2022-09-19 14:42:29 +08:00
|
|
|
});
|