nixpkgs/pkgs/build-support/trivial-builders/test.nix

54 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, nixosTest, pkgs, writeText, hello, figlet, stdenvNoCC }:
2021-05-14 15:27:25 +00:00
# -------------------------------------------------------------------------- #
#
# trivial-builders test
#
# -------------------------------------------------------------------------- #
#
# This file can be run independently (quick):
#
# $ pkgs/build-support/trivial-builders/test.sh
#
# or in the build sandbox with a ~20s VM overhead
#
# $ nix-build -A tests.trivial-builders
#
# -------------------------------------------------------------------------- #
let
invokeSamples = file:
lib.concatStringsSep " " (
lib.attrValues (import file { inherit pkgs; })
);
in
2021-05-14 15:27:25 +00:00
nixosTest {
name = "nixpkgs-trivial-builders";
nodes.machine = { ... }: {
virtualisation.writableStore = true;
# Test runs without network, so we don't substitute and prepare our deps
nix.binaryCaches = lib.mkForce [];
environment.etc."pre-built-paths".source = writeText "pre-built-paths" (
builtins.toJSON [hello figlet stdenvNoCC]
);
environment.variables = {
SAMPLE = invokeSamples ./test/sample.nix;
REFERENCES = invokeSamples ./test/invoke-writeReferencesToFile.nix;
DIRECT_REFS = invokeSamples ./test/invoke-writeDirectReferencesToFile.nix;
};
2021-05-14 15:27:25 +00:00
};
testScript = ''
machine.succeed("""
${./test.sh} 2>/dev/console
2021-05-14 15:27:25 +00:00
""")
'';
2021-05-19 09:41:45 +00:00
meta = {
license = lib.licenses.mit; # nixpkgs license
maintainers = with lib.maintainers; [
roberth
];
description = "Run the Nixpkgs trivial builders tests";
};
2021-05-14 15:27:25 +00:00
}