]> git.scottworley.com Git - pinch/blob - tests/multi-update.sh
cd6e90bd707acee40714af68ce4a801b37a1de22
[pinch] / tests / multi-update.sh
1 #!/bin/sh
2
3 . ./tests/lib/test-setup.sh
4
5 foo_setup
6
7 conf2="`mktemp`"
8 cat > "$conf2" <<EOF
9 [bar]
10 alias_of = foo
11 EOF
12
13 python3 ./pinch.py pin "$conf"
14 python3 ./pinch.py pin "$conf2"
15
16 actual_env_command=`python3 ./pinch.py update --dry-run "$conf" "$conf2"`
17
18 rm -rf "$conf2"
19
20 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"; \}'\''$'
21
22 if echo "$actual_env_command" | egrep "$expected_env_command_RE" > /dev/null;then
23 echo PASS
24 else
25 echo "Output: $actual_env_command"
26 echo "does not match RE: $expected_env_command_RE"
27 exit 1
28 fi