2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-02-11 11:24:27 -05:00
|
|
|
const { remove, test } = Deno;
|
2019-03-06 19:42:24 -05:00
|
|
|
import { assert, assertEquals } from "../testing/asserts.ts";
|
2019-10-16 14:39:33 -04:00
|
|
|
import * as path from "../path/mod.ts";
|
2019-02-10 18:49:48 -05:00
|
|
|
import { copyBytes, tempFile } from "./util.ts";
|
2019-01-21 22:56:35 -05:00
|
|
|
|
2020-03-28 13:03:49 -04:00
|
|
|
test("[io/tuil] copyBytes", function (): void {
|
2019-10-05 12:02:34 -04:00
|
|
|
const dst = new Uint8Array(4);
|
2019-01-21 22:56:35 -05:00
|
|
|
|
|
|
|
dst.fill(0);
|
|
|
|
let src = Uint8Array.of(1, 2);
|
2020-04-30 16:39:25 -04:00
|
|
|
let len = copyBytes(src, dst, 0);
|
2019-01-21 22:56:35 -05:00
|
|
|
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);
|
2020-04-30 16:39:25 -04:00
|
|
|
len = copyBytes(src, dst, 1);
|
2019-01-21 22:56:35 -05:00
|
|
|
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);
|
2020-04-30 16:39:25 -04:00
|
|
|
len = copyBytes(src, dst);
|
2019-01-21 22:56:35 -05:00
|
|
|
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);
|
2020-04-30 16:39:25 -04:00
|
|
|
len = copyBytes(src, dst, 100);
|
2019-01-21 22:56:35 -05:00
|
|
|
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);
|
2020-04-30 16:39:25 -04:00
|
|
|
len = copyBytes(src, dst, -2);
|
2019-01-21 22:56:35 -05:00
|
|
|
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
|
|
|
|
2020-03-18 19:25:55 -04:00
|
|
|
test({
|
|
|
|
name: "[io/util] tempfile",
|
2020-03-28 13:03:49 -04:00
|
|
|
fn: async function (): Promise<void> {
|
2020-03-18 19:25:55 -04:00
|
|
|
const f = await tempFile(".", {
|
|
|
|
prefix: "prefix-",
|
2020-03-28 13:03:49 -04:00
|
|
|
postfix: "-postfix",
|
2020-03-18 19:25:55 -04:00
|
|
|
});
|
|
|
|
const base = path.basename(f.filepath);
|
|
|
|
assert(!!base.match(/^prefix-.+?-postfix$/));
|
|
|
|
f.file.close();
|
|
|
|
await remove(f.filepath);
|
2020-03-28 13:03:49 -04:00
|
|
|
},
|
2019-02-10 18:49:48 -05:00
|
|
|
});
|