mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
housekeeping: shellcheck for tests/functional/hash-path.sh
This commit is contained in:
parent
d1c476865a
commit
1c93360989
1 changed files with 10 additions and 10 deletions
|
@ -3,7 +3,7 @@
|
||||||
source common.sh
|
source common.sh
|
||||||
|
|
||||||
try () {
|
try () {
|
||||||
printf "%s" "$2" > $TEST_ROOT/vector
|
printf "%s" "$2" > "$TEST_ROOT/vector"
|
||||||
hash="$(nix-hash --flat ${FORMAT+--$FORMAT} --type "$1" "$TEST_ROOT/vector")"
|
hash="$(nix-hash --flat ${FORMAT+--$FORMAT} --type "$1" "$TEST_ROOT/vector")"
|
||||||
if ! (( "${NO_TEST_CLASSIC-}" )) && test "$hash" != "$3"; then
|
if ! (( "${NO_TEST_CLASSIC-}" )) && test "$hash" != "$3"; then
|
||||||
echo "try nix-hash: hash $1, expected $3, got $hash"
|
echo "try nix-hash: hash $1, expected $3, got $hash"
|
||||||
|
@ -61,7 +61,7 @@ NO_TEST_NIX_COMMAND=1 try sha512 "abc" "ddaf35a193617abacc417349ae20413112e6fa4e
|
||||||
NO_TEST_CLASSIC=1 try sha512 "abc" "sha512-3a81oZNherrMQXNJriBBMRLm+k6JqX6iCp7u5ktV05ohkpkqJ0/BqDa6PCOj/uu9RU1EI2Q86A4qmslPpUyknw=="
|
NO_TEST_CLASSIC=1 try sha512 "abc" "sha512-3a81oZNherrMQXNJriBBMRLm+k6JqX6iCp7u5ktV05ohkpkqJ0/BqDa6PCOj/uu9RU1EI2Q86A4qmslPpUyknw=="
|
||||||
|
|
||||||
try2 () {
|
try2 () {
|
||||||
hash=$(nix-hash --type "$1" $TEST_ROOT/hash-path)
|
hash=$(nix-hash --type "$1" "$TEST_ROOT/hash-path")
|
||||||
if test "$hash" != "$2"; then
|
if test "$hash" != "$2"; then
|
||||||
echo "try nix-hash; hash $1, expected $2, got $hash"
|
echo "try nix-hash; hash $1, expected $2, got $hash"
|
||||||
exit 1
|
exit 1
|
||||||
|
@ -73,22 +73,22 @@ try2 () {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
rm -rf $TEST_ROOT/hash-path
|
rm -rf "$TEST_ROOT/hash-path"
|
||||||
mkdir $TEST_ROOT/hash-path
|
mkdir "$TEST_ROOT/hash-path"
|
||||||
echo "Hello World" > $TEST_ROOT/hash-path/hello
|
echo "Hello World" > "$TEST_ROOT/hash-path/hello"
|
||||||
|
|
||||||
try2 md5 "ea9b55537dd4c7e104515b2ccfaf4100"
|
try2 md5 "ea9b55537dd4c7e104515b2ccfaf4100"
|
||||||
|
|
||||||
# Execute bit matters.
|
# Execute bit matters.
|
||||||
chmod +x $TEST_ROOT/hash-path/hello
|
chmod +x "$TEST_ROOT/hash-path/hello"
|
||||||
try2 md5 "20f3ffe011d4cfa7d72bfabef7882836"
|
try2 md5 "20f3ffe011d4cfa7d72bfabef7882836"
|
||||||
|
|
||||||
# Mtime and other bits don't.
|
# Mtime and other bits don't.
|
||||||
touch -r . $TEST_ROOT/hash-path/hello
|
touch -r . "$TEST_ROOT/hash-path/hello"
|
||||||
chmod 744 $TEST_ROOT/hash-path/hello
|
chmod 744 "$TEST_ROOT/hash-path/hello"
|
||||||
try2 md5 "20f3ffe011d4cfa7d72bfabef7882836"
|
try2 md5 "20f3ffe011d4cfa7d72bfabef7882836"
|
||||||
|
|
||||||
# File type (e.g., symlink) does.
|
# File type (e.g., symlink) does.
|
||||||
rm $TEST_ROOT/hash-path/hello
|
rm "$TEST_ROOT/hash-path/hello"
|
||||||
ln -s x $TEST_ROOT/hash-path/hello
|
ln -s x "$TEST_ROOT/hash-path/hello"
|
||||||
try2 md5 "f78b733a68f5edbdf9413899339eaa4a"
|
try2 md5 "f78b733a68f5edbdf9413899339eaa4a"
|
||||||
|
|
Loading…
Reference in a new issue