mirror of
https://github.com/denoland/deno.git
synced 2024-11-02 09:34:19 -04:00
8feb30e325
This commit removes overload of Deno.test() that accepted named function.
115 lines
2.4 KiB
TypeScript
115 lines
2.4 KiB
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
const { test } = Deno;
|
|
import { assertEquals, assertThrows } from "../testing/asserts.ts";
|
|
import * as log from "./mod.ts";
|
|
import {
|
|
LogLevelNames,
|
|
LevelName,
|
|
getLevelByName,
|
|
getLevelName,
|
|
} from "./levels.ts";
|
|
|
|
class TestHandler extends log.handlers.BaseHandler {
|
|
public messages: string[] = [];
|
|
|
|
log(msg: string): void {
|
|
this.messages.push(msg);
|
|
}
|
|
}
|
|
|
|
test("defaultHandlers", async function (): Promise<void> {
|
|
const loggers: {
|
|
[key: string]: (msg: string, ...args: unknown[]) => void;
|
|
} = {
|
|
DEBUG: log.debug,
|
|
INFO: log.info,
|
|
WARNING: log.warning,
|
|
ERROR: log.error,
|
|
CRITICAL: log.critical,
|
|
};
|
|
|
|
for (const levelName of LogLevelNames) {
|
|
if (levelName === "NOTSET") {
|
|
continue;
|
|
}
|
|
|
|
const logger = loggers[levelName];
|
|
const handler = new TestHandler(levelName as LevelName);
|
|
|
|
await log.setup({
|
|
handlers: {
|
|
default: handler,
|
|
},
|
|
loggers: {
|
|
default: {
|
|
level: levelName as LevelName,
|
|
handlers: ["default"],
|
|
},
|
|
},
|
|
});
|
|
|
|
logger("foo");
|
|
logger("bar", 1, 2);
|
|
|
|
assertEquals(handler.messages, [`${levelName} foo`, `${levelName} bar`]);
|
|
}
|
|
});
|
|
|
|
test("getLogger", async function (): Promise<void> {
|
|
const handler = new TestHandler("DEBUG");
|
|
|
|
await log.setup({
|
|
handlers: {
|
|
default: handler,
|
|
},
|
|
loggers: {
|
|
default: {
|
|
level: "DEBUG",
|
|
handlers: ["default"],
|
|
},
|
|
},
|
|
});
|
|
|
|
const logger = log.getLogger();
|
|
|
|
assertEquals(logger.levelName, "DEBUG");
|
|
assertEquals(logger.handlers, [handler]);
|
|
});
|
|
|
|
test("getLoggerWithName", async function (): Promise<void> {
|
|
const fooHandler = new TestHandler("DEBUG");
|
|
|
|
await log.setup({
|
|
handlers: {
|
|
foo: fooHandler,
|
|
},
|
|
loggers: {
|
|
bar: {
|
|
level: "INFO",
|
|
handlers: ["foo"],
|
|
},
|
|
},
|
|
});
|
|
|
|
const logger = log.getLogger("bar");
|
|
|
|
assertEquals(logger.levelName, "INFO");
|
|
assertEquals(logger.handlers, [fooHandler]);
|
|
});
|
|
|
|
test("getLoggerUnknown", async function (): Promise<void> {
|
|
await log.setup({
|
|
handlers: {},
|
|
loggers: {},
|
|
});
|
|
|
|
const logger = log.getLogger("nonexistent");
|
|
|
|
assertEquals(logger.levelName, "NOTSET");
|
|
assertEquals(logger.handlers, []);
|
|
});
|
|
|
|
test("getInvalidLoggerLevels", function (): void {
|
|
assertThrows(() => getLevelByName("FAKE_LOG_LEVEL" as LevelName));
|
|
assertThrows(() => getLevelName(5000));
|
|
});
|