mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
6e2df8c64f
This PR brings assertOps and assertResources sanitizers to Deno.test() API. assertOps checks that test doesn't leak async ops, ie. there are no unresolved promises originating from Deno APIs. Enabled by default, can be disabled using Deno.TestDefinition.disableOpSanitizer. assertResources checks that test doesn't leak resources, ie. all resources used in test are closed. For example; if a file is opened during a test case it must be explicitly closed before test case finishes. It's most useful for asynchronous generators. Enabled by default, can be disabled using Deno.TestDefinition.disableResourceSanitizer. We've used those sanitizers in internal runtime tests and it proved very useful in surfacing incorrect tests which resulted in interference between the tests. All tests have been sanitized. Closes #4208
53 lines
1.4 KiB
TypeScript
53 lines
1.4 KiB
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
const { remove, test } = Deno;
|
|
import { assert, assertEquals } from "../testing/asserts.ts";
|
|
import * as path from "../path/mod.ts";
|
|
import { copyBytes, tempFile } from "./util.ts";
|
|
|
|
test("[io/tuil] copyBytes", function(): void {
|
|
const dst = new Uint8Array(4);
|
|
|
|
dst.fill(0);
|
|
let src = Uint8Array.of(1, 2);
|
|
let len = copyBytes(dst, src, 0);
|
|
assert(len === 2);
|
|
assertEquals(dst, Uint8Array.of(1, 2, 0, 0));
|
|
|
|
dst.fill(0);
|
|
src = Uint8Array.of(1, 2);
|
|
len = copyBytes(dst, src, 1);
|
|
assert(len === 2);
|
|
assertEquals(dst, Uint8Array.of(0, 1, 2, 0));
|
|
|
|
dst.fill(0);
|
|
src = Uint8Array.of(1, 2, 3, 4, 5);
|
|
len = copyBytes(dst, src);
|
|
assert(len === 4);
|
|
assertEquals(dst, Uint8Array.of(1, 2, 3, 4));
|
|
|
|
dst.fill(0);
|
|
src = Uint8Array.of(1, 2);
|
|
len = copyBytes(dst, src, 100);
|
|
assert(len === 0);
|
|
assertEquals(dst, Uint8Array.of(0, 0, 0, 0));
|
|
|
|
dst.fill(0);
|
|
src = Uint8Array.of(3, 4);
|
|
len = copyBytes(dst, src, -2);
|
|
assert(len === 2);
|
|
assertEquals(dst, Uint8Array.of(3, 4, 0, 0));
|
|
});
|
|
|
|
test({
|
|
name: "[io/util] tempfile",
|
|
fn: async function(): Promise<void> {
|
|
const f = await tempFile(".", {
|
|
prefix: "prefix-",
|
|
postfix: "-postfix"
|
|
});
|
|
const base = path.basename(f.filepath);
|
|
assert(!!base.match(/^prefix-.+?-postfix$/));
|
|
f.file.close();
|
|
await remove(f.filepath);
|
|
}
|
|
});
|