]> git.scottworley.com Git - pinch/blob - tests/alias.sh
Aliases
[pinch] / tests / alias.sh
1 #!/bin/sh
2
3 repo_dir="`mktemp -d`"
4 repo="$repo_dir/repo"
5 git init "$repo"
6 (
7 cd "$repo"
8 echo Contents > test-file
9 git add test-file
10 git commit -m 'Commit message'
11 )
12
13 conf="`mktemp`"
14 cat > "$conf" <<EOF
15 [foo]
16 git_repo = file://$repo
17 git_ref = master
18
19 [bar]
20 alias_of = foo
21 EOF
22
23 python3 ./pinch.py pin "$conf"
24
25 actual_env_command=`python3 ./pinch.py update --dry-run "$conf"`
26
27 rm -rf "$repo_dir" "$conf"
28
29 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/.{32}-\1.tar.xz"; \}'\'' '\''f: f \{ name = "\1"; channelName = "foo"; src = builtins.storePath "/nix/store/.{32}-\1.tar.xz"; \}'\''$'
30
31 if echo "$actual_env_command" | egrep "$expected_env_command_RE" > /dev/null;then
32 echo PASS
33 else
34 echo "Output: $actual_env_command"
35 echo "does not match RE: $expected_env_command_RE"
36 exit 1
37 fi