2015-02-08 21:48:38 +01:00
#!/bin/sh
#
# This script is used to test that the module system is working as expected.
# By default it test the version of nixpkgs which is defined in the NIX_PATH.
2020-03-14 20:06:04 +01:00
# https://stackoverflow.com/a/246128/6605742
DIR = " $( cd " $( dirname " ${ BASH_SOURCE [0] } " ) " >/dev/null 2>& 1 && pwd ) "
cd " $DIR " /modules
2015-02-08 21:48:38 +01:00
pass = 0
fail = 0
evalConfig( ) {
local attr = $1
shift;
local script = " import ./default.nix { modules = [ $@ ];} "
2020-01-10 04:11:53 +01:00
nix-instantiate --timeout 1 -E " $script " -A " $attr " --eval-only --show-trace --read-write-mode
2015-02-08 21:48:38 +01:00
}
reportFailure( ) {
local attr = $1
shift;
local script = " import ./default.nix { modules = [ $@ ];} "
echo 2>& 1 " $ nix-instantiate -E ' $script ' -A ' $attr ' --eval-only "
evalConfig " $attr " " $@ "
fail = $(( fail + 1 ))
}
checkConfigOutput( ) {
local outputContains = $1
shift;
if evalConfig " $@ " 2>/dev/null | grep --silent " $outputContains " ; then
pass = $(( pass + 1 ))
return 0;
else
echo 2>& 1 " error: Expected result matching ' $outputContains ', while evaluating "
reportFailure " $@ "
return 1
fi
}
checkConfigError( ) {
local errorContains = $1
2015-02-08 22:51:20 +01:00
local err = ""
2015-02-08 21:48:38 +01:00
shift;
2015-02-08 22:51:20 +01:00
if err = = $( evalConfig " $@ " 2>& 1 >/dev/null) ; then
2015-02-08 21:48:38 +01:00
echo 2>& 1 "error: Expected error code, got exit code 0, while evaluating"
reportFailure " $@ "
return 1
else
2015-02-08 22:51:20 +01:00
if echo " $err " | grep --silent " $errorContains " ; then
pass = $(( pass + 1 ))
return 0;
else
echo 2>& 1 " error: Expected error matching ' $errorContains ', while evaluating "
reportFailure " $@ "
return 1
fi
2015-02-08 21:48:38 +01:00
fi
}
2015-03-16 22:38:41 +01:00
# Check boolean option.
2015-02-08 22:51:20 +01:00
checkConfigOutput "false" config.enable ./declare-enable.nix
2015-02-08 21:48:38 +01:00
checkConfigError 'The option .* defined in .* does not exist.' config.enable ./define-enable.nix
2015-03-16 22:38:41 +01:00
2017-10-31 14:23:05 +01:00
# Check integer types.
# unsigned
checkConfigOutput "42" config.value ./declare-int-unsigned-value.nix ./define-value-int-positive.nix
checkConfigError 'The option value .* in .* is not of type.*unsigned integer.*' config.value ./declare-int-unsigned-value.nix ./define-value-int-negative.nix
2017-10-31 17:30:15 +01:00
# positive
checkConfigError 'The option value .* in .* is not of type.*positive integer.*' config.value ./declare-int-positive-value.nix ./define-value-int-zero.nix
2017-10-31 14:23:05 +01:00
# between
checkConfigOutput "42" config.value ./declare-int-between-value.nix ./define-value-int-positive.nix
checkConfigError 'The option value .* in .* is not of type.*between.*-21 and 43.*inclusive.*' config.value ./declare-int-between-value.nix ./define-value-int-negative.nix
2019-08-01 15:55:33 +02:00
# Check either types
# types.either
checkConfigOutput "42" config.value ./declare-either.nix ./define-value-int-positive.nix
checkConfigOutput "\"24\"" config.value ./declare-either.nix ./define-value-string.nix
# types.oneOf
checkConfigOutput "42" config.value ./declare-oneOf.nix ./define-value-int-positive.nix
checkConfigOutput "[ ]" config.value ./declare-oneOf.nix ./define-value-list.nix
checkConfigOutput "\"24\"" config.value ./declare-oneOf.nix ./define-value-string.nix
2015-03-16 22:38:41 +01:00
# Check mkForce without submodules.
2015-02-08 21:48:38 +01:00
set -- config.enable ./declare-enable.nix ./define-enable.nix
checkConfigOutput "true" " $@ "
checkConfigOutput "false" " $@ " ./define-force-enable.nix
checkConfigOutput "false" " $@ " ./define-enable-force.nix
2015-03-16 22:38:41 +01:00
# Check mkForce with option and submodules.
2019-06-13 23:53:03 +02:00
checkConfigError 'attribute .*foo.* .* not found' config.attrsOfSub.foo.enable ./declare-attrsOfSub-any-enable.nix
checkConfigOutput 'false' config.attrsOfSub.foo.enable ./declare-attrsOfSub-any-enable.nix ./define-attrsOfSub-foo.nix
set -- config.attrsOfSub.foo.enable ./declare-attrsOfSub-any-enable.nix ./define-attrsOfSub-foo-enable.nix
2015-02-08 21:48:38 +01:00
checkConfigOutput 'true' " $@ "
2019-06-13 23:53:03 +02:00
checkConfigOutput 'false' " $@ " ./define-force-attrsOfSub-foo-enable.nix
checkConfigOutput 'false' " $@ " ./define-attrsOfSub-force-foo-enable.nix
checkConfigOutput 'false' " $@ " ./define-attrsOfSub-foo-force-enable.nix
checkConfigOutput 'false' " $@ " ./define-attrsOfSub-foo-enable-force.nix
2015-02-08 21:48:38 +01:00
2015-03-16 22:38:41 +01:00
# Check overriding effect of mkForce on submodule definitions.
2019-06-13 23:53:03 +02:00
checkConfigError 'attribute .*bar.* .* not found' config.attrsOfSub.bar.enable ./declare-attrsOfSub-any-enable.nix ./define-attrsOfSub-foo.nix
checkConfigOutput 'false' config.attrsOfSub.bar.enable ./declare-attrsOfSub-any-enable.nix ./define-attrsOfSub-foo.nix ./define-attrsOfSub-bar.nix
set -- config.attrsOfSub.bar.enable ./declare-attrsOfSub-any-enable.nix ./define-attrsOfSub-foo.nix ./define-attrsOfSub-bar-enable.nix
2015-02-08 21:48:38 +01:00
checkConfigOutput 'true' " $@ "
2019-06-13 23:53:03 +02:00
checkConfigError 'attribute .*bar.* .* not found' " $@ " ./define-force-attrsOfSub-foo-enable.nix
checkConfigError 'attribute .*bar.* .* not found' " $@ " ./define-attrsOfSub-force-foo-enable.nix
checkConfigOutput 'true' " $@ " ./define-attrsOfSub-foo-force-enable.nix
checkConfigOutput 'true' " $@ " ./define-attrsOfSub-foo-enable-force.nix
2015-02-08 21:48:38 +01:00
2015-03-16 22:38:41 +01:00
# Check mkIf with submodules.
2019-06-13 23:53:03 +02:00
checkConfigError 'attribute .*foo.* .* not found' config.attrsOfSub.foo.enable ./declare-enable.nix ./declare-attrsOfSub-any-enable.nix
set -- config.attrsOfSub.foo.enable ./declare-enable.nix ./declare-attrsOfSub-any-enable.nix
checkConfigError 'attribute .*foo.* .* not found' " $@ " ./define-if-attrsOfSub-foo-enable.nix
checkConfigError 'attribute .*foo.* .* not found' " $@ " ./define-attrsOfSub-if-foo-enable.nix
checkConfigError 'attribute .*foo.* .* not found' " $@ " ./define-attrsOfSub-foo-if-enable.nix
checkConfigOutput 'false' " $@ " ./define-attrsOfSub-foo-enable-if.nix
checkConfigOutput 'true' " $@ " ./define-enable.nix ./define-if-attrsOfSub-foo-enable.nix
checkConfigOutput 'true' " $@ " ./define-enable.nix ./define-attrsOfSub-if-foo-enable.nix
checkConfigOutput 'true' " $@ " ./define-enable.nix ./define-attrsOfSub-foo-if-enable.nix
checkConfigOutput 'true' " $@ " ./define-enable.nix ./define-attrsOfSub-foo-enable-if.nix
2015-03-16 22:38:41 +01:00
2017-02-14 23:18:44 +01:00
# Check disabledModules with config definitions and option declarations.
set -- config.enable ./define-enable.nix ./declare-enable.nix
checkConfigOutput "true" " $@ "
checkConfigOutput "false" " $@ " ./disable-define-enable.nix
checkConfigError "The option .*enable.* defined in .* does not exist" " $@ " ./disable-declare-enable.nix
checkConfigError "attribute .*enable.* in selection path .*config.enable.* not found" " $@ " ./disable-define-enable.nix ./disable-declare-enable.nix
checkConfigError "attribute .*enable.* in selection path .*config.enable.* not found" " $@ " ./disable-enable-modules.nix
2015-03-16 22:38:41 +01:00
# Check _module.args.
2015-05-13 22:44:04 +02:00
set -- config.enable ./declare-enable.nix ./define-enable-with-custom-arg.nix
checkConfigError 'while evaluating the module argument .*custom.* in .*define-enable-with-custom-arg.nix.*:' " $@ "
checkConfigOutput "true" " $@ " ./define-_module-args-custom.nix
# Check that using _module.args on imports cause infinite recursions, with
# the proper error context.
set -- " $@ " ./define-_module-args-custom.nix ./import-custom-arg.nix
checkConfigError 'while evaluating the module argument .*custom.* in .*import-custom-arg.nix.*:' " $@ "
checkConfigError 'infinite recursion encountered' " $@ "
2015-03-16 22:38:41 +01:00
# Check _module.check.
2019-06-13 23:53:03 +02:00
set -- config.enable ./declare-enable.nix ./define-enable.nix ./define-attrsOfSub-foo.nix
2015-03-16 22:38:41 +01:00
checkConfigError 'The option .* defined in .* does not exist.' " $@ "
checkConfigOutput "true" " $@ " ./define-module-check.nix
2017-02-01 23:52:40 +01:00
# Check coerced value.
checkConfigOutput "\"42\"" config.value ./declare-coerced-value.nix
checkConfigOutput "\"24\"" config.value ./declare-coerced-value.nix ./define-value-string.nix
2018-04-04 16:55:45 +02:00
checkConfigError 'The option value .* in .* is not.*string or signed integer convertible to it' config.value ./declare-coerced-value.nix ./define-value-list.nix
2017-02-01 23:52:40 +01:00
2018-04-04 16:51:46 +02:00
# Check coerced value with unsound coercion
checkConfigOutput "12" config.value ./declare-coerced-value-unsound.nix
2018-04-04 16:55:45 +02:00
checkConfigError 'The option value .* in .* is not.*8 bit signed integer.* or string convertible to it' config.value ./declare-coerced-value-unsound.nix ./define-value-string-bigint.nix
2018-04-04 16:51:46 +02:00
checkConfigError 'unrecognised JSON value' config.value ./declare-coerced-value-unsound.nix ./define-value-string-arbitrary.nix
2019-01-24 04:58:33 +01:00
# Check mkAliasOptionModule.
2019-01-04 08:34:59 +01:00
checkConfigOutput "true" config.enable ./alias-with-priority.nix
2019-01-06 10:10:03 +01:00
checkConfigOutput "true" config.enableAlias ./alias-with-priority.nix
checkConfigOutput "false" config.enable ./alias-with-priority-can-override.nix
checkConfigOutput "false" config.enableAlias ./alias-with-priority-can-override.nix
2019-01-04 08:34:59 +01:00
2020-01-01 01:11:45 +01:00
# submoduleWith
## specialArgs should work
checkConfigOutput "foo" config.submodule.foo ./declare-submoduleWith-special.nix
## shorthandOnlyDefines config behaves as expected
checkConfigOutput "true" config.submodule.config ./declare-submoduleWith-shorthand.nix ./define-submoduleWith-shorthand.nix
checkConfigError 'is not of type `boolean' config.submodule.config ./declare-submoduleWith-shorthand.nix ./define-submoduleWith-noshorthand.nix
checkConfigError 'value is a boolean while a set was expected' config.submodule.config ./declare-submoduleWith-noshorthand.nix ./define-submoduleWith-shorthand.nix
checkConfigOutput "true" config.submodule.config ./declare-submoduleWith-noshorthand.nix ./define-submoduleWith-noshorthand.nix
## submoduleWith should merge all modules in one swoop
checkConfigOutput "true" config.submodule.inner ./declare-submoduleWith-modules.nix
checkConfigOutput "true" config.submodule.outer ./declare-submoduleWith-modules.nix
## Paths should be allowed as values and work as expected
2020-01-03 05:22:11 +01:00
checkConfigOutput "true" config.submodule.enable ./declare-submoduleWith-path.nix
2020-01-01 01:11:45 +01:00
2020-01-04 02:01:21 +01:00
# Check that disabledModules works recursively and correctly
checkConfigOutput "true" config.enable ./disable-recursive/main.nix
checkConfigOutput "true" config.enable ./disable-recursive/{ main.nix,disable-foo.nix}
checkConfigOutput "true" config.enable ./disable-recursive/{ main.nix,disable-bar.nix}
checkConfigError 'The option .* defined in .* does not exist' config.enable ./disable-recursive/{ main.nix,disable-foo.nix,disable-bar.nix}
2020-01-10 04:11:53 +01:00
# Check that imports can depend on derivations
checkConfigOutput "true" config.enable ./import-from-store.nix
2020-03-17 20:21:10 +01:00
# Check that configs can be conditional on option existence
checkConfigOutput true config.enable ./define-option-dependently.nix ./declare-enable.nix ./declare-int-positive-value.nix
checkConfigOutput 360 config.value ./define-option-dependently.nix ./declare-enable.nix ./declare-int-positive-value.nix
checkConfigOutput 7 config.value ./define-option-dependently.nix ./declare-int-positive-value.nix
2020-03-19 03:46:50 +01:00
checkConfigOutput true config.set.enable ./define-option-dependently-nested.nix ./declare-enable-nested.nix ./declare-int-positive-value-nested.nix
checkConfigOutput 360 config.set.value ./define-option-dependently-nested.nix ./declare-enable-nested.nix ./declare-int-positive-value-nested.nix
checkConfigOutput 7 config.set.value ./define-option-dependently-nested.nix ./declare-int-positive-value-nested.nix
2020-03-17 20:21:10 +01:00
2019-10-12 20:37:21 +02:00
# Check attrsOf and lazyAttrsOf. Only lazyAttrsOf should be lazy, and only
# attrsOf should work with conditional definitions
# In addition, lazyAttrsOf should honor an options emptyValue
checkConfigError "is not lazy" config.isLazy ./declare-attrsOf.nix ./attrsOf-lazy-check.nix
checkConfigOutput "true" config.isLazy ./declare-lazyAttrsOf.nix ./attrsOf-lazy-check.nix
checkConfigOutput "true" config.conditionalWorks ./declare-attrsOf.nix ./attrsOf-conditional-check.nix
checkConfigOutput "false" config.conditionalWorks ./declare-lazyAttrsOf.nix ./attrsOf-conditional-check.nix
checkConfigOutput "empty" config.value.foo ./declare-lazyAttrsOf.nix ./attrsOf-conditional-check.nix
2020-03-16 21:08:39 +01:00
2020-03-16 21:10:05 +01:00
# Even with multiple assignments, a type error should be thrown if any of them aren't valid
checkConfigError 'The option value .* in .* is not of type .*' \
config.value ./declare-int-unsigned-value.nix ./define-value-list.nix ./define-value-int-positive.nix
2020-03-22 20:55:54 +01:00
## Freeform modules
# Assigning without a declared option should work
checkConfigOutput 24 config.value ./freeform-attrsOf.nix ./define-value-string.nix
2020-08-04 00:08:43 +02:00
# No freeform assigments shouldn't make it error
checkConfigOutput '{ }' config ./freeform-attrsOf.nix
2020-03-22 20:55:54 +01:00
# but only if the type matches
checkConfigError 'The option value .* in .* is not of type .*' config.value ./freeform-attrsOf.nix ./define-value-list.nix
# and properties should be applied
checkConfigOutput yes config.value ./freeform-attrsOf.nix ./define-value-string-properties.nix
# Options should still be declarable, and be able to have a type that doesn't match the freeform type
checkConfigOutput false config.enable ./freeform-attrsOf.nix ./define-value-string.nix ./declare-enable.nix
checkConfigOutput 24 config.value ./freeform-attrsOf.nix ./define-value-string.nix ./declare-enable.nix
# and this should work too with nested values
checkConfigOutput false config.nest.foo ./freeform-attrsOf.nix ./freeform-nested.nix
checkConfigOutput bar config.nest.bar ./freeform-attrsOf.nix ./freeform-nested.nix
# Check whether a declared option can depend on an freeform-typed one
checkConfigOutput null config.foo ./freeform-attrsOf.nix ./freeform-str-dep-unstr.nix
checkConfigOutput 24 config.foo ./freeform-attrsOf.nix ./freeform-str-dep-unstr.nix ./define-value-string.nix
# Check whether an freeform-typed value can depend on a declared option, this can only work with lazyAttrsOf
checkConfigError 'infinite recursion encountered' config.foo ./freeform-attrsOf.nix ./freeform-unstr-dep-str.nix
checkConfigError 'The option .* is used but not defined' config.foo ./freeform-lazyAttrsOf.nix ./freeform-unstr-dep-str.nix
checkConfigOutput 24 config.foo ./freeform-lazyAttrsOf.nix ./freeform-unstr-dep-str.nix ./define-value-string.nix
2015-02-08 21:48:38 +01:00
cat <<EOF
= = = = = = module tests = = = = = =
$pass Pass
$fail Fail
EOF
if test $fail -ne 0; then
exit 1
fi
exit 0