summaryrefslogtreecommitdiffstats
path: root/test-format-config.sh
blob: 7e62c9fb630188331360da4678e2982121b9a1d0 (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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
#!/bin/bash
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() {
  cd_to_tmp "empty"
  export GIT_RADAR_FORMAT="%{branch}%{local}%{changes}"
  # Don't test remote as in no repo you will get upstream error message
  prepare_zsh_colors
  unset_colours

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

  export GIT_RADAR_FORMAT="%{remote}"
  # Don't test remote as in no repo you will get upstream error message
  prepare_zsh_colors
  unset_colours

  prompt="$(render_prompt)"
  assertEquals "$prompt" "upstream ⚡"
  prepare_test_repo

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

  prompt="$(render_prompt)"
  assertEquals "$prompt" "m 1 →foo1↑1?"

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

  prompt="$(render_prompt)"
  assertEquals "$prompt" "m 1 →foo1?"

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

  prompt="$(render_prompt)"
  assertEquals "$prompt" "foo1↑1?"

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

  prompt="$(render_prompt)"
  assertEquals "$prompt" "foo1?"

  export GIT_RADAR_FORMAT="%{branch}"
  prepare_zsh_colors
  unset_colours

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

  rm_tmp
}

test_reorder_parts() {
  prepare_test_repo

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

  prompt="$(render_prompt)"
  assertEquals "foo1↑1?m 1 →" "$prompt"

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

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

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

  prompt="$(render_prompt)"
  assertEquals "1?m 1 →foo1↑" "$prompt"

  rm_tmp
}

test_prefix_and_suffix_changes() {
  prepare_test_repo

  export GIT_RADAR_FORMAT="%{changes}"
  prepare_zsh_colors
  unset_colours

  prompt="$(render_prompt)"
  assertEquals "1?" "$prompt"

  export GIT_RADAR_FORMAT="%{[:changes:]}"
  prepare_zsh_colors
  unset_colours

  prompt="$(render_prompt)"
  assertEquals "[1?]" "$prompt"

  rm_tmp
}

test_prefix_and_suffix_local() {
  prepare_test_repo

  export GIT_RADAR_FORMAT="%{local}"
  prepare_zsh_colors
  unset_colours

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

  export GIT_RADAR_FORMAT="%{[:local:]}"
  prepare_zsh_colors
  unset_colours

  prompt="$(render_prompt)"
  assertEquals "[1↑]" "$prompt"

  rm_tmp
}

test_prefix_and_suffix_branch() {
  prepare_test_repo

  export GIT_RADAR_FORMAT="%{branch}"
  prepare_zsh_colors
  unset_colours

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

  export GIT_RADAR_FORMAT="%{[:branch:]}"
  prepare_zsh_colors
  unset_colours

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

  rm_tmp
}

test_prefix_and_suffix_remote() {
  prepare_test_repo

  export GIT_RADAR_FORMAT="%{remote}"
  prepare_zsh_colors
  unset_colours

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

  export GIT_RADAR_FORMAT="%{[:remote:]}"
  prepare_zsh_colors
  unset_colours

  prompt="$(render_prompt)"
  assertEquals "[m 1 →]" "$prompt"

  rm_tmp
}

. ./shunit/shunit2