2024-06-03 23:52:29 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2023-02-18 01:37:35 +02:00
|
|
|
source common.sh
|
|
|
|
|
|
|
|
export NIX_TESTS_CA_BY_DEFAULT=1
|
|
|
|
|
|
|
|
drvPath=$(nix-instantiate ../simple.nix)
|
|
|
|
|
2024-06-03 23:52:29 +03:00
|
|
|
nix derivation show "$drvPath" | jq .[] > "$TEST_HOME"/simple.json
|
2023-02-18 01:37:35 +02:00
|
|
|
|
2024-06-03 23:52:29 +03:00
|
|
|
drvPath2=$(nix derivation add < "$TEST_HOME"/simple.json)
|
2023-02-18 01:37:35 +02:00
|
|
|
|
|
|
|
[[ "$drvPath" = "$drvPath2" ]]
|
|
|
|
|
|
|
|
# Content-addressed derivations can be renamed.
|
2024-06-03 23:52:29 +03:00
|
|
|
jq '.name = "foo"' < "$TEST_HOME"/simple.json > "$TEST_HOME"/foo.json
|
|
|
|
drvPath3=$(nix derivation add --dry-run < "$TEST_HOME"/foo.json)
|
2023-02-18 01:37:35 +02:00
|
|
|
# With --dry-run nothing is actually written
|
|
|
|
[[ ! -e "$drvPath3" ]]
|
|
|
|
|
2023-04-17 18:22:31 +03:00
|
|
|
# But the JSON is rejected without the experimental feature
|
2024-06-03 23:52:29 +03:00
|
|
|
expectStderr 1 nix derivation add < "$TEST_HOME"/foo.json --experimental-features nix-command | grepQuiet "experimental Nix feature 'ca-derivations' is disabled"
|
2023-04-17 18:22:31 +03:00
|
|
|
|
2023-02-18 01:37:35 +02:00
|
|
|
# Without --dry-run it is actually written
|
2024-06-03 23:52:29 +03:00
|
|
|
drvPath4=$(nix derivation add < "$TEST_HOME"/foo.json)
|
2023-02-18 01:37:35 +02:00
|
|
|
[[ "$drvPath4" = "$drvPath3" ]]
|
|
|
|
[[ -e "$drvPath3" ]]
|
|
|
|
|
|
|
|
# The modified derivation read back as JSON matches
|
2024-06-03 23:52:29 +03:00
|
|
|
nix derivation show "$drvPath3" | jq .[] > "$TEST_HOME"/foo-read.json
|
|
|
|
diff "$TEST_HOME"/foo.json "$TEST_HOME"/foo-read.json
|