Skip to content

Commit 02a30d5

Browse files
committed
test(new room list): add tests to RoomListSearch
1 parent 7e3f992 commit 02a30d5

File tree

2 files changed

+224
-0
lines changed

2 files changed

+224
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
/*
2+
* Copyright 2025 New Vector Ltd.
3+
*
4+
* SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
5+
* Please see LICENSE files in the repository root for full details.
6+
*/
7+
8+
import React from "react";
9+
import { render, screen, waitFor } from "jest-matrix-react";
10+
import { mocked } from "jest-mock";
11+
import userEvent from "@testing-library/user-event";
12+
13+
import { RoomListSearch } from "../../../../../../src/components/views/rooms/RoomListView/RoomListSearch";
14+
import { MetaSpace } from "../../../../../../src/stores/spaces";
15+
import { shouldShowComponent } from "../../../../../../src/customisations/helpers/UIComponents";
16+
import defaultDispatcher from "../../../../../../src/dispatcher/dispatcher";
17+
import { Action } from "../../../../../../src/dispatcher/actions";
18+
19+
jest.mock("../../../../../../src/customisations/helpers/UIComponents", () => ({
20+
shouldShowComponent: jest.fn(),
21+
}));
22+
23+
describe("<RoomListSearch />", () => {
24+
function renderComponent(activeSpace = MetaSpace.Home) {
25+
return render(<RoomListSearch activeSpace={activeSpace} />);
26+
}
27+
28+
beforeEach(() => {
29+
// By default, we consider shouldShowComponent(UIComponent.ExploreRooms) should return true
30+
mocked(shouldShowComponent).mockReturnValue(true);
31+
});
32+
33+
it("should display all the buttons", () => {
34+
const { container } = renderComponent();
35+
36+
// The search and explore buttons should be displayed
37+
expect(screen.getByRole("button", { name: "Search Ctrl K" })).toBeInTheDocument();
38+
expect(screen.getByRole("button", { name: "Explore rooms" })).toBeInTheDocument();
39+
expect(container).toMatchSnapshot();
40+
});
41+
42+
it("should hide the explore button when the active space is not MetaSpace.Home", () => {
43+
const { container } = renderComponent(MetaSpace.VideoRooms);
44+
45+
// The search button should be displayed but not the explore button
46+
expect(screen.getByRole("button", { name: "Search Ctrl K" })).toBeInTheDocument();
47+
expect(screen.queryByRole("button", { name: "Explore rooms" })).not.toBeInTheDocument();
48+
expect(container).toMatchSnapshot();
49+
});
50+
51+
it("should hide the explore button when UIComponent.ExploreRooms is disabled", () => {
52+
mocked(shouldShowComponent).mockReturnValue(false);
53+
const { container } = renderComponent();
54+
55+
// The search button should be displayed but not the explore button
56+
expect(screen.getByRole("button", { name: "Search Ctrl K" })).toBeInTheDocument();
57+
expect(screen.queryByRole("button", { name: "Explore rooms" })).not.toBeInTheDocument();
58+
expect(container).toMatchSnapshot();
59+
});
60+
61+
it("should open the spotlight when the search button is clicked", async () => {
62+
const fireSpy = jest.spyOn(defaultDispatcher, "fire");
63+
const user = userEvent.setup();
64+
renderComponent();
65+
66+
// Click on the search button
67+
await user.click(screen.getByRole("button", { name: "Search Ctrl K" }));
68+
69+
// The spotlight should be opened
70+
expect(fireSpy).toHaveBeenCalledWith(Action.OpenSpotlight);
71+
});
72+
73+
it("should open the spotlight when the action focus_room_filter is fired", async () => {
74+
const fireSpy = jest.spyOn(defaultDispatcher, "fire");
75+
renderComponent();
76+
77+
defaultDispatcher.dispatch({ action: "focus_room_filter" });
78+
79+
// The spotlight should be opened
80+
await waitFor(() => expect(fireSpy).toHaveBeenCalledWith(Action.OpenSpotlight));
81+
});
82+
83+
it("should open the room directory when the explore button is clicked", async () => {
84+
const fireSpy = jest.spyOn(defaultDispatcher, "fire");
85+
const user = userEvent.setup();
86+
renderComponent();
87+
88+
// Click on the search button
89+
await user.click(screen.getByRole("button", { name: "Explore rooms" }));
90+
91+
// The spotlight should be opened
92+
expect(fireSpy).toHaveBeenCalledWith(Action.ViewRoomDirectory);
93+
});
94+
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
// Jest Snapshot v1, https://goo.gl/fbAQLP
2+
3+
exports[`<RoomListSearch /> should display all the buttons 1`] = `
4+
<div>
5+
<div
6+
class="mx_RoomListSearch"
7+
role="search"
8+
>
9+
<button
10+
class="_button_i91xf_17 mx_RoomListSearch_search _has-icon_i91xf_66"
11+
data-kind="secondary"
12+
data-size="sm"
13+
role="button"
14+
tabindex="0"
15+
>
16+
<svg
17+
aria-hidden="true"
18+
fill="currentColor"
19+
height="20"
20+
viewBox="0 0 24 24"
21+
width="20"
22+
xmlns="http://www.w3.org/2000/svg"
23+
>
24+
<path
25+
d="M15.05 16.463a7.5 7.5 0 1 1 1.414-1.414l3.243 3.244a1 1 0 0 1-1.414 1.414l-3.244-3.244ZM16 10.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Z"
26+
/>
27+
</svg>
28+
<span>
29+
Search
30+
<kbd>
31+
Ctrl K
32+
</kbd>
33+
</span>
34+
</button>
35+
<button
36+
aria-label="Explore rooms"
37+
class="_button_i91xf_17 mx_RoomListSearch_explore _has-icon_i91xf_66 _icon-only_i91xf_59"
38+
data-kind="secondary"
39+
data-size="sm"
40+
role="button"
41+
tabindex="0"
42+
>
43+
<svg
44+
aria-hidden="true"
45+
fill="currentColor"
46+
height="20"
47+
viewBox="0 0 24 24"
48+
width="20"
49+
xmlns="http://www.w3.org/2000/svg"
50+
>
51+
<path
52+
d="M12 13a.968.968 0 0 1-.713-.287A.968.968 0 0 1 11 12c0-.283.096-.52.287-.713A.968.968 0 0 1 12 11c.283 0 .52.096.713.287.191.192.287.43.287.713s-.096.52-.287.713A.968.968 0 0 1 12 13Zm0 9a9.738 9.738 0 0 1-3.9-.788 10.099 10.099 0 0 1-3.175-2.137c-.9-.9-1.612-1.958-2.137-3.175A9.738 9.738 0 0 1 2 12a9.74 9.74 0 0 1 .788-3.9 10.099 10.099 0 0 1 2.137-3.175c.9-.9 1.958-1.612 3.175-2.137A9.738 9.738 0 0 1 12 2a9.74 9.74 0 0 1 3.9.788 10.098 10.098 0 0 1 3.175 2.137c.9.9 1.613 1.958 2.137 3.175A9.738 9.738 0 0 1 22 12a9.738 9.738 0 0 1-.788 3.9 10.098 10.098 0 0 1-2.137 3.175c-.9.9-1.958 1.613-3.175 2.137A9.738 9.738 0 0 1 12 22Zm0-2c2.233 0 4.125-.775 5.675-2.325C19.225 16.125 20 14.233 20 12c0-2.233-.775-4.125-2.325-5.675C16.125 4.775 14.233 4 12 4c-2.233 0-4.125.775-5.675 2.325C4.775 7.875 4 9.767 4 12c0 2.233.775 4.125 2.325 5.675C7.875 19.225 9.767 20 12 20Zm0 0c-2.233 0-4.125-.775-5.675-2.325C4.775 16.125 4 14.233 4 12c0-2.233.775-4.125 2.325-5.675C7.875 4.775 9.767 4 12 4c2.233 0 4.125.775 5.675 2.325C19.225 7.875 20 9.767 20 12c0 2.233-.775 4.125-2.325 5.675C16.125 19.225 14.233 20 12 20Zm1.675-5.85c.1-.05.192-.117.275-.2.083-.083.15-.175.2-.275l2.925-6.25c.083-.167.063-.313-.063-.438-.125-.125-.27-.145-.437-.062l-6.25 2.925c-.1.05-.192.117-.275.2-.083.083-.15.175-.2.275l-2.925 6.25c-.083.167-.063.313.063.438.124.124.27.145.437.062l6.25-2.925Z"
53+
/>
54+
</svg>
55+
</button>
56+
</div>
57+
</div>
58+
`;
59+
60+
exports[`<RoomListSearch /> should hide the explore button when UIComponent.ExploreRooms is disabled 1`] = `
61+
<div>
62+
<div
63+
class="mx_RoomListSearch"
64+
role="search"
65+
>
66+
<button
67+
class="_button_i91xf_17 mx_RoomListSearch_search _has-icon_i91xf_66"
68+
data-kind="secondary"
69+
data-size="sm"
70+
role="button"
71+
tabindex="0"
72+
>
73+
<svg
74+
aria-hidden="true"
75+
fill="currentColor"
76+
height="20"
77+
viewBox="0 0 24 24"
78+
width="20"
79+
xmlns="http://www.w3.org/2000/svg"
80+
>
81+
<path
82+
d="M15.05 16.463a7.5 7.5 0 1 1 1.414-1.414l3.243 3.244a1 1 0 0 1-1.414 1.414l-3.244-3.244ZM16 10.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Z"
83+
/>
84+
</svg>
85+
<span>
86+
Search
87+
<kbd>
88+
Ctrl K
89+
</kbd>
90+
</span>
91+
</button>
92+
</div>
93+
</div>
94+
`;
95+
96+
exports[`<RoomListSearch /> should hide the explore button when the active space is not MetaSpace.Home 1`] = `
97+
<div>
98+
<div
99+
class="mx_RoomListSearch"
100+
role="search"
101+
>
102+
<button
103+
class="_button_i91xf_17 mx_RoomListSearch_search _has-icon_i91xf_66"
104+
data-kind="secondary"
105+
data-size="sm"
106+
role="button"
107+
tabindex="0"
108+
>
109+
<svg
110+
aria-hidden="true"
111+
fill="currentColor"
112+
height="20"
113+
viewBox="0 0 24 24"
114+
width="20"
115+
xmlns="http://www.w3.org/2000/svg"
116+
>
117+
<path
118+
d="M15.05 16.463a7.5 7.5 0 1 1 1.414-1.414l3.243 3.244a1 1 0 0 1-1.414 1.414l-3.244-3.244ZM16 10.5a5.5 5.5 0 1 0-11 0 5.5 5.5 0 0 0 11 0Z"
119+
/>
120+
</svg>
121+
<span>
122+
Search
123+
<kbd>
124+
Ctrl K
125+
</kbd>
126+
</span>
127+
</button>
128+
</div>
129+
</div>
130+
`;

0 commit comments

Comments
 (0)