TypeScriptを使用してReactアプリを作成します。コンポーネントにはmaterial-uiを、ユニットテストにはreact-testing-libraryを使用します。
Material-uiのGridコンポーネントのラッパーを書いているので、常にアイテムがあります。
import Grid from "@material-ui/core/Grid";
import withStyles, { WithStyles } from "@material-ui/core/styles/withStyles";
import React, { PureComponent } from "react";
import styles from "./styles";
export interface OwnProps {
className?: string;
}
export interface Props extends WithStyles<typeof styles>, OwnProps {}
export interface DefaultProps {
className: string;
}
export class GridItem extends PureComponent<Props & DefaultProps> {
static defaultProps: DefaultProps = {
className: ""
};
render() {
const { classes, children, className, ...rest } = this.props;
return (
<Grid
data-testid="grid-item"
item={true}
{...rest}
className={classes.grid + " " + className}
>
{children}
</Grid>
);
}
}
export default withStyles(styles)(GridItem);
item={true}
であるかどうかを確認する単体テストを作成します。ヘルパーライブラリjest-domのtoHaveAttribute
を次のように使用しようとしました。
import "jest-dom/extend-expect";
import React from "react";
import { cleanup, render } from "react-testing-library";
import GridItem, { OwnProps } from "./GridItem";
afterEach(cleanup);
const createTestProps = (props?: object): OwnProps => ({
...props
});
describe("Parallax", () => {
const props = createTestProps();
const { getByTestId } = render(<GridItem {...props} />);
describe("rendering", () => {
test("it renders the image", () => {
expect(getByTestId("grid-item")).toHaveAttribute("item", "true");
});
});
});
しかし、このテストは次のように失敗します。
● GridItem › rendering › it renders the image
expect(element).toHaveAttribute("item", "true") // element.getAttribute("item") === "true"
Expected the element to have attribute:
item="true"
Received:
null
14 | describe("rendering", () => {
15 | test("it renders the image", () => {
> 16 | expect(getByTestId("grid-item")).toHaveAttribute("item", "true");
| ^
17 | });
18 | });
19 | });
at Object.toHaveAttribute (src/components/Grid/GridItem/GridItem.test.tsx:16:40)
Test Suites: 1 failed, 3 passed, 4 total
Tests: 1 failed, 3 passed, 4 total
Snapshots: 0 total
Time: 1.762s, estimated 2s
Ran all test suites related to changed files.
要素に特定の属性があるかどうかをテストするにはどうすればよいですか?
jest-dom
toHaveAttribute
アサーションはitem
attributeをアサートし、テストはitem
prop。
item
propは、必ずしもitem
属性になりません。また、これは非標準の属性であるため、おそらくそうではありません。
react-testing-library
は、機能テストを伝播し、結果のDOMをアサートします。これには、コンポーネントの動作方法を認識する必要があります。ご覧のように、 here 、item
propsは、グリッド要素にクラスを追加します。
テスト済みのユニットを除くすべてのユニットは、ユニットテストでモックする必要があります。例:
...
import GridItem, { OwnProps } from "./GridItem";
jest.mock("@material-ui/core/Grid", () => ({
default: props => <div data-testid="grid-item" className={props.item && item}/>
}));
その後、次のようにアサートできます。
expect(getByTestId("grid-item")).toHaveClass("item");