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";
|
2019-03-06 19:42:24 -05:00
|
|
|
import { assertEquals } from "../testing/asserts.ts";
|
2019-02-10 18:49:48 -05:00
|
|
|
|
2019-05-07 12:02:31 -04: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])
|
|
|
|
);
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals(i, 2);
|
2019-02-10 18:49:48 -05:00
|
|
|
});
|
|
|
|
|
2019-05-07 12:02:31 -04: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])
|
|
|
|
);
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals(i, 3);
|
2019-02-10 18:49:48 -05:00
|
|
|
});
|
|
|
|
|
2019-05-07 12:02:31 -04: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])
|
|
|
|
);
|
2019-03-06 19:42:24 -05:00
|
|
|
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]));
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals(v, true);
|
2019-02-10 18:49:48 -05:00
|
|
|
});
|