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