forked from rjsf-team/react-jsonschema-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArrayFieldTemplate_test.js
172 lines (142 loc) · 4.73 KB
/
ArrayFieldTemplate_test.js
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
import React, { PureComponent } from "react";
import { expect } from "chai";
import { createFormComponent, createSandbox } from "./test_utils";
describe("ArrayFieldTemplate", () => {
let sandbox;
const formData = ["one", "two", "three"];
beforeEach(() => {
sandbox = createSandbox();
});
afterEach(() => {
sandbox.restore();
});
describe("Custom ArrayFieldTemplate of string array", () => {
function ArrayFieldTemplate(props) {
return (
<div className={props.uiSchema.classNames}>
{props.canAdd && <button className="custom-array-add" />}
{props.items.map(element => {
return (
<div className="custom-array-item" key={element.index}>
{element.hasMoveUp && (
<button className="custom-array-item-move-up" />
)}
{element.hasMoveDown && (
<button className="custom-array-item-move-down" />
)}
{element.children}
</div>
);
})}
</div>
);
}
describe("Stateful ArrayFieldTemplate", () => {
class ArrayFieldTemplate extends PureComponent {
render() {
return <div>{this.props.items.map(item => item.element)}</div>;
}
}
it("should render a stateful custom component", () => {
const { node } = createFormComponent({
schema: { type: "array", items: { type: "string" } },
formData,
ArrayFieldTemplate,
});
expect(node.querySelectorAll(".field-array div")).to.have.length.of(3);
});
});
describe("not fixed items", () => {
const schema = {
type: "array",
title: "my list",
description: "my description",
items: { type: "string" },
};
const uiSchema = {
classNames: "custom-array",
};
let node;
beforeEach(() => {
node = createFormComponent({
ArrayFieldTemplate,
formData,
schema,
uiSchema,
}).node;
});
it("should render one root element for the array", () => {
expect(node.querySelectorAll(".custom-array")).to.have.length.of(1);
});
it("should render one add button", () => {
expect(node.querySelectorAll(".custom-array-add")).to.have.length.of(1);
});
it("should render one child for each array item", () => {
expect(node.querySelectorAll(".custom-array-item")).to.have.length.of(
formData.length
);
});
it("should render text input for each array item", () => {
expect(
node.querySelectorAll(".custom-array-item .field input[type=text]")
).to.have.length.of(formData.length);
});
it("should render move up button for all but one array items", () => {
expect(
node.querySelectorAll(".custom-array-item-move-up")
).to.have.length.of(formData.length - 1);
});
it("should render move down button for all but one array items", () => {
expect(
node.querySelectorAll(".custom-array-item-move-down")
).to.have.length.of(formData.length - 1);
});
});
describe("fixed items", () => {
const schema = {
type: "array",
title: "my list",
description: "my description",
items: [{ type: "string" }, { type: "string" }, { type: "string" }],
};
const uiSchema = {
classNames: "custom-array",
};
let node;
beforeEach(() => {
node = createFormComponent({
ArrayFieldTemplate,
formData,
schema,
uiSchema,
}).node;
});
it("should render one root element for the array", () => {
expect(node.querySelectorAll(".custom-array")).to.have.length.of(1);
});
it("should not render an add button", () => {
expect(node.querySelectorAll(".custom-array-add")).to.have.length.of(0);
});
it("should render one child for each array item", () => {
expect(node.querySelectorAll(".custom-array-item")).to.have.length.of(
formData.length
);
});
it("should render text input for each array item", () => {
expect(
node.querySelectorAll(".custom-array-item .field input[type=text]")
).to.have.length.of(formData.length);
});
it("should not render any move up buttons", () => {
expect(
node.querySelectorAll(".custom-array-item-move-up")
).to.have.length.of(0);
});
it("should not render any move down buttons", () => {
expect(
node.querySelectorAll(".custom-array-item-move-down")
).to.have.length.of(0);
});
});
});
});