]>
Commit | Line | Data |
---|---|---|
01ba0eb2 SW |
1 | #!/bin/sh |
2 | ||
a2290fb1 SW |
3 | . ./tests/lib/test-setup.sh |
4 | ||
5 | foo_setup | |
01ba0eb2 SW |
6 | |
7 | conf2="`mktemp`" | |
8 | cat > "$conf2" <<EOF | |
9 | [bar] | |
10 | alias_of = foo | |
11 | EOF | |
12 | ||
a2290fb1 | 13 | python3 ./pinch.py pin "$conf" |
01ba0eb2 SW |
14 | python3 ./pinch.py pin "$conf2" |
15 | ||
a2290fb1 | 16 | actual_env_command=`python3 ./pinch.py update --dry-run "$conf" "$conf2"` |
01ba0eb2 | 17 | |
a2290fb1 | 18 | rm -rf "$conf2" |
01ba0eb2 | 19 | |
4af9966c | 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"; \}'\''$' |
01ba0eb2 SW |
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 |