]>
Commit | Line | Data |
---|---|---|
1 | set -e | |
2 | ||
3 | export GIT_AUTHOR_NAME=automation | |
4 | export GIT_COMMITTER_NAME=automation | |
5 | export GIT_AUTHOR_EMAIL=auto@mati.on | |
6 | export GIT_COMMITTER_EMAIL=auto@mati.on | |
7 | ||
8 | cache_dir=$(mktemp -d) | |
9 | export XDG_CACHE_HOME=$cache_dir | |
10 | ||
11 | nix_store=$(mktemp -d) | |
12 | nix_state=$(mktemp -d) | |
13 | export NIX_STORE_DIR=$nix_store | |
14 | export NIX_STATE_DIR=$nix_state | |
15 | ||
16 | foo_setup() { | |
17 | ||
18 | repo_dir="`mktemp -d`" | |
19 | repo="$repo_dir/repo" | |
20 | git init "$repo" | |
21 | ( | |
22 | cd "$repo" | |
23 | echo Contents > test-file | |
24 | git add test-file | |
25 | git commit -m 'Commit message' | |
26 | ) | |
27 | ||
28 | conf="`mktemp`" | |
29 | cat > "$conf" <<EOF | |
30 | [foo] | |
31 | type = git | |
32 | git_repo = file://$repo | |
33 | git_ref = master | |
34 | EOF | |
35 | ||
36 | } | |
37 | ||
38 | test_cleanup() { | |
39 | if [ "$repo_dir" ];then rm -rf "$repo_dir"; fi | |
40 | if [ "$conf" ];then rm "$conf"; fi | |
41 | if [ "$cache_dir" ];then rm -rf "$cache_dir"; fi | |
42 | if [ "$nix_store" ];then rm -rf "$nix_store"; fi | |
43 | if [ "$nix_state" ];then rm -rf "$nix_state"; fi | |
44 | } | |
45 | ||
46 | trap test_cleanup EXIT INT TERM |