2024-01-01 21:11:32 +00:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2022-04-08 05:01:46 +00:00
|
|
|
import {
|
|
|
|
assert,
|
|
|
|
assertEquals,
|
|
|
|
assertObjectMatch,
|
2024-06-25 10:26:12 +00:00
|
|
|
assertRejects,
|
2022-04-08 05:01:46 +00:00
|
|
|
assertStrictEquals,
|
2024-06-25 10:26:12 +00:00
|
|
|
assertThrows,
|
2024-04-29 02:57:30 +00:00
|
|
|
} from "@std/assert";
|
2022-04-08 05:01:46 +00:00
|
|
|
import {
|
2024-06-25 10:26:12 +00:00
|
|
|
after,
|
2022-04-08 05:01:46 +00:00
|
|
|
afterAll,
|
|
|
|
afterEach,
|
2024-06-25 10:26:12 +00:00
|
|
|
before,
|
2022-04-08 05:01:46 +00:00
|
|
|
beforeAll,
|
|
|
|
beforeEach,
|
|
|
|
describe,
|
|
|
|
it,
|
|
|
|
} from "./bdd.ts";
|
|
|
|
import { TestSuiteInternal } from "./_test_suite.ts";
|
2024-02-27 21:57:25 +00:00
|
|
|
import { assertSpyCall, assertSpyCalls, type Spy, spy, stub } from "./mock.ts";
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
class TestContext implements Deno.TestContext {
|
|
|
|
name: string;
|
|
|
|
origin: string;
|
|
|
|
steps: TestContext[];
|
|
|
|
spies: {
|
|
|
|
step: Spy;
|
|
|
|
};
|
|
|
|
|
|
|
|
constructor(name: string) {
|
|
|
|
this.name = name;
|
|
|
|
this.origin = "origin";
|
|
|
|
this.spies = {
|
|
|
|
step: spy(this, "step"),
|
2022-04-08 05:01:46 +00:00
|
|
|
};
|
2024-04-10 11:56:00 +00:00
|
|
|
this.steps = [];
|
|
|
|
}
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
async step(t: Deno.TestStepDefinition): Promise<boolean>;
|
|
|
|
async step(
|
|
|
|
name: string,
|
|
|
|
fn: (t: Deno.TestContext) => void | Promise<void>,
|
|
|
|
): Promise<boolean>;
|
|
|
|
async step(
|
|
|
|
fn: (t: Deno.TestContext) => void | Promise<void>,
|
|
|
|
): Promise<boolean>;
|
|
|
|
async step(
|
|
|
|
tOrNameOrFn:
|
|
|
|
| Deno.TestStepDefinition
|
|
|
|
| string
|
|
|
|
| ((t: Deno.TestContext) => void | Promise<void>),
|
|
|
|
fn?: (t: Deno.TestContext) => void | Promise<void>,
|
|
|
|
): Promise<boolean> {
|
|
|
|
let ignore = false;
|
|
|
|
if (typeof tOrNameOrFn === "function") {
|
|
|
|
ignore = false;
|
|
|
|
fn = tOrNameOrFn;
|
|
|
|
} else if (typeof tOrNameOrFn === "object") {
|
|
|
|
ignore = tOrNameOrFn.ignore ?? false;
|
|
|
|
fn = tOrNameOrFn.fn;
|
2022-04-08 05:01:46 +00:00
|
|
|
}
|
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
const name = typeof tOrNameOrFn === "string"
|
|
|
|
? tOrNameOrFn
|
|
|
|
: tOrNameOrFn.name;
|
|
|
|
const context = new TestContext(name);
|
|
|
|
this.steps.push(context);
|
|
|
|
if (!ignore) {
|
|
|
|
await fn!(context);
|
2022-04-08 05:01:46 +00:00
|
|
|
}
|
2024-04-10 11:56:00 +00:00
|
|
|
return !ignore;
|
2022-04-08 05:01:46 +00:00
|
|
|
}
|
2024-04-10 11:56:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const baseStepOptions: Omit<Deno.TestStepDefinition, "name" | "fn"> = {
|
|
|
|
ignore: false,
|
|
|
|
sanitizeExit: true,
|
|
|
|
sanitizeOps: true,
|
|
|
|
sanitizeResources: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
const baseOptions: Omit<Deno.TestDefinition, "name" | "fn"> = {
|
|
|
|
...baseStepOptions,
|
|
|
|
only: false,
|
|
|
|
permissions: "inherit",
|
|
|
|
};
|
|
|
|
|
|
|
|
interface GlobalContext {
|
|
|
|
allTimer: number;
|
|
|
|
eachTimer: number;
|
|
|
|
x?: number;
|
|
|
|
y?: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
let timerIdx = 1;
|
|
|
|
const timers = new Map<number, number>();
|
|
|
|
function hookFns() {
|
|
|
|
timerIdx = 1;
|
|
|
|
timers.clear();
|
|
|
|
return {
|
|
|
|
beforeAllFn: spy(async function (this: GlobalContext) {
|
|
|
|
await Promise.resolve();
|
|
|
|
this.allTimer = timerIdx++;
|
|
|
|
timers.set(this.allTimer, setTimeout(() => {}, 10000));
|
|
|
|
}),
|
|
|
|
afterAllFn: spy(async function (this: GlobalContext) {
|
|
|
|
await Promise.resolve();
|
|
|
|
clearTimeout(timers.get(this.allTimer));
|
|
|
|
}),
|
|
|
|
beforeEachFn: spy(async function (this: GlobalContext) {
|
|
|
|
await Promise.resolve();
|
|
|
|
this.eachTimer = timerIdx++;
|
|
|
|
timers.set(this.eachTimer, setTimeout(() => {}, 10000));
|
|
|
|
}),
|
|
|
|
afterEachFn: spy(async function (this: GlobalContext) {
|
|
|
|
await Promise.resolve();
|
|
|
|
clearTimeout(timers.get(this.eachTimer));
|
|
|
|
}),
|
2022-04-08 05:01:46 +00:00
|
|
|
};
|
2024-04-10 11:56:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Deno.test("beforeAll(), afterAll(), beforeEach() and afterEach()", async () => {
|
|
|
|
using test = stub(Deno, "test");
|
|
|
|
const fns = [spy(), spy()] as const;
|
|
|
|
const { beforeAllFn, afterAllFn, beforeEachFn, afterEachFn } = hookFns();
|
|
|
|
|
|
|
|
const context = new TestContext("global");
|
|
|
|
try {
|
|
|
|
beforeAll(beforeAllFn);
|
|
|
|
afterAll(afterAllFn);
|
|
|
|
|
|
|
|
beforeEach(beforeEachFn);
|
|
|
|
afterEach(afterEachFn);
|
|
|
|
|
|
|
|
assertEquals(it({ name: "example 1", fn: fns[0] }), undefined);
|
|
|
|
assertEquals(it({ name: "example 2", fn: fns[1] }), undefined);
|
|
|
|
|
|
|
|
assertSpyCalls(fns[0], 0);
|
|
|
|
assertSpyCalls(fns[1], 0);
|
|
|
|
|
|
|
|
assertSpyCall(test, 0);
|
|
|
|
const call = test.calls[0];
|
|
|
|
const options = call?.args[0] as Deno.TestDefinition;
|
|
|
|
assertEquals(Object.keys(options).sort(), ["fn", "name"]);
|
|
|
|
assertEquals(options.name, "global");
|
|
|
|
|
|
|
|
const result = options.fn(context);
|
|
|
|
assertStrictEquals(Promise.resolve(result), result);
|
|
|
|
assertEquals(await result, undefined);
|
|
|
|
assertSpyCalls(context.spies.step, 2);
|
|
|
|
} finally {
|
|
|
|
TestSuiteInternal.reset();
|
|
|
|
}
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
let fn = fns[0];
|
|
|
|
assertSpyCall(fn, 0, {
|
|
|
|
self: { allTimer: 1, eachTimer: 2 },
|
|
|
|
args: [context.steps[0]],
|
|
|
|
returned: undefined,
|
|
|
|
});
|
|
|
|
assertSpyCalls(fn, 1);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
fn = fns[1];
|
|
|
|
assertSpyCall(fn, 0, {
|
|
|
|
self: { allTimer: 1, eachTimer: 3 },
|
|
|
|
args: [context.steps[1]],
|
|
|
|
returned: undefined,
|
|
|
|
});
|
|
|
|
assertSpyCalls(fn, 1);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCalls(beforeAllFn, 1);
|
|
|
|
assertSpyCalls(afterAllFn, 1);
|
|
|
|
assertSpyCalls(beforeEachFn, 2);
|
|
|
|
assertSpyCalls(afterEachFn, 2);
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
Deno.test("it()", async (t) => {
|
|
|
|
/**
|
|
|
|
* Asserts that `Deno.test` is called with the correct options for the `it` call in the callback function.
|
|
|
|
* This is used to reduce code duplication when testing calling `it` with different call signatures.
|
|
|
|
*/
|
|
|
|
async function assertOptions<T>(
|
|
|
|
expectedOptions: Omit<Deno.TestDefinition, "name" | "fn">,
|
|
|
|
cb: (fn: Spy) => void,
|
|
|
|
) {
|
2024-02-16 04:26:33 +00:00
|
|
|
using test = stub(Deno, "test");
|
2024-04-10 11:56:00 +00:00
|
|
|
const fn = spy();
|
2022-04-08 05:01:46 +00:00
|
|
|
try {
|
2024-04-10 11:56:00 +00:00
|
|
|
cb(fn);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCalls(fn, 0);
|
2022-04-08 05:01:46 +00:00
|
|
|
assertSpyCall(test, 0);
|
|
|
|
const call = test.calls[0];
|
2024-01-04 22:26:55 +00:00
|
|
|
const options = call?.args[0] as Deno.TestDefinition;
|
2024-04-10 11:56:00 +00:00
|
|
|
assertEquals(
|
|
|
|
Object.keys(options).sort(),
|
|
|
|
["name", "fn", ...Object.keys(expectedOptions)].sort(),
|
|
|
|
);
|
|
|
|
assertObjectMatch(options, {
|
|
|
|
name: "example",
|
|
|
|
...expectedOptions,
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
const context = new TestContext("example");
|
2022-04-08 05:01:46 +00:00
|
|
|
const result = options.fn(context);
|
|
|
|
assertStrictEquals(Promise.resolve(result), result);
|
|
|
|
assertEquals(await result, undefined);
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCalls(context.spies.step, 0);
|
|
|
|
assertSpyCall(fn, 0, {
|
|
|
|
self: {},
|
|
|
|
args: [context],
|
|
|
|
returned: undefined,
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
} finally {
|
|
|
|
TestSuiteInternal.reset();
|
|
|
|
}
|
2024-04-10 11:56:00 +00:00
|
|
|
}
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
/**
|
|
|
|
* Asserts that `Deno.test` is called with just the name and function for the `it` call in the callback function.
|
|
|
|
* This is used to reduce code duplication when testing calling `it` with different call signatures.
|
|
|
|
*/
|
|
|
|
async function assertMinimumOptions(
|
|
|
|
cb: (fn: Spy) => void,
|
|
|
|
) {
|
|
|
|
await assertOptions({}, cb);
|
|
|
|
}
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
/**
|
|
|
|
* Asserts that `Deno.test` is called with all of the options for the `it` call in the callback function.
|
|
|
|
* This is used to reduce code duplication when testing calling `it` with different call signatures.
|
|
|
|
*/
|
|
|
|
async function assertAllOptions(
|
|
|
|
cb: (fn: Spy) => void,
|
|
|
|
) {
|
|
|
|
await assertOptions(baseOptions, cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
await t.step("signature 1", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
|
|
|
assertEquals(it({ name: "example", fn }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fn) => {
|
|
|
|
assertEquals(
|
|
|
|
it({
|
|
|
|
name: "example",
|
|
|
|
fn,
|
|
|
|
...baseOptions,
|
|
|
|
}),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}));
|
2022-04-08 05:01:46 +00:00
|
|
|
});
|
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("signature 2", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
|
|
|
assertEquals(it("example", { fn }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fn) => {
|
2022-04-08 05:01:46 +00:00
|
|
|
assertEquals(
|
2024-04-10 11:56:00 +00:00
|
|
|
it("example", {
|
|
|
|
fn,
|
|
|
|
...baseOptions,
|
|
|
|
}),
|
|
|
|
undefined,
|
2022-04-08 05:01:46 +00:00
|
|
|
);
|
2024-04-10 11:56:00 +00:00
|
|
|
}));
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("signature 3", async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
|
|
|
assertEquals(it("example", fn), undefined);
|
|
|
|
}));
|
|
|
|
|
|
|
|
await t.step("signature 4", async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
|
|
|
assertEquals(
|
|
|
|
it(function example(this: void, ...args) {
|
|
|
|
fn.apply(this, args);
|
|
|
|
}),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}));
|
|
|
|
|
|
|
|
await t.step("signature 5", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
|
|
|
assertEquals(it("example", {}, fn), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fn) => {
|
|
|
|
assertEquals(
|
|
|
|
it("example", {
|
|
|
|
...baseOptions,
|
|
|
|
}, fn),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
await t.step("signature 6", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
|
|
|
assertEquals(it({ name: "example" }, fn), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fn) => {
|
|
|
|
assertEquals(
|
|
|
|
it({
|
|
|
|
name: "example",
|
|
|
|
...baseOptions,
|
|
|
|
}, fn),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
await t.step("signature 7", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
|
|
|
assertEquals(
|
|
|
|
it({}, function example(this: void, ...args) {
|
|
|
|
fn.apply(this, args);
|
|
|
|
}),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fn) => {
|
|
|
|
assertEquals(
|
|
|
|
it({
|
|
|
|
...baseOptions,
|
|
|
|
}, function example(this: void, ...args) {
|
|
|
|
fn.apply(this, args);
|
|
|
|
}),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}));
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("only", async (t) => {
|
2022-04-08 05:01:46 +00:00
|
|
|
/**
|
2024-04-10 11:56:00 +00:00
|
|
|
* Asserts that `Deno.test` is called with just the name, only, and function for the `it.only` call in the callback function.
|
|
|
|
* This is used to reduce code duplication when testing calling `it.only` with different call signatures.
|
2022-04-08 05:01:46 +00:00
|
|
|
*/
|
|
|
|
async function assertMinimumOptions(
|
|
|
|
cb: (fn: Spy) => void,
|
2022-08-24 01:21:57 +00:00
|
|
|
) {
|
2024-04-10 11:56:00 +00:00
|
|
|
await assertOptions({ only: true }, cb);
|
2022-04-08 05:01:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2024-04-10 11:56:00 +00:00
|
|
|
* Asserts that `Deno.test` is called with all of the options for the `it.only` call in the callback function.
|
|
|
|
* This is used to reduce code duplication when testing calling `it.only` with different call signatures.
|
2022-04-08 05:01:46 +00:00
|
|
|
*/
|
|
|
|
async function assertAllOptions(
|
|
|
|
cb: (fn: Spy) => void,
|
2022-08-24 01:21:57 +00:00
|
|
|
) {
|
2024-04-10 11:56:00 +00:00
|
|
|
await assertOptions({ ...baseOptions, only: true }, cb);
|
2022-04-08 05:01:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
await t.step("signature 1", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
2024-04-10 11:56:00 +00:00
|
|
|
assertEquals(it.only({ name: "example", fn }), undefined);
|
2022-04-08 05:01:46 +00:00
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fn) => {
|
|
|
|
assertEquals(
|
2024-04-10 11:56:00 +00:00
|
|
|
it.only({
|
2022-04-08 05:01:46 +00:00
|
|
|
name: "example",
|
|
|
|
fn,
|
|
|
|
...baseOptions,
|
|
|
|
}),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
await t.step("signature 2", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
2024-04-10 11:56:00 +00:00
|
|
|
assertEquals(it.only("example", { fn }), undefined);
|
2022-04-08 05:01:46 +00:00
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fn) => {
|
|
|
|
assertEquals(
|
2024-04-10 11:56:00 +00:00
|
|
|
it.only("example", {
|
2022-04-08 05:01:46 +00:00
|
|
|
fn,
|
|
|
|
...baseOptions,
|
|
|
|
}),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step(
|
|
|
|
"signature 3",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
|
|
|
assertEquals(it.only("example", fn), undefined);
|
|
|
|
}),
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step(
|
|
|
|
"signature 4",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
|
|
|
assertEquals(
|
|
|
|
it.only(function example(this: void, ...args) {
|
|
|
|
fn.apply(this, args);
|
|
|
|
}),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}),
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
|
|
|
await t.step("signature 5", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
2024-04-10 11:56:00 +00:00
|
|
|
assertEquals(it.only("example", {}, fn), undefined);
|
2022-04-08 05:01:46 +00:00
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fn) => {
|
|
|
|
assertEquals(
|
2024-04-10 11:56:00 +00:00
|
|
|
it.only("example", {
|
2022-04-08 05:01:46 +00:00
|
|
|
...baseOptions,
|
|
|
|
}, fn),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
await t.step("signature 6", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
2024-04-10 11:56:00 +00:00
|
|
|
assertEquals(it.only({ name: "example" }, fn), undefined);
|
2022-04-08 05:01:46 +00:00
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fn) => {
|
|
|
|
assertEquals(
|
2024-04-10 11:56:00 +00:00
|
|
|
it.only({
|
2022-04-08 05:01:46 +00:00
|
|
|
name: "example",
|
|
|
|
...baseOptions,
|
|
|
|
}, fn),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
await t.step("signature 7", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
|
|
|
assertEquals(
|
2024-04-10 11:56:00 +00:00
|
|
|
it.only({}, function example(this: void, ...args) {
|
2022-04-08 05:01:46 +00:00
|
|
|
fn.apply(this, args);
|
|
|
|
}),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fn) => {
|
|
|
|
assertEquals(
|
2024-04-10 11:56:00 +00:00
|
|
|
it.only({
|
2022-04-08 05:01:46 +00:00
|
|
|
...baseOptions,
|
|
|
|
}, function example(this: void, ...args) {
|
|
|
|
fn.apply(this, args);
|
|
|
|
}),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}));
|
|
|
|
});
|
2024-04-10 11:56:00 +00:00
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("ignore", async (t) => {
|
|
|
|
/**
|
|
|
|
* Asserts that `Deno.test` is called with just the name, ignore, and function for the `it.ignore` call in the callback function.
|
|
|
|
* This is used to reduce code duplication when testing calling `it.ignore` with different call signatures.
|
|
|
|
*/
|
|
|
|
async function assertMinimumOptions(
|
|
|
|
cb: (fn: Spy) => void,
|
|
|
|
) {
|
|
|
|
await assertOptions({ ignore: true }, cb);
|
|
|
|
}
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
/**
|
|
|
|
* Asserts that `Deno.test` is called with all of the options for the `it.ignore` call in the callback function.
|
|
|
|
* This is used to reduce code duplication when testing calling `it.ignore` with different call signatures.
|
|
|
|
*/
|
|
|
|
async function assertAllOptions(
|
|
|
|
cb: (fn: Spy) => void,
|
|
|
|
) {
|
|
|
|
await assertOptions({ ...baseOptions, ignore: true }, cb);
|
|
|
|
}
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("signature 1", async (t) => {
|
2022-04-08 05:01:46 +00:00
|
|
|
await t.step(
|
2024-04-10 11:56:00 +00:00
|
|
|
"minimum options",
|
2022-04-08 05:01:46 +00:00
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
2024-04-10 11:56:00 +00:00
|
|
|
assertEquals(it.ignore({ name: "example", fn }), undefined);
|
2022-04-08 05:01:46 +00:00
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
2024-06-25 10:26:12 +00:00
|
|
|
await t.step(
|
|
|
|
"minimum options (skip)",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
|
|
|
it.skip({ name: "example", fn });
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fn) => {
|
|
|
|
assertEquals(
|
|
|
|
it.ignore({
|
|
|
|
name: "example",
|
|
|
|
fn,
|
|
|
|
...baseOptions,
|
|
|
|
}),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
await t.step("signature 2", async (t) => {
|
2022-04-08 05:01:46 +00:00
|
|
|
await t.step(
|
2024-04-10 11:56:00 +00:00
|
|
|
"minimum options",
|
2022-04-08 05:01:46 +00:00
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
2024-04-10 11:56:00 +00:00
|
|
|
assertEquals(it.ignore("example", { fn }), undefined);
|
2022-04-08 05:01:46 +00:00
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fn) => {
|
|
|
|
assertEquals(
|
|
|
|
it.ignore("example", {
|
|
|
|
fn,
|
|
|
|
...baseOptions,
|
2022-04-08 05:01:46 +00:00
|
|
|
}),
|
2024-04-10 11:56:00 +00:00
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}));
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step(
|
|
|
|
"signature 3",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
|
|
|
assertEquals(it.ignore("example", fn), undefined);
|
|
|
|
}),
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step(
|
|
|
|
"signature 4",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
|
|
|
assertEquals(
|
|
|
|
it.ignore(function example(this: void, ...args) {
|
|
|
|
fn.apply(this, args);
|
2022-04-08 05:01:46 +00:00
|
|
|
}),
|
2024-04-10 11:56:00 +00:00
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}),
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("signature 5", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
|
|
|
assertEquals(it.ignore("example", {}, fn), undefined);
|
|
|
|
}),
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fn) => {
|
|
|
|
assertEquals(
|
|
|
|
it.ignore("example", {
|
|
|
|
...baseOptions,
|
|
|
|
}, fn),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}));
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("signature 6", async (t) => {
|
2022-04-08 05:01:46 +00:00
|
|
|
await t.step(
|
2024-04-10 11:56:00 +00:00
|
|
|
"minimum options",
|
2022-04-08 05:01:46 +00:00
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
2024-04-10 11:56:00 +00:00
|
|
|
assertEquals(it.ignore({ name: "example" }, fn), undefined);
|
2022-04-08 05:01:46 +00:00
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fn) => {
|
|
|
|
assertEquals(
|
|
|
|
it.ignore({
|
|
|
|
name: "example",
|
|
|
|
...baseOptions,
|
|
|
|
}, fn),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
await t.step("signature 7", async (t) => {
|
2022-04-08 05:01:46 +00:00
|
|
|
await t.step(
|
2024-04-10 11:56:00 +00:00
|
|
|
"minimum options",
|
2022-04-08 05:01:46 +00:00
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fn) => {
|
|
|
|
assertEquals(
|
2024-04-10 11:56:00 +00:00
|
|
|
it.ignore({}, function example(this: void, ...args) {
|
2022-04-08 05:01:46 +00:00
|
|
|
fn.apply(this, args);
|
|
|
|
}),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fn) => {
|
|
|
|
assertEquals(
|
|
|
|
it.ignore({
|
|
|
|
...baseOptions,
|
|
|
|
}, function example(this: void, ...args) {
|
|
|
|
fn.apply(this, args);
|
2022-04-08 05:01:46 +00:00
|
|
|
}),
|
2024-04-10 11:56:00 +00:00
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
Deno.test("describe()", async (t) => {
|
|
|
|
/**
|
|
|
|
* Asserts that `Deno.test` is called with the correct options for the `describe` call in the callback function.
|
|
|
|
* In addition to that, it asserts that the individual test cases registered with `it` use the test step API correctly.
|
|
|
|
* This is used to reduce code duplication when testing calling `describe` with different call signatures.
|
|
|
|
*/
|
|
|
|
async function assertOptions(
|
|
|
|
expectedOptions: Omit<Deno.TestDefinition, "name" | "fn">,
|
|
|
|
cb: (fns: readonly [Spy, Spy]) => void,
|
|
|
|
) {
|
|
|
|
using test = stub(Deno, "test");
|
|
|
|
const fns = [spy(), spy()] as const;
|
|
|
|
try {
|
|
|
|
cb(fns);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCall(test, 0);
|
|
|
|
const call = test.calls[0];
|
|
|
|
const options = call?.args[0] as Deno.TestDefinition;
|
|
|
|
assertEquals(
|
|
|
|
Object.keys(options).sort(),
|
|
|
|
["name", "fn", ...Object.keys(expectedOptions)].sort(),
|
|
|
|
);
|
|
|
|
assertObjectMatch(options, {
|
|
|
|
name: "example",
|
|
|
|
...expectedOptions,
|
2022-04-08 05:01:46 +00:00
|
|
|
});
|
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCalls(fns[0], 0);
|
|
|
|
assertSpyCalls(fns[1], 0);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
const context = new TestContext("example");
|
|
|
|
const result = options.fn(context);
|
|
|
|
assertStrictEquals(Promise.resolve(result), result);
|
|
|
|
assertEquals(await result, undefined);
|
|
|
|
assertSpyCalls(context.spies.step, 2);
|
|
|
|
|
|
|
|
let fn = fns[0];
|
|
|
|
assertSpyCall(fn, 0, {
|
|
|
|
self: {},
|
|
|
|
args: [context.steps[0]],
|
|
|
|
returned: undefined,
|
2022-04-08 05:01:46 +00:00
|
|
|
});
|
2023-04-13 03:30:04 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
fn = fns[1];
|
|
|
|
assertSpyCall(fn, 0, {
|
|
|
|
self: {},
|
|
|
|
args: [context.steps[1]],
|
|
|
|
returned: undefined,
|
2023-04-13 03:30:04 +00:00
|
|
|
});
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCalls(fn, 1);
|
|
|
|
} finally {
|
|
|
|
TestSuiteInternal.reset();
|
|
|
|
}
|
|
|
|
}
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
/**
|
|
|
|
* Asserts that `Deno.test` is called with just the name and function for the `describe` call in the callback function.
|
|
|
|
* In addition to that, it asserts that the individual test cases registered with `it` use the test step API correctly.
|
|
|
|
* This is used to reduce code duplication when testing calling `describe` with different call signatures.
|
|
|
|
*/
|
|
|
|
async function assertMinimumOptions(
|
|
|
|
cb: (fns: readonly [Spy, Spy]) => void,
|
|
|
|
) {
|
|
|
|
await assertOptions({}, cb);
|
|
|
|
}
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
/**
|
|
|
|
* Asserts that `Deno.test` is called with all of the options for the `describe` call in the callback function.
|
|
|
|
* In addition to that, it asserts that the individual test cases registered with `it` use the test step API correctly.
|
|
|
|
* This is used to reduce code duplication when testing calling `describe` with different call signatures.
|
|
|
|
*/
|
|
|
|
async function assertAllOptions(
|
|
|
|
cb: (fns: readonly [Spy, Spy]) => void,
|
|
|
|
) {
|
|
|
|
await assertOptions({ ...baseOptions }, cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
await t.step("signature 1", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
|
|
|
const suite = describe({ name: "example" });
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "a", fn: fns[0] }), undefined);
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fns) => {
|
|
|
|
const suite = describe({
|
2022-04-08 05:01:46 +00:00
|
|
|
name: "example",
|
2024-04-10 11:56:00 +00:00
|
|
|
fn: () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
},
|
|
|
|
...baseOptions,
|
2022-04-08 05:01:46 +00:00
|
|
|
});
|
2024-04-10 11:56:00 +00:00
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}));
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step(
|
|
|
|
"signature 2",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
|
|
|
const suite = describe("example");
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "a", fn: fns[0] }), undefined);
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("signature 3", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
|
|
|
const suite = describe("example", {});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "a", fn: fns[0] }), undefined);
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fns) => {
|
|
|
|
const suite = describe("example", {
|
|
|
|
fn: () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
},
|
|
|
|
...baseOptions,
|
2022-04-08 05:01:46 +00:00
|
|
|
});
|
2024-04-10 11:56:00 +00:00
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}));
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step(
|
|
|
|
"signature 4",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
|
|
|
const suite = describe("example", () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
2022-04-08 05:01:46 +00:00
|
|
|
});
|
2024-04-10 11:56:00 +00:00
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step(
|
|
|
|
"signature 5",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
|
|
|
const suite = describe(function example() {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step("signature 6", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
|
|
|
const suite = describe("example", {}, () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fns) => {
|
|
|
|
const suite = describe("example", {
|
|
|
|
...baseOptions,
|
|
|
|
}, () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
await t.step("signature 7", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
|
|
|
const suite = describe({ name: "example" }, () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fns) => {
|
|
|
|
const suite = describe({
|
|
|
|
name: "example",
|
|
|
|
...baseOptions,
|
|
|
|
}, () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
await t.step("signature 8", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
|
|
|
const suite = describe({}, function example() {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step("all options", async () =>
|
|
|
|
await assertAllOptions((fns) => {
|
|
|
|
const suite = describe({
|
|
|
|
...baseOptions,
|
|
|
|
}, function example() {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}));
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("only", async (t) => {
|
2022-04-08 05:01:46 +00:00
|
|
|
/**
|
2024-04-10 11:56:00 +00:00
|
|
|
* Asserts that `Deno.test` is called with just the name, only, and function for the `describe.only` call in the callback function.
|
2022-04-08 05:01:46 +00:00
|
|
|
* In addition to that, it asserts that the individual test cases registered with `it` use the test step API correctly.
|
2024-04-10 11:56:00 +00:00
|
|
|
* This is used to reduce code duplication when testing calling `describe.only` with different call signatures.
|
2022-04-08 05:01:46 +00:00
|
|
|
*/
|
|
|
|
async function assertMinimumOptions(
|
2024-01-04 22:26:55 +00:00
|
|
|
cb: (fns: readonly [Spy, Spy]) => void,
|
2022-08-24 01:21:57 +00:00
|
|
|
) {
|
2024-04-10 11:56:00 +00:00
|
|
|
await assertOptions({ only: true }, cb);
|
2022-04-08 05:01:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2024-04-10 11:56:00 +00:00
|
|
|
* Asserts that `Deno.test` is called with all of the options for the `describe.only` call in the callback function.
|
2022-04-08 05:01:46 +00:00
|
|
|
* In addition to that, it asserts that the individual test cases registered with `it` use the test step API correctly.
|
2024-04-10 11:56:00 +00:00
|
|
|
* This is used to reduce code duplication when testing calling `describe.only` with different call signatures.
|
2022-04-08 05:01:46 +00:00
|
|
|
*/
|
|
|
|
async function assertAllOptions(
|
2024-01-04 22:26:55 +00:00
|
|
|
cb: (fns: readonly [Spy, Spy]) => void,
|
2022-08-24 01:21:57 +00:00
|
|
|
) {
|
2024-04-10 11:56:00 +00:00
|
|
|
await assertOptions({ ...baseOptions, only: true }, cb);
|
2022-04-08 05:01:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
await t.step("signature 1", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
2024-04-10 11:56:00 +00:00
|
|
|
const suite = describe.only({ name: "example" });
|
2022-04-08 05:01:46 +00:00
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "a", fn: fns[0] }), undefined);
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step(
|
|
|
|
"all options",
|
|
|
|
async () =>
|
|
|
|
await assertAllOptions((fns) => {
|
|
|
|
const suite = describe.only({
|
|
|
|
name: "example",
|
|
|
|
fn: () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
},
|
|
|
|
...baseOptions,
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
await t.step(
|
|
|
|
"signature 2",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
2024-04-10 11:56:00 +00:00
|
|
|
const suite = describe.only("example");
|
2022-04-08 05:01:46 +00:00
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "a", fn: fns[0] }), undefined);
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step("signature 3", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
2024-04-10 11:56:00 +00:00
|
|
|
const suite = describe.only("example", {});
|
2022-04-08 05:01:46 +00:00
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "a", fn: fns[0] }), undefined);
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step(
|
|
|
|
"all options",
|
|
|
|
async () =>
|
|
|
|
await assertAllOptions((fns) => {
|
|
|
|
const suite = describe.only("example", {
|
|
|
|
fn: () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
},
|
|
|
|
...baseOptions,
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
await t.step(
|
|
|
|
"signature 4",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
2024-04-10 11:56:00 +00:00
|
|
|
const suite = describe.only("example", () => {
|
2022-04-08 05:01:46 +00:00
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step(
|
|
|
|
"signature 5",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
2024-04-10 11:56:00 +00:00
|
|
|
const suite = describe.only(function example() {
|
2022-04-08 05:01:46 +00:00
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step("signature 6", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
2024-04-10 11:56:00 +00:00
|
|
|
const suite = describe.only("example", {}, () => {
|
2022-04-08 05:01:46 +00:00
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step(
|
2024-04-10 11:56:00 +00:00
|
|
|
"all options",
|
2022-04-08 05:01:46 +00:00
|
|
|
async () =>
|
2024-04-10 11:56:00 +00:00
|
|
|
await assertAllOptions((fns) => {
|
|
|
|
const suite = describe.only("example", {
|
|
|
|
...baseOptions,
|
|
|
|
}, () => {
|
2022-04-08 05:01:46 +00:00
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
2024-04-10 11:56:00 +00:00
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("signature 7", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
|
|
|
const suite = describe.only({ name: "example" }, () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step(
|
|
|
|
"all options",
|
|
|
|
async () =>
|
|
|
|
await assertAllOptions((fns) => {
|
|
|
|
const suite = describe.only({
|
|
|
|
name: "example",
|
|
|
|
...baseOptions,
|
|
|
|
}, () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
await t.step("signature 8", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
2024-04-10 11:56:00 +00:00
|
|
|
const suite = describe.only({}, function example() {
|
2022-04-08 05:01:46 +00:00
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step(
|
|
|
|
"all options",
|
|
|
|
async () =>
|
|
|
|
await assertAllOptions((fns) => {
|
|
|
|
const suite = describe.only({
|
|
|
|
...baseOptions,
|
|
|
|
}, function example() {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
});
|
2024-04-10 11:56:00 +00:00
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("ignore", async (t) => {
|
|
|
|
/**
|
|
|
|
* Asserts that `Deno.test` is called with just the name, ignore, and function for the `describe.ignore` call in the callback function.
|
|
|
|
* In addition to that, it asserts that the individual test cases registered with `it` use the test step API correctly.
|
|
|
|
* This is used to reduce code duplication when testing calling `describe.ignore` with different call signatures.
|
|
|
|
*/
|
|
|
|
async function assertMinimumOptions(
|
|
|
|
cb: (fns: readonly [Spy, Spy]) => void,
|
|
|
|
) {
|
|
|
|
await assertOptions({ ignore: true }, cb);
|
|
|
|
}
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
/**
|
|
|
|
* Asserts that `Deno.test` is called with all of the options for the `describe.ignore` call in the callback function.
|
|
|
|
* In addition to that, it asserts that the individual test cases registered with `it` use the test step API correctly.
|
|
|
|
* This is used to reduce code duplication when testing calling `describe.ignore` with different call signatures.
|
|
|
|
*/
|
|
|
|
async function assertAllOptions(
|
|
|
|
cb: (fns: readonly [Spy, Spy]) => void,
|
|
|
|
) {
|
|
|
|
await assertOptions({ ...baseOptions, ignore: true }, cb);
|
|
|
|
}
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("signature 1", async (t) => {
|
|
|
|
await t.step(
|
|
|
|
"minimum options",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
|
|
|
const suite = describe.ignore({ name: "example" });
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "a", fn: fns[0] }), undefined);
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-06-25 10:26:12 +00:00
|
|
|
await t.step(
|
|
|
|
"minimum options (skip)",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
|
|
|
const suite = describe.skip({ name: "example" });
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
it({ suite, name: "a", fn: fns[0] });
|
|
|
|
it({ suite, name: "b", fn: fns[1] });
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step(
|
|
|
|
"all options",
|
|
|
|
async () =>
|
|
|
|
await assertAllOptions((fns) => {
|
|
|
|
const suite = describe.ignore({
|
|
|
|
name: "example",
|
|
|
|
fn: () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
},
|
|
|
|
...baseOptions,
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
await t.step(
|
|
|
|
"signature 2",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
|
|
|
const suite = describe.ignore("example");
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "a", fn: fns[0] }), undefined);
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("signature 3", async (t) => {
|
2022-04-08 05:01:46 +00:00
|
|
|
await t.step(
|
2024-04-10 11:56:00 +00:00
|
|
|
"minimum options",
|
2022-04-08 05:01:46 +00:00
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
2024-04-10 11:56:00 +00:00
|
|
|
const suite = describe.ignore("example", {});
|
2022-04-08 05:01:46 +00:00
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "a", fn: fns[0] }), undefined);
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step(
|
|
|
|
"all options",
|
|
|
|
async () =>
|
|
|
|
await assertAllOptions((fns) => {
|
|
|
|
const suite = describe.ignore("example", {
|
|
|
|
fn: () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
},
|
|
|
|
...baseOptions,
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step(
|
|
|
|
"signature 4",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
|
|
|
const suite = describe.ignore("example", () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step(
|
|
|
|
"signature 5",
|
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
|
|
|
const suite = describe.ignore(function example() {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("signature 6", async (t) => {
|
2022-04-08 05:01:46 +00:00
|
|
|
await t.step(
|
2024-04-10 11:56:00 +00:00
|
|
|
"minimum options",
|
2022-04-08 05:01:46 +00:00
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
2024-04-10 11:56:00 +00:00
|
|
|
const suite = describe.ignore("example", {}, () => {
|
2022-04-08 05:01:46 +00:00
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step(
|
2024-04-10 11:56:00 +00:00
|
|
|
"all options",
|
2022-04-08 05:01:46 +00:00
|
|
|
async () =>
|
2024-04-10 11:56:00 +00:00
|
|
|
await assertAllOptions((fns) => {
|
|
|
|
const suite = describe.ignore("example", {
|
|
|
|
...baseOptions,
|
|
|
|
}, () => {
|
2022-04-08 05:01:46 +00:00
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("signature 7", async (t) => {
|
2022-04-08 05:01:46 +00:00
|
|
|
await t.step(
|
2024-04-10 11:56:00 +00:00
|
|
|
"minimum options",
|
2022-04-08 05:01:46 +00:00
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
2024-04-10 11:56:00 +00:00
|
|
|
const suite = describe.ignore({ name: "example" }, () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step(
|
2024-04-10 11:56:00 +00:00
|
|
|
"all options",
|
2022-04-08 05:01:46 +00:00
|
|
|
async () =>
|
2024-04-10 11:56:00 +00:00
|
|
|
await assertAllOptions((fns) => {
|
|
|
|
const suite = describe.ignore({
|
|
|
|
name: "example",
|
|
|
|
...baseOptions,
|
|
|
|
}, () => {
|
2022-04-08 05:01:46 +00:00
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
2024-04-10 11:56:00 +00:00
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("signature 8", async (t) => {
|
2022-04-08 05:01:46 +00:00
|
|
|
await t.step(
|
2024-04-10 11:56:00 +00:00
|
|
|
"minimum options",
|
2022-04-08 05:01:46 +00:00
|
|
|
async () =>
|
|
|
|
await assertMinimumOptions((fns) => {
|
2024-04-10 11:56:00 +00:00
|
|
|
const suite = describe.ignore({}, function example() {
|
2022-04-08 05:01:46 +00:00
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step(
|
|
|
|
"all options",
|
|
|
|
async () =>
|
|
|
|
await assertAllOptions((fns) => {
|
|
|
|
const suite = describe.ignore({
|
|
|
|
...baseOptions,
|
|
|
|
}, function example() {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
});
|
|
|
|
assert(suite && typeof suite.symbol === "symbol");
|
|
|
|
assertEquals(it({ suite, name: "b", fn: fns[1] }), undefined);
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("nested only", async (t) => {
|
|
|
|
/**
|
|
|
|
* Asserts that when only is used on a nested `describe` or `it` call, it will be the only test case or suite that runs in the file.
|
|
|
|
* This is used to reduce code duplication when testing calling `describe.ignore` with different call signatures.
|
|
|
|
*/
|
|
|
|
async function assertOnly(
|
|
|
|
cb: (fns: readonly [Spy, Spy, Spy]) => void,
|
|
|
|
) {
|
|
|
|
using test = stub(Deno, "test");
|
|
|
|
const fns = [spy(), spy(), spy()] as const;
|
|
|
|
try {
|
|
|
|
cb(fns);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCall(test, 0);
|
|
|
|
const call = test.calls[0];
|
|
|
|
const options = call?.args[0] as Deno.TestDefinition;
|
|
|
|
assertEquals(
|
|
|
|
Object.keys(options).sort(),
|
|
|
|
["name", "only", "fn"].sort(),
|
2022-04-08 05:01:46 +00:00
|
|
|
);
|
2024-04-10 11:56:00 +00:00
|
|
|
assertObjectMatch(options, {
|
|
|
|
name: "example",
|
|
|
|
only: true,
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCalls(fns[0], 0);
|
|
|
|
assertSpyCalls(fns[1], 0);
|
2023-04-13 03:30:04 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
const context = new TestContext("example");
|
|
|
|
const result = options.fn(context);
|
|
|
|
assertStrictEquals(Promise.resolve(result), result);
|
|
|
|
assertEquals(await result, undefined);
|
|
|
|
assertSpyCalls(context.spies.step, 1);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
let fn = fns[0];
|
|
|
|
assertSpyCalls(fn, 0);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
fn = fns[1];
|
|
|
|
assertSpyCall(fn, 0, {
|
|
|
|
self: {},
|
|
|
|
returned: undefined,
|
|
|
|
});
|
|
|
|
assertSpyCalls(fn, 1);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
fn = fns[2];
|
|
|
|
assertSpyCalls(fn, 0);
|
|
|
|
} finally {
|
|
|
|
TestSuiteInternal.reset();
|
2022-04-08 05:01:46 +00:00
|
|
|
}
|
2024-04-10 11:56:00 +00:00
|
|
|
}
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("it", async () =>
|
|
|
|
await assertOnly((fns) => {
|
|
|
|
describe("example", () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
assertEquals(it.only({ name: "b", fn: fns[1] }), undefined);
|
|
|
|
assertEquals(it({ name: "c", fn: fns[2] }), undefined);
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
await t.step("nested it", async () =>
|
|
|
|
await assertOnly((fns) => {
|
|
|
|
describe("example", () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
describe("nested", () => {
|
2022-04-08 05:01:46 +00:00
|
|
|
assertEquals(it.only({ name: "b", fn: fns[1] }), undefined);
|
|
|
|
});
|
2024-04-10 11:56:00 +00:00
|
|
|
assertEquals(it({ name: "c", fn: fns[2] }), undefined);
|
|
|
|
});
|
|
|
|
}));
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("describe", async () =>
|
|
|
|
await assertOnly((fns) => {
|
|
|
|
describe("example", () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
describe.only("nested", () => {
|
|
|
|
assertEquals(it({ name: "b", fn: fns[1] }), undefined);
|
2022-04-08 05:01:46 +00:00
|
|
|
});
|
2024-04-10 11:56:00 +00:00
|
|
|
assertEquals(it({ name: "c", fn: fns[2] }), undefined);
|
|
|
|
});
|
|
|
|
}));
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("nested describe", async () =>
|
|
|
|
await assertOnly((fns) => {
|
|
|
|
describe("example", () => {
|
|
|
|
assertEquals(it({ name: "a", fn: fns[0] }), undefined);
|
|
|
|
describe("nested", () => {
|
|
|
|
describe.only("nested 2", () => {
|
2022-04-08 05:01:46 +00:00
|
|
|
assertEquals(it({ name: "b", fn: fns[1] }), undefined);
|
|
|
|
});
|
|
|
|
});
|
2024-04-10 11:56:00 +00:00
|
|
|
assertEquals(it({ name: "c", fn: fns[2] }), undefined);
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("flat child only", async (t) => {
|
|
|
|
/**
|
|
|
|
* Asserts that when only is used on a child `describe` or `it` call, it will be the only test case or suite that runs within the top test suite.
|
2024-09-16 22:48:56 +00:00
|
|
|
* This demonstrates the issue where `Deno.test` is called without `only` even though one of its child steps are focused.
|
2024-04-10 11:56:00 +00:00
|
|
|
* This is used to reduce code duplication when testing calling `describe.ignore` with different call signatures.
|
|
|
|
*/
|
|
|
|
async function assertOnly(
|
|
|
|
cb: (fns: readonly [Spy, Spy, Spy]) => void,
|
|
|
|
) {
|
|
|
|
using test = stub(Deno, "test");
|
|
|
|
const fns = [spy(), spy(), spy()] as const;
|
|
|
|
try {
|
|
|
|
cb(fns);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCall(test, 0);
|
|
|
|
const call = test.calls[0];
|
|
|
|
const options = call?.args[0] as Deno.TestDefinition;
|
|
|
|
assertEquals(
|
|
|
|
Object.keys(options).sort(),
|
|
|
|
["name", "fn"].sort(),
|
|
|
|
);
|
|
|
|
assertObjectMatch(options, {
|
|
|
|
name: "example",
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCalls(fns[0], 0);
|
|
|
|
assertSpyCalls(fns[1], 0);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
const context = new TestContext("example");
|
|
|
|
const result = options.fn(context);
|
|
|
|
assertStrictEquals(Promise.resolve(result), result);
|
|
|
|
assertEquals(await result, undefined);
|
|
|
|
assertSpyCalls(context.spies.step, 1);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
let fn = fns[0];
|
|
|
|
assertSpyCalls(fn, 0);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
fn = fns[1];
|
|
|
|
assertSpyCall(fn, 0, {
|
|
|
|
self: {},
|
|
|
|
returned: undefined,
|
|
|
|
});
|
|
|
|
assertSpyCalls(fn, 1);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
fn = fns[2];
|
|
|
|
assertSpyCalls(fn, 0);
|
|
|
|
} finally {
|
|
|
|
TestSuiteInternal.reset();
|
2022-04-08 05:01:46 +00:00
|
|
|
}
|
2024-04-10 11:56:00 +00:00
|
|
|
}
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("it", async () =>
|
|
|
|
await assertOnly((fns) => {
|
|
|
|
const suite = describe("example");
|
|
|
|
assertEquals(it({ name: "a", suite, fn: fns[0] }), undefined);
|
|
|
|
assertEquals(it.only({ name: "b", suite, fn: fns[1] }), undefined);
|
|
|
|
assertEquals(it({ name: "c", suite, fn: fns[2] }), undefined);
|
|
|
|
}));
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("deep child it", async () =>
|
|
|
|
await assertOnly((fns) => {
|
|
|
|
const suite = describe("example");
|
|
|
|
assertEquals(it({ name: "a", suite, fn: fns[0] }), undefined);
|
|
|
|
const childSuite = describe(suite, "child");
|
|
|
|
assertEquals(
|
|
|
|
it.only({ name: "b", suite: childSuite, fn: fns[1] }),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
assertEquals(it({ name: "c", suite, fn: fns[2] }), undefined);
|
|
|
|
}));
|
|
|
|
|
|
|
|
await t.step("describe", async () =>
|
|
|
|
await assertOnly((fns) => {
|
|
|
|
const suite = describe("example");
|
|
|
|
assertEquals(it({ name: "a", suite, fn: fns[0] }), undefined);
|
|
|
|
const childSuite = describe.only(suite, "child");
|
|
|
|
assertEquals(
|
|
|
|
it({ name: "b", suite: childSuite, fn: fns[1] }),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
assertEquals(it({ name: "c", suite, fn: fns[2] }), undefined);
|
|
|
|
}));
|
|
|
|
|
|
|
|
await t.step(
|
|
|
|
"deep child describe",
|
|
|
|
async () =>
|
2022-04-08 05:01:46 +00:00
|
|
|
await assertOnly((fns) => {
|
|
|
|
const suite = describe("example");
|
|
|
|
assertEquals(it({ name: "a", suite, fn: fns[0] }), undefined);
|
|
|
|
const childSuite = describe(suite, "child");
|
2024-04-10 11:56:00 +00:00
|
|
|
const child2Suite = describe.only(childSuite, "child 2");
|
2022-04-08 05:01:46 +00:00
|
|
|
assertEquals(
|
2024-04-10 11:56:00 +00:00
|
|
|
it({ name: "b", suite: child2Suite, fn: fns[1] }),
|
2022-04-08 05:01:46 +00:00
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
assertEquals(it({ name: "c", suite, fn: fns[2] }), undefined);
|
2024-04-10 11:56:00 +00:00
|
|
|
}),
|
|
|
|
);
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step("with hooks", async (t) => {
|
|
|
|
/**
|
|
|
|
* Asserts that all the different hook types are called in the correct order when the tests run.
|
|
|
|
* This is used to reduce code duplication when testing calling `describe` with different call signatures.
|
|
|
|
*/
|
|
|
|
async function assertHooks(
|
|
|
|
cb: (
|
|
|
|
options: {
|
|
|
|
beforeAllFn: Spy;
|
|
|
|
afterAllFn: Spy;
|
|
|
|
beforeEachFn: Spy;
|
|
|
|
afterEachFn: Spy;
|
|
|
|
fns: readonly [Spy, Spy];
|
|
|
|
},
|
|
|
|
) => void,
|
|
|
|
) {
|
|
|
|
using test = stub(Deno, "test");
|
|
|
|
const fns = [spy(), spy()] as const;
|
|
|
|
const { beforeAllFn, afterAllFn, beforeEachFn, afterEachFn } = hookFns();
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
const context = new TestContext("example");
|
|
|
|
try {
|
|
|
|
cb({ beforeAllFn, afterAllFn, beforeEachFn, afterEachFn, fns });
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCalls(fns[0], 0);
|
|
|
|
assertSpyCalls(fns[1], 0);
|
|
|
|
|
|
|
|
assertSpyCall(test, 0);
|
|
|
|
const call = test.calls[0];
|
|
|
|
const options = call?.args[0] as Deno.TestDefinition;
|
|
|
|
assertEquals(Object.keys(options).sort(), ["fn", "name"]);
|
|
|
|
assertEquals(options.name, "example");
|
|
|
|
|
|
|
|
const result = options.fn(context);
|
|
|
|
assertStrictEquals(Promise.resolve(result), result);
|
|
|
|
assertEquals(await result, undefined);
|
|
|
|
assertSpyCalls(context.spies.step, 2);
|
|
|
|
} finally {
|
|
|
|
TestSuiteInternal.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
let fn = fns[0];
|
|
|
|
assertSpyCall(fn, 0, {
|
|
|
|
self: { allTimer: 1, eachTimer: 2 },
|
|
|
|
args: [context.steps[0]],
|
|
|
|
returned: undefined,
|
|
|
|
});
|
|
|
|
assertSpyCalls(fn, 1);
|
|
|
|
|
|
|
|
fn = fns[1];
|
|
|
|
assertSpyCall(fn, 0, {
|
|
|
|
self: { allTimer: 1, eachTimer: 3 },
|
|
|
|
args: [context.steps[1]],
|
|
|
|
returned: undefined,
|
|
|
|
});
|
|
|
|
assertSpyCalls(fn, 1);
|
|
|
|
|
|
|
|
assertSpyCalls(beforeAllFn, 1);
|
|
|
|
assertSpyCalls(afterAllFn, 1);
|
|
|
|
assertSpyCalls(beforeEachFn, 2);
|
|
|
|
assertSpyCalls(afterEachFn, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
await t.step(
|
|
|
|
"in callback",
|
|
|
|
async () =>
|
|
|
|
await assertHooks(
|
|
|
|
({ beforeAllFn, afterAllFn, beforeEachFn, afterEachFn, fns }) => {
|
|
|
|
describe("example", () => {
|
|
|
|
beforeAll(beforeAllFn);
|
|
|
|
afterAll(afterAllFn);
|
|
|
|
|
|
|
|
beforeEach(beforeEachFn);
|
|
|
|
afterEach(afterEachFn);
|
|
|
|
|
|
|
|
assertEquals(it({ name: "example 1", fn: fns[0] }), undefined);
|
|
|
|
assertEquals(it({ name: "example 2", fn: fns[1] }), undefined);
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
},
|
2024-04-10 11:56:00 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
|
2024-06-25 10:26:12 +00:00
|
|
|
await t.step(
|
|
|
|
"in callback (using after, before aliases)",
|
|
|
|
async () =>
|
|
|
|
await assertHooks(
|
|
|
|
({ beforeAllFn, afterAllFn, beforeEachFn, afterEachFn, fns }) => {
|
|
|
|
describe("example", () => {
|
|
|
|
before(beforeAllFn);
|
|
|
|
after(afterAllFn);
|
|
|
|
|
|
|
|
beforeEach(beforeEachFn);
|
|
|
|
afterEach(afterEachFn);
|
|
|
|
|
|
|
|
it({ name: "example 1", fn: fns[0] });
|
|
|
|
it({ name: "example 2", fn: fns[1] });
|
|
|
|
});
|
|
|
|
},
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step(
|
|
|
|
"in options",
|
|
|
|
async () =>
|
|
|
|
await assertHooks(
|
|
|
|
({ beforeAllFn, afterAllFn, beforeEachFn, afterEachFn, fns }) => {
|
|
|
|
describe({
|
|
|
|
name: "example",
|
|
|
|
beforeAll: beforeAllFn,
|
|
|
|
afterAll: afterAllFn,
|
|
|
|
beforeEach: beforeEachFn,
|
|
|
|
afterEach: afterEachFn,
|
|
|
|
fn: () => {
|
|
|
|
assertEquals(
|
|
|
|
it({ name: "example 1", fn: fns[0] }),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
assertEquals(
|
|
|
|
it({ name: "example 2", fn: fns[1] }),
|
|
|
|
undefined,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
});
|
|
|
|
},
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step(
|
|
|
|
"nested",
|
|
|
|
async () => {
|
2024-02-16 04:26:33 +00:00
|
|
|
using test = stub(Deno, "test");
|
2024-01-04 22:26:55 +00:00
|
|
|
const fns = [spy(), spy()] as const;
|
|
|
|
const { beforeAllFn, afterAllFn, beforeEachFn, afterEachFn } =
|
|
|
|
hookFns();
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2022-04-16 23:23:49 +00:00
|
|
|
const context = new TestContext("example");
|
2022-04-08 05:01:46 +00:00
|
|
|
try {
|
2024-04-10 11:56:00 +00:00
|
|
|
describe("example", () => {
|
|
|
|
beforeAll(beforeAllFn);
|
|
|
|
afterAll(afterAllFn);
|
|
|
|
|
|
|
|
beforeEach(beforeEachFn);
|
|
|
|
afterEach(afterEachFn);
|
|
|
|
|
|
|
|
describe("nested", () => {
|
|
|
|
assertEquals(it({ name: "example 1", fn: fns[0] }), undefined);
|
|
|
|
assertEquals(it({ name: "example 2", fn: fns[1] }), undefined);
|
|
|
|
});
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
|
|
|
|
assertSpyCalls(fns[0], 0);
|
|
|
|
assertSpyCalls(fns[1], 0);
|
|
|
|
|
|
|
|
assertSpyCall(test, 0);
|
|
|
|
const call = test.calls[0];
|
2024-01-04 22:26:55 +00:00
|
|
|
const options = call?.args[0] as Deno.TestDefinition;
|
2022-04-08 05:01:46 +00:00
|
|
|
assertEquals(Object.keys(options).sort(), ["fn", "name"]);
|
|
|
|
assertEquals(options.name, "example");
|
|
|
|
|
|
|
|
const result = options.fn(context);
|
|
|
|
assertStrictEquals(Promise.resolve(result), result);
|
|
|
|
assertEquals(await result, undefined);
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCalls(context.spies.step, 1);
|
|
|
|
|
|
|
|
assertStrictEquals(Promise.resolve(result), result);
|
|
|
|
assertEquals(await result, undefined);
|
|
|
|
assertSpyCalls(context.steps[0]!.spies.step, 2);
|
2022-04-08 05:01:46 +00:00
|
|
|
} finally {
|
|
|
|
TestSuiteInternal.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
let fn = fns[0];
|
|
|
|
assertSpyCall(fn, 0, {
|
|
|
|
self: { allTimer: 1, eachTimer: 2 },
|
2024-04-10 11:56:00 +00:00
|
|
|
args: [context.steps[0]!.steps[0]],
|
2022-04-08 05:01:46 +00:00
|
|
|
returned: undefined,
|
|
|
|
});
|
|
|
|
assertSpyCalls(fn, 1);
|
|
|
|
|
|
|
|
fn = fns[1];
|
|
|
|
assertSpyCall(fn, 0, {
|
|
|
|
self: { allTimer: 1, eachTimer: 3 },
|
2024-04-10 11:56:00 +00:00
|
|
|
args: [context.steps[0]!.steps[1]],
|
2022-04-08 05:01:46 +00:00
|
|
|
returned: undefined,
|
|
|
|
});
|
|
|
|
assertSpyCalls(fn, 1);
|
|
|
|
|
|
|
|
assertSpyCalls(beforeAllFn, 1);
|
|
|
|
assertSpyCalls(afterAllFn, 1);
|
|
|
|
assertSpyCalls(beforeEachFn, 2);
|
|
|
|
assertSpyCalls(afterEachFn, 2);
|
2024-04-10 11:56:00 +00:00
|
|
|
},
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
interface NestedContext extends GlobalContext {
|
|
|
|
allTimerNested: number;
|
|
|
|
eachTimerNested: number;
|
|
|
|
x: number;
|
|
|
|
y: number;
|
|
|
|
}
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
await t.step(
|
|
|
|
"nested with hooks",
|
|
|
|
async () => {
|
|
|
|
using test = stub(Deno, "test");
|
|
|
|
const fns = [
|
|
|
|
spy(function (this: NestedContext) {
|
|
|
|
this.x = 2;
|
|
|
|
}),
|
|
|
|
spy(function (this: NestedContext) {
|
|
|
|
this.y = 3;
|
|
|
|
}),
|
|
|
|
] as const;
|
|
|
|
const { beforeAllFn, afterAllFn, beforeEachFn, afterEachFn } =
|
|
|
|
hookFns();
|
|
|
|
const beforeAllFnNested = spy(async function (this: NestedContext) {
|
|
|
|
await Promise.resolve();
|
|
|
|
this.x = 1;
|
|
|
|
this.allTimerNested = timerIdx++;
|
|
|
|
timers.set(
|
|
|
|
this.allTimerNested,
|
|
|
|
setTimeout(() => {}, 10000),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
const afterAllFnNested = spy(
|
|
|
|
async function (this: NestedContext) {
|
|
|
|
await Promise.resolve();
|
|
|
|
clearTimeout(timers.get(this.allTimerNested));
|
|
|
|
},
|
|
|
|
);
|
|
|
|
const beforeEachFnNested = spy(async function (this: NestedContext) {
|
|
|
|
await Promise.resolve();
|
|
|
|
this.y = 2;
|
|
|
|
this.eachTimerNested = timerIdx++;
|
|
|
|
timers.set(
|
|
|
|
this.eachTimerNested,
|
|
|
|
setTimeout(() => {}, 10000),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
const afterEachFnNested = spy(
|
|
|
|
async function (this: NestedContext) {
|
|
|
|
await Promise.resolve();
|
|
|
|
clearTimeout(timers.get(this.eachTimerNested));
|
|
|
|
},
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
const context = new TestContext("example");
|
|
|
|
try {
|
|
|
|
describe("example", () => {
|
|
|
|
beforeAll(beforeAllFn);
|
|
|
|
afterAll(afterAllFn);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
beforeEach(beforeEachFn);
|
|
|
|
afterEach(afterEachFn);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
describe("nested", () => {
|
|
|
|
beforeAll(beforeAllFnNested);
|
|
|
|
afterAll(afterAllFnNested);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
beforeEach(beforeEachFnNested);
|
|
|
|
afterEach(afterEachFnNested);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertEquals(it({ name: "example 1", fn: fns[0] }), undefined);
|
|
|
|
assertEquals(it({ name: "example 2", fn: fns[1] }), undefined);
|
|
|
|
});
|
2022-04-08 05:01:46 +00:00
|
|
|
});
|
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCalls(fns[0], 0);
|
|
|
|
assertSpyCalls(fns[1], 0);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCall(test, 0);
|
|
|
|
const call = test.calls[0];
|
|
|
|
const options = call?.args[0] as Deno.TestDefinition;
|
|
|
|
assertEquals(Object.keys(options).sort(), ["fn", "name"]);
|
|
|
|
assertEquals(options.name, "example");
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
const result = options.fn(context);
|
|
|
|
assertStrictEquals(Promise.resolve(result), result);
|
|
|
|
assertEquals(await result, undefined);
|
|
|
|
assertSpyCalls(context.spies.step, 1);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertStrictEquals(Promise.resolve(result), result);
|
|
|
|
assertEquals(await result, undefined);
|
|
|
|
assertSpyCalls(context.steps[0]!.spies.step, 2);
|
|
|
|
} finally {
|
|
|
|
TestSuiteInternal.reset();
|
|
|
|
}
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
let fn = fns[0];
|
|
|
|
assertSpyCall(fn, 0, {
|
|
|
|
self: {
|
|
|
|
allTimer: 1,
|
|
|
|
allTimerNested: 2,
|
|
|
|
eachTimer: 3,
|
|
|
|
eachTimerNested: 4,
|
|
|
|
x: 2,
|
|
|
|
y: 2,
|
|
|
|
},
|
|
|
|
args: [context.steps[0]!.steps[0]],
|
|
|
|
returned: undefined,
|
|
|
|
});
|
|
|
|
assertSpyCalls(fn, 1);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
fn = fns[1];
|
|
|
|
assertSpyCall(fn, 0, {
|
|
|
|
self: {
|
|
|
|
allTimer: 1,
|
|
|
|
allTimerNested: 2,
|
|
|
|
eachTimer: 5,
|
|
|
|
eachTimerNested: 6,
|
|
|
|
x: 1,
|
|
|
|
y: 3,
|
|
|
|
},
|
|
|
|
args: [context.steps[0]!.steps[1]],
|
|
|
|
returned: undefined,
|
|
|
|
});
|
|
|
|
assertSpyCalls(fn, 1);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCalls(beforeAllFn, 1);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCall(afterAllFn, 0, {
|
|
|
|
self: {
|
|
|
|
allTimer: 1,
|
|
|
|
} as GlobalContext,
|
|
|
|
});
|
|
|
|
assertSpyCalls(afterAllFn, 1);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCalls(beforeEachFn, 2);
|
2022-06-20 00:12:15 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCall(afterEachFn, 0, {
|
|
|
|
self: {
|
|
|
|
allTimer: 1,
|
|
|
|
allTimerNested: 2,
|
|
|
|
eachTimer: 3,
|
|
|
|
eachTimerNested: 4,
|
|
|
|
x: 2,
|
|
|
|
y: 2,
|
|
|
|
} as NestedContext,
|
|
|
|
});
|
|
|
|
assertSpyCall(afterEachFn, 1, {
|
|
|
|
self: {
|
|
|
|
allTimer: 1,
|
|
|
|
allTimerNested: 2,
|
|
|
|
eachTimer: 5,
|
|
|
|
eachTimerNested: 6,
|
|
|
|
x: 1,
|
|
|
|
y: 3,
|
|
|
|
} as NestedContext,
|
|
|
|
});
|
|
|
|
assertSpyCalls(afterEachFn, 2);
|
2022-04-08 05:01:46 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCalls(beforeAllFnNested, 1);
|
2022-06-20 00:12:15 +00:00
|
|
|
|
2024-04-10 11:56:00 +00:00
|
|
|
assertSpyCall(afterAllFnNested, 0, {
|
|
|
|
self: {
|
|
|
|
allTimer: 1,
|
|
|
|
allTimerNested: 2,
|
|
|
|
x: 1,
|
|
|
|
} as NestedContext,
|
|
|
|
});
|
|
|
|
assertSpyCalls(afterAllFnNested, 1);
|
|
|
|
|
|
|
|
assertSpyCalls(beforeEachFnNested, 2);
|
|
|
|
|
|
|
|
assertSpyCall(afterEachFnNested, 0, {
|
|
|
|
self: {
|
|
|
|
allTimer: 1,
|
|
|
|
allTimerNested: 2,
|
|
|
|
eachTimer: 3,
|
|
|
|
eachTimerNested: 4,
|
|
|
|
x: 2,
|
|
|
|
y: 2,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
assertSpyCall(afterEachFnNested, 1, {
|
|
|
|
self: {
|
|
|
|
allTimer: 1,
|
|
|
|
allTimerNested: 2,
|
|
|
|
eachTimer: 5,
|
|
|
|
eachTimerNested: 6,
|
|
|
|
x: 1,
|
|
|
|
y: 3,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
assertSpyCalls(afterEachFnNested, 2);
|
|
|
|
},
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
});
|
2024-06-25 10:26:12 +00:00
|
|
|
|
|
|
|
await t.step(
|
|
|
|
"mutiple hook calls",
|
|
|
|
async () => {
|
|
|
|
using test = stub(Deno, "test");
|
|
|
|
const context = new TestContext("example");
|
|
|
|
const beforeAllFn = spy();
|
|
|
|
const afterAllFn = spy();
|
|
|
|
const beforeEachFn = spy();
|
|
|
|
const afterEachFn = spy();
|
|
|
|
|
|
|
|
const nested = {
|
|
|
|
beforeAllFn: spy(),
|
|
|
|
afterAllFn: spy(),
|
|
|
|
beforeEachFn: spy(),
|
|
|
|
afterEachFn: spy(),
|
|
|
|
};
|
|
|
|
try {
|
|
|
|
describe("example multiple hooks", () => {
|
|
|
|
beforeAll(beforeAllFn);
|
|
|
|
beforeAll(beforeAllFn);
|
|
|
|
afterAll(afterAllFn);
|
|
|
|
afterAll(afterAllFn);
|
|
|
|
beforeEach(beforeEachFn);
|
|
|
|
beforeEach(beforeEachFn);
|
|
|
|
afterEach(afterEachFn);
|
|
|
|
afterEach(afterEachFn);
|
|
|
|
|
|
|
|
describe("nested", () => {
|
|
|
|
beforeAll(nested.beforeAllFn);
|
|
|
|
beforeAll(nested.beforeAllFn);
|
|
|
|
afterAll(nested.afterAllFn);
|
|
|
|
afterAll(nested.afterAllFn);
|
|
|
|
beforeEach(nested.beforeEachFn);
|
|
|
|
beforeEach(nested.beforeEachFn);
|
|
|
|
afterEach(nested.afterEachFn);
|
|
|
|
afterEach(nested.afterEachFn);
|
|
|
|
it({ name: "example 1", fn() {} });
|
|
|
|
it({ name: "example 2", fn() {} });
|
|
|
|
});
|
|
|
|
});
|
|
|
|
const call = test.calls[0];
|
|
|
|
const options = call?.args[0] as Deno.TestDefinition;
|
|
|
|
await options.fn(context);
|
|
|
|
} finally {
|
|
|
|
TestSuiteInternal.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
assertSpyCalls(beforeAllFn, 2);
|
|
|
|
assertSpyCalls(afterAllFn, 2);
|
|
|
|
assertSpyCalls(beforeEachFn, 4);
|
|
|
|
assertSpyCalls(afterEachFn, 4);
|
|
|
|
|
|
|
|
assertSpyCalls(nested.beforeAllFn, 2);
|
|
|
|
assertSpyCalls(nested.afterAllFn, 2);
|
|
|
|
assertSpyCalls(nested.beforeEachFn, 4);
|
|
|
|
assertSpyCalls(nested.afterEachFn, 4);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step("throws if called with wrong suite object", () => {
|
|
|
|
assertThrows(
|
|
|
|
// deno-lint-ignore no-explicit-any
|
|
|
|
() => describe({ name: "", suite: {} as any, fn: () => {} }),
|
|
|
|
Error,
|
|
|
|
"suite does not represent a registered test suite",
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
await t.step(
|
|
|
|
"throws if nested test case is called with permission option",
|
|
|
|
async () => {
|
|
|
|
using test = stub(Deno, "test");
|
|
|
|
const context = new TestContext("example");
|
|
|
|
try {
|
|
|
|
describe("foo", () => {
|
|
|
|
describe("bar", { permissions: { read: true } }, () => {
|
|
|
|
it("baz", () => {});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
const call = test.calls[0];
|
|
|
|
const options = call?.args[0] as Deno.TestDefinition;
|
|
|
|
await assertRejects(
|
|
|
|
async () => await options.fn(context),
|
|
|
|
Error,
|
|
|
|
"permissions option not available for nested tests",
|
|
|
|
);
|
|
|
|
} finally {
|
|
|
|
TestSuiteInternal.reset();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
2024-07-09 03:13:07 +00:00
|
|
|
|
|
|
|
await t.step(
|
|
|
|
"cause type error if async function is passed as describe definition",
|
|
|
|
() => {
|
2024-07-11 06:28:27 +00:00
|
|
|
try {
|
|
|
|
// @ts-expect-error async function is not assignable to describe argument
|
|
|
|
describe({ name: "example", fn: async () => {} });
|
|
|
|
// @ts-expect-error async function is not assignable to describe argument
|
|
|
|
describe("example", { fn: async () => {} });
|
|
|
|
// @ts-expect-error async function is not assignable to describe argument
|
|
|
|
describe("example", async () => {});
|
|
|
|
// TODO(kt3k): This case should be type error but it's checked as
|
|
|
|
// DescribeDefinition<T> and passes the type check
|
|
|
|
// describe(async function example() {});
|
|
|
|
// @ts-expect-error async function is not assignable to describe argument
|
|
|
|
describe("example", {}, async () => {});
|
|
|
|
// @ts-expect-error async function is not assignable to describe argument
|
|
|
|
describe({ name: "example" }, async () => {});
|
|
|
|
// @ts-expect-error async function is not assignable to describe argument
|
|
|
|
describe({}, async function example() {});
|
|
|
|
|
|
|
|
const suite = describe("example");
|
|
|
|
// @ts-expect-error async function is not assignable to describe argument
|
|
|
|
describe(suite, "example", { fn: async () => {} });
|
|
|
|
// @ts-expect-error async function is not assignable to describe argument
|
|
|
|
describe(suite, "example", async () => {});
|
|
|
|
// @ts-expect-error async function is not assignable to describe argument
|
|
|
|
describe(suite, async () => {});
|
|
|
|
// @ts-expect-error async function is not assignable to describe argument
|
|
|
|
describe(suite, "example", {}, async () => {});
|
|
|
|
// @ts-expect-error async function is not assignable to describe argument
|
|
|
|
describe(suite, { name: "example" }, async () => {});
|
|
|
|
// @ts-expect-error async function is not assignable to describe argument
|
|
|
|
describe(suite, {}, async function example() {});
|
|
|
|
} catch {
|
|
|
|
// Ignores runtime errors as this case is for static type checking
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
await t.step(
|
|
|
|
"throws runtime error if async function is passed as describe fn",
|
|
|
|
() => {
|
|
|
|
assertThrows(
|
|
|
|
// deno-lint-ignore no-explicit-any
|
|
|
|
() => describe("async describe", (async () => {}) as any),
|
|
|
|
Error,
|
2024-08-26 05:22:16 +00:00
|
|
|
'Returning a Promise from "describe" is not supported: tests must be defined synchronously',
|
2024-07-11 06:28:27 +00:00
|
|
|
);
|
2024-07-09 03:13:07 +00:00
|
|
|
},
|
|
|
|
);
|
2022-04-08 05:01:46 +00:00
|
|
|
});
|