2022-06-15 22:14:05 +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.
|
|
|
|
*/
|
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
import React from "react";
|
2022-07-20 15:26:25 +08:00
|
|
|
import { mocked } from "jest-mock";
|
|
|
|
import { IProtocol, IPublicRoomsChunkRoom, MatrixClient, Room, RoomMember } from "matrix-js-sdk/src/matrix";
|
2022-06-15 22:14:05 +08:00
|
|
|
import sanitizeHtml from "sanitize-html";
|
2023-02-21 16:06:43 +08:00
|
|
|
import { fireEvent, render, screen } from "@testing-library/react";
|
2022-06-15 22:14:05 +08:00
|
|
|
|
|
|
|
import SpotlightDialog, { Filter } from "../../../../src/components/views/dialogs/spotlight/SpotlightDialog";
|
|
|
|
import { MatrixClientPeg } from "../../../../src/MatrixClientPeg";
|
2022-07-20 15:26:25 +08:00
|
|
|
import { LocalRoom, LOCAL_ROOM_ID_PREFIX } from "../../../../src/models/LocalRoom";
|
2022-08-04 14:19:52 +08:00
|
|
|
import { DirectoryMember, startDmOnFirstMessage } from "../../../../src/utils/direct-messages";
|
2022-07-20 15:26:25 +08:00
|
|
|
import DMRoomMap from "../../../../src/utils/DMRoomMap";
|
2023-02-21 16:06:43 +08:00
|
|
|
import { flushPromisesWithFakeTimers, mkRoom, stubClient } from "../../../test-utils";
|
2022-09-22 22:08:14 +08:00
|
|
|
import { shouldShowFeedback } from "../../../../src/utils/Feedback";
|
2023-02-03 22:47:07 +08:00
|
|
|
import SettingsStore from "../../../../src/settings/SettingsStore";
|
|
|
|
import { SettingLevel } from "../../../../src/settings/SettingLevel";
|
2022-09-22 22:08:14 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
jest.useFakeTimers();
|
|
|
|
|
2022-09-22 22:08:14 +08:00
|
|
|
jest.mock("../../../../src/utils/Feedback");
|
2022-07-20 15:26:25 +08:00
|
|
|
|
|
|
|
jest.mock("../../../../src/utils/direct-messages", () => ({
|
|
|
|
// @ts-ignore
|
|
|
|
...jest.requireActual("../../../../src/utils/direct-messages"),
|
|
|
|
startDmOnFirstMessage: jest.fn(),
|
|
|
|
}));
|
2022-06-15 22:14:05 +08:00
|
|
|
|
|
|
|
interface IUserChunkMember {
|
|
|
|
user_id: string;
|
|
|
|
display_name?: string;
|
|
|
|
avatar_url?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface MockClientOptions {
|
|
|
|
userId?: string;
|
|
|
|
homeserver?: string;
|
|
|
|
thirdPartyProtocols?: Record<string, IProtocol>;
|
|
|
|
rooms?: IPublicRoomsChunkRoom[];
|
|
|
|
members?: RoomMember[];
|
|
|
|
users?: IUserChunkMember[];
|
|
|
|
}
|
|
|
|
|
2022-12-12 19:24:14 +08:00
|
|
|
function mockClient({
|
|
|
|
userId = "testuser",
|
|
|
|
homeserver = "example.tld",
|
|
|
|
thirdPartyProtocols = {},
|
|
|
|
rooms = [],
|
|
|
|
members = [],
|
|
|
|
users = [],
|
|
|
|
}: MockClientOptions = {}): MatrixClient {
|
2022-06-15 22:14:05 +08:00
|
|
|
stubClient();
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
MatrixClientPeg.getHomeserverName = jest.fn(() => homeserver);
|
|
|
|
cli.getUserId = jest.fn(() => userId);
|
|
|
|
cli.getHomeserverUrl = jest.fn(() => homeserver);
|
|
|
|
cli.getThirdpartyProtocols = jest.fn(() => Promise.resolve(thirdPartyProtocols));
|
|
|
|
cli.publicRooms = jest.fn((options) => {
|
|
|
|
const searchTerm = options?.filter?.generic_search_term?.toLowerCase();
|
2022-12-12 19:24:14 +08:00
|
|
|
const chunk = rooms.filter(
|
|
|
|
(it) =>
|
|
|
|
!searchTerm ||
|
|
|
|
it.room_id.toLowerCase().includes(searchTerm) ||
|
|
|
|
it.name?.toLowerCase().includes(searchTerm) ||
|
2023-02-21 16:06:43 +08:00
|
|
|
sanitizeHtml(it?.topic || "", { allowedTags: [] })
|
|
|
|
.toLowerCase()
|
|
|
|
.includes(searchTerm) ||
|
2022-12-12 19:24:14 +08:00
|
|
|
it.canonical_alias?.toLowerCase().includes(searchTerm) ||
|
|
|
|
it.aliases?.find((alias) => alias.toLowerCase().includes(searchTerm)),
|
|
|
|
);
|
2022-06-15 22:14:05 +08:00
|
|
|
return Promise.resolve({
|
|
|
|
chunk,
|
|
|
|
total_room_count_estimate: chunk.length,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
cli.searchUserDirectory = jest.fn(({ term, limit }) => {
|
|
|
|
const searchTerm = term?.toLowerCase();
|
2022-12-12 19:24:14 +08:00
|
|
|
const results = users.filter(
|
|
|
|
(it) =>
|
|
|
|
!searchTerm ||
|
|
|
|
it.user_id.toLowerCase().includes(searchTerm) ||
|
2023-02-15 21:36:22 +08:00
|
|
|
it.display_name?.toLowerCase().includes(searchTerm),
|
2022-12-12 19:24:14 +08:00
|
|
|
);
|
2022-06-15 22:14:05 +08:00
|
|
|
return Promise.resolve({
|
|
|
|
results: results.slice(0, limit ?? +Infinity),
|
|
|
|
limited: limit && limit < results.length,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
cli.getProfileInfo = jest.fn(async (userId) => {
|
2022-12-12 19:24:14 +08:00
|
|
|
const member = members.find((it) => it.userId === userId);
|
2022-06-15 22:14:05 +08:00
|
|
|
if (member) {
|
|
|
|
return Promise.resolve({
|
|
|
|
displayname: member.rawDisplayName,
|
|
|
|
avatar_url: member.getMxcAvatarUrl(),
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
return Promise.reject();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return cli;
|
|
|
|
}
|
|
|
|
|
|
|
|
describe("Spotlight Dialog", () => {
|
|
|
|
const testPerson: IUserChunkMember = {
|
|
|
|
user_id: "@janedoe:matrix.org",
|
|
|
|
display_name: "Jane Doe",
|
|
|
|
avatar_url: undefined,
|
|
|
|
};
|
|
|
|
|
|
|
|
const testPublicRoom: IPublicRoomsChunkRoom = {
|
|
|
|
room_id: "@room247:matrix.org",
|
|
|
|
name: "Room #247",
|
|
|
|
topic: "We hope you'll have a <b>shining</b> experience!",
|
|
|
|
world_readable: false,
|
|
|
|
num_joined_members: 1,
|
|
|
|
guest_can_join: false,
|
|
|
|
};
|
|
|
|
|
2022-07-20 15:26:25 +08:00
|
|
|
let testRoom: Room;
|
|
|
|
let testLocalRoom: LocalRoom;
|
|
|
|
|
|
|
|
let mockedClient: MatrixClient;
|
|
|
|
|
2022-06-15 22:14:05 +08:00
|
|
|
beforeEach(() => {
|
2022-07-20 15:26:25 +08:00
|
|
|
mockedClient = mockClient({ rooms: [testPublicRoom], users: [testPerson] });
|
|
|
|
testRoom = mkRoom(mockedClient, "!test23:example.com");
|
|
|
|
mocked(testRoom.getMyMembership).mockReturnValue("join");
|
2023-02-15 21:36:22 +08:00
|
|
|
testLocalRoom = new LocalRoom(LOCAL_ROOM_ID_PREFIX + "test23", mockedClient, mockedClient.getUserId()!);
|
2022-07-20 15:26:25 +08:00
|
|
|
testLocalRoom.updateMyMembership("join");
|
|
|
|
mocked(mockedClient.getVisibleRooms).mockReturnValue([testRoom, testLocalRoom]);
|
|
|
|
|
|
|
|
jest.spyOn(DMRoomMap, "shared").mockReturnValue({
|
|
|
|
getUserIdForRoomId: jest.fn(),
|
|
|
|
} as unknown as DMRoomMap);
|
2022-06-15 22:14:05 +08:00
|
|
|
});
|
2022-09-22 22:08:14 +08:00
|
|
|
|
2022-06-15 22:14:05 +08:00
|
|
|
describe("should apply filters supplied via props", () => {
|
|
|
|
it("without filter", async () => {
|
2023-02-21 16:06:43 +08:00
|
|
|
render(<SpotlightDialog onFinished={() => null} />);
|
2022-06-15 22:14:05 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
const filterChip = document.querySelector("div.mx_SpotlightDialog_filter");
|
|
|
|
expect(filterChip).not.toBeInTheDocument();
|
2022-06-15 22:14:05 +08:00
|
|
|
});
|
2023-02-21 16:06:43 +08:00
|
|
|
|
2022-06-15 22:14:05 +08:00
|
|
|
it("with public room filter", async () => {
|
2023-02-21 16:06:43 +08:00
|
|
|
render(<SpotlightDialog initialFilter={Filter.PublicRooms} onFinished={() => null} />);
|
2022-06-15 22:14:05 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
// search is debounced
|
|
|
|
jest.advanceTimersByTime(200);
|
|
|
|
await flushPromisesWithFakeTimers();
|
2022-06-15 22:14:05 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
const filterChip = document.querySelector("div.mx_SpotlightDialog_filter")!;
|
|
|
|
expect(filterChip).toBeInTheDocument();
|
|
|
|
expect(filterChip.innerHTML).toContain("Public rooms");
|
2022-06-15 22:14:05 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
const content = document.querySelector("#mx_SpotlightDialog_content")!;
|
|
|
|
const options = content.querySelectorAll("div.mx_SpotlightDialog_option");
|
|
|
|
expect(options.length).toBe(1);
|
|
|
|
expect(options[0].innerHTML).toContain(testPublicRoom.name);
|
2022-06-15 22:14:05 +08:00
|
|
|
});
|
2023-02-21 16:06:43 +08:00
|
|
|
|
2022-06-15 22:14:05 +08:00
|
|
|
it("with people filter", async () => {
|
2023-02-21 16:06:43 +08:00
|
|
|
render(
|
2022-06-15 22:14:05 +08:00
|
|
|
<SpotlightDialog
|
|
|
|
initialFilter={Filter.People}
|
|
|
|
initialText={testPerson.display_name}
|
2022-12-12 19:24:14 +08:00
|
|
|
onFinished={() => null}
|
|
|
|
/>,
|
2022-06-15 22:14:05 +08:00
|
|
|
);
|
2023-02-21 16:06:43 +08:00
|
|
|
// search is debounced
|
|
|
|
jest.advanceTimersByTime(200);
|
|
|
|
await flushPromisesWithFakeTimers();
|
2022-06-15 22:14:05 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
const filterChip = document.querySelector("div.mx_SpotlightDialog_filter")!;
|
|
|
|
expect(filterChip).toBeInTheDocument();
|
|
|
|
expect(filterChip.innerHTML).toContain("People");
|
2022-06-15 22:14:05 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
const content = document.querySelector("#mx_SpotlightDialog_content")!;
|
|
|
|
const options = content.querySelectorAll("div.mx_SpotlightDialog_option");
|
2022-06-15 22:14:05 +08:00
|
|
|
expect(options.length).toBeGreaterThanOrEqual(1);
|
2023-02-21 16:06:43 +08:00
|
|
|
expect(options[0]!.innerHTML).toContain(testPerson.display_name);
|
2022-06-15 22:14:05 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-02-03 22:47:07 +08:00
|
|
|
describe("when MSC3946 dynamic room predecessors is enabled", () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
SettingsStore.setValue("feature_dynamic_room_predecessors", null, SettingLevel.DEVICE, true);
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
SettingsStore.setValue("feature_dynamic_room_predecessors", null, SettingLevel.DEVICE, null);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should call getVisibleRooms with MSC3946 dynamic room predecessors", async () => {
|
2023-02-21 16:06:43 +08:00
|
|
|
render(<SpotlightDialog onFinished={() => null} />);
|
|
|
|
jest.advanceTimersByTime(200);
|
|
|
|
await flushPromisesWithFakeTimers();
|
2023-02-03 22:47:07 +08:00
|
|
|
expect(mockedClient.getVisibleRooms).toHaveBeenCalledWith(true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-06-15 22:14:05 +08:00
|
|
|
describe("should apply manually selected filter", () => {
|
|
|
|
it("with public rooms", async () => {
|
2023-02-21 16:06:43 +08:00
|
|
|
render(<SpotlightDialog onFinished={() => null} />);
|
|
|
|
jest.advanceTimersByTime(200);
|
|
|
|
await flushPromisesWithFakeTimers();
|
|
|
|
|
|
|
|
fireEvent.click(screen.getByText("Public rooms"));
|
|
|
|
// wrapper.find("#mx_SpotlightDialog_button_explorePublicRooms").first().simulate("click");
|
|
|
|
// search is debounced
|
|
|
|
jest.advanceTimersByTime(200);
|
|
|
|
await flushPromisesWithFakeTimers();
|
|
|
|
|
|
|
|
const filterChip = document.querySelector("div.mx_SpotlightDialog_filter")!;
|
|
|
|
expect(filterChip).toBeInTheDocument();
|
|
|
|
expect(filterChip.innerHTML).toContain("Public rooms");
|
|
|
|
|
|
|
|
const content = document.querySelector("#mx_SpotlightDialog_content")!;
|
|
|
|
const options = content.querySelectorAll("div.mx_SpotlightDialog_option");
|
2022-06-15 22:14:05 +08:00
|
|
|
expect(options.length).toBe(1);
|
2023-02-21 16:06:43 +08:00
|
|
|
expect(options[0]!.innerHTML).toContain(testPublicRoom.name);
|
2022-06-15 22:14:05 +08:00
|
|
|
|
2023-02-03 22:47:07 +08:00
|
|
|
// assert that getVisibleRooms is called without MSC3946 dynamic room predecessors
|
|
|
|
expect(mockedClient.getVisibleRooms).toHaveBeenCalledWith(false);
|
2022-06-15 22:14:05 +08:00
|
|
|
});
|
|
|
|
it("with people", async () => {
|
2023-02-21 16:06:43 +08:00
|
|
|
render(<SpotlightDialog initialText={testPerson.display_name} onFinished={() => null} />);
|
|
|
|
jest.advanceTimersByTime(200);
|
|
|
|
await flushPromisesWithFakeTimers();
|
2022-06-15 22:14:05 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
fireEvent.click(screen.getByText("People"));
|
2022-06-15 22:14:05 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
// search is debounced
|
|
|
|
jest.advanceTimersByTime(200);
|
|
|
|
await flushPromisesWithFakeTimers();
|
2022-06-15 22:14:05 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
const filterChip = document.querySelector("div.mx_SpotlightDialog_filter")!;
|
|
|
|
expect(filterChip).toBeInTheDocument();
|
|
|
|
expect(filterChip.innerHTML).toContain("People");
|
|
|
|
|
|
|
|
const content = document.querySelector("#mx_SpotlightDialog_content")!;
|
|
|
|
const options = content.querySelectorAll("div.mx_SpotlightDialog_option");
|
|
|
|
expect(options.length).toBeGreaterThanOrEqual(1);
|
|
|
|
expect(options[0]!.innerHTML).toContain(testPerson.display_name);
|
2022-06-15 22:14:05 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("should allow clearing filter manually", () => {
|
|
|
|
it("with public room filter", async () => {
|
2023-02-21 16:06:43 +08:00
|
|
|
render(<SpotlightDialog initialFilter={Filter.PublicRooms} onFinished={() => null} />);
|
|
|
|
// search is debounced
|
|
|
|
jest.advanceTimersByTime(200);
|
|
|
|
await flushPromisesWithFakeTimers();
|
2022-06-15 22:14:05 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
let filterChip = document.querySelector("div.mx_SpotlightDialog_filter")!;
|
|
|
|
expect(filterChip).toBeInTheDocument();
|
|
|
|
expect(filterChip.innerHTML).toContain("Public rooms");
|
2022-06-15 22:14:05 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
fireEvent.click(filterChip.querySelector("div.mx_SpotlightDialog_filter--close")!);
|
|
|
|
jest.advanceTimersByTime(200);
|
|
|
|
await flushPromisesWithFakeTimers();
|
2022-06-15 22:14:05 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
filterChip = document.querySelector("div.mx_SpotlightDialog_filter")!;
|
|
|
|
expect(filterChip).not.toBeInTheDocument();
|
2022-06-15 22:14:05 +08:00
|
|
|
});
|
|
|
|
it("with people filter", async () => {
|
2023-02-21 16:06:43 +08:00
|
|
|
render(
|
2022-06-15 22:14:05 +08:00
|
|
|
<SpotlightDialog
|
|
|
|
initialFilter={Filter.People}
|
|
|
|
initialText={testPerson.display_name}
|
2022-12-12 19:24:14 +08:00
|
|
|
onFinished={() => null}
|
|
|
|
/>,
|
2022-06-15 22:14:05 +08:00
|
|
|
);
|
2023-02-21 16:06:43 +08:00
|
|
|
// search is debounced
|
|
|
|
jest.advanceTimersByTime(200);
|
|
|
|
await flushPromisesWithFakeTimers();
|
2022-06-15 22:14:05 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
let filterChip = document.querySelector("div.mx_SpotlightDialog_filter");
|
|
|
|
expect(filterChip).toBeInTheDocument();
|
|
|
|
expect(filterChip!.innerHTML).toContain("People");
|
2022-06-15 22:14:05 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
fireEvent.click(filterChip!.querySelector("div.mx_SpotlightDialog_filter--close")!);
|
|
|
|
jest.advanceTimersByTime(1);
|
|
|
|
await flushPromisesWithFakeTimers();
|
2022-06-15 22:14:05 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
filterChip = document.querySelector("div.mx_SpotlightDialog_filter");
|
|
|
|
expect(filterChip).not.toBeInTheDocument();
|
2022-06-15 22:14:05 +08:00
|
|
|
});
|
|
|
|
});
|
2022-07-20 15:26:25 +08:00
|
|
|
|
|
|
|
describe("searching for rooms", () => {
|
2023-02-21 16:06:43 +08:00
|
|
|
let options: NodeListOf<Element>;
|
2022-07-20 15:26:25 +08:00
|
|
|
|
|
|
|
beforeAll(async () => {
|
2023-02-21 16:06:43 +08:00
|
|
|
render(<SpotlightDialog initialText="test23" onFinished={() => null} />);
|
|
|
|
// search is debounced
|
|
|
|
jest.advanceTimersByTime(200);
|
|
|
|
await flushPromisesWithFakeTimers();
|
2022-07-20 15:26:25 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
const content = document.querySelector("#mx_SpotlightDialog_content")!;
|
|
|
|
options = content.querySelectorAll("div.mx_SpotlightDialog_option");
|
2022-07-20 15:26:25 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("should find Rooms", () => {
|
|
|
|
expect(options.length).toBe(3);
|
2023-02-21 16:06:43 +08:00
|
|
|
expect(options[0]!.innerHTML).toContain(testRoom.name);
|
2022-07-20 15:26:25 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("should not find LocalRooms", () => {
|
|
|
|
expect(options.length).toBe(3);
|
2023-02-21 16:06:43 +08:00
|
|
|
expect(options[0]!.innerHTML).not.toContain(testLocalRoom.name);
|
2022-07-20 15:26:25 +08:00
|
|
|
});
|
|
|
|
});
|
2022-08-04 14:19:52 +08:00
|
|
|
|
|
|
|
it("should start a DM when clicking a person", async () => {
|
2023-02-21 16:06:43 +08:00
|
|
|
render(
|
2022-08-04 14:19:52 +08:00
|
|
|
<SpotlightDialog
|
|
|
|
initialFilter={Filter.People}
|
|
|
|
initialText={testPerson.display_name}
|
2022-12-12 19:24:14 +08:00
|
|
|
onFinished={() => null}
|
|
|
|
/>,
|
2022-08-04 14:19:52 +08:00
|
|
|
);
|
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
jest.advanceTimersByTime(200);
|
|
|
|
await flushPromisesWithFakeTimers();
|
2022-08-04 14:19:52 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
const options = document.querySelectorAll("div.mx_SpotlightDialog_option");
|
2022-08-04 14:19:52 +08:00
|
|
|
expect(options.length).toBeGreaterThanOrEqual(1);
|
2023-02-21 16:06:43 +08:00
|
|
|
expect(options[0]!.innerHTML).toContain(testPerson.display_name);
|
2022-08-04 14:19:52 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
fireEvent.click(options[0]!);
|
2022-08-04 14:19:52 +08:00
|
|
|
expect(startDmOnFirstMessage).toHaveBeenCalledWith(mockedClient, [new DirectoryMember(testPerson)]);
|
|
|
|
});
|
2022-09-22 22:08:14 +08:00
|
|
|
|
|
|
|
describe("Feedback prompt", () => {
|
|
|
|
it("should show feedback prompt if feedback is enabled", async () => {
|
|
|
|
mocked(shouldShowFeedback).mockReturnValue(true);
|
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
render(<SpotlightDialog initialText="test23" onFinished={() => null} />);
|
|
|
|
jest.advanceTimersByTime(200);
|
|
|
|
await flushPromisesWithFakeTimers();
|
2022-09-22 22:08:14 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
expect(screen.getByText("give feedback")).toBeInTheDocument();
|
2022-09-22 22:08:14 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("should hide feedback prompt if feedback is disabled", async () => {
|
|
|
|
mocked(shouldShowFeedback).mockReturnValue(false);
|
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
render(<SpotlightDialog initialText="test23" onFinished={() => null} />);
|
|
|
|
jest.advanceTimersByTime(200);
|
|
|
|
await flushPromisesWithFakeTimers();
|
2022-09-22 22:08:14 +08:00
|
|
|
|
2023-02-21 16:06:43 +08:00
|
|
|
expect(screen.queryByText("give feedback")).not.toBeInTheDocument();
|
2022-09-22 22:08:14 +08:00
|
|
|
});
|
|
|
|
});
|
2022-06-15 22:14:05 +08:00
|
|
|
});
|