summaryrefslogtreecommitdiffstats
path: root/test-colors.sh
blob: 8cc072ba033cc3cfa8000a718f18f34d8bb5bb65 (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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
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*
}

mock_zsh_colors() {
  fg_bold[green]=1
  fg_bold[red]=2
  fg_bold[yellow]=3
  fg_bold[white]=4

  reset_color=0
}

test_no_rcfile_bash() {
  reset_env_vars
  prepare_bash_colors

  assertEquals "$COLOR_REMOTE_AHEAD" "\x01\033[1;32m\x02"
  assertEquals "$COLOR_REMOTE_BEHIND" "\x01\033[1;31m\x02"
  assertEquals "$COLOR_REMOTE_DIVERGED" "\x01\033[1;33m\x02"
  assertEquals "$COLOR_REMOTE_NOT_UPSTREAM" "\x01\033[1;31m\x02"

  assertEquals "$COLOR_LOCAL_AHEAD" "\x01\033[1;32m\x02"
  assertEquals "$COLOR_LOCAL_BEHIND" "\x01\033[1;31m\x02"
  assertEquals "$COLOR_LOCAL_DIVERGED" "\x01\033[1;33m\x02"

  assertEquals "$COLOR_CHANGES_STAGED" "\x01\033[1;32m\x02"
  assertEquals "$COLOR_CHANGES_UNSTAGED" "\x01\033[1;31m\x02"
  assertEquals "$COLOR_CHANGES_CONFLICTED" "\x01\033[1;33m\x02"
  assertEquals "$COLOR_CHANGES_UNTRACKED" "\x01\033[1;37m\x02"

  assertEquals "$RESET_COLOR_LOCAL" "\x01\033[0m\x02"
  assertEquals "$RESET_COLOR_REMOTE" "\x01\033[0m\x02"
  assertEquals "$RESET_COLOR_CHANGES" "\x01\033[0m\x02"
}

test_no_rcfile_zsh() {
  reset_env_vars
  mock_zsh_colors
  prepare_zsh_colors

  assertEquals "$COLOR_REMOTE_AHEAD" "%{$fg_bold[green]%}"
  assertEquals "$COLOR_REMOTE_BEHIND" "%{$fg_bold[red]%}"
  assertEquals "$COLOR_REMOTE_DIVERGED" "%{$fg_bold[yellow]%}"
  assertEquals "$COLOR_REMOTE_NOT_UPSTREAM" "%{$fg_bold[red]%}"

  assertEquals "$COLOR_LOCAL_AHEAD" "%{$fg_bold[green]%}"
  assertEquals "$COLOR_LOCAL_BEHIND" "%{$fg_bold[red]%}"
  assertEquals "$COLOR_LOCAL_DIVERGED" "%{$fg_bold[yellow]%}"

  assertEquals "$COLOR_CHANGES_STAGED" "%{$fg_bold[green]%}"
  assertEquals "$COLOR_CHANGES_UNSTAGED" "%{$fg_bold[red]%}"
  assertEquals "$COLOR_CHANGES_CONFLICTED" "%{$fg_bold[yellow]%}"
  assertEquals "$COLOR_CHANGES_UNTRACKED" "%{$fg_bold[white]%}"

  assertEquals "$RESET_COLOR_LOCAL" "%{$reset_color%}"
  assertEquals "$RESET_COLOR_REMOTE" "%{$reset_color%}"
  assertEquals "$RESET_COLOR_CHANGES" "%{$reset_color%}"
}

set_env_vars() {
  export GIT_RADAR_COLOR_REMOTE_AHEAD="remote-ahead"
  export GIT_RADAR_COLOR_REMOTE_BEHIND="remote-behind"
  export GIT_RADAR_COLOR_REMOTE_DIVERGED="remote-diverged"
  export GIT_RADAR_COLOR_REMOTE_NOT_UPSTREAM="not-upstream"

  export GIT_RADAR_COLOR_LOCAL_AHEAD="local-ahead"
  export GIT_RADAR_COLOR_LOCAL_BEHIND="local-behind"
  export GIT_RADAR_COLOR_LOCAL_DIVERGED="local-diverged"

  export GIT_RADAR_COLOR_CHANGES_STAGED="changes-staged"
  export GIT_RADAR_COLOR_CHANGES_UNSTAGED="changes-unstaged"
  export GIT_RADAR_COLOR_CHANGES_CONFLICTED="changes-conflicted"
  export GIT_RADAR_COLOR_CHANGES_UNTRACKED="changes-untracked"

  export GIT_RADAR_COLOR_BRANCH="branch-color"
  export GIT_RADAR_MASTER_SYMBOL="m"

  export GIT_RADAR_COLOR_LOCAL_RESET="local-reset"
  export GIT_RADAR_COLOR_REMOTE_RESET="remote-reset"
  export GIT_RADAR_COLOR_CHANGES_RESET="change-reset"
  export GIT_RADAR_COLOR_BRANCH_RESET="branch-reset"
}

reset_env_vars() {
  export GIT_RADAR_COLOR_REMOTE_AHEAD=""
  export GIT_RADAR_COLOR_REMOTE_BEHIND=""
  export GIT_RADAR_COLOR_REMOTE_DIVERGED=""
  export GIT_RADAR_COLOR_REMOTE_NOT_UPSTREAM=""

  export GIT_RADAR_COLOR_LOCAL_AHEAD=""
  export GIT_RADAR_COLOR_LOCAL_BEHIND=""
  export GIT_RADAR_COLOR_LOCAL_DIVERGED=""

  export GIT_RADAR_COLOR_CHANGES_STAGED=""
  export GIT_RADAR_COLOR_CHANGES_UNSTAGED=""
  export GIT_RADAR_COLOR_CHANGES_CONFLICTED=""
  export GIT_RADAR_COLOR_CHANGES_UNTRACKED=""

  export GIT_RADAR_COLOR_BRANCH=""
  export GIT_RADAR_MASTER_SYMBOL=""

  export GIT_RADAR_COLOR_LOCAL_RESET=""
  export GIT_RADAR_COLOR_REMOTE_RESET=""
  export GIT_RADAR_COLOR_CHANGES_RESET=""
  export GIT_RADAR_COLOR_BRANCH_RESET=""
}

create_rc_file() {
  echo 'GIT_RADAR_COLOR_REMOTE_AHEAD="remote-ahead"' >> .gitradarrc$1
  echo 'GIT_RADAR_COLOR_REMOTE_BEHIND="remote-behind"' >> .gitradarrc$1
  echo 'GIT_RADAR_COLOR_REMOTE_DIVERGED="remote-diverged"' >> .gitradarrc$1
  echo 'GIT_RADAR_COLOR_REMOTE_NOT_UPSTREAM="not-upstream"' >> .gitradarrc$1

  echo 'GIT_RADAR_COLOR_LOCAL_AHEAD="local-ahead"' >> .gitradarrc$1
  echo 'GIT_RADAR_COLOR_LOCAL_BEHIND="local-behind"' >> .gitradarrc$1
  echo 'GIT_RADAR_COLOR_LOCAL_DIVERGED="local-diverged"' >> .gitradarrc$1

  echo 'GIT_RADAR_COLOR_CHANGES_STAGED="changes-staged"' >> .gitradarrc$1
  echo 'GIT_RADAR_COLOR_CHANGES_UNSTAGED="changes-unstaged"' >> .gitradarrc$1
  echo 'GIT_RADAR_COLOR_CHANGES_CONFLICTED="changes-conflicted"' >> .gitradarrc$1
  echo 'GIT_RADAR_COLOR_CHANGES_UNTRACKED="changes-untracked"' >> .gitradarrc$1

  echo 'export GIT_RADAR_COLOR_BRANCH="branch-color"' >> .gitradarrc$1
  echo 'export GIT_RADAR_MASTER_SYMBOL="m"' >> .gitradarrc$1

  echo 'GIT_RADAR_COLOR_LOCAL_RESET="local-reset"' >> .gitradarrc$1
  echo 'GIT_RADAR_COLOR_REMOTE_RESET="remote-reset"' >> .gitradarrc$1
  echo 'GIT_RADAR_COLOR_CHANGES_RESET="change-reset"' >> .gitradarrc$1
  echo 'GIT_RADAR_COLOR_BRANCH_RESET="branch-reset"' >> .gitradarrc$1
}

test_with_rcfile_bash() {
  reset_env_vars
  cd_to_tmp

  rcfile_path="$(pwd)"

  create_rc_file ".bash"
  prepare_bash_colors

  assertEquals "$COLOR_REMOTE_AHEAD" "\x01remote-ahead\x02"
  assertEquals "$COLOR_REMOTE_BEHIND" "\x01remote-behind\x02"
  assertEquals "$COLOR_REMOTE_DIVERGED" "\x01remote-diverged\x02"
  assertEquals "$COLOR_REMOTE_NOT_UPSTREAM" "\x01not-upstream\x02"

  assertEquals "$COLOR_LOCAL_AHEAD" "\x01local-ahead\x02"
  assertEquals "$COLOR_LOCAL_BEHIND" "\x01local-behind\x02"
  assertEquals "$COLOR_LOCAL_DIVERGED" "\x01local-diverged\x02"

  assertEquals "$COLOR_CHANGES_STAGED" "\x01changes-staged\x02"
  assertEquals "$COLOR_CHANGES_UNSTAGED" "\x01changes-unstaged\x02"
  assertEquals "$COLOR_CHANGES_CONFLICTED" "\x01changes-conflicted\x02"
  assertEquals "$COLOR_CHANGES_UNTRACKED" "\x01changes-untracked\x02"

  assertEquals "$COLOR_BRANCH" "\x01branch-color\x02"
  assertEquals "$MASTER_SYMBOL" "m"

  assertEquals "$RESET_COLOR_LOCAL" "\x01local-reset\x02"
  assertEquals "$RESET_COLOR_REMOTE" "\x01remote-reset\x02"
  assertEquals "$RESET_COLOR_CHANGES" "\x01change-reset\x02"
  assertEquals "$RESET_COLOR_BRANCH" "\x01branch-reset\x02"

  rm_tmp
}

test_with_rcfile_zsh() {
  reset_env_vars
  cd_to_tmp

  rcfile_path="$(pwd)"

  create_rc_file ".zsh"
  mock_zsh_colors
  prepare_zsh_colors

  assertEquals "$COLOR_REMOTE_AHEAD" "%{remote-ahead%}"
  assertEquals "$COLOR_REMOTE_BEHIND" "%{remote-behind%}"
  assertEquals "$COLOR_REMOTE_DIVERGED" "%{remote-diverged%}"
  assertEquals "$COLOR_REMOTE_NOT_UPSTREAM" "%{not-upstream%}"

  assertEquals "$COLOR_LOCAL_AHEAD" "%{local-ahead%}"
  assertEquals "$COLOR_LOCAL_BEHIND" "%{local-behind%}"
  assertEquals "$COLOR_LOCAL_DIVERGED" "%{local-diverged%}"

  assertEquals "$COLOR_CHANGES_STAGED" "%{changes-staged%}"
  assertEquals "$COLOR_CHANGES_UNSTAGED" "%{changes-unstaged%}"
  assertEquals "$COLOR_CHANGES_CONFLICTED" "%{changes-conflicted%}"
  assertEquals "$COLOR_CHANGES_UNTRACKED" "%{changes-untracked%}"

  assertEquals "$COLOR_BRANCH" "%{branch-color%}"
  assertEquals "$MASTER_SYMBOL" "m"

  assertEquals "$RESET_COLOR_LOCAL" "%{local-reset%}"
  assertEquals "$RESET_COLOR_REMOTE" "%{remote-reset%}"
  assertEquals "$RESET_COLOR_CHANGES" "%{change-reset%}"
  assertEquals "$RESET_COLOR_BRANCH" "%{branch-reset%}"

  rm_tmp
}

test_with_env_vars_bash() {
  reset_env_vars
  set_env_vars
  prepare_bash_colors

  assertEquals "$COLOR_REMOTE_AHEAD" "\x01remote-ahead\x02"
  assertEquals "$COLOR_REMOTE_BEHIND" "\x01remote-behind\x02"
  assertEquals "$COLOR_REMOTE_DIVERGED" "\x01remote-diverged\x02"
  assertEquals "$COLOR_REMOTE_NOT_UPSTREAM" "\x01not-upstream\x02"

  assertEquals "$COLOR_LOCAL_AHEAD" "\x01local-ahead\x02"
  assertEquals "$COLOR_LOCAL_BEHIND" "\x01local-behind\x02"
  assertEquals "$COLOR_LOCAL_DIVERGED" "\x01local-diverged\x02"

  assertEquals "$COLOR_CHANGES_STAGED" "\x01changes-staged\x02"
  assertEquals "$COLOR_CHANGES_UNSTAGED" "\x01changes-unstaged\x02"
  assertEquals "$COLOR_CHANGES_CONFLICTED" "\x01changes-conflicted\x02"
  assertEquals "$COLOR_CHANGES_UNTRACKED" "\x01changes-untracked\x02"

  assertEquals "$COLOR_BRANCH" "\x01branch-color\x02"
  assertEquals "$MASTER_SYMBOL" "m"

  assertEquals "$RESET_COLOR_LOCAL" "\x01local-reset\x02"
  assertEquals "$RESET_COLOR_REMOTE" "\x01remote-reset\x02"
  assertEquals "$RESET_COLOR_CHANGES" "\x01change-reset\x02"
  assertEquals "$RESET_COLOR_BRANCH" "\x01branch-reset\x02"
}

test_with_env_vars_zsh() {
  reset_env_vars
  set_env_vars
  mock_zsh_colors
  prepare_zsh_colors

  assertEquals "$COLOR_REMOTE_AHEAD" "%{remote-ahead%}"
  assertEquals "$COLOR_REMOTE_BEHIND" "%{remote-behind%}"
  assertEquals "$COLOR_REMOTE_DIVERGED" "%{remote-diverged%}"
  assertEquals "$COLOR_REMOTE_NOT_UPSTREAM" "%{not-upstream%}"

  assertEquals "$COLOR_LOCAL_AHEAD" "%{local-ahead%}"
  assertEquals "$COLOR_LOCAL_BEHIND" "%{local-behind%}"
  assertEquals "$COLOR_LOCAL_DIVERGED" "%{local-diverged%}"

  assertEquals "$COLOR_CHANGES_STAGED" "%{changes-staged%}"
  assertEquals "$COLOR_CHANGES_UNSTAGED" "%{changes-unstaged%}"
  assertEquals "$COLOR_CHANGES_CONFLICTED" "%{changes-conflicted%}"
  assertEquals "$COLOR_CHANGES_UNTRACKED" "%{changes-untracked%}"

  assertEquals "$COLOR_BRANCH" "%{branch-color%}"
  assertEquals "$MASTER_SYMBOL" "m"

  assertEquals "$RESET_COLOR_LOCAL" "%{local-reset%}"
  assertEquals "$RESET_COLOR_REMOTE" "%{remote-reset%}"
  assertEquals "$RESET_COLOR_CHANGES" "%{change-reset%}"
  assertEquals "$RESET_COLOR_BRANCH" "%{branch-reset%}"
}

test_bash_colors_local() {
  reset_env_vars
  set_env_vars
  prepare_bash_colors

  cd_to_tmp "remote"
  git init --bare --quiet
  remoteLocation="$(pwd)"

  cd_to_tmp "repo"
  git init --quiet
  git remote add origin $remoteLocation
  git fetch origin --quiet
  git checkout -b master --quiet
  touch README
  git add README
  git commit -m "initial commit" --quiet
  git push --quiet -u origin master >/dev/null
  repoLocation="$(pwd)"

  echo "foo" > foo
  git add .
  git commit -m "test commit" --quiet

  printf -v expected "1\x01local-ahead\x02↑\x01local-reset\x02"
  assertEquals "$expected" "$(bash_color_local_commits)"
  assertEquals "$expected" "$(color_local_commits)"

  git push --quiet >/dev/null
  git reset --hard head^ --quiet >/dev/null

  printf -v expected "1\x01local-behind\x02↓\x01local-reset\x02"
  assertEquals "$expected" "$(bash_color_local_commits)"
  assertEquals "$expected" "$(color_local_commits)"

  echo "foo" > foo
  git add .
  git commit -m "new commit" --quiet

  printf -v expected "1\x01local-diverged\x02⇵\x01local-reset\x021"
  assertEquals "$expected" "$(bash_color_local_commits)"
  assertEquals "$expected" "$(color_local_commits)"

  rm_tmp
}

test_zsh_colors_local() {
  reset_env_vars
  set_env_vars
  prepare_zsh_colors

  cd_to_tmp "remote"
  git init --bare --quiet
  remoteLocation="$(pwd)"

  cd_to_tmp "repo"
  git init --quiet
  git remote add origin $remoteLocation
  git fetch origin --quiet
  git checkout -b master --quiet
  touch README
  git add README
  git commit -m "initial commit" --quiet
  git push --quiet -u origin master >/dev/null
  repoLocation="$(pwd)"

  echo "foo" > foo
  git add .
  git commit -m "test commit" --quiet

  assertEquals "1%{local-ahead%}↑%{local-reset%}" "$(zsh_color_local_commits)"

  git push --quiet >/dev/null
  git reset --hard head^ --quiet >/dev/null

  assertEquals "1%{local-behind%}↓%{local-reset%}" "$(zsh_color_local_commits)"

  echo "foo" > foo
  git add .
  git commit -m "new commit" --quiet

  assertEquals "1%{local-diverged%}⇵%{local-reset%}1" "$(zsh_color_local_commits)"

  rm_tmp
}

test_bash_colors_remote() {
  reset_env_vars
  set_env_vars
  prepare_bash_colors

  cd_to_tmp "remote"
  git init --bare --quiet
  remoteLocation="$(pwd)"

  cd_to_tmp "repo"
  git init --quiet
  git remote add origin $remoteLocation
  git fetch origin --quiet
  git checkout -b master --quiet
  touch README
  git add README
  git commit -m "initial commit" --quiet
  echo "foo" > foo
  git add .
  git commit -m "test commit" --quiet
  git push --quiet -u origin master >/dev/null
  repoLocation="$(pwd)"

  git reset --hard head^ --quiet >/dev/null
  git checkout -b mybranch --quiet
  git push --quiet -u origin mybranch >/dev/null

  printf -v expected "m 1 \x01remote-behind\x02→\x01remote-reset\x02"
  assertEquals "$expected" "$(bash_color_remote_commits)"
  assertEquals "$expected" "$(color_remote_commits)"

  echo "bar" > bar
  git add .
  git commit -m "new commit" --quiet
  git push --quiet >/dev/null

  printf -v expected "m 1 \x01remote-diverged\x02⇄\x01remote-reset\x02 1"
  assertEquals "$expected" "$(bash_color_remote_commits)"
  assertEquals "$expected" "$(color_remote_commits)"

  git pull origin master --quiet >/dev/null
  git push --quiet >/dev/null

  printf -v expected "m \x01remote-ahead\x02←\x01remote-reset\x02 2"
  assertEquals "$expected" "$(bash_color_remote_commits)"
  assertEquals "$expected" "$(color_remote_commits)"

  rm_tmp
}

test_zsh_colors_remote() {
  reset_env_vars
  set_env_vars
  prepare_zsh_colors

  cd_to_tmp "remote"
  git init --bare --quiet
  remoteLocation="$(pwd)"

  cd_to_tmp "repo"
  git init --quiet
  git remote add origin $remoteLocation
  git fetch origin --quiet
  git checkout -b master --quiet
  touch README
  git add README
  git commit -m "initial commit" --quiet
  echo "foo" > foo
  git add .
  git commit -m "test commit" --quiet
  git push --quiet -u origin master >/dev/null
  repoLocation="$(pwd)"

  git reset --hard head^ --quiet >/dev/null
  git checkout -b mybranch --quiet
  git push --quiet -u origin mybranch >/dev/null

  assertEquals "m 1 %{remote-behind%}→%{remote-reset%}" "$(zsh_color_remote_commits)"

  echo "bar" > bar
  git add .
  git commit -m "new commit" --quiet
  git push --quiet >/dev/null

  assertEquals "m 1 %{remote-diverged%}⇄%{remote-reset%} 1" "$(zsh_color_remote_commits)"

  git pull origin master --quiet >/dev/null
  git push --quiet >/dev/null

  assertEquals "m %{remote-ahead%}←%{remote-reset%} 2" "$(zsh_color_remote_commits)"

  rm_tmp
}

test_bash_colors_changes() {
  reset_env_vars
  set_env_vars
  prepare_bash_colors

  cd_to_tmp
  git init --quiet

  touch foo
  touch bar
  git add bar
  echo "bar" > bar
  untracked="1\x01changes-untracked\x02A\x01change-reset\x02"
  unstaged="1\x01changes-unstaged\x02M\x01change-reset\x02"
  staged="1\x01changes-staged\x02A\x01change-reset\x02"

  printf -v expected "$staged $unstaged $untracked"
  assertEquals "$expected" "$(bash_color_changes_status)"
  assertEquals "$expected" "$(color_changes_status)"
  rm_tmp
}

test_zsh_colors_changes() {
  reset_env_vars
  set_env_vars
  prepare_zsh_colors

  cd_to_tmp
  git init --quiet

  touch foo
  touch bar
  git add bar
  echo "bar" > bar
  untracked="1%{changes-untracked%}A%{change-reset%}"
  unstaged="1%{changes-unstaged%}M%{change-reset%}"
  staged="1%{changes-staged%}A%{change-reset%}"

  assertEquals "$staged $unstaged $untracked" "$(zsh_color_changes_status)"
  rm_tmp
}

. ./shunit/shunit2