blob: 901fd01d89fe723af884a723a217a0056a5d915e (
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
|
#!/usr/bin/env bash
set -o errexit -o nounset -o pipefail
shopt -s inherit_errexit lastpipe
script_dir="$( dirname -- "${BASH_SOURCE[0]}" )"
script_dir="$( cd -- "$script_dir" && pwd )"
readonly script_dir
readonly cgitize_toml_path="$script_dir/../../../examples/cgitize.toml"
readonly output_dir='/tmp/cgitize'
success() {
echo
echo ----------------------------------------------------------------------
echo "SUCCESS: ${FUNCNAME[1]}"
echo ----------------------------------------------------------------------
}
clone_via_ssh_true() {
sed -i -E -e 's/^clone_via_ssh = (true|false)$/clone_via_ssh = true/' -- "$cgitize_toml_path"
}
clone_via_ssh_false() {
sed -i -E -e 's/^clone_via_ssh = (true|false)$/clone_via_ssh = false/' -- "$cgitize_toml_path"
}
cleanup() {
echo
echo ----------------------------------------------------------------------
echo Cleaning up
echo ----------------------------------------------------------------------
echo "Removing output directory: $output_dir"
rm -rf -- "$output_dir"
echo "Reverting clone_via_ssh settings: $cgitize_toml_path"
clone_via_ssh_false
}
cgitize() {
echo
echo ----------------------------------------------------------------------
echo Running cgitize
echo ----------------------------------------------------------------------
python3 -m cgitize.main --config "$cgitize_toml_path" "$@"
}
setup_ssh() {
clone_via_ssh_true
}
setup_https() {
clone_via_ssh_false
}
verify_origin() {
if [ "$#" -ne 2 ]; then
echo "usage: ${FUNCNAME[0]} REPO URL" >&2
return 1
fi
local repo="$1"
local expected="$2"
echo
echo ----------------------------------------------------------------------
echo "Verifying origin: $repo"
echo ----------------------------------------------------------------------
local repo_dir="$output_dir/$repo.git"
local actual
actual="$( GIT_DIR="$repo_dir" git config --get remote.origin.url )"
if [ "$expected" = "$actual" ]; then
echo 'It matches.'
else
echo "It doesn't match!"
echo " Expected: $expected"
echo " Actual: $actual"
return 1
fi
}
verify_repos() {
local repo
for repo; do
echo
echo ----------------------------------------------------------------------
echo "Verifying repository: $repo"
echo ----------------------------------------------------------------------
local repo_dir="$output_dir/$repo.git"
GIT_DIR="$repo_dir" git rev-parse HEAD > /dev/null
echo 'HEAD is fine.'
if test -f "$repo_dir/info/web/last-modified"; then
echo 'last-modified is fine.'
else
echo 'last-modified is missing!'
return 1
fi
done
}
verify_no_repos() {
local repo
for repo; do
echo
echo ----------------------------------------------------------------------
echo "Verifying repository doesn't exist: $repo"
echo ----------------------------------------------------------------------
local repo_dir="$output_dir/$repo.git"
if [ -e "$repo_dir" ]; then
echo "Exists, but it shouldn't."
return 1
fi
done
}
test_ssh() {
echo
echo ======================================================================
echo "${FUNCNAME[0]}"
echo ======================================================================
setup_ssh
cgitize
verify_repos \
lens \
chromiumembedded/cef \
graphviz \
wireguard/wintun \
goauthentik-dir/authentik \
github-dir/public \
bitbucket-dir/public \
bitbucket-dir/private \
gitlab-dir/public \
gitlab-dir/private
verify_origin lens 'git@github.com:ekmett/lens.git'
verify_origin chromiumembedded/cef 'git@bitbucket.org:chromiumembedded/cef.git'
verify_origin graphviz 'git@gitlab.com:graphviz/graphviz.git'
verify_origin goauthentik-dir/authentik 'git@github.com:goauthentik/authentik.git'
verify_origin github-dir/public 'git@github.com:cgitize-test/public.git'
verify_origin bitbucket-dir/public 'git@bitbucket.org:cgitize-test-workspace/public.git'
verify_origin bitbucket-dir/private 'git@bitbucket.org:cgitize-test-workspace/private.git'
verify_origin gitlab-dir/public 'git@gitlab.com:cgitize-test/public.git'
verify_origin gitlab-dir/private 'git@gitlab.com:cgitize-test/private.git'
cleanup
success
}
test_https() {
echo
echo ======================================================================
echo "${FUNCNAME[0]}"
echo ======================================================================
setup_https
cgitize
verify_repos \
lens \
chromiumembedded/cef \
graphviz \
wireguard/wintun \
goauthentik-dir/authentik \
github-dir/public \
bitbucket-dir/public \
bitbucket-dir/private \
gitlab-dir/public \
gitlab-dir/private
verify_origin lens 'https://github.com/ekmett/lens.git'
verify_origin chromiumembedded/cef 'https://bitbucket.org/chromiumembedded/cef.git'
verify_origin graphviz 'https://gitlab.com/graphviz/graphviz.git'
verify_origin goauthentik-dir/authentik 'https://github.com/goauthentik/authentik.git'
verify_origin github-dir/public 'https://github.com/cgitize-test/public.git'
verify_origin bitbucket-dir/public 'https://bitbucket.org/cgitize-test-workspace/public.git'
verify_origin bitbucket-dir/private 'https://bitbucket.org/cgitize-test-workspace/private.git'
verify_origin gitlab-dir/public 'https://gitlab.com/cgitize-test/public.git'
verify_origin gitlab-dir/private 'https://gitlab.com/cgitize-test/private.git'
cleanup
success
}
test_one_repo() {
echo
echo ======================================================================
echo "${FUNCNAME[0]}"
echo ======================================================================
setup_https
cgitize --repo cef
verify_repos chromiumembedded/cef
verify_no_repos lens wireguard/wintun
cleanup
success
}
main() {
trap cleanup EXIT
test_ssh
test_https
test_one_repo
}
main
|