2021-01-11 12:13:41 -05:00
|
|
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2019-01-21 14:03:30 -05:00
|
|
|
|
2021-04-09 17:35:29 -04:00
|
|
|
// deno-lint-ignore-file no-deprecated-deno-api
|
|
|
|
|
2018-11-04 18:36:46 -05:00
|
|
|
// This code has been ported almost directly from Go's src/bytes/buffer_test.go
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved. BSD license.
|
|
|
|
// https://github.com/golang/go/blob/master/LICENSE
|
2020-03-04 11:31:14 -05:00
|
|
|
import {
|
|
|
|
assert,
|
2020-09-27 06:22:32 -04:00
|
|
|
assertEquals,
|
2020-06-10 11:54:54 -04:00
|
|
|
assertThrows,
|
|
|
|
assertThrowsAsync,
|
2020-03-28 13:03:49 -04:00
|
|
|
unitTest,
|
2020-03-04 11:31:14 -05:00
|
|
|
} from "./test_util.ts";
|
2019-02-12 10:08:56 -05:00
|
|
|
|
2020-07-10 11:49:35 -04:00
|
|
|
const MAX_SIZE = 2 ** 32 - 2;
|
2018-11-04 18:36:46 -05:00
|
|
|
// N controls how many iterations of certain checks are performed.
|
|
|
|
const N = 100;
|
|
|
|
let testBytes: Uint8Array | null;
|
|
|
|
let testString: string | null;
|
|
|
|
|
2020-07-13 09:40:48 -04:00
|
|
|
const ignoreMaxSizeTests = true;
|
2020-07-10 11:49:35 -04:00
|
|
|
|
2019-03-09 12:30:38 -05:00
|
|
|
function init(): void {
|
2018-11-04 18:36:46 -05:00
|
|
|
if (testBytes == null) {
|
|
|
|
testBytes = new Uint8Array(N);
|
|
|
|
for (let i = 0; i < N; i++) {
|
|
|
|
testBytes[i] = "a".charCodeAt(0) + (i % 26);
|
|
|
|
}
|
|
|
|
const decoder = new TextDecoder();
|
|
|
|
testString = decoder.decode(testBytes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-09 12:30:38 -05:00
|
|
|
function check(buf: Deno.Buffer, s: string): void {
|
2018-11-04 18:36:46 -05:00
|
|
|
const bytes = buf.bytes();
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(buf.length, bytes.byteLength);
|
2018-11-04 18:36:46 -05:00
|
|
|
const decoder = new TextDecoder();
|
|
|
|
const bytesStr = decoder.decode(bytes);
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(bytesStr, s);
|
|
|
|
assertEquals(buf.length, s.length);
|
2018-11-04 18:36:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Fill buf through n writes of byte slice fub.
|
|
|
|
// The initial contents of buf corresponds to the string s;
|
|
|
|
// the result is the final contents of buf returned as a string.
|
|
|
|
async function fillBytes(
|
2020-06-12 15:23:38 -04:00
|
|
|
buf: Deno.Buffer,
|
2018-11-04 18:36:46 -05:00
|
|
|
s: string,
|
|
|
|
n: number,
|
2020-07-14 15:24:17 -04:00
|
|
|
fub: Uint8Array,
|
2018-11-04 18:36:46 -05:00
|
|
|
): Promise<string> {
|
|
|
|
check(buf, s);
|
|
|
|
for (; n > 0; n--) {
|
2019-09-07 12:27:18 -04:00
|
|
|
const m = await buf.write(fub);
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(m, fub.byteLength);
|
2018-11-04 18:36:46 -05:00
|
|
|
const decoder = new TextDecoder();
|
|
|
|
s += decoder.decode(fub);
|
|
|
|
check(buf, s);
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Empty buf through repeated reads into fub.
|
|
|
|
// The initial contents of buf corresponds to the string s.
|
2020-06-12 15:23:38 -04:00
|
|
|
async function empty(
|
|
|
|
buf: Deno.Buffer,
|
|
|
|
s: string,
|
2020-07-14 15:24:17 -04:00
|
|
|
fub: Uint8Array,
|
2020-06-12 15:23:38 -04:00
|
|
|
): Promise<void> {
|
2018-11-04 18:36:46 -05:00
|
|
|
check(buf, s);
|
|
|
|
while (true) {
|
|
|
|
const r = await buf.read(fub);
|
2020-04-28 12:40:43 -04:00
|
|
|
if (r === null) {
|
2018-11-04 18:36:46 -05:00
|
|
|
break;
|
|
|
|
}
|
2019-07-06 10:16:03 -04:00
|
|
|
s = s.slice(r);
|
2018-11-04 18:36:46 -05:00
|
|
|
check(buf, s);
|
|
|
|
}
|
|
|
|
check(buf, "");
|
|
|
|
}
|
|
|
|
|
2019-03-09 12:30:38 -05:00
|
|
|
function repeat(c: string, bytes: number): Uint8Array {
|
|
|
|
assertEquals(c.length, 1);
|
|
|
|
const ui8 = new Uint8Array(bytes);
|
|
|
|
ui8.fill(c.charCodeAt(0));
|
|
|
|
return ui8;
|
|
|
|
}
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function bufferNewBuffer(): void {
|
2018-11-04 18:36:46 -05:00
|
|
|
init();
|
2020-02-19 15:36:18 -05:00
|
|
|
assert(testBytes);
|
|
|
|
assert(testString);
|
2020-06-12 15:23:38 -04:00
|
|
|
const buf = new Deno.Buffer(testBytes.buffer as ArrayBuffer);
|
2018-11-04 18:36:46 -05:00
|
|
|
check(buf, testString);
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(async function bufferBasicOperations(): Promise<void> {
|
2018-11-04 18:36:46 -05:00
|
|
|
init();
|
2020-02-19 15:36:18 -05:00
|
|
|
assert(testBytes);
|
|
|
|
assert(testString);
|
2020-06-12 15:23:38 -04:00
|
|
|
const buf = new Deno.Buffer();
|
2018-11-04 18:36:46 -05:00
|
|
|
for (let i = 0; i < 5; i++) {
|
|
|
|
check(buf, "");
|
|
|
|
|
|
|
|
buf.reset();
|
|
|
|
check(buf, "");
|
|
|
|
|
|
|
|
buf.truncate(0);
|
|
|
|
check(buf, "");
|
|
|
|
|
|
|
|
let n = await buf.write(testBytes.subarray(0, 1));
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(n, 1);
|
2018-11-04 18:36:46 -05:00
|
|
|
check(buf, "a");
|
|
|
|
|
|
|
|
n = await buf.write(testBytes.subarray(1, 2));
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(n, 1);
|
2018-11-04 18:36:46 -05:00
|
|
|
check(buf, "ab");
|
|
|
|
|
|
|
|
n = await buf.write(testBytes.subarray(2, 26));
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(n, 24);
|
2018-11-04 18:36:46 -05:00
|
|
|
check(buf, testString.slice(0, 26));
|
|
|
|
|
|
|
|
buf.truncate(26);
|
|
|
|
check(buf, testString.slice(0, 26));
|
|
|
|
|
|
|
|
buf.truncate(20);
|
|
|
|
check(buf, testString.slice(0, 20));
|
|
|
|
|
|
|
|
await empty(buf, testString.slice(0, 20), new Uint8Array(5));
|
|
|
|
await empty(buf, "", new Uint8Array(100));
|
|
|
|
|
2021-01-16 18:32:59 -05:00
|
|
|
// TODO(bartlomieju): buf.writeByte()
|
|
|
|
// TODO(bartlomieju): buf.readByte()
|
2018-11-04 18:36:46 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(async function bufferReadEmptyAtEOF(): Promise<void> {
|
2018-11-27 15:46:24 -05:00
|
|
|
// check that EOF of 'buf' is not reached (even though it's empty) if
|
|
|
|
// results are written to buffer that has 0 length (ie. it can't store any data)
|
2020-06-12 15:23:38 -04:00
|
|
|
const buf = new Deno.Buffer();
|
2018-11-27 15:46:24 -05:00
|
|
|
const zeroLengthTmp = new Uint8Array(0);
|
2019-09-07 12:27:18 -04:00
|
|
|
const result = await buf.read(zeroLengthTmp);
|
2019-07-06 10:16:03 -04:00
|
|
|
assertEquals(result, 0);
|
2018-11-27 15:46:24 -05:00
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(async function bufferLargeByteWrites(): Promise<void> {
|
2018-11-04 18:36:46 -05:00
|
|
|
init();
|
2020-06-12 15:23:38 -04:00
|
|
|
const buf = new Deno.Buffer();
|
2018-11-04 18:36:46 -05:00
|
|
|
const limit = 9;
|
|
|
|
for (let i = 3; i < limit; i += 3) {
|
2020-02-19 15:36:18 -05:00
|
|
|
const s = await fillBytes(buf, "", 5, testBytes!);
|
|
|
|
await empty(buf, s, new Uint8Array(Math.floor(testString!.length / i)));
|
2018-11-04 18:36:46 -05:00
|
|
|
}
|
|
|
|
check(buf, "");
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(async function bufferTooLargeByteWrites(): Promise<void> {
|
2018-12-09 15:38:30 -05:00
|
|
|
init();
|
|
|
|
const tmp = new Uint8Array(72);
|
|
|
|
const growLen = Number.MAX_VALUE;
|
|
|
|
const xBytes = repeat("x", 0);
|
2020-06-12 15:23:38 -04:00
|
|
|
const buf = new Deno.Buffer(xBytes.buffer as ArrayBuffer);
|
2019-03-09 12:30:38 -05:00
|
|
|
await buf.read(tmp);
|
2018-12-09 15:38:30 -05:00
|
|
|
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows(
|
|
|
|
() => {
|
|
|
|
buf.grow(growLen);
|
|
|
|
},
|
|
|
|
Error,
|
2020-07-14 15:24:17 -04:00
|
|
|
"grown beyond the maximum size",
|
2020-06-24 18:57:08 -04:00
|
|
|
);
|
2018-12-09 15:38:30 -05:00
|
|
|
});
|
|
|
|
|
2020-07-10 11:49:35 -04:00
|
|
|
unitTest(
|
|
|
|
{ ignore: ignoreMaxSizeTests },
|
|
|
|
function bufferGrowWriteMaxBuffer(): void {
|
|
|
|
const bufSize = 16 * 1024;
|
|
|
|
const capacities = [MAX_SIZE, MAX_SIZE - 1];
|
|
|
|
for (const capacity of capacities) {
|
|
|
|
let written = 0;
|
|
|
|
const buf = new Deno.Buffer();
|
|
|
|
const writes = Math.floor(capacity / bufSize);
|
2020-07-14 15:24:17 -04:00
|
|
|
for (let i = 0; i < writes; i++) {
|
2020-07-10 11:49:35 -04:00
|
|
|
written += buf.writeSync(repeat("x", bufSize));
|
2020-07-14 15:24:17 -04:00
|
|
|
}
|
2020-07-10 11:49:35 -04:00
|
|
|
|
|
|
|
if (written < capacity) {
|
|
|
|
written += buf.writeSync(repeat("x", capacity - written));
|
|
|
|
}
|
|
|
|
|
|
|
|
assertEquals(written, capacity);
|
|
|
|
}
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-07-10 11:49:35 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
unitTest(
|
|
|
|
{ ignore: ignoreMaxSizeTests },
|
|
|
|
async function bufferGrowReadCloseMaxBufferPlus1(): Promise<void> {
|
|
|
|
const reader = new Deno.Buffer(new ArrayBuffer(MAX_SIZE + 1));
|
|
|
|
const buf = new Deno.Buffer();
|
|
|
|
|
|
|
|
await assertThrowsAsync(
|
|
|
|
async () => {
|
|
|
|
await buf.readFrom(reader);
|
|
|
|
},
|
|
|
|
Error,
|
2020-07-14 15:24:17 -04:00
|
|
|
"grown beyond the maximum size",
|
2020-07-10 11:49:35 -04:00
|
|
|
);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-07-10 11:49:35 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
unitTest(
|
|
|
|
{ ignore: ignoreMaxSizeTests },
|
|
|
|
function bufferGrowReadSyncCloseMaxBufferPlus1(): void {
|
|
|
|
const reader = new Deno.Buffer(new ArrayBuffer(MAX_SIZE + 1));
|
|
|
|
const buf = new Deno.Buffer();
|
|
|
|
|
|
|
|
assertThrows(
|
|
|
|
() => {
|
|
|
|
buf.readFromSync(reader);
|
|
|
|
},
|
|
|
|
Error,
|
2020-07-14 15:24:17 -04:00
|
|
|
"grown beyond the maximum size",
|
2020-07-10 11:49:35 -04:00
|
|
|
);
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-07-10 11:49:35 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
unitTest(
|
|
|
|
{ ignore: ignoreMaxSizeTests },
|
|
|
|
function bufferGrowReadSyncCloseToMaxBuffer(): void {
|
|
|
|
const capacities = [MAX_SIZE, MAX_SIZE - 1];
|
|
|
|
for (const capacity of capacities) {
|
|
|
|
const reader = new Deno.Buffer(new ArrayBuffer(capacity));
|
|
|
|
const buf = new Deno.Buffer();
|
|
|
|
buf.readFromSync(reader);
|
|
|
|
|
|
|
|
assertEquals(buf.length, capacity);
|
|
|
|
}
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-07-10 11:49:35 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
unitTest(
|
|
|
|
{ ignore: ignoreMaxSizeTests },
|
|
|
|
async function bufferGrowReadCloseToMaxBuffer(): Promise<void> {
|
|
|
|
const capacities = [MAX_SIZE, MAX_SIZE - 1];
|
|
|
|
for (const capacity of capacities) {
|
|
|
|
const reader = new Deno.Buffer(new ArrayBuffer(capacity));
|
|
|
|
const buf = new Deno.Buffer();
|
|
|
|
await buf.readFrom(reader);
|
|
|
|
assertEquals(buf.length, capacity);
|
|
|
|
}
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-07-10 11:49:35 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
unitTest(
|
|
|
|
{ ignore: ignoreMaxSizeTests },
|
|
|
|
async function bufferReadCloseToMaxBufferWithInitialGrow(): Promise<void> {
|
|
|
|
const capacities = [MAX_SIZE, MAX_SIZE - 1, MAX_SIZE - 512];
|
|
|
|
for (const capacity of capacities) {
|
|
|
|
const reader = new Deno.Buffer(new ArrayBuffer(capacity));
|
|
|
|
const buf = new Deno.Buffer();
|
|
|
|
buf.grow(MAX_SIZE);
|
|
|
|
await buf.readFrom(reader);
|
|
|
|
assertEquals(buf.length, capacity);
|
|
|
|
}
|
2020-07-14 15:24:17 -04:00
|
|
|
},
|
2020-07-10 11:49:35 -04:00
|
|
|
);
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(async function bufferLargeByteReads(): Promise<void> {
|
2018-11-04 18:36:46 -05:00
|
|
|
init();
|
2020-02-19 15:36:18 -05:00
|
|
|
assert(testBytes);
|
|
|
|
assert(testString);
|
2020-06-12 15:23:38 -04:00
|
|
|
const buf = new Deno.Buffer();
|
2018-11-04 18:36:46 -05:00
|
|
|
for (let i = 3; i < 30; i += 3) {
|
|
|
|
const n = Math.floor(testBytes.byteLength / i);
|
|
|
|
const s = await fillBytes(buf, "", 5, testBytes.subarray(0, n));
|
|
|
|
await empty(buf, s, new Uint8Array(testString.length));
|
|
|
|
}
|
|
|
|
check(buf, "");
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function bufferCapWithPreallocatedSlice(): void {
|
2020-06-12 15:23:38 -04:00
|
|
|
const buf = new Deno.Buffer(new ArrayBuffer(10));
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(buf.capacity, 10);
|
2018-11-04 18:36:46 -05:00
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(async function bufferReadFrom(): Promise<void> {
|
2018-11-04 18:36:46 -05:00
|
|
|
init();
|
2020-02-19 15:36:18 -05:00
|
|
|
assert(testBytes);
|
|
|
|
assert(testString);
|
2020-06-12 15:23:38 -04:00
|
|
|
const buf = new Deno.Buffer();
|
2018-11-04 18:36:46 -05:00
|
|
|
for (let i = 3; i < 30; i += 3) {
|
|
|
|
const s = await fillBytes(
|
|
|
|
buf,
|
|
|
|
"",
|
|
|
|
5,
|
2020-07-14 15:24:17 -04:00
|
|
|
testBytes.subarray(0, Math.floor(testBytes.byteLength / i)),
|
2018-11-04 18:36:46 -05:00
|
|
|
);
|
2020-06-12 15:23:38 -04:00
|
|
|
const b = new Deno.Buffer();
|
2018-11-04 18:36:46 -05:00
|
|
|
await b.readFrom(buf);
|
|
|
|
const fub = new Uint8Array(testString.length);
|
|
|
|
await empty(b, s, fub);
|
|
|
|
}
|
2020-06-10 11:54:54 -04:00
|
|
|
assertThrowsAsync(async function () {
|
2020-06-12 15:23:38 -04:00
|
|
|
await new Deno.Buffer().readFrom(null!);
|
2020-06-10 11:54:54 -04:00
|
|
|
});
|
2018-11-04 18:36:46 -05:00
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(async function bufferReadFromSync(): Promise<void> {
|
2019-03-27 23:29:36 -04:00
|
|
|
init();
|
2020-02-19 15:36:18 -05:00
|
|
|
assert(testBytes);
|
|
|
|
assert(testString);
|
2020-06-12 15:23:38 -04:00
|
|
|
const buf = new Deno.Buffer();
|
2019-03-27 23:29:36 -04:00
|
|
|
for (let i = 3; i < 30; i += 3) {
|
|
|
|
const s = await fillBytes(
|
|
|
|
buf,
|
|
|
|
"",
|
|
|
|
5,
|
2020-07-14 15:24:17 -04:00
|
|
|
testBytes.subarray(0, Math.floor(testBytes.byteLength / i)),
|
2019-03-27 23:29:36 -04:00
|
|
|
);
|
2020-06-12 15:23:38 -04:00
|
|
|
const b = new Deno.Buffer();
|
2019-03-27 23:29:36 -04:00
|
|
|
b.readFromSync(buf);
|
|
|
|
const fub = new Uint8Array(testString.length);
|
|
|
|
await empty(b, s, fub);
|
|
|
|
}
|
2020-06-10 11:54:54 -04:00
|
|
|
assertThrows(function () {
|
2020-06-12 15:23:38 -04:00
|
|
|
new Deno.Buffer().readFromSync(null!);
|
2020-06-10 11:54:54 -04:00
|
|
|
});
|
2019-03-27 23:29:36 -04:00
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(async function bufferTestGrow(): Promise<void> {
|
2018-11-04 18:36:46 -05:00
|
|
|
const tmp = new Uint8Array(72);
|
2020-09-16 16:22:43 -04:00
|
|
|
for (const startLen of [0, 100, 1000, 10000]) {
|
2018-11-04 18:36:46 -05:00
|
|
|
const xBytes = repeat("x", startLen);
|
2020-09-16 16:22:43 -04:00
|
|
|
for (const growLen of [0, 100, 1000, 10000]) {
|
2020-06-12 15:23:38 -04:00
|
|
|
const buf = new Deno.Buffer(xBytes.buffer as ArrayBuffer);
|
2018-11-04 18:36:46 -05:00
|
|
|
// If we read, this affects buf.off, which is good to test.
|
2020-04-28 12:40:43 -04:00
|
|
|
const nread = (await buf.read(tmp)) ?? 0;
|
2018-11-04 18:36:46 -05:00
|
|
|
buf.grow(growLen);
|
|
|
|
const yBytes = repeat("y", growLen);
|
|
|
|
await buf.write(yBytes);
|
|
|
|
// Check that buffer has correct data.
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(
|
2018-11-04 18:36:46 -05:00
|
|
|
buf.bytes().subarray(0, startLen - nread),
|
2020-07-14 15:24:17 -04:00
|
|
|
xBytes.subarray(nread),
|
2018-11-04 18:36:46 -05:00
|
|
|
);
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(
|
2018-11-04 18:36:46 -05:00
|
|
|
buf.bytes().subarray(startLen - nread, startLen - nread + growLen),
|
2020-07-14 15:24:17 -04:00
|
|
|
yBytes,
|
2018-11-04 18:36:46 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2018-11-30 12:58:31 -05:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(async function testReadAll(): Promise<void> {
|
2018-11-30 12:58:31 -05:00
|
|
|
init();
|
2020-02-19 15:36:18 -05:00
|
|
|
assert(testBytes);
|
2020-06-12 15:23:38 -04:00
|
|
|
const reader = new Deno.Buffer(testBytes.buffer as ArrayBuffer);
|
|
|
|
const actualBytes = await Deno.readAll(reader);
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(testBytes.byteLength, actualBytes.byteLength);
|
2018-11-30 12:58:31 -05:00
|
|
|
for (let i = 0; i < testBytes.length; ++i) {
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(testBytes[i], actualBytes[i]);
|
2018-11-30 12:58:31 -05:00
|
|
|
}
|
|
|
|
});
|
2019-03-27 23:29:36 -04:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function testReadAllSync(): void {
|
2019-03-27 23:29:36 -04:00
|
|
|
init();
|
2020-02-19 15:36:18 -05:00
|
|
|
assert(testBytes);
|
2020-06-12 15:23:38 -04:00
|
|
|
const reader = new Deno.Buffer(testBytes.buffer as ArrayBuffer);
|
|
|
|
const actualBytes = Deno.readAllSync(reader);
|
2019-03-27 23:29:36 -04:00
|
|
|
assertEquals(testBytes.byteLength, actualBytes.byteLength);
|
|
|
|
for (let i = 0; i < testBytes.length; ++i) {
|
|
|
|
assertEquals(testBytes[i], actualBytes[i]);
|
|
|
|
}
|
|
|
|
});
|
2019-07-23 11:16:39 -04:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(async function testWriteAll(): Promise<void> {
|
2019-07-23 11:16:39 -04:00
|
|
|
init();
|
2020-02-19 15:36:18 -05:00
|
|
|
assert(testBytes);
|
2020-06-12 15:23:38 -04:00
|
|
|
const writer = new Deno.Buffer();
|
|
|
|
await Deno.writeAll(writer, testBytes);
|
2019-07-23 11:16:39 -04:00
|
|
|
const actualBytes = writer.bytes();
|
|
|
|
assertEquals(testBytes.byteLength, actualBytes.byteLength);
|
|
|
|
for (let i = 0; i < testBytes.length; ++i) {
|
|
|
|
assertEquals(testBytes[i], actualBytes[i]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function testWriteAllSync(): void {
|
2019-07-23 11:16:39 -04:00
|
|
|
init();
|
2020-02-19 15:36:18 -05:00
|
|
|
assert(testBytes);
|
2020-06-12 15:23:38 -04:00
|
|
|
const writer = new Deno.Buffer();
|
|
|
|
Deno.writeAllSync(writer, testBytes);
|
2019-07-23 11:16:39 -04:00
|
|
|
const actualBytes = writer.bytes();
|
|
|
|
assertEquals(testBytes.byteLength, actualBytes.byteLength);
|
|
|
|
for (let i = 0; i < testBytes.length; ++i) {
|
|
|
|
assertEquals(testBytes[i], actualBytes[i]);
|
|
|
|
}
|
|
|
|
});
|
2020-06-27 07:52:27 -04:00
|
|
|
|
|
|
|
unitTest(function testBufferBytesArrayBufferLength(): void {
|
2020-07-13 00:58:59 -04:00
|
|
|
// defaults to copy
|
|
|
|
const args = [{}, { copy: undefined }, undefined, { copy: true }];
|
|
|
|
for (const arg of args) {
|
|
|
|
const bufSize = 64 * 1024;
|
|
|
|
const bytes = new TextEncoder().encode("a".repeat(bufSize));
|
|
|
|
const reader = new Deno.Buffer();
|
|
|
|
Deno.writeAllSync(reader, bytes);
|
|
|
|
|
|
|
|
const writer = new Deno.Buffer();
|
|
|
|
writer.readFromSync(reader);
|
|
|
|
const actualBytes = writer.bytes(arg);
|
|
|
|
|
|
|
|
assertEquals(actualBytes.byteLength, bufSize);
|
|
|
|
assert(actualBytes.buffer !== writer.bytes(arg).buffer);
|
|
|
|
assertEquals(actualBytes.byteLength, actualBytes.buffer.byteLength);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
unitTest(function testBufferBytesCopyFalse(): void {
|
|
|
|
const bufSize = 64 * 1024;
|
|
|
|
const bytes = new TextEncoder().encode("a".repeat(bufSize));
|
2020-06-27 07:52:27 -04:00
|
|
|
const reader = new Deno.Buffer();
|
|
|
|
Deno.writeAllSync(reader, bytes);
|
|
|
|
|
|
|
|
const writer = new Deno.Buffer();
|
|
|
|
writer.readFromSync(reader);
|
2020-07-13 00:58:59 -04:00
|
|
|
const actualBytes = writer.bytes({ copy: false });
|
|
|
|
|
|
|
|
assertEquals(actualBytes.byteLength, bufSize);
|
|
|
|
assertEquals(actualBytes.buffer, writer.bytes({ copy: false }).buffer);
|
|
|
|
assert(actualBytes.buffer.byteLength > actualBytes.byteLength);
|
|
|
|
});
|
|
|
|
|
|
|
|
unitTest(function testBufferBytesCopyFalseGrowExactBytes(): void {
|
|
|
|
const bufSize = 64 * 1024;
|
|
|
|
const bytes = new TextEncoder().encode("a".repeat(bufSize));
|
|
|
|
const reader = new Deno.Buffer();
|
|
|
|
Deno.writeAllSync(reader, bytes);
|
|
|
|
|
|
|
|
const writer = new Deno.Buffer();
|
|
|
|
writer.grow(bufSize);
|
|
|
|
writer.readFromSync(reader);
|
|
|
|
const actualBytes = writer.bytes({ copy: false });
|
2020-06-27 07:52:27 -04:00
|
|
|
|
2020-07-13 00:58:59 -04:00
|
|
|
assertEquals(actualBytes.byteLength, bufSize);
|
|
|
|
assertEquals(actualBytes.buffer.byteLength, actualBytes.byteLength);
|
2020-06-27 07:52:27 -04:00
|
|
|
});
|