mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-08 00:04:33 +02:00
parent
49c0853ba5
commit
9f4c9ea7e4
1 changed files with 45 additions and 32 deletions
|
@ -14,6 +14,9 @@ let
|
|||
{
|
||||
# The plugin's name
|
||||
name,
|
||||
# A list of package paths declared in declarationFile
|
||||
# A path can be either a single string, or a list; as expected by `mkPackageOption`
|
||||
packages,
|
||||
# A list of names declared in declarationFile
|
||||
declared,
|
||||
# A list of names generated by generate-files
|
||||
|
@ -22,50 +25,60 @@ let
|
|||
declarationFile,
|
||||
}:
|
||||
let
|
||||
missingFromPkgs = builtins.concatMap (
|
||||
loc: lib.optional (!lib.hasAttrByPath loc pkgs) (lib.concatStringsSep "." loc)
|
||||
) (builtins.map lib.toList packages);
|
||||
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 found in `pkgs`, but are declared in ${declarationFile}:" missingFromPkgs
|
||||
++ 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";
|
||||
checkDeclarations (
|
||||
let
|
||||
inherit (import ../plugins/none-ls/packages.nix lib) noPackage packaged;
|
||||
in
|
||||
{
|
||||
name = "none-ls";
|
||||
declarationFile = "plugins/none-ls/packages.nix";
|
||||
|
||||
declared =
|
||||
let
|
||||
inherit (import ../plugins/none-ls/packages.nix lib) noPackage packaged;
|
||||
in
|
||||
noPackage ++ lib.attrsets.attrNames packaged;
|
||||
packages = builtins.filter (pkg: pkg != null) (builtins.attrValues 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 = noPackage ++ lib.attrsets.attrNames packaged;
|
||||
|
||||
declared =
|
||||
let
|
||||
inherit (import ../plugins/lsp/language-servers/efmls-configs-pkgs.nix lib) packaged unpackaged;
|
||||
in
|
||||
unpackaged ++ lib.attrsets.attrNames packaged;
|
||||
generated = lib.pipe ../generated/none-ls.nix [
|
||||
import
|
||||
lib.attrsets.attrValues
|
||||
lib.lists.concatLists
|
||||
lib.lists.unique
|
||||
];
|
||||
}
|
||||
)
|
||||
++ checkDeclarations (
|
||||
let
|
||||
inherit (import ../plugins/lsp/language-servers/efmls-configs-pkgs.nix lib) packaged unpackaged;
|
||||
in
|
||||
{
|
||||
name = "efmls";
|
||||
declarationFile = "efmls-configs-pkgs.nix";
|
||||
|
||||
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
|
||||
];
|
||||
}
|
||||
packages = builtins.attrValues packaged;
|
||||
|
||||
declared = 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; } ''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue