1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-29 02:29:06 -05:00
denoland-deno/bytes/bytes_test.ts

51 lines
1.2 KiB
TypeScript
Raw Normal View History

2019-02-10 18:49:48 -05:00
import {
bytesFindIndex,
bytesFindLastIndex,
bytesEqual,
bytesHasPrefix
} from "./bytes.ts";
2019-03-06 16:39:50 -05:00
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
2019-02-10 18:49:48 -05:00
test(function bytesBytesFindIndex1(): void {
2019-02-10 18:49:48 -05:00
const i = bytesFindIndex(
new Uint8Array([1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 3]),
new Uint8Array([0, 1, 2])
);
assertEquals(i, 2);
2019-02-10 18:49:48 -05:00
});
test(function bytesBytesFindIndex2(): void {
const i = bytesFindIndex(new Uint8Array([0, 0, 1]), new Uint8Array([0, 1]));
assertEquals(i, 1);
});
2019-04-24 07:41:23 -04:00
test(function bytesBytesFindLastIndex1(): void {
2019-02-10 18:49:48 -05:00
const i = bytesFindLastIndex(
new Uint8Array([0, 1, 2, 0, 1, 2, 0, 1, 3]),
new Uint8Array([0, 1, 2])
);
assertEquals(i, 3);
2019-02-10 18:49:48 -05:00
});
test(function bytesBytesFindLastIndex2(): void {
const i = bytesFindLastIndex(
new Uint8Array([0, 1, 1]),
new Uint8Array([0, 1])
);
assertEquals(i, 0);
});
2019-04-24 07:41:23 -04:00
test(function bytesBytesBytesEqual(): void {
2019-02-10 18:49:48 -05:00
const v = bytesEqual(
new Uint8Array([0, 1, 2, 3]),
new Uint8Array([0, 1, 2, 3])
);
assertEquals(v, true);
2019-02-10 18:49:48 -05:00
});
2019-04-24 07:41:23 -04:00
test(function bytesBytesHasPrefix(): void {
2019-02-10 18:49:48 -05:00
const v = bytesHasPrefix(new Uint8Array([0, 1, 2]), new Uint8Array([0, 1]));
assertEquals(v, true);
2019-02-10 18:49:48 -05:00
});