2021-03-22 05:19:47 -07:00
|
|
|
pkgs:
|
2020-01-12 11:52:40 -08:00
|
|
|
let
|
2021-03-22 05:19:47 -07:00
|
|
|
pythonTesting = import "${toString pkgs.path}/nixos/lib/testing-python.nix" {
|
2021-03-22 05:19:48 -07:00
|
|
|
system = pkgs.stdenv.hostPlatform.system;
|
2021-03-22 05:19:47 -07:00
|
|
|
inherit pkgs;
|
|
|
|
};
|
|
|
|
in
|
2020-01-12 11:52:40 -08:00
|
|
|
|
2021-03-22 05:19:47 -07:00
|
|
|
args:
|
|
|
|
let
|
|
|
|
test = pythonTesting.makeTest args;
|
2020-01-12 11:52:40 -08:00
|
|
|
|
2021-03-22 05:19:47 -07:00
|
|
|
fixedDriver = test.driver.overrideAttrs (old: let
|
|
|
|
# Allow the test script to have longer lines by fixing the call to the 'black'
|
|
|
|
# code formatter.
|
|
|
|
# The default width of 88 chars is too restrictive for our script.
|
|
|
|
parts = builtins.split ''/nix/store/[^ ]+/black '' old.buildCommand;
|
|
|
|
preMatch = builtins.elemAt parts 0;
|
|
|
|
postMatch = builtins.elemAt parts 2;
|
|
|
|
in {
|
|
|
|
# See `mkDriver` in nixpkgs/nixos/lib/testing-python.nix for the original definition of `buildCommand`
|
|
|
|
buildCommand = ''
|
|
|
|
${preMatch}${pkgs.python3Packages.black}/bin/black --line-length 100 ${postMatch}
|
|
|
|
'';
|
|
|
|
# Keep reference to the `testDriver` derivation, required by `buildCommand`
|
|
|
|
testDriverReference = old.buildCommand;
|
|
|
|
});
|
2020-11-11 06:12:05 -08:00
|
|
|
|
2021-03-22 05:19:47 -07:00
|
|
|
# 1. Use fixed driver
|
|
|
|
# 2. Save test logging output
|
|
|
|
# 3. Add link to driver so that a gcroot to a test prevents the driver from
|
|
|
|
# being garbage-collected
|
|
|
|
fixedTest = test.overrideAttrs (_: {
|
|
|
|
# See `runTests` in nixpkgs/nixos/lib/testing-python.nix for the original definition of `buildCommand`
|
|
|
|
buildCommand = ''
|
|
|
|
mkdir $out
|
|
|
|
LOGFILE=$out/output.xml tests='exec(os.environ["testScript"])' ${fixedDriver}/bin/nixos-test-driver
|
|
|
|
ln -s ${fixedDriver} $out/driver
|
|
|
|
'';
|
|
|
|
}) // {
|
|
|
|
driver = fixedDriver;
|
|
|
|
inherit (test) nodes;
|
|
|
|
};
|
2020-01-12 11:52:40 -08:00
|
|
|
in
|
|
|
|
fixedTest
|