test: add tests for logging return value
This commit is contained in:
parent
995fbafe19
commit
ea16156f6e
@ -3,6 +3,7 @@ import { ScopedLogger } from "../logger";
|
|||||||
import {
|
import {
|
||||||
InjectLogger,
|
InjectLogger,
|
||||||
LoggedParam,
|
LoggedParam,
|
||||||
|
Returns,
|
||||||
ScopeKey,
|
ScopeKey,
|
||||||
ShouldScoped,
|
ShouldScoped,
|
||||||
} from "../reflected";
|
} from "../reflected";
|
||||||
@ -142,6 +143,74 @@ class LoggedClass {
|
|||||||
) {
|
) {
|
||||||
logger.log(key);
|
logger.log(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Returns({ result: "http.result", userId: "body.user.id" })
|
||||||
|
async testReturnLogging(
|
||||||
|
@LoggedParam("userId")
|
||||||
|
userId: string,
|
||||||
|
@InjectLogger logger?: ScopedLogger
|
||||||
|
) {
|
||||||
|
logger.log(userId);
|
||||||
|
return {
|
||||||
|
http: {
|
||||||
|
result: "success",
|
||||||
|
code: 200,
|
||||||
|
},
|
||||||
|
body: {
|
||||||
|
user: {
|
||||||
|
id: userId,
|
||||||
|
name: "tester",
|
||||||
|
},
|
||||||
|
secret: "supersecret",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
@Returns({ result: "http.result", userId: "body.user.id" })
|
||||||
|
async testMissingReturnLogging(
|
||||||
|
@LoggedParam("userId")
|
||||||
|
userId: string,
|
||||||
|
@InjectLogger logger?: ScopedLogger
|
||||||
|
) {
|
||||||
|
logger.log(userId);
|
||||||
|
return {
|
||||||
|
body: {
|
||||||
|
user: {
|
||||||
|
id: userId,
|
||||||
|
name: "tester",
|
||||||
|
},
|
||||||
|
secret: "supersecret",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
@Returns()
|
||||||
|
async testRawObjectReturnLogging(
|
||||||
|
@LoggedParam("userId")
|
||||||
|
userId: string,
|
||||||
|
@InjectLogger logger?: ScopedLogger
|
||||||
|
) {
|
||||||
|
logger.log(userId);
|
||||||
|
return {
|
||||||
|
body: {
|
||||||
|
user: {
|
||||||
|
id: userId,
|
||||||
|
name: "tester",
|
||||||
|
},
|
||||||
|
secret: "supersecret",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
@Returns()
|
||||||
|
async testRawValueReturnLogging(
|
||||||
|
@LoggedParam("userId")
|
||||||
|
userId: string,
|
||||||
|
@InjectLogger logger?: ScopedLogger
|
||||||
|
) {
|
||||||
|
logger.log(userId);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class LoggedMethodsClass {
|
class LoggedMethodsClass {
|
||||||
@ -279,6 +348,78 @@ class LoggedMethodsClass {
|
|||||||
) {
|
) {
|
||||||
logger.log(key);
|
logger.log(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@LoggedFunction
|
||||||
|
@Returns({ result: "http.result", userId: "body.user.id" })
|
||||||
|
async testReturnLogging(
|
||||||
|
@LoggedParam("userId")
|
||||||
|
userId: string,
|
||||||
|
@InjectLogger logger?: ScopedLogger
|
||||||
|
) {
|
||||||
|
logger.log(userId);
|
||||||
|
return {
|
||||||
|
http: {
|
||||||
|
result: "success",
|
||||||
|
code: 200,
|
||||||
|
},
|
||||||
|
body: {
|
||||||
|
user: {
|
||||||
|
id: userId,
|
||||||
|
name: "tester",
|
||||||
|
},
|
||||||
|
secret: "supersecret",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
@LoggedFunction
|
||||||
|
@Returns({ result: "http.result", userId: "body.user.id" })
|
||||||
|
async testMissingReturnLogging(
|
||||||
|
@LoggedParam("userId")
|
||||||
|
userId: string,
|
||||||
|
@InjectLogger logger?: ScopedLogger
|
||||||
|
) {
|
||||||
|
logger.log(userId);
|
||||||
|
return {
|
||||||
|
body: {
|
||||||
|
user: {
|
||||||
|
id: userId,
|
||||||
|
name: "tester",
|
||||||
|
},
|
||||||
|
secret: "supersecret",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
@LoggedFunction
|
||||||
|
@Returns()
|
||||||
|
async testRawObjectReturnLogging(
|
||||||
|
@LoggedParam("userId")
|
||||||
|
userId: string,
|
||||||
|
@InjectLogger logger?: ScopedLogger
|
||||||
|
) {
|
||||||
|
logger.log(userId);
|
||||||
|
return {
|
||||||
|
body: {
|
||||||
|
user: {
|
||||||
|
id: userId,
|
||||||
|
name: "tester",
|
||||||
|
},
|
||||||
|
secret: "supersecret",
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
@LoggedFunction
|
||||||
|
@Returns()
|
||||||
|
async testRawValueReturnLogging(
|
||||||
|
@LoggedParam("userId")
|
||||||
|
userId: string,
|
||||||
|
@InjectLogger logger?: ScopedLogger
|
||||||
|
) {
|
||||||
|
logger.log(userId);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -311,6 +452,10 @@ class LoggedMethodsClass {
|
|||||||
// tester.testOptionalScopedLogging();
|
// tester.testOptionalScopedLogging();
|
||||||
// tester.testShouldScopedLogging("asdf")
|
// tester.testShouldScopedLogging("asdf")
|
||||||
// tester.testShouldScopedLogging();
|
// tester.testShouldScopedLogging();
|
||||||
|
// tester.testReturnLogging("asdf");
|
||||||
|
// tester.testMissingReturnLogging("asdf");
|
||||||
|
// tester.testRawObjectReturnLogging("asdf");
|
||||||
|
// tester.testRawValueReturnLogging("asdf");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Then run `yarn test`
|
* Then run `yarn test`
|
||||||
|
Loading…
x
Reference in New Issue
Block a user