fix: fix tests
This commit is contained in:
parent
fc205ad553
commit
f49ee72328
@ -191,12 +191,12 @@ class LoggedMethodsClass {
|
|||||||
private service: TestService
|
private service: TestService
|
||||||
) { }
|
) { }
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
async testParameterLoggingWithoutInjection(@Logged("key") key: number) {
|
async testParameterLoggingWithoutInjection(@Logged("key") key: number) {
|
||||||
console.log(key);
|
console.log(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
async testMultiParameterLoggingWithoutInjection(
|
async testMultiParameterLoggingWithoutInjection(
|
||||||
@Logged("key") key: number,
|
@Logged("key") key: number,
|
||||||
@Logged("key2") key2: string
|
@Logged("key2") key2: string
|
||||||
@ -204,7 +204,7 @@ class LoggedMethodsClass {
|
|||||||
console.log(key, key2);
|
console.log(key, key2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
async testParameterLoggingWithInjection(
|
async testParameterLoggingWithInjection(
|
||||||
@Logged("key") key: number,
|
@Logged("key") key: number,
|
||||||
@InjectLogger logger?: ScopedLogger
|
@InjectLogger logger?: ScopedLogger
|
||||||
@ -212,7 +212,7 @@ class LoggedMethodsClass {
|
|||||||
logger.log(key.toString());
|
logger.log(key.toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
async testMultiParameterLoggingWithInjection(
|
async testMultiParameterLoggingWithInjection(
|
||||||
@Logged("key") key: number,
|
@Logged("key") key: number,
|
||||||
@Logged("key2") key2: string,
|
@Logged("key2") key2: string,
|
||||||
@ -221,7 +221,7 @@ class LoggedMethodsClass {
|
|||||||
logger.log(key.toString() + key2);
|
logger.log(key.toString() + key2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
async testObjectParameterLogging(
|
async testObjectParameterLogging(
|
||||||
@Logged("key") key: TestObject,
|
@Logged("key") key: TestObject,
|
||||||
@InjectLogger logger?: ScopedLogger
|
@InjectLogger logger?: ScopedLogger
|
||||||
@ -229,7 +229,7 @@ class LoggedMethodsClass {
|
|||||||
logger.log(JSON.stringify(key));
|
logger.log(JSON.stringify(key));
|
||||||
}
|
}
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
async testObjectParameterDotIncludeLogging(
|
async testObjectParameterDotIncludeLogging(
|
||||||
@Logged("key", { includePath: ["a", "b.c", "d.0", "e"] })
|
@Logged("key", { includePath: ["a", "b.c", "d.0", "e"] })
|
||||||
key: TestObject,
|
key: TestObject,
|
||||||
@ -238,7 +238,7 @@ class LoggedMethodsClass {
|
|||||||
logger.log(JSON.stringify(key));
|
logger.log(JSON.stringify(key));
|
||||||
}
|
}
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
async testObjectParameterArrayIncludeLogging(
|
async testObjectParameterArrayIncludeLogging(
|
||||||
@Logged("key", { includePath: [["a"], ["b", "c"], ["d", "0"], ["e"]] })
|
@Logged("key", { includePath: [["a"], ["b", "c"], ["d", "0"], ["e"]] })
|
||||||
key: TestObject,
|
key: TestObject,
|
||||||
@ -247,7 +247,7 @@ class LoggedMethodsClass {
|
|||||||
logger.log(JSON.stringify(key));
|
logger.log(JSON.stringify(key));
|
||||||
}
|
}
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
async testObjectParameterDotExcludeLogging(
|
async testObjectParameterDotExcludeLogging(
|
||||||
@Logged("key", { excludePath: ["a", "b.c", "d.0", "e"] })
|
@Logged("key", { excludePath: ["a", "b.c", "d.0", "e"] })
|
||||||
key: TestObject,
|
key: TestObject,
|
||||||
@ -256,7 +256,7 @@ class LoggedMethodsClass {
|
|||||||
logger.log(JSON.stringify(key));
|
logger.log(JSON.stringify(key));
|
||||||
}
|
}
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
async testObjectParameterArrayExcludeLogging(
|
async testObjectParameterArrayExcludeLogging(
|
||||||
@Logged("key", { excludePath: [["a"], ["b", "c"], ["d", "0"], ["e"]] })
|
@Logged("key", { excludePath: [["a"], ["b", "c"], ["d", "0"], ["e"]] })
|
||||||
key: TestObject,
|
key: TestObject,
|
||||||
@ -265,7 +265,7 @@ class LoggedMethodsClass {
|
|||||||
logger.log(JSON.stringify(key));
|
logger.log(JSON.stringify(key));
|
||||||
}
|
}
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
@Returns({ result: "http.result", userId: "body.user.id" })
|
@Returns({ result: "http.result", userId: "body.user.id" })
|
||||||
async testReturnLogging(
|
async testReturnLogging(
|
||||||
@Logged("userId")
|
@Logged("userId")
|
||||||
@ -289,7 +289,7 @@ class LoggedMethodsClass {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
@Returns({ result: "http.result", userId: "body.user.id" })
|
@Returns({ result: "http.result", userId: "body.user.id" })
|
||||||
async testMissingReturnLogging(
|
async testMissingReturnLogging(
|
||||||
@Logged("userId")
|
@Logged("userId")
|
||||||
@ -308,7 +308,7 @@ class LoggedMethodsClass {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
@Returns()
|
@Returns()
|
||||||
async testRawObjectReturnLogging(
|
async testRawObjectReturnLogging(
|
||||||
@Logged("userId")
|
@Logged("userId")
|
||||||
@ -327,7 +327,7 @@ class LoggedMethodsClass {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
@Returns()
|
@Returns()
|
||||||
async testRawValueReturnLogging(
|
async testRawValueReturnLogging(
|
||||||
@Logged("userId")
|
@Logged("userId")
|
||||||
@ -338,33 +338,33 @@ class LoggedMethodsClass {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
async testLoggerRootLogging2(@InjectLogger logger?: ScopedLogger) {
|
async testLoggerRootLogging2(@InjectLogger logger?: ScopedLogger) {
|
||||||
logger.log("2");
|
logger.log("2");
|
||||||
}
|
}
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
async testLoggerRootLogging(@InjectLogger logger?: ScopedLogger) {
|
async testLoggerRootLogging(@InjectLogger logger?: ScopedLogger) {
|
||||||
await this.testLoggerRootLogging2(logger);
|
await this.testLoggerRootLogging2(logger);
|
||||||
}
|
}
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
testSyncLoggerRootLogging2(@InjectLogger logger?: ScopedLogger) {
|
testSyncLoggerRootLogging2(@InjectLogger logger?: ScopedLogger) {
|
||||||
logger.log('2')
|
logger.log('2')
|
||||||
return 2
|
return 2
|
||||||
}
|
}
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
testSyncLoggerRootLogging(@InjectLogger logger?: ScopedLogger) {
|
testSyncLoggerRootLogging(@InjectLogger logger?: ScopedLogger) {
|
||||||
logger.log(this.testSyncLoggerRootLogging2(logger).toString())
|
logger.log(this.testSyncLoggerRootLogging2(logger).toString())
|
||||||
}
|
}
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
testSyncLogging(@InjectLogger logger?: ScopedLogger) {
|
testSyncLogging(@InjectLogger logger?: ScopedLogger) {
|
||||||
logger.log("synced yay");
|
logger.log("synced yay");
|
||||||
}
|
}
|
||||||
|
|
||||||
@LoggedFunction
|
@LoggedFunction()
|
||||||
async testService(@InjectLogger logger?: ScopedLogger) {
|
async testService(@InjectLogger logger?: ScopedLogger) {
|
||||||
this.service.service('A', logger);
|
this.service.service('A', logger);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user