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 291
|
/* eslint-disable mozilla/no-comparison-or-assignment-inside-ok */
function testHas() {
var f = new FormData();
f.append("foo", "bar");
f.append("another", "value");
ok(f.has("foo"), "has() on existing name should be true.");
ok(f.has("another"), "has() on existing name should be true.");
ok(!f.has("nonexistent"), "has() on non-existent name should be false.");
}
function testGet() {
var f = new FormData();
f.append("foo", "bar");
f.append("foo", "bar2");
f.append("blob", new Blob(["hey"], { type: "text/plain" }));
f.append("file", new File(["hey"], "testname", { type: "text/plain" }));
is(f.get("foo"), "bar", "get() on existing name should return first value");
ok(
f.get("blob") instanceof Blob,
"get() on existing name should return first value"
);
is(
f.get("blob").type,
"text/plain",
"get() on existing name should return first value"
);
ok(
f.get("file") instanceof File,
"get() on existing name should return first value"
);
is(
f.get("file").name,
"testname",
"get() on existing name should return first value"
);
is(
f.get("nonexistent"),
null,
"get() on non-existent name should return null."
);
}
function testGetAll() {
var f = new FormData();
f.append("other", "value");
f.append("foo", "bar");
f.append("foo", "bar2");
f.append("foo", new Blob(["hey"], { type: "text/plain" }));
var arr = f.getAll("foo");
is(arr.length, 3, "getAll() should retrieve all matching entries.");
is(arr[0], "bar", "values should match and be in order");
is(arr[1], "bar2", "values should match and be in order");
ok(arr[2] instanceof Blob, "values should match and be in order");
is(
f.get("nonexistent"),
null,
"get() on non-existent name should return null."
);
}
function testDelete() {
var f = new FormData();
f.append("other", "value");
f.append("foo", "bar");
f.append("foo", "bar2");
f.append("foo", new Blob(["hey"], { type: "text/plain" }));
ok(f.has("foo"), "has() on existing name should be true.");
f.delete("foo");
ok(!f.has("foo"), "has() on deleted name should be false.");
is(f.getAll("foo").length, 0, "all entries should be deleted.");
is(f.getAll("other").length, 1, "other names should still be there.");
f.delete("other");
is(f.getAll("other").length, 0, "all entries should be deleted.");
}
function testSet() {
var f = new FormData();
f.set("other", "value");
ok(f.has("other"), "set() on new name should be similar to append()");
is(
f.getAll("other").length,
1,
"set() on new name should be similar to append()"
);
f.append("other", "value2");
is(
f.getAll("other").length,
2,
"append() should not replace existing entries."
);
f.append("foo", "bar");
f.append("other", "value3");
f.append("other", "value3");
f.append("other", "value3");
is(
f.getAll("other").length,
5,
"append() should not replace existing entries."
);
f.set("other", "value4");
is(f.getAll("other").length, 1, "set() should replace existing entries.");
is(f.getAll("other")[0], "value4", "set() should replace existing entries.");
}
function testFilename() {
var f = new FormData();
f.append("blob", new Blob(["hi"]));
ok(f.get("blob") instanceof Blob, "We should have a blob back.");
// If a filename is passed, that should replace the original.
f.append("blob2", new Blob(["hi"]), "blob2.txt");
is(
f.get("blob2").name,
"blob2.txt",
'Explicit filename should override "blob".'
);
var file = new File(["hi"], "file1.txt");
f.append("file1", file);
// If a file is passed, the "create entry" algorithm should not create a new File, but reuse the existing one.
is(
f.get("file1"),
file,
"Retrieved File object should be original File object and not a copy."
);
is(
f.get("file1").name,
"file1.txt",
"File's filename should be original's name if no filename is explicitly passed."
);
file = new File(["hi"], "file2.txt");
f.append("file2", file, "fakename.txt");
ok(
f.get("file2") !== file,
"Retrieved File object should be new File object if explicit filename is passed."
);
is(
f.get("file2").name,
"fakename.txt",
"File's filename should be explicitly passed name."
);
f.append("file3", new File(["hi"], ""));
is(f.get("file3").name, "", "File's filename is returned even if empty.");
}
function testIterable() {
var fd = new FormData();
fd.set("1", "2");
fd.set("2", "4");
fd.set("3", "6");
fd.set("4", "8");
fd.set("5", "10");
var key_iter = fd.keys();
var value_iter = fd.values();
var entries_iter = fd.entries();
for (var i = 0; i < 5; ++i) {
var v = i + 1;
var key = key_iter.next();
var value = value_iter.next();
var entry = entries_iter.next();
is(key.value, v.toString(), "Correct Key iterator: " + v.toString());
ok(!key.done, "key.done is false");
is(
value.value,
(v * 2).toString(),
"Correct Value iterator: " + (v * 2).toString()
);
ok(!value.done, "value.done is false");
is(
entry.value[0],
v.toString(),
"Correct Entry 0 iterator: " + v.toString()
);
is(
entry.value[1],
(v * 2).toString(),
"Correct Entry 1 iterator: " + (v * 2).toString()
);
ok(!entry.done, "entry.done is false");
}
var last = key_iter.next();
ok(last.done, "Nothing more to read.");
is(last.value, undefined, "Undefined is the last key");
last = value_iter.next();
ok(last.done, "Nothing more to read.");
is(last.value, undefined, "Undefined is the last value");
last = entries_iter.next();
ok(last.done, "Nothing more to read.");
key_iter = fd.keys();
key_iter.next();
key_iter.next();
fd.delete("1");
fd.delete("2");
fd.delete("3");
fd.delete("4");
fd.delete("5");
last = key_iter.next();
ok(last.done, "Nothing more to read.");
is(last.value, undefined, "Undefined is the last key");
}
function testSend(doneCb) {
var xhr = new XMLHttpRequest();
xhr.open("POST", "form_submit_server.sjs");
xhr.onload = function () {
var response = xhr.response;
for (var entry of response) {
is(entry.body, "hey");
is(entry.headers["Content-Type"], "text/plain");
}
is(
response[0].headers["Content-Disposition"],
'form-data; name="empty"; filename="blob"'
);
is(
response[1].headers["Content-Disposition"],
'form-data; name="explicit"; filename="explicit-file-name"'
);
is(
response[2].headers["Content-Disposition"],
'form-data; name="explicit-empty"; filename=""'
);
is(
response[3].headers["Content-Disposition"],
'form-data; name="file-name"; filename="testname"'
);
is(
response[4].headers["Content-Disposition"],
'form-data; name="empty-file-name"; filename=""'
);
is(
response[5].headers["Content-Disposition"],
'form-data; name="file-name-overwrite"; filename="overwrite"'
);
doneCb();
};
var file,
blob = new Blob(["hey"], { type: "text/plain" });
var fd = new FormData();
fd.append("empty", blob);
fd.append("explicit", blob, "explicit-file-name");
fd.append("explicit-empty", blob, "");
file = new File([blob], "testname", { type: "text/plain" });
fd.append("file-name", file);
file = new File([blob], "", { type: "text/plain" });
fd.append("empty-file-name", file);
file = new File([blob], "testname", { type: "text/plain" });
fd.append("file-name-overwrite", file, "overwrite");
xhr.responseType = "json";
xhr.send(fd);
}
function runTest(doneCb) {
testHas();
testGet();
testGetAll();
testDelete();
testSet();
testFilename();
testIterable();
// Finally, send an XHR and verify the response matches.
testSend(doneCb);
}
|