]> git.scottworley.com Git - pinch/blame - tests/alias.sh
Require type to be specified in config
[pinch] / tests / alias.sh
CommitLineData
17906b27
SW
1#!/bin/sh
2
a2290fb1 3. ./tests/lib/test-setup.sh
17906b27 4
a2290fb1
SW
5foo_setup
6
7cat >> "$conf" <<EOF
17906b27 8[bar]
7f4c3ace 9type = alias
17906b27
SW
10alias_of = foo
11EOF
12
13python3 ./pinch.py pin "$conf"
14
15actual_env_command=`python3 ./pinch.py update --dry-run "$conf"`
16
4af9966c 17expected_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
18
19if echo "$actual_env_command" | egrep "$expected_env_command_RE" > /dev/null;then
20 echo PASS
21else
22 echo "Output: $actual_env_command"
23 echo "does not match RE: $expected_env_command_RE"
24 exit 1
25fi