mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-02 00:54:48 +02:00
tests/generated: init by checking declared tools
This moves most assertions out of generate-files and into a check derivation. This should allow the CI to finish, even when there are issues. This also properly tests efmls, which was only checked partially before. rust-analyzer is not covered because the existing assertions relate more to edge-cases not handled by the generation script than the result it builds.
This commit is contained in:
parent
a8eceddd07
commit
fc8155b5fa
4 changed files with 80 additions and 34 deletions
77
tests/generated.nix
Normal file
77
tests/generated.nix
Normal file
|
@ -0,0 +1,77 @@
|
|||
{
|
||||
lib,
|
||||
runCommand,
|
||||
pkgs,
|
||||
}:
|
||||
let
|
||||
# Format a list of errors with an error message and trailing newline
|
||||
describeErrors =
|
||||
desc: errors:
|
||||
lib.optionals (errors != [ ]) (lib.toList desc ++ lib.map (v: "- ${v}") errors ++ [ "" ]);
|
||||
|
||||
# Build error messages for the given declared & generated names
|
||||
checkDeclarations =
|
||||
{
|
||||
# The plugin's name
|
||||
name,
|
||||
# A list of names declared in declarationFile
|
||||
declared,
|
||||
# A list of names generated by generate-files
|
||||
generated,
|
||||
# The filename where names are declared (used in error messages)
|
||||
declarationFile,
|
||||
}:
|
||||
let
|
||||
undeclared = lib.filter (name: !(lib.elem name declared)) generated;
|
||||
uselesslyDeclared = lib.filter (name: !(lib.elem name generated)) declared;
|
||||
in
|
||||
describeErrors "${name}: The following are not declared in ${declarationFile}:" undeclared
|
||||
++ describeErrors "${name}: The following are not listed upstream, but are declared in ${declarationFile}:" uselesslyDeclared;
|
||||
|
||||
# The error message provided to the derivation.
|
||||
# The test fails if this is non-empty.
|
||||
errors = lib.concatStringsSep "\n" (
|
||||
checkDeclarations {
|
||||
name = "none-ls";
|
||||
declarationFile = "plugins/none-ls/packages.nix";
|
||||
|
||||
declared =
|
||||
let
|
||||
inherit (import ../plugins/none-ls/packages.nix pkgs) noPackage packaged;
|
||||
in
|
||||
noPackage ++ lib.attrsets.attrNames packaged;
|
||||
|
||||
generated = lib.pipe ../generated/none-ls.nix [
|
||||
import
|
||||
lib.attrsets.attrValues
|
||||
lib.lists.concatLists
|
||||
lib.lists.unique
|
||||
];
|
||||
}
|
||||
++ checkDeclarations {
|
||||
name = "efmls";
|
||||
declarationFile = "efmls-configs-pkgs.nix";
|
||||
|
||||
declared =
|
||||
let
|
||||
inherit (import ../plugins/lsp/language-servers/efmls-configs-pkgs.nix pkgs) packaged unpackaged;
|
||||
in
|
||||
unpackaged ++ lib.attrsets.attrNames packaged;
|
||||
|
||||
generated = lib.pipe ../generated/efmls-configs.nix [
|
||||
import
|
||||
lib.attrsets.attrValues
|
||||
(lib.map ({ linter, formatter }: linter.possible ++ formatter.possible))
|
||||
lib.lists.concatLists
|
||||
lib.lists.unique
|
||||
];
|
||||
}
|
||||
);
|
||||
in
|
||||
runCommand "generated-sources-test" { inherit errors; } ''
|
||||
if [ -n "$errors" ]; then
|
||||
echo -n "$errors"
|
||||
exit 1
|
||||
fi
|
||||
touch "$out"
|
||||
''
|
Loading…
Add table
Add a link
Reference in a new issue