2021-12-09 20:04:06 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-12-09 20:04:06 +08:00
|
|
|
Copyright 2021 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.
|
2021-12-09 20:04:06 +08:00
|
|
|
*/
|
|
|
|
|
2024-10-15 00:11:58 +08:00
|
|
|
import { render } from "jest-matrix-react";
|
2021-12-09 20:04:06 +08:00
|
|
|
import React from "react";
|
|
|
|
|
2024-10-15 21:57:26 +08:00
|
|
|
import ExternalLink from "../../../../../src/components/views/elements/ExternalLink";
|
2021-12-09 20:04:06 +08:00
|
|
|
|
|
|
|
describe("<ExternalLink />", () => {
|
|
|
|
const defaultProps = {
|
|
|
|
"href": "test.com",
|
|
|
|
"onClick": jest.fn(),
|
|
|
|
"className": "myCustomClass",
|
2023-02-22 18:52:55 +08:00
|
|
|
"data-testid": "test",
|
2021-12-09 20:04:06 +08:00
|
|
|
};
|
|
|
|
const getComponent = (props = {}) => {
|
2023-02-22 18:52:55 +08:00
|
|
|
return render(<ExternalLink {...defaultProps} {...props} />);
|
2021-12-09 20:04:06 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
it("renders link correctly", () => {
|
|
|
|
const children = (
|
|
|
|
<span>
|
|
|
|
react element <b>children</b>
|
|
|
|
</span>
|
|
|
|
);
|
2023-02-22 18:52:55 +08:00
|
|
|
expect(getComponent({ children, target: "_self", rel: "noopener" }).asFragment()).toMatchSnapshot();
|
2021-12-09 20:04:06 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("defaults target and rel", () => {
|
|
|
|
const children = "test";
|
2023-02-22 18:52:55 +08:00
|
|
|
const { getByTestId } = getComponent({ children });
|
|
|
|
const container = getByTestId("test");
|
|
|
|
expect(container.getAttribute("rel")).toEqual("noreferrer noopener");
|
|
|
|
expect(container.getAttribute("target")).toEqual("_blank");
|
2021-12-09 20:04:06 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("renders plain text link correctly", () => {
|
|
|
|
const children = "test";
|
2023-02-22 18:52:55 +08:00
|
|
|
expect(getComponent({ children }).asFragment()).toMatchSnapshot();
|
2021-12-09 20:04:06 +08:00
|
|
|
});
|
|
|
|
});
|