]> git.scottworley.com Git - pinch/blob - tests/alias.sh
928ceabee147c1cce50fa56c2b5ca8badc6215be
[pinch] / tests / alias.sh
1 #!/bin/sh
2
3 . ./tests/lib/test-setup.sh
4
5 foo_setup
6
7 cat >> "$conf" <<EOF
8 [bar]
9 alias_of = foo
10 EOF
11
12 python3 ./pinch.py pin "$conf"
13
14 actual_env_command=`python3 ./pinch.py update --dry-run "$conf"`
15
16 expected_env_command_RE='^nix-env --profile /nix/var/nix/profiles/per-user/[^/]+/channels --show-trace --file '\''<nix/unpack-channel.nix>'\'' --install --from-expression '\''f: f \{ name = "(repo-[0-9]{10}-[0-9a-f]{11})"; channelName = "bar"; src = builtins.storePath "'"$NIX_STORE_DIR"'/.{32}-\1.tar.xz"; \}'\'' '\''f: f \{ name = "\1"; channelName = "foo"; src = builtins.storePath "'"$NIX_STORE_DIR"'/.{32}-\1.tar.xz"; \}'\''$'
17
18 if echo "$actual_env_command" | egrep "$expected_env_command_RE" > /dev/null;then
19 echo PASS
20 else
21 echo "Output: $actual_env_command"
22 echo "does not match RE: $expected_env_command_RE"
23 exit 1
24 fi