mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
Merge remote-tracking branch 'layered/test-groups' into overlayfs-store
This commit is contained in:
commit
c26fc96fed
7 changed files with 83 additions and 30 deletions
2
Makefile
2
Makefile
|
@ -28,6 +28,8 @@ makefiles += \
|
||||||
src/libexpr/tests/local.mk \
|
src/libexpr/tests/local.mk \
|
||||||
tests/local.mk \
|
tests/local.mk \
|
||||||
tests/overlay-local-store/local.mk \
|
tests/overlay-local-store/local.mk \
|
||||||
|
tests/ca/local.mk \
|
||||||
|
tests/dyn-drv/local.mk \
|
||||||
tests/test-libstoreconsumer/local.mk \
|
tests/test-libstoreconsumer/local.mk \
|
||||||
tests/plugins/local.mk
|
tests/plugins/local.mk
|
||||||
else
|
else
|
||||||
|
|
|
@ -14,6 +14,8 @@ You can run the whole testsuite with `make check`, or the tests for a specific c
|
||||||
The functional tests reside under the `tests` directory and are listed in `tests/local.mk`.
|
The functional tests reside under the `tests` directory and are listed in `tests/local.mk`.
|
||||||
Each test is a bash script.
|
Each test is a bash script.
|
||||||
|
|
||||||
|
### Running the whole test suite
|
||||||
|
|
||||||
The whole test suite can be run with:
|
The whole test suite can be run with:
|
||||||
|
|
||||||
```shell-session
|
```shell-session
|
||||||
|
@ -23,6 +25,32 @@ ran test tests/bar.sh... [PASS]
|
||||||
...
|
...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Grouping tests
|
||||||
|
|
||||||
|
Sometimes it is useful to group related tests so they can be easily run together without running the entire test suite.
|
||||||
|
For example, `tests/ca/local.mk` defines a "ca" test group for tests relating to content-addressed derivation outputs.
|
||||||
|
|
||||||
|
That test group can be run like this:
|
||||||
|
|
||||||
|
```shell-session
|
||||||
|
$ make ca.test-group -j50
|
||||||
|
ran test tests/ca/nix-run.sh... [PASS]
|
||||||
|
ran test tests/ca/import-derivation.sh... [PASS]
|
||||||
|
...
|
||||||
|
```
|
||||||
|
|
||||||
|
The testgroup is defined in Make like this:
|
||||||
|
```makefile
|
||||||
|
$(test-group-name)-tests := \
|
||||||
|
$(d)/test0.sh \
|
||||||
|
$(d)/test1.sh \
|
||||||
|
...
|
||||||
|
|
||||||
|
install-tests-groups += $(test-group-name)
|
||||||
|
```
|
||||||
|
|
||||||
|
### Running individual tests
|
||||||
|
|
||||||
Individual tests can be run with `make`:
|
Individual tests can be run with `make`:
|
||||||
|
|
||||||
```shell-session
|
```shell-session
|
||||||
|
|
|
@ -122,11 +122,12 @@ $(foreach script, $(bin-scripts), $(eval $(call install-program-in,$(script),$(b
|
||||||
$(foreach script, $(bin-scripts), $(eval programs-list += $(script)))
|
$(foreach script, $(bin-scripts), $(eval programs-list += $(script)))
|
||||||
$(foreach script, $(noinst-scripts), $(eval programs-list += $(script)))
|
$(foreach script, $(noinst-scripts), $(eval programs-list += $(script)))
|
||||||
$(foreach template, $(template-files), $(eval $(call instantiate-template,$(template))))
|
$(foreach template, $(template-files), $(eval $(call instantiate-template,$(template))))
|
||||||
$(foreach test, $(install-tests), $(eval $(call run-install-test,$(test))))
|
$(foreach test, $(install-tests), \
|
||||||
$(foreach test, $(install-tests), $(eval installcheck: $(test).test))
|
$(eval $(call run-install-test,$(test))) \
|
||||||
|
$(eval installcheck: $(test).test))
|
||||||
$(foreach test-group, $(install-tests-groups), \
|
$(foreach test-group, $(install-tests-groups), \
|
||||||
|
$(eval $(call run-install-test-group,$(test-group))) \
|
||||||
$(eval installcheck: $(test-group).test-group) \
|
$(eval installcheck: $(test-group).test-group) \
|
||||||
$(eval .PHONY: $(test-group).test-group) \
|
|
||||||
$(foreach test, $($(test-group)-tests), \
|
$(foreach test, $($(test-group)-tests), \
|
||||||
$(eval $(call run-install-test,$(test))) \
|
$(eval $(call run-install-test,$(test))) \
|
||||||
$(eval $(test-group).test-group: $(test).test)))
|
$(eval $(test-group).test-group: $(test).test)))
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
|
|
||||||
test-deps =
|
test-deps =
|
||||||
|
|
||||||
define run-install-test $1
|
define run-install-test
|
||||||
|
|
||||||
.PHONY: $1.test
|
.PHONY: $1.test
|
||||||
$1.test: $1 $(test-deps)
|
$1.test: $1 $(test-deps)
|
||||||
@env BASH=$(bash) $(bash) mk/run-test.sh $1 < /dev/null
|
@env BASH=$(bash) $(bash) mk/run-test.sh $1 < /dev/null
|
||||||
|
@ -13,6 +14,12 @@ define run-install-test $1
|
||||||
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define run-install-test-group
|
||||||
|
|
||||||
|
.PHONY: $1.test-group
|
||||||
|
|
||||||
|
endef
|
||||||
|
|
||||||
.PHONY: check installcheck
|
.PHONY: check installcheck
|
||||||
|
|
||||||
print-top-help += \
|
print-top-help += \
|
||||||
|
|
27
tests/ca/local.mk
Normal file
27
tests/ca/local.mk
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
ca-tests := \
|
||||||
|
$(d)/build-with-garbage-path.sh \
|
||||||
|
$(d)/build.sh \
|
||||||
|
$(d)/concurrent-builds.sh \
|
||||||
|
$(d)/derivation-json.sh \
|
||||||
|
$(d)/duplicate-realisation-in-closure.sh \
|
||||||
|
$(d)/gc.sh \
|
||||||
|
$(d)/import-derivation.sh \
|
||||||
|
$(d)/new-build-cmd.sh \
|
||||||
|
$(d)/nix-copy.sh \
|
||||||
|
$(d)/nix-run.sh \
|
||||||
|
$(d)/nix-shell.sh \
|
||||||
|
$(d)/post-hook.sh \
|
||||||
|
$(d)/recursive.sh \
|
||||||
|
$(d)/repl.sh \
|
||||||
|
$(d)/selfref-gc.sh \
|
||||||
|
$(d)/signatures.sh \
|
||||||
|
$(d)/substitute.sh \
|
||||||
|
$(d)/why-depends.sh
|
||||||
|
|
||||||
|
install-tests-groups += ca
|
||||||
|
|
||||||
|
clean-files += \
|
||||||
|
$(d)/config.nix
|
||||||
|
|
||||||
|
test-deps += \
|
||||||
|
tests/ca/config.nix
|
11
tests/dyn-drv/local.mk
Normal file
11
tests/dyn-drv/local.mk
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
dyn-drv-tests := \
|
||||||
|
$(d)/text-hashed-output.sh \
|
||||||
|
$(d)/recursive-mod-json.sh
|
||||||
|
|
||||||
|
install-tests-groups += dyn-drv
|
||||||
|
|
||||||
|
clean-files += \
|
||||||
|
$(d)/config.nix
|
||||||
|
|
||||||
|
test-deps += \
|
||||||
|
tests/dyn-drv/config.nix
|
|
@ -14,7 +14,6 @@ nix_tests = \
|
||||||
flakes/absolute-paths.sh \
|
flakes/absolute-paths.sh \
|
||||||
flakes/build-paths.sh \
|
flakes/build-paths.sh \
|
||||||
flakes/flake-in-submodule.sh \
|
flakes/flake-in-submodule.sh \
|
||||||
ca/gc.sh \
|
|
||||||
gc.sh \
|
gc.sh \
|
||||||
nix-collect-garbage-d.sh \
|
nix-collect-garbage-d.sh \
|
||||||
remote-store.sh \
|
remote-store.sh \
|
||||||
|
@ -28,8 +27,6 @@ nix_tests = \
|
||||||
user-envs-migration.sh \
|
user-envs-migration.sh \
|
||||||
binary-cache.sh \
|
binary-cache.sh \
|
||||||
multiple-outputs.sh \
|
multiple-outputs.sh \
|
||||||
ca/build.sh \
|
|
||||||
ca/new-build-cmd.sh \
|
|
||||||
nix-build.sh \
|
nix-build.sh \
|
||||||
gc-concurrent.sh \
|
gc-concurrent.sh \
|
||||||
repair.sh \
|
repair.sh \
|
||||||
|
@ -47,24 +44,17 @@ nix_tests = \
|
||||||
referrers.sh \
|
referrers.sh \
|
||||||
optimise-store.sh \
|
optimise-store.sh \
|
||||||
substitute-with-invalid-ca.sh \
|
substitute-with-invalid-ca.sh \
|
||||||
ca/concurrent-builds.sh \
|
|
||||||
signing.sh \
|
signing.sh \
|
||||||
ca/build-with-garbage-path.sh \
|
|
||||||
hash.sh \
|
hash.sh \
|
||||||
gc-non-blocking.sh \
|
gc-non-blocking.sh \
|
||||||
check.sh \
|
check.sh \
|
||||||
ca/substitute.sh \
|
|
||||||
nix-shell.sh \
|
nix-shell.sh \
|
||||||
ca/signatures.sh \
|
|
||||||
ca/nix-shell.sh \
|
|
||||||
ca/nix-copy.sh \
|
|
||||||
check-refs.sh \
|
check-refs.sh \
|
||||||
build-remote-input-addressed.sh \
|
build-remote-input-addressed.sh \
|
||||||
secure-drv-outputs.sh \
|
secure-drv-outputs.sh \
|
||||||
restricted.sh \
|
restricted.sh \
|
||||||
fetchGitSubmodules.sh \
|
fetchGitSubmodules.sh \
|
||||||
flakes/search-root.sh \
|
flakes/search-root.sh \
|
||||||
ca/duplicate-realisation-in-closure.sh \
|
|
||||||
readfile-context.sh \
|
readfile-context.sh \
|
||||||
nix-channel.sh \
|
nix-channel.sh \
|
||||||
recursive.sh \
|
recursive.sh \
|
||||||
|
@ -80,10 +70,7 @@ nix_tests = \
|
||||||
nar-access.sh \
|
nar-access.sh \
|
||||||
pure-eval.sh \
|
pure-eval.sh \
|
||||||
eval.sh \
|
eval.sh \
|
||||||
ca/post-hook.sh \
|
|
||||||
repl.sh \
|
repl.sh \
|
||||||
ca/repl.sh \
|
|
||||||
ca/recursive.sh \
|
|
||||||
binary-cache-build-remote.sh \
|
binary-cache-build-remote.sh \
|
||||||
search.sh \
|
search.sh \
|
||||||
logging.sh \
|
logging.sh \
|
||||||
|
@ -109,13 +96,8 @@ nix_tests = \
|
||||||
fmt.sh \
|
fmt.sh \
|
||||||
eval-store.sh \
|
eval-store.sh \
|
||||||
why-depends.sh \
|
why-depends.sh \
|
||||||
ca/why-depends.sh \
|
|
||||||
derivation-json.sh \
|
derivation-json.sh \
|
||||||
ca/derivation-json.sh \
|
|
||||||
import-derivation.sh \
|
import-derivation.sh \
|
||||||
ca/import-derivation.sh \
|
|
||||||
dyn-drv/text-hashed-output.sh \
|
|
||||||
dyn-drv/recursive-mod-json.sh \
|
|
||||||
nix_path.sh \
|
nix_path.sh \
|
||||||
case-hack.sh \
|
case-hack.sh \
|
||||||
placeholders.sh \
|
placeholders.sh \
|
||||||
|
@ -124,8 +106,7 @@ nix_tests = \
|
||||||
build.sh \
|
build.sh \
|
||||||
build-delete.sh \
|
build-delete.sh \
|
||||||
output-normalization.sh \
|
output-normalization.sh \
|
||||||
ca/nix-run.sh \
|
selfref-gc.sh \
|
||||||
selfref-gc.sh ca/selfref-gc.sh \
|
|
||||||
db-migration.sh \
|
db-migration.sh \
|
||||||
bash-profile.sh \
|
bash-profile.sh \
|
||||||
pass-as-file.sh \
|
pass-as-file.sh \
|
||||||
|
@ -149,16 +130,12 @@ install-tests += $(foreach x, $(nix_tests), $(d)/$(x))
|
||||||
|
|
||||||
clean-files += \
|
clean-files += \
|
||||||
$(d)/common/vars-and-functions.sh \
|
$(d)/common/vars-and-functions.sh \
|
||||||
$(d)/config.nix \
|
$(d)/config.nix
|
||||||
$(d)/ca/config.nix \
|
|
||||||
$(d)/dyn-drv/config.nix
|
|
||||||
|
|
||||||
test-deps += \
|
test-deps += \
|
||||||
tests/common/vars-and-functions.sh \
|
tests/common/vars-and-functions.sh \
|
||||||
tests/config.nix \
|
tests/config.nix \
|
||||||
tests/ca/config.nix \
|
tests/test-libstoreconsumer/test-libstoreconsumer
|
||||||
tests/test-libstoreconsumer/test-libstoreconsumer \
|
|
||||||
tests/dyn-drv/config.nix
|
|
||||||
|
|
||||||
ifeq ($(BUILD_SHARED_LIBS), 1)
|
ifeq ($(BUILD_SHARED_LIBS), 1)
|
||||||
test-deps += tests/plugins/libplugintest.$(SO_EXT)
|
test-deps += tests/plugins/libplugintest.$(SO_EXT)
|
||||||
|
|
Loading…
Reference in a new issue