Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
148 lines
4.1 KiB
Nix
148 lines
4.1 KiB
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
testers,
|
|
callPackage,
|
|
writeText,
|
|
# nativeBuildInputs
|
|
shellcheck-minimal,
|
|
# Samples
|
|
samples ? cleanSamples (callPackage ./samples.nix { }),
|
|
# Filter out the non-string-like attributes such as <pkg>.override added by
|
|
# callPackage.
|
|
cleanSamples ? lib.filterAttrs (n: lib.isStringLike),
|
|
# Test targets
|
|
writeDirectReferencesToFile,
|
|
writeClosure,
|
|
}:
|
|
|
|
# -------------------------------------------------------------------------- #
|
|
#
|
|
# trivial-builders test
|
|
#
|
|
# -------------------------------------------------------------------------- #
|
|
#
|
|
# Execute this build script directly (quick):
|
|
#
|
|
# * Classic
|
|
# $ NIX_PATH="nixpkgs=$PWD" nix-shell -p tests.trivial-builders.references.testScriptBin --run references-test
|
|
#
|
|
# * Flake-based
|
|
# $ nix run .#tests.trivial-builders.references.testScriptBin
|
|
#
|
|
# or in the build sandbox with a ~20s VM overhead:
|
|
#
|
|
# * Classic
|
|
# $ nix-build --no-out-link -A tests.trivial-builders.references
|
|
#
|
|
# * Flake-based
|
|
# $ nix build -L --no-link .#tests.trivial-builders.references
|
|
#
|
|
# -------------------------------------------------------------------------- #
|
|
|
|
let
|
|
# Map each attribute to an element specification of Bash associative array
|
|
# and concatenate them with white spaces, to be used to define a
|
|
# one-line Bash associative array.
|
|
samplesToString =
|
|
attrs:
|
|
lib.concatMapStringsSep " " (name: "[${name}]=${lib.escapeShellArg "${attrs.${name}}"}") (
|
|
builtins.attrNames attrs
|
|
);
|
|
|
|
closures = lib.mapAttrs (n: v: writeClosure [ v ]) samples;
|
|
directReferences = lib.mapAttrs (n: v: writeDirectReferencesToFile v) samples;
|
|
collectiveClosure = writeClosure (lib.attrValues samples);
|
|
|
|
testScriptBin = stdenvNoCC.mkDerivation (finalAttrs: {
|
|
name = "references-test";
|
|
|
|
src = ./references-test.sh;
|
|
dontUnpack = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p "$out/bin"
|
|
substitute "$src" "$out/bin/${finalAttrs.meta.mainProgram}" \
|
|
--replace "@SAMPLES@" ${lib.escapeShellArg (samplesToString samples)} \
|
|
--replace "@CLOSURES@" ${lib.escapeShellArg (samplesToString closures)} \
|
|
--replace "@DIRECT_REFS@" ${lib.escapeShellArg (samplesToString directReferences)} \
|
|
--replace "@COLLECTIVE_CLOSURE@" ${lib.escapeShellArg collectiveClosure}
|
|
runHook postInstall
|
|
chmod +x "$out/bin/${finalAttrs.meta.mainProgram}"
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
nativeInstallCheckInputs = [
|
|
shellcheck-minimal
|
|
];
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
shellcheck "$out/bin/${finalAttrs.meta.mainProgram}"
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
passthru = {
|
|
inherit
|
|
collectiveClosure
|
|
directReferences
|
|
closures
|
|
samples
|
|
;
|
|
};
|
|
|
|
meta = {
|
|
mainProgram = "references-test";
|
|
};
|
|
});
|
|
in
|
|
testers.runNixOSTest (
|
|
{ config, lib, ... }:
|
|
let
|
|
# Use the testScriptBin from guest pkgs.
|
|
# The attribute path to access the guest version of testScriptBin is
|
|
# tests.trivial-builders.references.config.node.pkgs.tests.trivial-builders.references.testScriptBin
|
|
# which is why passthru.guestTestScriptBin is provided.
|
|
guestTestScriptBin = config.node.pkgs.tests.trivial-builders.references.testScriptBin;
|
|
in
|
|
{
|
|
name = "nixpkgs-trivial-builders-references";
|
|
nodes.machine =
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
virtualisation.writableStore = true;
|
|
|
|
# Test runs without network, so we don't substitute and prepare our deps
|
|
nix.settings.substituters = lib.mkForce [ ];
|
|
system.extraDependencies = [ guestTestScriptBin ];
|
|
};
|
|
testScript = ''
|
|
machine.succeed("""
|
|
${lib.getExe guestTestScriptBin} 2>/dev/console
|
|
""")
|
|
'';
|
|
passthru = {
|
|
inherit
|
|
collectiveClosure
|
|
directReferences
|
|
closures
|
|
samples
|
|
testScriptBin
|
|
;
|
|
inherit guestTestScriptBin;
|
|
};
|
|
meta = {
|
|
maintainers = with lib.maintainers; [
|
|
roberth
|
|
ShamrockLee
|
|
];
|
|
};
|
|
}
|
|
)
|