2019-02-07 11:45:47 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-02-26 00:35:50 -05:00
|
|
|
const { remove } = Deno;
|
2019-03-06 16:39:50 -05:00
|
|
|
import { test } from "../testing/mod.ts";
|
2019-03-06 19:42:24 -05:00
|
|
|
import { assert, assertEquals } from "../testing/asserts.ts";
|
2019-02-10 18:49:48 -05:00
|
|
|
import { copyBytes, tempFile } from "./util.ts";
|
|
|
|
import * as path from "../fs/path.ts";
|
2019-01-21 22:56:35 -05:00
|
|
|
|
2019-04-24 07:41:23 -04:00
|
|
|
test(function testCopyBytes(): void {
|
2019-01-21 22:56:35 -05:00
|
|
|
let dst = new Uint8Array(4);
|
|
|
|
|
|
|
|
dst.fill(0);
|
|
|
|
let src = Uint8Array.of(1, 2);
|
|
|
|
let len = copyBytes(dst, src, 0);
|
|
|
|
assert(len === 2);
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals(dst, Uint8Array.of(1, 2, 0, 0));
|
2019-01-21 22:56:35 -05:00
|
|
|
|
|
|
|
dst.fill(0);
|
|
|
|
src = Uint8Array.of(1, 2);
|
|
|
|
len = copyBytes(dst, src, 1);
|
|
|
|
assert(len === 2);
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals(dst, Uint8Array.of(0, 1, 2, 0));
|
2019-01-21 22:56:35 -05:00
|
|
|
|
|
|
|
dst.fill(0);
|
|
|
|
src = Uint8Array.of(1, 2, 3, 4, 5);
|
|
|
|
len = copyBytes(dst, src);
|
|
|
|
assert(len === 4);
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals(dst, Uint8Array.of(1, 2, 3, 4));
|
2019-01-21 22:56:35 -05:00
|
|
|
|
|
|
|
dst.fill(0);
|
|
|
|
src = Uint8Array.of(1, 2);
|
|
|
|
len = copyBytes(dst, src, 100);
|
|
|
|
assert(len === 0);
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals(dst, Uint8Array.of(0, 0, 0, 0));
|
2019-01-21 22:56:35 -05:00
|
|
|
|
|
|
|
dst.fill(0);
|
|
|
|
src = Uint8Array.of(3, 4);
|
|
|
|
len = copyBytes(dst, src, -2);
|
|
|
|
assert(len === 2);
|
2019-03-06 19:42:24 -05:00
|
|
|
assertEquals(dst, Uint8Array.of(3, 4, 0, 0));
|
2019-01-21 22:56:35 -05:00
|
|
|
});
|
2019-02-10 18:49:48 -05:00
|
|
|
|
2019-04-24 07:41:23 -04:00
|
|
|
test(async function ioTempfile(): Promise<void> {
|
2019-02-10 18:49:48 -05:00
|
|
|
const f = await tempFile(".", {
|
|
|
|
prefix: "prefix-",
|
|
|
|
postfix: "-postfix"
|
|
|
|
});
|
|
|
|
console.log(f.file, f.filepath);
|
|
|
|
const base = path.basename(f.filepath);
|
2019-03-06 16:39:50 -05:00
|
|
|
assert(!!base.match(/^prefix-.+?-postfix$/));
|
2019-02-10 18:49:48 -05:00
|
|
|
await remove(f.filepath);
|
|
|
|
});
|