summaryrefslogtreecommitdiffstats
path: root/test-format-config.sh
blob: 17c4bd69913a03b7a038d9755f183f2dc8ce540b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
scriptDir="$(cd "$(dirname "$0")"; pwd)"

source "$scriptDir/radar-base.sh"

cd_to_tmp() {
  tmpfile="/tmp/git-prompt-tests-$(time_now)$1"
  mkdir -p "$tmpfile"
  cd "$tmpfile"
}

rm_tmp() {
  cd $scriptDir
  rm -rf /tmp/git-prompt-tests*
}

unset_colours() {
  export COLOR_REMOTE_AHEAD=""
  export COLOR_REMOTE_BEHIND=""
  export COLOR_REMOTE_DIVERGED=""
  export COLOR_REMOTE_NOT_UPSTREAM=""

  export COLOR_LOCAL_AHEAD=""
  export COLOR_LOCAL_BEHIND=""
  export COLOR_LOCAL_DIVERGED=""

  export COLOR_CHANGES_STAGED=""
  export COLOR_CHANGES_UNSTAGED=""
  export COLOR_CHANGES_CONFLICTED=""
  export COLOR_CHANGES_UNTRACKED=""

  export COLOR_BRANCH=""
  export MASTER_SYMBOL="m"

  export RESET_COLOR_LOCAL=""
  export RESET_COLOR_REMOTE=""
  export RESET_COLOR_CHANGES=""
  export RESET_COLOR_BRANCH=""
}

prepare_test_repo() {
  cd_to_tmp "remote"

  git init --quiet
  touch README
  git add .
  git commit -m "initial commit" --quiet
  origin="$(pwd)"

  cd_to_tmp "new"
  git init --quiet
  git remote add origin $origin
  git fetch origin --quiet
  git checkout master --quiet
  git checkout -b foo --quiet
  git push --quiet -u origin foo >/dev/null
  repo="$(pwd)"

  cd "$origin"
  echo "foo" > foo
  git add .
  git commit -m "remote commit" --quiet
  cd "$repo"
  echo "foo" > foo
  git add .
  git commit -m "local commit" --quiet
  echo "foo" > bar
  git fetch origin --quiet
}

test_all_options_set_config() {
  prepare_test_repo

  export GIT_RADAR_FORMAT="%{remote}%{branch}%{local}%{changes}"
  prepare_zsh_colors
  unset_colours

  prompt="$(render_prompt)"
  assertEquals "$prompt" "m 1 → foo 1↑ 1A"

  export GIT_RADAR_FORMAT="%{remote}%{branch}%{changes}"
  prepare_zsh_colors
  unset_colours

  prompt="$(render_prompt)"
  assertEquals "$prompt" "m 1 → foo 1A"

  export GIT_RADAR_FORMAT="%{branch}%{local}%{changes}"
  prepare_zsh_colors
  unset_colours

  prompt="$(render_prompt)"
  assertEquals "$prompt" "foo 1↑ 1A"

  export GIT_RADAR_FORMAT="%{branch}%{changes}"
  prepare_zsh_colors
  unset_colours

  prompt="$(render_prompt)"
  assertEquals "$prompt" "foo 1A"

  export GIT_RADAR_FORMAT="%{branch}"
  prepare_zsh_colors
  unset_colours

  prompt="$(render_prompt)"
  assertEquals "$prompt" "foo"

  rm_tmp
}

. ./shunit/shunit2