]>
Commit | Line | Data |
---|---|---|
17906b27 SW |
1 | #!/bin/sh |
2 | ||
a2290fb1 | 3 | . ./tests/lib/test-setup.sh |
17906b27 | 4 | |
a2290fb1 SW |
5 | foo_setup |
6 | ||
7 | cat >> "$conf" <<EOF | |
17906b27 SW |
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 | ||
4af9966c | 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"; \}'\''$' |
17906b27 SW |
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 |