2020-09-27 03:43:20 -07:00
|
|
|
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
2022-09-05 09:12:09 -07:00
|
|
|
imports = [
|
|
|
|
./shellcheck-services.nix
|
|
|
|
];
|
|
|
|
|
2020-09-27 03:43:20 -07:00
|
|
|
options = {
|
|
|
|
test = {
|
|
|
|
noConnections = mkOption {
|
|
|
|
type = types.bool;
|
2020-09-27 03:43:28 -07:00
|
|
|
default = !config.test.container.enableWAN;
|
2020-09-27 03:43:20 -07:00
|
|
|
description = ''
|
|
|
|
Whether services should be configured to not connect to external hosts.
|
|
|
|
This can silence some warnings while running the test in an offline environment.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
data = mkOption {
|
|
|
|
type = types.attrs;
|
|
|
|
default = {};
|
|
|
|
description = ''
|
|
|
|
Attrs that are available in the Python test script under the global
|
|
|
|
dictionary variable 'test_data'. The data is exported via JSON.
|
|
|
|
'';
|
|
|
|
};
|
2021-10-01 02:52:05 -07:00
|
|
|
extraTestScript = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
description = "Extra lines added to the Python test script.";
|
|
|
|
};
|
2020-09-27 03:43:28 -07:00
|
|
|
container = {
|
|
|
|
# Forwarded to extra-container. For descriptions, see
|
|
|
|
# https://github.com/erikarvstedt/extra-container/blob/master/eval-config.nix
|
|
|
|
addressPrefix = mkOption { default = "10.225.255"; };
|
|
|
|
enableWAN = mkOption { default = false; };
|
|
|
|
firewallAllowHost = mkOption { default = true; };
|
|
|
|
exposeLocalhost = mkOption { default = false; };
|
|
|
|
};
|
2020-09-27 03:43:20 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
tests = mkOption {
|
|
|
|
type = with types; attrsOf bool;
|
|
|
|
default = {};
|
|
|
|
description = "Python tests that should be run.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|