nix-community.nixvim/tests/nixpkgs-module.nix

108 lines
2.2 KiB
Nix
Raw Normal View History

{
pkgs,
lib,
linkFarmFromDrvs,
self,
stdenv,
runCommandLocal,
}:
let
defaultPkgs = pkgs;
# Only imports the bare minimum modules, to ensure we are not accidentally evaluating `pkgs.*`
evalModule =
name: module:
lib.evalModules {
modules = lib.toList module ++ [
{
_module.check = false;
flake = self;
test = {
inherit name;
buildNixvim = false;
runNvim = false;
runCommand = runCommandLocal;
};
}
../modules/misc
../modules/top-level/test.nix
../modules/top-level/nixpkgs.nix
];
};
testModule = name: module: (evalModule name module).config.build.test;
in
linkFarmFromDrvs "nixpkgs-module-test" [
# TODO: expect not setting `nixpkgs.pkgs` to throw
(testModule "nixpkgs-overlays" (
{ pkgs, ... }:
{
nixpkgs.pkgs = defaultPkgs;
nixpkgs.overlays = [
(final: prev: {
foobar = "foobar";
})
];
assertions = [
{
assertion = pkgs.foobar or null == "foobar";
message = ''
Expected `pkgs.foobar` to be "foobar"
'';
}
];
}
))
# Test that overlays from both `nixpkgs.pkgs` _and_ `nixpkgs.overlays` are applied
(testModule "nixpkgs-stacked-overlay" (
{ pkgs, ... }:
{
nixpkgs.pkgs = import self.inputs.nixpkgs {
inherit (stdenv.hostPlatform) system;
overlays = [
(final: prev: {
foobar = "foobar";
conflict = "a";
})
];
};
nixpkgs.overlays = [
(final: prev: {
hello = "world";
conflict = "b";
})
];
assertions = [
{
assertion = pkgs.foobar or null == "foobar";
message = ''
Expected `pkgs.foobar` to be "foobar"
'';
}
{
assertion = pkgs.hello or null == "world";
message = ''
Expected `pkgs.hello` to be "world"
'';
}
{
assertion = pkgs.conflict or null == "b";
message = ''
Expected `pkgs.conflict` to be "b"
'';
}
];
}
))
]