forked from dmm-com/pagoda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAttributesFields.test.tsx
94 lines (77 loc) · 2.43 KB
/
AttributesFields.test.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/**
* @jest-environment jsdom
*/
import { zodResolver } from "@hookform/resolvers/zod";
import {
act,
fireEvent,
render,
renderHook,
screen,
} from "@testing-library/react";
import React from "react";
import { useForm } from "react-hook-form";
import { schema } from "../../entry/entryForm/EntryFormSchema";
import { AttributesFields } from "./AttributesFields";
import { Schema } from "./EntityFormSchema";
import { TestWrapper } from "TestWrapper";
describe("AttributesFields", () => {
const defaultValues: Schema = {
name: "hoge",
note: "fuga",
isToplevel: false,
webhooks: [],
attrs: [],
};
test("should provide attributes fields editor", async () => {
const {
result: {
current: { control, getValues, setValue },
},
} = renderHook(() =>
useForm<Schema>({
resolver: zodResolver(schema),
mode: "onBlur",
defaultValues,
})
);
render(
<AttributesFields
control={control}
setValue={setValue}
referralEntities={[]}
/>,
{ wrapper: TestWrapper }
);
expect(screen.queryAllByPlaceholderText("属性名")).toHaveLength(0);
// add first attribute
await act(async () => {
screen.getByRole("button").click();
});
expect(screen.queryAllByPlaceholderText("属性名")).toHaveLength(1);
// edit first attribute
await act(async () => {
fireEvent.change(screen.getByPlaceholderText("属性名"), {
target: { value: "attr1" },
});
});
expect(screen.getByPlaceholderText("属性名")).toHaveValue("attr1");
expect(getValues("attrs.0.name")).toEqual("attr1");
// add second attribute
await act(async () => {
// now there is 1 attribute, and each webhook has 5 buttons (note, up, down, delete, add)
// click the add button of the first webhook
screen.getAllByRole("button")[4].click();
});
expect(screen.queryAllByPlaceholderText("属性名")).toHaveLength(2);
// delete first attribute
await act(async () => {
// now there is 1 attribute, and each webhook has 5 buttons (note, up, down, delete, add)
// click the delete button of the first webhook
screen.getAllByRole("button")[3].click();
});
expect(screen.queryAllByPlaceholderText("属性名")).toHaveLength(1);
expect(screen.getByPlaceholderText("属性名")).toHaveValue("");
expect(getValues("attrs.0.name")).toEqual("");
});
});