Skip to content

Commit f1e7648

Browse files
lundibundicodebytere
authored andcommittedFeb 27, 2020
test: validate common property usage
`common` contains multiple 'check'(boolean) properties that will be false if mistyped and may lead to errors. This makes sure that the used property exists in the `common`. PR-URL: #31933 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Shelley Vohr <codebytere@gmail.com> Reviewed-By: Yongsheng Zhang <zyszys98@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
1 parent ab8f060 commit f1e7648

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed
 

‎test/common/index.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ function invalidArgTypeHelper(input) {
672672
return ` Received type ${typeof input} (${inspected})`;
673673
}
674674

675-
module.exports = {
675+
const common = {
676676
allowGlobals,
677677
buildType,
678678
canCreateSymLink,
@@ -815,3 +815,12 @@ module.exports = {
815815
}
816816

817817
};
818+
819+
const validProperties = new Set(Object.keys(common));
820+
module.exports = new Proxy(common, {
821+
get(obj, prop) {
822+
if (!validProperties.has(prop))
823+
throw new Error(`Using invalid common property: '${prop}'`);
824+
return obj[prop];
825+
}
826+
});

0 commit comments

Comments
 (0)
Please sign in to comment.