2024-01-01 21:11:32 +00:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-07-13 07:04:30 +00:00
|
|
|
import {
|
|
|
|
assert,
|
|
|
|
assertEquals,
|
|
|
|
AssertionError,
|
|
|
|
assertThrows,
|
|
|
|
fail,
|
|
|
|
} from "./mod.ts";
|
|
|
|
|
2023-12-08 16:04:29 +00:00
|
|
|
Deno.test("assertThrows() throws when thrown error class does not match expected", () => {
|
2023-07-13 07:04:30 +00:00
|
|
|
assertThrows(
|
|
|
|
() => {
|
|
|
|
//This next assertThrows will throw an AssertionError due to the wrong
|
|
|
|
//expected error class
|
|
|
|
assertThrows(
|
|
|
|
() => {
|
|
|
|
fail("foo");
|
|
|
|
},
|
|
|
|
TypeError,
|
|
|
|
"Failed assertion: foo",
|
|
|
|
);
|
|
|
|
},
|
|
|
|
AssertionError,
|
|
|
|
`Expected error to be instance of "TypeError", but was "AssertionError"`,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2023-12-08 16:04:29 +00:00
|
|
|
Deno.test("assertThrows() changes its return type by parameter", () => {
|
2023-07-13 07:04:30 +00:00
|
|
|
assertThrows(() => {
|
|
|
|
throw new Error();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-12-08 16:04:29 +00:00
|
|
|
Deno.test("assertThrows() throws when error class is expected but non-error value is thrown", () => {
|
2023-07-13 07:04:30 +00:00
|
|
|
assertThrows(
|
|
|
|
() => {
|
|
|
|
assertThrows(
|
|
|
|
() => {
|
|
|
|
throw "Panic!";
|
|
|
|
},
|
|
|
|
Error,
|
|
|
|
"Panic!",
|
|
|
|
);
|
|
|
|
},
|
|
|
|
AssertionError,
|
|
|
|
"A non-Error object was thrown.",
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2023-12-08 16:04:29 +00:00
|
|
|
Deno.test("assertThrows() matches thrown non-error value", () => {
|
2023-07-13 07:04:30 +00:00
|
|
|
assertThrows(
|
|
|
|
() => {
|
|
|
|
throw "Panic!";
|
|
|
|
},
|
|
|
|
);
|
|
|
|
assertThrows(
|
|
|
|
() => {
|
|
|
|
throw null;
|
|
|
|
},
|
|
|
|
);
|
|
|
|
assertThrows(
|
|
|
|
() => {
|
|
|
|
throw undefined;
|
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2023-12-08 16:04:29 +00:00
|
|
|
Deno.test("assertThrows() matches thrown error with given error class", () => {
|
2023-07-13 07:04:30 +00:00
|
|
|
assertThrows(
|
|
|
|
() => {
|
|
|
|
throw new Error("foo");
|
|
|
|
},
|
|
|
|
Error,
|
|
|
|
"foo",
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2023-12-08 16:04:29 +00:00
|
|
|
Deno.test("assertThrows() matches and returns thrown error value", () => {
|
2023-07-13 07:04:30 +00:00
|
|
|
const error = assertThrows(
|
|
|
|
() => {
|
|
|
|
throw new Error("foo");
|
|
|
|
},
|
|
|
|
);
|
|
|
|
assert(error instanceof Error);
|
|
|
|
assertEquals(error.message, "foo");
|
|
|
|
});
|
|
|
|
|
2023-12-08 16:04:29 +00:00
|
|
|
Deno.test("assertThrows() matches and returns thrown non-error", () => {
|
2023-07-13 07:04:30 +00:00
|
|
|
const stringError = assertThrows(
|
|
|
|
() => {
|
|
|
|
throw "Panic!";
|
|
|
|
},
|
|
|
|
);
|
|
|
|
assert(typeof stringError === "string");
|
|
|
|
assertEquals(stringError, "Panic!");
|
|
|
|
|
|
|
|
const numberError = assertThrows(
|
|
|
|
() => {
|
|
|
|
throw 1;
|
|
|
|
},
|
|
|
|
);
|
|
|
|
assert(typeof numberError === "number");
|
|
|
|
assertEquals(numberError, 1);
|
|
|
|
|
|
|
|
const nullError = assertThrows(
|
|
|
|
() => {
|
|
|
|
throw null;
|
|
|
|
},
|
|
|
|
);
|
|
|
|
assert(nullError === null);
|
|
|
|
|
|
|
|
const undefinedError = assertThrows(
|
|
|
|
() => {
|
|
|
|
throw undefined;
|
|
|
|
},
|
|
|
|
);
|
|
|
|
assert(typeof undefinedError === "undefined");
|
|
|
|
assertEquals(undefinedError, undefined);
|
|
|
|
});
|
|
|
|
|
2023-12-08 16:04:29 +00:00
|
|
|
Deno.test("assertThrows() matches subclass of expected error", () => {
|
2023-07-13 07:04:30 +00:00
|
|
|
assertThrows(
|
|
|
|
() => {
|
|
|
|
throw new AssertionError("Fail!");
|
|
|
|
},
|
|
|
|
Error,
|
|
|
|
"Fail!",
|
|
|
|
);
|
|
|
|
});
|
2024-05-07 00:08:16 +00:00
|
|
|
|
2024-09-17 06:28:22 +00:00
|
|
|
Deno.test("assertThrows() accepts abstract class", () => {
|
|
|
|
abstract class AbstractError extends Error {}
|
|
|
|
class ConcreteError extends AbstractError {}
|
|
|
|
|
|
|
|
assertThrows(
|
|
|
|
() => {
|
|
|
|
throw new ConcreteError("failed");
|
|
|
|
},
|
|
|
|
AbstractError,
|
|
|
|
"fail",
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2024-05-07 00:08:16 +00:00
|
|
|
Deno.test("assertThrows() throws when input function does not throw", () => {
|
|
|
|
assertThrows(
|
|
|
|
() => {
|
|
|
|
assertThrows(() => {});
|
|
|
|
},
|
|
|
|
AssertionError,
|
|
|
|
"Expected function to throw.",
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
Deno.test("assertThrows() throws with custom message", () => {
|
|
|
|
assertThrows(
|
|
|
|
() => {
|
|
|
|
assertThrows(() => {}, "CUSTOM MESSAGE");
|
|
|
|
},
|
|
|
|
AssertionError,
|
|
|
|
"Expected function to throw: CUSTOM MESSAGE",
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
Deno.test("assertThrows() throws with custom message and no error class", () => {
|
|
|
|
assertThrows(
|
|
|
|
() => {
|
|
|
|
// @ts-expect-error testing invalid input
|
|
|
|
assertThrows(() => {}, null, "CUSTOM MESSAGE");
|
|
|
|
},
|
|
|
|
AssertionError,
|
|
|
|
"Expected function to throw: CUSTOM MESSAGE",
|
|
|
|
);
|
|
|
|
});
|