2022-10-31 17:45:02 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-10-31 17:45:02 +08:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-10-31 17:45:02 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
2024-10-15 00:11:58 +08:00
|
|
|
import { render } from "jest-matrix-react";
|
2022-10-31 17:45:02 +08:00
|
|
|
|
2024-10-15 21:57:26 +08:00
|
|
|
import { StatelessNotificationBadge } from "../../../../../../src/components/views/rooms/NotificationBadge/StatelessNotificationBadge";
|
|
|
|
import { NotificationLevel } from "../../../../../../src/stores/notifications/NotificationLevel";
|
2022-10-31 17:45:02 +08:00
|
|
|
|
|
|
|
describe("StatelessNotificationBadge", () => {
|
|
|
|
it("is highlighted when unsent", () => {
|
|
|
|
const { container } = render(
|
2024-01-15 23:25:48 +08:00
|
|
|
<StatelessNotificationBadge symbol="!" count={0} level={NotificationLevel.Unsent} />,
|
2022-10-31 17:45:02 +08:00
|
|
|
);
|
2024-01-26 00:53:41 +08:00
|
|
|
expect(container.querySelector(".mx_NotificationBadge_level_highlight")).not.toBe(null);
|
2022-10-31 17:45:02 +08:00
|
|
|
});
|
2023-09-19 19:24:35 +08:00
|
|
|
|
|
|
|
it("has knock style", () => {
|
|
|
|
const { container } = render(
|
2024-01-15 23:25:48 +08:00
|
|
|
<StatelessNotificationBadge symbol="!" count={0} level={NotificationLevel.Highlight} knocked={true} />,
|
2023-09-19 19:24:35 +08:00
|
|
|
);
|
|
|
|
expect(container.querySelector(".mx_NotificationBadge_dot")).not.toBeInTheDocument();
|
|
|
|
expect(container.querySelector(".mx_NotificationBadge_knocked")).toBeInTheDocument();
|
|
|
|
});
|
2024-03-14 22:30:47 +08:00
|
|
|
|
2024-03-19 21:28:20 +08:00
|
|
|
it("has dot style for activity", () => {
|
|
|
|
const { container } = render(
|
|
|
|
<StatelessNotificationBadge symbol={null} count={3} level={NotificationLevel.Activity} />,
|
|
|
|
);
|
|
|
|
expect(container.querySelector(".mx_NotificationBadge_dot")).toBeInTheDocument();
|
|
|
|
});
|
|
|
|
|
2024-03-14 22:30:47 +08:00
|
|
|
it("has badge style for notification", () => {
|
|
|
|
const { container } = render(
|
|
|
|
<StatelessNotificationBadge symbol={null} count={3} level={NotificationLevel.Notification} />,
|
|
|
|
);
|
|
|
|
expect(container.querySelector(".mx_NotificationBadge_dot")).not.toBeInTheDocument();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("has dot style for notification when forced", () => {
|
|
|
|
const { container } = render(
|
|
|
|
<StatelessNotificationBadge
|
|
|
|
symbol={null}
|
|
|
|
count={3}
|
|
|
|
level={NotificationLevel.Notification}
|
|
|
|
forceDot={true}
|
|
|
|
/>,
|
|
|
|
);
|
|
|
|
expect(container.querySelector(".mx_NotificationBadge_dot")).toBeInTheDocument();
|
|
|
|
});
|
2022-10-31 17:45:02 +08:00
|
|
|
});
|