only allow body to be consumed once, add some tests

This commit is contained in:
Randall Schmidt
2021-06-10 11:11:33 -04:00
parent c3071e3059
commit f92bd99968
3 changed files with 58 additions and 4 deletions

View File

@ -7,22 +7,32 @@ class Response {
this.cacheFilePath = cacheFilePath;
this.headers = new Headers(raw.headers);
this.fromCache = fromCache;
this.consumed = false;
if (this.bodyBuffer.type === 'Buffer') {
this.bodyBuffer = Buffer.from(this.bodyBuffer);
}
}
consumeBody() {
if (this.consumed) {
throw new Error('Error: body used already');
}
this.consumed = true;
return this.bodyBuffer;
}
text() {
return this.bodyBuffer.toString();
return this.consumeBody().toString();
}
json() {
return JSON.parse(this.bodyBuffer.toString());
return JSON.parse(this.consumeBody().toString());
}
buffer() {
return this.bodyBuffer;
return this.consumeBody();
}
async ejectFromCache() {