1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix failing unit tests about overriding too late (#7287)

The fix was to defer injection. The error was made possible in master by git-merging a PR which was
falsely green.

Signed-off-by: Iku-turso <mikko.aspiala@gmail.com>
This commit is contained in:
Iku-turso 2023-03-06 14:45:12 +02:00 committed by GitHub
parent c6799e1478
commit d3c9c6b5f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,63 +21,62 @@ import logErrorInjectable from "../../../common/log-error.injectable";
const telemetryDecoratorInjectable = getInjectable({
id: "telemetry-decorator",
instantiate: (diForDecorator) => {
const emitTelemetry = diForDecorator.inject(emitTelemetryInjectable);
const logError = diForDecorator.inject(logErrorInjectable);
instantiate: (diForDecorator) => ({
decorate:
(instantiateToBeDecorated: any) =>
(di: DiContainerForInjection, instantiationParameter: any) => {
const instance = instantiateToBeDecorated(di, instantiationParameter);
const whiteList = diForDecorator.inject(
telemetryWhiteListForFunctionsInjectable,
);
if (isFunction(instance)) {
return (...args: any[]) => {
const currentContext = di.context.at(-1);
const whiteListMap = getWhiteListMap(whiteList);
assert(currentContext);
return {
decorate:
(instantiateToBeDecorated: any) =>
(di: DiContainerForInjection, instantiationParameter: any) => {
const instance = instantiateToBeDecorated(di, instantiationParameter);
const emitTelemetry = diForDecorator.inject(
emitTelemetryInjectable,
);
if (isFunction(instance)) {
return (...args: any[]) => {
const currentContext = di.context.at(-1);
const logError = diForDecorator.inject(logErrorInjectable);
assert(currentContext);
const whiteList = diForDecorator.inject(
telemetryWhiteListForFunctionsInjectable,
);
const whiteListed = whiteListMap.get(
currentContext.injectable.id,
);
const whiteListMap = getWhiteListMap(whiteList);
if (whiteListed) {
let params;
const whiteListed = whiteListMap.get(currentContext.injectable.id);
try {
params = whiteListed.getParams(...args);
} catch (e) {
params = {
error:
"Tried to produce params for telemetry, but getParams() threw an error",
};
if (whiteListed) {
let params;
logError(
`Tried to produce params for telemetry of "${currentContext.injectable.id}", but getParams() threw an error`,
e,
);
}
try {
params = whiteListed.getParams(...args);
} catch (e) {
params = {
error:
"Tried to produce params for telemetry, but getParams() threw an error",
};
emitTelemetry({
action: currentContext.injectable.id,
params,
});
logError(
`Tried to produce params for telemetry of "${currentContext.injectable.id}", but getParams() threw an error`,
e,
);
}
return instance(...args);
};
}
emitTelemetry({
action: currentContext.injectable.id,
params,
});
}
return instance;
},
};
},
return instance(...args);
};
}
return instance;
},
}),
decorable: false,
// Todo: this is required because of imperfect typing in injectable.