-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathdom.test.ts
More file actions
290 lines (239 loc) · 7.93 KB
/
dom.test.ts
File metadata and controls
290 lines (239 loc) · 7.93 KB
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
// @vitest-environment jsdom
import { describe, expect, it } from "vitest";
import { extractPairs, form2js, formToObject } from "../src/index";
describe("extractPairs", () => {
it("extracts input/select values", () => {
document.body.innerHTML = `
<form id="testForm">
<input type="text" name="person.name.first" value="John" />
<input type="text" name="person.name.last" value="Doe" />
<select name="person.colors[]" multiple>
<option value="red" selected>red</option>
<option value="blue">blue</option>
<option value="green" selected>green</option>
</select>
</form>
`;
const form = document.getElementById("testForm") as HTMLFormElement;
const result = extractPairs(form);
expect(result).toContainEqual({ key: "person.name.first", value: "John" });
expect(result).toContainEqual({ key: "person.name.last", value: "Doe" });
expect(result).toContainEqual({ key: "person.colors", value: ["red", "green"] });
});
it("extracts nested form controls inside arbitrary container markup", () => {
document.body.innerHTML = `
<form id="testForm">
<div class="wrapper">
<section>
<input type="text" name="person.name.first" value="John" />
</section>
</div>
</form>
`;
const form = document.getElementById("testForm") as HTMLFormElement;
const result = extractPairs(form);
expect(result).toEqual([{ key: "person.name.first", value: "John" }]);
});
it("supports callback extraction", () => {
document.body.innerHTML = `
<form id="testForm">
<div id="person.callbackTest">hello world</div>
</form>
`;
const form = document.getElementById("testForm") as HTMLFormElement;
const result = extractPairs(form, {
nodeCallback(node) {
if (node instanceof HTMLDivElement && node.id === "person.callbackTest") {
return { name: node.id, value: node.textContent };
}
return false;
}
});
expect(result).toEqual([{ key: "person.callbackTest", value: "hello world" }]);
});
it("returns empty pairs when the root cannot be resolved", () => {
expect(extractPairs("missing-form")).toEqual([]);
});
});
describe("formToObject", () => {
it("keeps legacy checkbox and radio coercion quirks", () => {
document.body.innerHTML = `
<form id="testForm">
<input type="checkbox" name="person.agree" value="true" />
<input type="radio" name="person.optOut" value="false" checked />
</form>
`;
const form = document.getElementById("testForm") as HTMLFormElement;
const result = formToObject(form);
expect(result).toEqual({
person: {
agree: false,
optOut: false
}
});
});
it("does not coerce an empty checked radio option to false when true and false siblings exist", () => {
document.body.innerHTML = `
<form id="testForm">
<input type="radio" name="state" value="" checked />
<input type="radio" name="state" value="true" />
<input type="radio" name="state" value="false" />
</form>
`;
const form = document.getElementById("testForm") as HTMLFormElement;
const result = formToObject(form, { skipEmpty: false });
expect(result).toEqual({
state: ""
});
});
it("supports id fallback and disabled field extraction", () => {
document.body.innerHTML = `
<form id="testForm">
<input id="person.name.first" name="" value="John" />
<input id="person.name.last" disabled value="Doe" />
</form>
`;
const form = document.getElementById("testForm") as HTMLFormElement;
const withoutDisabled = formToObject(form, {
useIdIfEmptyName: true
});
expect(withoutDisabled).toEqual({
person: {
name: {
first: "John"
}
}
});
const withDisabled = formToObject(form, {
useIdIfEmptyName: true,
getDisabled: true
});
expect(withDisabled).toEqual({
person: {
name: {
first: "John",
last: "Doe"
}
}
});
});
it("respects disabled fieldset semantics", () => {
document.body.innerHTML = `
<form id="testForm">
<fieldset disabled>
<legend><input name="insideLegend" value="legend-value" /></legend>
<input name="outsideLegend" value="blocked-value" />
</fieldset>
</form>
`;
const form = document.getElementById("testForm") as HTMLFormElement;
const withoutDisabled = formToObject(form);
expect(withoutDisabled).toEqual({
insideLegend: "legend-value"
});
const withDisabled = formToObject(form, { getDisabled: true });
expect(withDisabled).toEqual({
insideLegend: "legend-value",
outsideLegend: "blocked-value"
});
});
it("skips button-like input fields even when skipEmpty is false", () => {
document.body.innerHTML = `
<form id="testForm">
<input type="submit" name="submitButton" value="Submit" />
<input type="button" name="plainButton" value="Click" />
<input type="text" name="person.name" value="Trinity" />
</form>
`;
const form = document.getElementById("testForm") as HTMLFormElement;
const result = formToObject(form, { skipEmpty: false });
expect(result).toEqual({
person: {
name: "Trinity"
}
});
});
it("rejects unsafe path segments from field names", () => {
document.body.innerHTML = `
<form id="testForm">
<input name="__proto__.polluted" value="yes" />
</form>
`;
const form = document.getElementById("testForm") as HTMLFormElement;
expect(() => formToObject(form)).toThrow(/Unsafe path segment/);
});
it("can combine NodeList roots", () => {
document.body.innerHTML = `
<form class="part"><input name="person.first" value="Neo" /></form>
<form class="part"><input name="person.last" value="Anderson" /></form>
`;
const roots = document.querySelectorAll(".part");
const result = formToObject(roots);
expect(result).toEqual({
person: {
first: "Neo",
last: "Anderson"
}
});
});
it("can combine HTMLCollection roots", () => {
document.body.innerHTML = `
<form class="part"><input name="person.first" value="Neo" /></form>
<form class="part"><input name="person.last" value="Anderson" /></form>
`;
const roots = document.getElementsByClassName("part");
const result = formToObject(roots);
expect(result).toEqual({
person: {
first: "Neo",
last: "Anderson"
}
});
});
it("resolves string roots against an explicit document", () => {
const customDocument = document.implementation.createHTMLDocument("custom");
customDocument.body.innerHTML = `
<form id="testForm">
<input name="person/name" value="Sam" />
</form>
`;
const result = formToObject("testForm", {
document: customDocument,
delimiter: "/"
});
expect(result).toEqual({
person: {
name: "Sam"
}
});
});
it("keeps compatibility wrapper", () => {
document.body.innerHTML = `
<form id="testForm">
<input name="person.name" value="Trinity" />
</form>
`;
const result = form2js("testForm");
expect(result).toEqual({
person: {
name: "Trinity"
}
});
});
it("returns an empty object when the root cannot be resolved", () => {
expect(formToObject("missing-form")).toEqual({});
});
});
describe("standalone entry", () => {
it("attaches browser globals", async () => {
const scope = globalThis as typeof globalThis & {
formToObject?: unknown;
form2js?: unknown;
};
Reflect.deleteProperty(scope, "formToObject");
Reflect.deleteProperty(scope, "form2js");
await import("../src/standalone");
expect(typeof scope.formToObject).toBe("function");
expect(typeof scope.form2js).toBe("function");
});
});