File: github_release_util_test.sh

package info (click to toggle)
golang-github-tink-crypto-tink-go 2.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 12,952 kB
  • sloc: sh: 864; makefile: 6
file content (412 lines) | stat: -rwxr-xr-x 12,393 bytes parent folder | download | duplicates (7)
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
#!/bin/bash
# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
################################################################################

DEFAULT_DIR="$(pwd)"
if [[ -n "${TEST_SRCDIR}" ]]; then
  DEFAULT_DIR="${TEST_SRCDIR}"
fi
readonly DEFAULT_DIR
readonly CLI="${DEFAULT_DIR}/${1:-"github_release_util.sh"}"
readonly TEST_UTILS="${DEFAULT_DIR}/${2:-test_utils.sh}"

# Load the test library.
source "${TEST_UTILS}"

test_GitHubReleaseUtil_CreateBranchMinorSucceeds() {
  cd "${TEST_CASE_TMPDIR}"
  local -r expected_git_cmds_file="${TEST_CASE_TMPDIR}/expected_cmds.txt"
  cat << EOF > ${expected_git_cmds_file}
git ls-remote ssh://git@github.com/tink-crypto/some-repo
git clone ssh://git@github.com/tink-crypto/some-repo
git branch 1.6
git push origin 1.6
EOF

  local -r actual_git_cmds_file="${TEST_CASE_TMPDIR}/actual_git_cmds_file.txt"
  # Mock git command.
  git() {
    local -r command="$1"
    shift 1
    cmd_and_args="git ${command} $@"
    echo "${cmd_and_args}" >> "${actual_git_cmds_file}"
    case "${command}" in
      "ls-remote")
        cat << EOF
6c68b48c884e0aeb983b8864f35187d9584d0d74        HEAD
6c68b48c884e0aeb983b8864f35187d9584d0d74        refs/heads/main
EOF
        ;;
      "clone")
        local -r repo_name="${1##*/}"
        mkdir "${repo_name}"
        ;;
      *) ;; # Do nothing
    esac
  }
  # Run this in the caller's environment.
  (
    source "${CLI}" -r create_branch 1.6.0 some-repo &> /dev/null
  )
  ASSERT_CMD_SUCCEEDED
  ASSERT_FILE_EQUALS "${actual_git_cmds_file}" "${expected_git_cmds_file}"
}

test_GitHubReleaseUtil_CreateBranchMinorWithCommitSucceeds() {
  cd "${TEST_CASE_TMPDIR}"
  local -r expected_git_cmds_file="${TEST_CASE_TMPDIR}/expected_cmds.txt"
  cat << EOF > ${expected_git_cmds_file}
git ls-remote ssh://git@github.com/tink-crypto/some-repo
git clone ssh://git@github.com/tink-crypto/some-repo
git branch 1.6 6c68b48c884e0aeb983b8864f35187d9584d0d74
git push origin 1.6
EOF
  local -r actual_git_cmds_file="${TEST_CASE_TMPDIR}/actual_git_cmds_file.txt"
  # Mock git command.
  git() {
    local -r command="$1"
    shift 1
    cmd_and_args="git ${command} $@"
    echo "${cmd_and_args}" >> "${actual_git_cmds_file}"
    case "${command}" in
      "ls-remote")
        cat << EOF
6c68b48c884e0aeb983b8864f35187d9584d0d74        HEAD
6c68b48c884e0aeb983b8864f35187d9584d0d74        refs/heads/main
EOF
        ;;
      "clone")
        local -r repo_name="${1##*/}"
        mkdir "${repo_name}"
        ;;
      *) ;; # Do nothing
    esac
  }

  # Run this in the caller's environment.
  (
    source "${CLI}" -r -c 6c68b48c884e0aeb983b8864f35187d9584d0d74 \
      create_branch 1.6.0 some-repo &> /dev/null
  )
  ASSERT_CMD_SUCCEEDED
  ASSERT_FILE_EQUALS "${actual_git_cmds_file}" "${expected_git_cmds_file}"
}

test_GitHubReleaseUtil_CreateTagPatchSucceeds() {
  cd "${TEST_CASE_TMPDIR}"
  local -r expected_git_cmds_file="${TEST_CASE_TMPDIR}/expected_cmds.txt"
  cat << EOF > ${expected_git_cmds_file}
git ls-remote ssh://git@github.com/tink-crypto/some-repo
git clone ssh://git@github.com/tink-crypto/some-repo
git checkout 1.6
git tag -a v1.6.2 -m some-repo version 1.6.2
git push origin v1.6.2
EOF
  local -r actual_git_cmds_file="${TEST_CASE_TMPDIR}/actual_git_cmds_file.txt"
  # Mock git command.
  git() {
    local -r command="$1"
    shift 1
    cmd_and_args="git ${command} $@"
    echo "${cmd_and_args}" >> "${actual_git_cmds_file}"
    case "${command}" in
      "ls-remote")
        cat << EOF
6c68b48c884e0aeb983b8864f35187d9584d0d74        HEAD
6c68b48c884e0aeb983b8864f35187d9584d0d74        refs/heads/main
9940095f3081a116fa7a1337ad5ba27a3ccc59fe        refs/heads/1.6
EOF
        ;;
      "clone")
        local -r repo_name="${1##*/}"
        mkdir "${repo_name}"
        ;;
      *) ;; # Do nothing.
    esac
  }

  # Run this in the caller's environment.
  (
    source "${CLI}" -r -c 6c68b48c884e0aeb983b8864f35187d9584d0d74 \
      create_tag 1.6.2 some-repo &> /dev/null
  )
  ASSERT_CMD_SUCCEEDED
  ASSERT_FILE_EQUALS "${actual_git_cmds_file}" "${expected_git_cmds_file}"
}

test_GitHubReleaseUtil_CreateBranchFailsWhenLsRemoteFails() {
  cd "${TEST_CASE_TMPDIR}"
  local -r expected_git_cmds_file="${TEST_CASE_TMPDIR}/expected_cmds.txt"
  cat << EOF > ${expected_git_cmds_file}
git ls-remote ssh://git@github.com/tink-crypto/some-repo
EOF
  local actual_git_cmds_file="${TEST_CASE_TMPDIR}/actual_cmds.txt"
  # Mock git command.
  git() {
    local -r command="$1"
    shift 1
    cmd_and_args="git ${command} $@"
    echo "${cmd_and_args}" >> "${actual_git_cmds_file}"
    case "${command}" in
      "ls-remote") return 1 ;;
      *) ;; # Do nothing.
    esac
  }

  # Run this in a subshell to prevent exiting on failure.
  (
    source "${CLI}" -r create_branch 1.6.2 some-repo &> /dev/null
  )
  ASSERT_CMD_FAILED
  ASSERT_FILE_EQUALS "${actual_git_cmds_file}" "${expected_git_cmds_file}"
  echo "" > "${actual_git_cmds_file}"
}

test_GitHubReleaseUtil_CreateBranchFailsWhenCloneFails() {
  cd "${TEST_CASE_TMPDIR}"
  local -r expected_git_cmds_file="${TEST_CASE_TMPDIR}/expected_cmds.txt"
  cat << EOF > ${expected_git_cmds_file}
git ls-remote ssh://git@github.com/tink-crypto/some-repo
git clone ssh://git@github.com/tink-crypto/some-repo
EOF
  local actual_git_cmds_file="${TEST_CASE_TMPDIR}/actual_cmds.txt"
  # Mock git command.
  git() {
    local -r command="$1"
    shift 1
    cmd_and_args="git ${command} $@"
    echo "${cmd_and_args}" >> "${actual_git_cmds_file}"
    case "${command}" in
      "ls-remote")
        cat << EOF
6c68b48c884e0aeb983b8864f35187d9584d0d74        HEAD
6c68b48c884e0aeb983b8864f35187d9584d0d74        refs/heads/main
EOF
        ;;
      "clone") return 1 ;;
      *) ;; # Do nothing.
    esac
  }

  # Run this in a subshell to prevent exiting on failure.
  (
    source "${CLI}" -r create_branch 1.6.2 some-repo &> /dev/null
  )
  ASSERT_CMD_FAILED
  ASSERT_FILE_EQUALS "${actual_git_cmds_file}" "${expected_git_cmds_file}"
}

test_GitHubReleaseUtil_CreateTagFailsIfBranchDoesNotExist() {
  cd "${TEST_CASE_TMPDIR}"
  local -r expected_git_cmds_file="${TEST_CASE_TMPDIR}/expected_cmds.txt"
  cat << EOF > ${expected_git_cmds_file}
git ls-remote ssh://git@github.com/tink-crypto/some-repo
EOF
  local actual_git_cmds_file="${TEST_CASE_TMPDIR}/actual_cmds.txt"
  # Mock git command.
  git() {
    local -r command="$1"
    shift 1
    cmd_and_args="git ${command} $@"
    echo "${cmd_and_args}" >> "${actual_git_cmds_file}"
    case "${command}" in
      "ls-remote")
        cat << EOF
6c68b48c884e0aeb983b8864f35187d9584d0d74        HEAD
6c68b48c884e0aeb983b8864f35187d9584d0d74        refs/heads/main
EOF
        ;;
      *) ;; # Do nothing.
    esac
  }

  # Run this in a subshell to prevent exiting on failure.
  (
    source "${CLI}" -r create_tag 1.6.2 some-repo &> /dev/null
  )

  ASSERT_CMD_FAILED
  ASSERT_FILE_EQUALS "${actual_git_cmds_file}" "${expected_git_cmds_file}"
}

test_GitHubReleaseUtil_CreateTagFailsIfReleaseTagAlreadyExists() {
  cd "${TEST_CASE_TMPDIR}"
  local -r expected_git_cmds_file="${TEST_CASE_TMPDIR}/expected_cmds.txt"
  cat << EOF > ${expected_git_cmds_file}
git ls-remote ssh://git@github.com/tink-crypto/some-repo
EOF
  local actual_git_cmds_file="${TEST_CASE_TMPDIR}/actual_cmds.txt"
  # Mock git command.
  git() {
    local -r command="$1"
    shift 1
    cmd_and_args="git ${command} $@"
    echo "${cmd_and_args}" >> "${actual_git_cmds_file}"
    case "${command}" in
      "ls-remote")
        cat << EOF
6c68b48c884e0aeb983b8864f35187d9584d0d74        HEAD
6c68b48c884e0aeb983b8864f35187d9584d0d74        refs/heads/main
112a7d3a0453a1d926448519f94fe5a91c69be45        refs/heads/1.6
8c266441044c4dfaf7560e21663a8037043b750b        refs/tags/v1.6.2
195ec3c1edeee8877ab5dc287f95c4402e3fb510        refs/tags/v1.6.1
c6f48771296bca0bd22724b208abafeae7d7b764        refs/tags/v1.6.0
EOF
        ;;
      *) ;; # Do nothing.
    esac
  }

  # Run this in a subshell to prevent exiting on failure.
  (
    source "${CLI}" -r create_tag 1.6.2 some-repo &> /dev/null
  )

  ASSERT_CMD_FAILED
  ASSERT_FILE_EQUALS "${actual_git_cmds_file}" "${expected_git_cmds_file}"
}

test_GitHubReleaseUtil_FailsWhenInvalidVersion() {
  cd "${TEST_CASE_TMPDIR}"
  for action in create_branch create_tag; do
    (
      source "${CLI}" -r "${action}" 1 some-repo &> /dev/null
    )
    ASSERT_CMD_FAILED
    (
      source "${CLI}" -r "${action}" 1.2 some-repo &> /dev/null
    )
    ASSERT_CMD_FAILED
    (
      source "${CLI}" -r "${action}" 1.2.a some-repo &> /dev/null
    )
    ASSERT_CMD_FAILED
    (
      source "${CLI}" -r "${action}" a.b.c some-repo &> /dev/null
    )
    ASSERT_CMD_FAILED
    (
      source "${CLI}" -r "${action}" 1.2.3.4 some-repo &> /dev/null
    )
    ASSERT_CMD_FAILED
    (
      source "${CLI}" -r "${action}" invalid some-repo &> /dev/null
    )
    ASSERT_CMD_FAILED
  done
}

test_GitHubReleaseUtil_FailsWhenNoRepoNameIsGiven() {
  cd "${TEST_CASE_TMPDIR}"
  for action in create_branch create_tag; do
    # Run this in a subshell to prevent exiting on failure.
    (
      source "${CLI}" -r "${action}" 1.6.0 &> /dev/null
    )
    ASSERT_CMD_FAILED
  done
}

test_GitHubReleaseUtil_CreateBranchUsesCorrectGithubToken() {
  cd "${TEST_CASE_TMPDIR}"
  local -r access_token="a227da63673c236090a067c3f96b62e74dbd5857"
  local -r expected_url="https://ise-crypto:${access_token}@github.com/tink-crypto/some-repo"
  local -r expected_git_cmds_file="${TEST_CASE_TMPDIR}/expected_cmds.txt"
  cat << EOF > ${expected_git_cmds_file}
git ls-remote ${expected_url}
git clone ${expected_url}
git branch 1.6
git push origin 1.6
EOF
  local -r actual_git_cmds_file="${TEST_CASE_TMPDIR}/actual_git_cmds_file.txt"
  # Mock git command.
  git() {
    local -r command="$1"
    shift 1
    cmd_and_args="git ${command} $@"
    echo "${cmd_and_args}" >> "${actual_git_cmds_file}"
    case "${command}" in
      "ls-remote")
        cat << EOF
6c68b48c884e0aeb983b8864f35187d9584d0d74        HEAD
6c68b48c884e0aeb983b8864f35187d9584d0d74        refs/heads/main
EOF
        ;;
      "clone")
        local -r repo_name="${1##*/}"
        mkdir "${repo_name}"
        ;;
      *) ;; # Do nothing
    esac
  }

  # Run this in the caller's environment.
  (
    source "${CLI}" -r -t "${access_token}" create_branch 1.6.0 some-repo \
      &> /dev/null
  )
  ASSERT_CMD_SUCCEEDED
  ASSERT_FILE_EQUALS "${actual_git_cmds_file}" "${expected_git_cmds_file}"
}

test_GitHubReleaseUtil_CreateTagUsesCorrectGithubToken() {
  cd "${TEST_CASE_TMPDIR}"
  local -r access_token="a227da63673c236090a067c3f96b62e74dbd5857"
  local -r expected_url="https://ise-crypto:${access_token}@github.com/tink-crypto/some-repo"
  local -r expected_git_cmds_file="${TEST_CASE_TMPDIR}/expected_cmds.txt"
  cat << EOF > ${expected_git_cmds_file}
git ls-remote ${expected_url}
git clone ${expected_url}
git checkout 1.6
git tag -a v1.6.2 -m some-repo version 1.6.2
git push origin v1.6.2
EOF
  local -r actual_git_cmds_file="${TEST_CASE_TMPDIR}/actual_git_cmds_file.txt"
  # Mock git command.
  git() {
    local -r command="$1"
    shift 1
    cmd_and_args="git ${command} $@"
    echo "${cmd_and_args}" >> "${actual_git_cmds_file}"
    case "${command}" in
      "ls-remote")
        cat << EOF
6c68b48c884e0aeb983b8864f35187d9584d0d74        HEAD
6c68b48c884e0aeb983b8864f35187d9584d0d74        refs/heads/main
112a7d3a0453a1d926448519f94fe5a91c69be45        refs/heads/1.6
EOF
        ;;
      "clone")
        local -r repo_name="${1##*/}"
        mkdir "${repo_name}"
        ;;
      *) ;; # Do nothing
    esac
  }

  # Run this in the caller's environment.
  (
    source "${CLI}" -r -t "${access_token}" create_tag 1.6.2 some-repo \
      &> /dev/null
  )
  ASSERT_CMD_SUCCEEDED
  ASSERT_FILE_EQUALS "${actual_git_cmds_file}" "${expected_git_cmds_file}"
}

main() {
  run_all_tests "$@"
}

main "$@"