blob: efcdea9c52d30c7bb6a962938b5c257e2c65be07 (
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
|
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_zsh() {
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_zsh_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_LOCAL_RESET="local-reset"
export GIT_RADAR_COLOR_REMOTE_RESET="remote-reset"
export GIT_RADAR_COLOR_CHANGES_RESET="change-reset"
}
test_with_env_vars_zsh() {
set_zsh_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 "$RESET_COLOR_LOCAL" "%{local-reset%}"
assertEquals "$RESET_COLOR_REMOTE" "%{remote-reset%}"
assertEquals "$RESET_COLOR_CHANGES" "%{change-reset%}"
}
test_zsh_colors_local() {
set_zsh_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
}
. ./shunit/shunit2
|