1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00

test(ext/node): added assertion errors test (#19609)

This commit is contained in:
Kaique da Silva 2023-06-29 23:22:04 -03:00 committed by GitHub
parent 4db534d461
commit fc335bd28d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 70 additions and 0 deletions

View file

@ -50,6 +50,7 @@ util::unit_test_factory!(
_fs_writeFile_test = _fs / _fs_writeFile_test,
_fs_write_test = _fs / _fs_write_test,
async_hooks_test,
assertion_error_test,
buffer_test,
child_process_test,
crypto_cipher_test = crypto / crypto_cipher_test,

View file

@ -0,0 +1,69 @@
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { stripColor } from "../../../test_util/std/fmt/colors.ts";
import {
assert,
assertStrictEquals,
} from "../../../test_util/std/testing/asserts.ts";
import { AssertionError } from "node:assert";
Deno.test({
name: "construct AssertionError() with given message",
fn() {
const err = new AssertionError(
{
message: "answer",
actual: "42",
expected: "42",
operator: "notStrictEqual",
},
);
assertStrictEquals(err.name, "AssertionError");
assertStrictEquals(err.message, "answer");
assertStrictEquals(err.generatedMessage, false);
assertStrictEquals(err.code, "ERR_ASSERTION");
assertStrictEquals(err.actual, "42");
assertStrictEquals(err.expected, "42");
assertStrictEquals(err.operator, "notStrictEqual");
},
});
Deno.test({
name: "construct AssertionError() with generated message",
fn() {
const err = new AssertionError(
{ actual: 1, expected: 2, operator: "equal" },
);
assertStrictEquals(err.name, "AssertionError");
assertStrictEquals(stripColor(err.message), "1 equal 2");
assertStrictEquals(err.generatedMessage, true);
assertStrictEquals(err.code, "ERR_ASSERTION");
assertStrictEquals(err.actual, 1);
assertStrictEquals(err.expected, 2);
assertStrictEquals(err.operator, "equal");
},
});
Deno.test({
name: "construct AssertionError() with stackStartFn",
fn: function stackStartFn() {
const expected = /node/;
const err = new AssertionError({
actual: "deno",
expected,
operator: "match",
stackStartFn,
});
assertStrictEquals(err.name, "AssertionError");
assertStrictEquals(stripColor(err.message), `'deno' match /node/`);
assertStrictEquals(err.generatedMessage, true);
assertStrictEquals(err.code, "ERR_ASSERTION");
assertStrictEquals(err.actual, "deno");
assertStrictEquals(err.expected, expected);
assertStrictEquals(err.operator, "match");
assert(err.stack, "error should have a stack");
assert(
!err.stack?.includes("stackStartFn"),
"stackStartFn() should not present in stack trace",
);
},
});