2017-10-25 11:01:50 +00:00
|
|
|
source common.sh
|
|
|
|
|
2021-07-26 04:54:55 +00:00
|
|
|
# 27ce722638 required some incompatible changes to the nix file, so skip this
|
|
|
|
# tests for the older versions
|
2021-10-14 14:00:59 +00:00
|
|
|
requireDaemonNewerThan "2.4pre20210712"
|
2021-07-26 04:54:55 +00:00
|
|
|
|
2017-10-25 11:01:50 +00:00
|
|
|
clearStore
|
|
|
|
|
2020-06-25 16:26:34 +00:00
|
|
|
rm -f $TEST_ROOT/result
|
|
|
|
|
2020-01-21 20:14:13 +00:00
|
|
|
nix-build structured-attrs.nix -A all -o $TEST_ROOT/result
|
2017-10-25 11:01:50 +00:00
|
|
|
|
2020-01-21 20:14:13 +00:00
|
|
|
[[ $(cat $TEST_ROOT/result/foo) = bar ]]
|
|
|
|
[[ $(cat $TEST_ROOT/result-dev/foo) = foo ]]
|
2021-05-02 15:24:14 +00:00
|
|
|
|
|
|
|
export NIX_BUILD_SHELL=$SHELL
|
|
|
|
env NIX_PATH=nixpkgs=shell.nix nix-shell structured-attrs-shell.nix \
|
2024-03-07 09:46:47 +00:00
|
|
|
--run 'test "3" = "$(jq ".my.list|length" < $NIX_ATTRS_JSON_FILE)"'
|
|
|
|
|
|
|
|
nix develop -f structured-attrs-shell.nix -c bash -c 'test "3" = "$(jq ".my.list|length" < $NIX_ATTRS_JSON_FILE)"'
|
2021-05-18 13:07:30 +00:00
|
|
|
|
|
|
|
# `nix develop` is a slightly special way of dealing with environment vars, it parses
|
|
|
|
# these from a shell-file exported from a derivation. This is to test especially `outputs`
|
|
|
|
# (which is an associative array in thsi case) being fine.
|
|
|
|
nix develop -f structured-attrs-shell.nix -c bash -c 'test -n "$out"'
|
2024-03-07 09:46:47 +00:00
|
|
|
|
|
|
|
nix print-dev-env -f structured-attrs-shell.nix | grepQuiet 'NIX_ATTRS_JSON_FILE='
|
|
|
|
nix print-dev-env -f structured-attrs-shell.nix | grepQuiet 'NIX_ATTRS_SH_FILE='
|
|
|
|
nix print-dev-env -f shell.nix shellDrv | grepQuietInverse 'NIX_ATTRS_SH_FILE'
|
|
|
|
|
|
|
|
jsonOut="$(nix print-dev-env -f structured-attrs-shell.nix --json)"
|
|
|
|
|
|
|
|
test "$(<<<"$jsonOut" jq '.structuredAttrs|keys|.[]' -r)" = "$(printf ".attrs.json\n.attrs.sh")"
|
|
|
|
|
|
|
|
test "$(<<<"$jsonOut" jq '.variables.out.value' -r)" = "$(<<<"$jsonOut" jq '.structuredAttrs.".attrs.json"' -r | jq -r '.outputs.out')"
|