File: t-expired.sh

package info (click to toggle)
git-lfs 3.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,808 kB
  • sloc: sh: 21,256; makefile: 507; ruby: 417
file content (67 lines) | stat: -rwxr-xr-x 1,478 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/env bash

. "$(dirname "$0")/testlib.sh"

declare -a expiration_types=("absolute" "relative" "both")

for typ in "${expiration_types[@]}"; do
  begin_test "expired action ($typ time)"
  (
    set -e

    reponame="expired-$typ"
    setup_remote_repo "$reponame"
    clone_repo "$reponame" "$reponame"

    contents="contents"
    contents_oid="$(calc_oid "$contents")"

    git lfs track "*.dat"
    git add .gitattributes
    git commit -m "initial commit"

    printf "%s" "$contents" > a.dat

    git add a.dat
    git commit -m "add a.dat"

    GIT_TRACE=1 git push origin main 2>&1 | tee push.log
    if [ "0" -eq "${PIPESTATUS[0]}" ]; then
      echo >&2 "fatal: expected push to fail, didn't"
      exit 1
    fi

    refute_server_object "$reponame" "$contents_oid"
  )
  end_test
done

for typ in "${expiration_types[@]}"; do
  begin_test "ssh expired ($typ time; git-lfs-authenticate)"
  (
    set -e

    reponame="ssh-expired-$typ"
    setup_remote_repo "$reponame"
    clone_repo "$reponame" "$reponame"

    sshurl="${GITSERVER/http:\/\//ssh://git@}/$reponame"
    git config lfs.url "$sshurl"

    contents="contents"
    contents_oid="$(calc_oid "$contents")"

    git lfs track "*.dat"
    git add .gitattributes
    git commit -m "initial commit"

    printf "%s" "$contents" > a.dat

    git add a.dat
    git commit -m "add a.dat"

    GIT_TRACE=1 git push origin main 2>&1 | tee push.log
    grep "ssh cache expired" push.log
  )
  end_test
done