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
|
#!/usr/bin/env bash
. "$(dirname "$0")/testlib.sh"
begin_test "post-checkout"
(
set -e
reponame="$(basename "$0" ".sh")"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"
git lfs track --lockable "*.dat"
git lfs track "*.big" # not lockable
git add .gitattributes
git commit -m "add git attributes"
echo "[
{
\"CommitDate\":\"$(get_date -10d)\",
\"Files\":[
{\"Filename\":\"file1.dat\",\"Data\":\"file 1 creation\"},
{\"Filename\":\"file2.dat\",\"Data\":\"file 2 creation\"}]
},
{
\"CommitDate\":\"$(get_date -7d)\",
\"Files\":[
{\"Filename\":\"file1.dat\",\"Data\":\"file 1 updated commit 2\"},
{\"Filename\":\"file3.big\",\"Data\":\"file 3 creation\"},
{\"Filename\":\"file4.big\",\"Data\":\"file 4 creation\"}],
\"Tags\":[\"atag\"]
},
{
\"CommitDate\":\"$(get_date -5d)\",
\"Files\":[
{\"Filename\":\"file2.dat\",\"Data\":\"file 2 updated commit 3\"}]
},
{
\"CommitDate\":\"$(get_date -3d)\",
\"NewBranch\":\"branch2\",
\"Files\":[
{\"Filename\":\"file5.dat\",\"Data\":\"file 5 creation in branch2\"},
{\"Filename\":\"file6.big\",\"Data\":\"file 6 creation in branch2\"}]
},
{
\"CommitDate\":\"$(get_date -1d)\",
\"Files\":[
{\"Filename\":\"file2.dat\",\"Data\":\"file 2 updated in branch2\"},
{\"Filename\":\"file3.big\",\"Data\":\"file 3 updated in branch2\"}]
}
]" | GIT_LFS_SET_LOCKABLE_READONLY=0 lfstest-testutils addcommits
# skipped setting read-only above to make bulk load simpler (no read-only issues)
git push -u origin main branch2
# re-clone the repo so we start fresh
cd ..
rm -rf "$reponame"
clone_repo "$reponame" "$reponame"
# this will be main
touch untracked.dat
[ "$(cat file1.dat)" == "file 1 updated commit 2" ]
[ "$(cat file2.dat)" == "file 2 updated commit 3" ]
[ "$(cat file3.big)" == "file 3 creation" ]
[ "$(cat file4.big)" == "file 4 creation" ]
[ ! -e file5.dat ]
[ ! -e file6.big ]
# without the post-checkout hook, any changed files would now be writeable
refute_file_writeable file1.dat
refute_file_writeable file2.dat
assert_file_writeable untracked.dat
assert_file_writeable file3.big
assert_file_writeable file4.big
# checkout branch
git checkout branch2
[ -e file5.dat ]
[ -e file6.big ]
refute_file_writeable file1.dat
refute_file_writeable file2.dat
refute_file_writeable file5.dat
assert_file_writeable untracked.dat
assert_file_writeable file3.big
assert_file_writeable file4.big
assert_file_writeable file6.big
# Confirm that contents of existing files were updated even though were read-only
[ "$(cat file2.dat)" == "file 2 updated in branch2" ]
[ "$(cat file3.big)" == "file 3 updated in branch2" ]
# restore files inside a branch (causes full scan since no diff)
rm -f *.dat
[ ! -e file1.dat ]
[ ! -e file2.dat ]
[ ! -e file5.dat ]
git checkout file1.dat file2.dat file5.dat
[ "$(cat file1.dat)" == "file 1 updated commit 2" ]
[ "$(cat file2.dat)" == "file 2 updated in branch2" ]
[ "$(cat file5.dat)" == "file 5 creation in branch2" ]
refute_file_writeable file1.dat
refute_file_writeable file2.dat
refute_file_writeable file5.dat
# now lock files, then remove & restore
git lfs lock file1.dat
git lfs lock file2.dat
assert_file_writeable file1.dat
assert_file_writeable file2.dat
rm -f *.dat
git checkout file1.dat file2.dat file5.dat
assert_file_writeable file1.dat
assert_file_writeable file2.dat
refute_file_writeable file5.dat
)
end_test
begin_test "post-checkout with subdirectories"
(
set -e
reponame="post-checkout-subdirectories"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"
git lfs track --lockable "bin/*.dat"
git lfs track "*.big" # not lockable
git add .gitattributes
git commit -m "add git attributes"
echo "[
{
\"CommitDate\":\"$(get_date -10d)\",
\"Files\":[
{\"Filename\":\"bin/file1.dat\",\"Data\":\"file 1 creation\"},
{\"Filename\":\"bin/file2.dat\",\"Data\":\"file 2 creation\"}]
},
{
\"CommitDate\":\"$(get_date -7d)\",
\"Files\":[
{\"Filename\":\"bin/file1.dat\",\"Data\":\"file 1 updated commit 2\"},
{\"Filename\":\"file3.big\",\"Data\":\"file 3 creation\"},
{\"Filename\":\"file4.big\",\"Data\":\"file 4 creation\"}],
\"Tags\":[\"atag\"]
},
{
\"CommitDate\":\"$(get_date -5d)\",
\"Files\":[
{\"Filename\":\"bin/file2.dat\",\"Data\":\"file 2 updated commit 3\"}]
},
{
\"CommitDate\":\"$(get_date -3d)\",
\"NewBranch\":\"branch2\",
\"Files\":[
{\"Filename\":\"bin/file5.dat\",\"Data\":\"file 5 creation in branch2\"},
{\"Filename\":\"file6.big\",\"Data\":\"file 6 creation in branch2\"}]
},
{
\"CommitDate\":\"$(get_date -1d)\",
\"Files\":[
{\"Filename\":\"bin/file2.dat\",\"Data\":\"file 2 updated in branch2\"},
{\"Filename\":\"file3.big\",\"Data\":\"file 3 updated in branch2\"}]
}
]" | GIT_LFS_SET_LOCKABLE_READONLY=0 lfstest-testutils addcommits
# skipped setting read-only above to make bulk load simpler (no read-only issues)
git push -u origin main branch2
# re-clone the repo so we start fresh
cd ..
rm -rf "$reponame"
clone_repo "$reponame" "$reponame"
# this will be main
[ "$(cat bin/file1.dat)" == "file 1 updated commit 2" ]
[ "$(cat bin/file2.dat)" == "file 2 updated commit 3" ]
[ "$(cat file3.big)" == "file 3 creation" ]
[ "$(cat file4.big)" == "file 4 creation" ]
[ ! -e bin/file5.dat ]
[ ! -e file6.big ]
# without the post-checkout hook, any changed files would now be writeable
refute_file_writeable bin/file1.dat
refute_file_writeable bin/file2.dat
assert_file_writeable file3.big
assert_file_writeable file4.big
# checkout branch
git checkout branch2
[ -e bin/file5.dat ]
[ -e file6.big ]
refute_file_writeable bin/file1.dat
refute_file_writeable bin/file2.dat
refute_file_writeable bin/file5.dat
assert_file_writeable file3.big
assert_file_writeable file4.big
assert_file_writeable file6.big
# Confirm that contents of existing files were updated even though were read-only
[ "$(cat bin/file2.dat)" == "file 2 updated in branch2" ]
[ "$(cat file3.big)" == "file 3 updated in branch2" ]
)
end_test
|