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