2020-09-27 03:43:20 -07:00
|
|
|
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
};
|
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.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|