Skip to content

Commit 565f94e

Browse files
authoredMay 10, 2022
Merge pull request #6 from remix-run/jacob/root-of-clone-issue
fix: fix root cause of clone issue
2 parents 8a92b6f + 412eb2e commit 565f94e

File tree

3 files changed

+43
-12
lines changed

3 files changed

+43
-12
lines changed
 

‎packages/fetch/src/body.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -449,11 +449,7 @@ class AsyncIterablePump {
449449
controller.close();
450450
break;
451451
} else {
452-
if (typeof next.value === 'string') {
453-
controller.enqueue(new TextEncoder().encode(next.value));
454-
} else {
455-
controller.enqueue(next.value);
456-
}
452+
controller.enqueue(next.value);
457453
}
458454
}
459455
} catch (error) {

‎packages/fetch/src/utils/form-data.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -44,20 +44,21 @@ export const getBoundary = () => randomBytes(8).toString('hex');
4444
* @param {string} boundary
4545
*/
4646
export async function * formDataIterator(form, boundary) {
47+
const encoder = new TextEncoder();
4748
for (const [name, value] of form) {
48-
yield getHeader(boundary, name, value);
49+
yield encoder.encode(getHeader(boundary, name, value));
4950

5051
if (isBlob(value)) {
5152
// @ts-ignore - we know our streams implement aysnc iteration
5253
yield * value.stream();
5354
} else {
54-
yield value;
55+
yield encoder.encode(value);
5556
}
5657

57-
yield carriage;
58+
yield encoder.encode(carriage);
5859
}
5960

60-
yield getFooter(boundary);
61+
yield encoder.encode(getFooter(boundary));
6162
}
6263

6364
/**

‎packages/fetch/test/request.js

+37-3
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ describe('Request', () => {
291291
});
292292
});
293293

294-
it('should read formData after clone with FormData body',async () => {
294+
it('should read formData after clone with web FormData body',async () => {
295295
const ogFormData = new WebFormData();
296296
ogFormData.append('a', 1);
297297
ogFormData.append('b', 2);
@@ -303,11 +303,45 @@ describe('Request', () => {
303303
});
304304
const clonedRequest = request.clone();
305305

306-
return clonedRequest.formData().then(clonedFormData => {
306+
return clonedRequest.formData().then(async clonedFormData => {
307307
expect(clonedFormData.get('a')).to.equal("1");
308308
expect(clonedFormData.get('b')).to.equal("2");
309309
const file = clonedFormData.get('file')
310-
expect(typeof file).to.equal("object");
310+
if (typeof file !== "object") {
311+
throw new Error("File is not an object");
312+
}
313+
expect(file.name).to.equal("file.txt");
314+
expect(file.type).to.equal("application/octet-stream");
315+
expect(file.size).to.equal(7);
316+
expect(await file.text()).to.equal("content");
317+
expect(file.lastModified).to.be.a('number');
318+
});
319+
});
320+
321+
it('should read formData after clone with node FormData body',async () => {
322+
const ogFormData = new FormData();
323+
ogFormData.append('a', '1');
324+
ogFormData.append('b', '2');
325+
ogFormData.append('file', Buffer.from('content'), { filename: "file.txt" });
326+
327+
const request = new Request(base, {
328+
method: 'POST',
329+
body: ogFormData,
330+
});
331+
const clonedRequest = request.clone();
332+
333+
return clonedRequest.formData().then(async clonedFormData => {
334+
expect(clonedFormData.get('a')).to.equal("1");
335+
expect(clonedFormData.get('b')).to.equal("2");
336+
const file = clonedFormData.get('file')
337+
if (typeof file !== "object") {
338+
throw new Error("File is not an object");
339+
}
340+
expect(file.name).to.equal("file.txt");
341+
expect(file.type).to.equal("text/plain");
342+
expect(file.size).to.equal(7);
343+
expect(await file.text()).to.equal("content");
344+
expect(file.lastModified).to.be.a('number');
311345
});
312346
});
313347
});

0 commit comments

Comments
 (0)
Please sign in to comment.