2022-03-28 16:00:42 +02:00
|
|
|
import {
|
|
|
|
interceptConsole,
|
|
|
|
restoreConsole,
|
|
|
|
} from "jslib-common/../spec/services/consolelog.service.spec";
|
2022-02-22 15:39:11 +01:00
|
|
|
|
2022-03-28 16:00:42 +02:00
|
|
|
import { ConsoleLogService } from "jslib-node/cli/services/consoleLog.service";
|
2020-12-11 17:44:57 +01:00
|
|
|
|
|
|
|
let caughtMessage: any = {};
|
|
|
|
|
|
|
|
describe("CLI Console log service", () => {
|
|
|
|
let logService: ConsoleLogService;
|
|
|
|
beforeEach(() => {
|
|
|
|
caughtMessage = {};
|
|
|
|
interceptConsole(caughtMessage);
|
|
|
|
logService = new ConsoleLogService(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(() => {
|
|
|
|
restoreConsole();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should redirect all console to error if BW_RESPONSE env is true", () => {
|
|
|
|
process.env.BW_RESPONSE = "true";
|
|
|
|
|
|
|
|
logService.debug("this is a debug message");
|
2022-03-28 16:00:42 +02:00
|
|
|
expect(caughtMessage).toMatchObject({
|
|
|
|
error: { 0: "this is a debug message" },
|
2020-12-11 17:44:57 +01:00
|
|
|
});
|
2021-12-16 13:36:21 +01:00
|
|
|
});
|
2020-12-11 17:44:57 +01:00
|
|
|
|
|
|
|
it("should not redirect console to error if BW_RESPONSE != true", () => {
|
|
|
|
process.env.BW_RESPONSE = "false";
|
|
|
|
|
|
|
|
logService.debug("debug");
|
|
|
|
logService.info("info");
|
|
|
|
logService.warning("warning");
|
|
|
|
logService.error("error");
|
|
|
|
|
2022-03-28 16:00:42 +02:00
|
|
|
expect(caughtMessage).toMatchObject({
|
|
|
|
log: { 0: "info" },
|
|
|
|
warn: { 0: "warning" },
|
|
|
|
error: { 0: "error" },
|
2020-12-11 17:44:57 +01:00
|
|
|
});
|
2021-12-16 13:36:21 +01:00
|
|
|
});
|
2020-12-11 17:44:57 +01:00
|
|
|
});
|