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 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560
|
#!/usr/bin/env bash
. "$(dirname "$0")/testlib.sh"
setup_repo () {
setup_remote_repo_with_file "$1" "$2"
git lfs track --lockable "*.dat"
git add -u
git commit -m 'Mark files lockable'
}
begin_test "unlocking a lock by path without a ref required"
(
set -e
reponame="unlock-by-path-main-branch-not-required"
setup_repo "$reponame" "c.dat"
git lfs lock --json "c.dat" | tee lock.log
id=$(assert_lock lock.log c.dat)
assert_server_lock "$reponame" "$id" "refs/heads/main"
git lfs unlock "c.dat"
refute_server_lock "$reponame" "$id" "refs/heads/main"
)
end_test
begin_test "unlocking a lock by path with good ref"
(
set -e
reponame="unlock-by-path-main-branch-required"
setup_repo "$reponame" "c.dat"
git lfs lock --json "c.dat" | tee lock.log
id=$(assert_lock lock.log c.dat)
assert_server_lock "$reponame" "$id" "refs/heads/main"
git lfs unlock "c.dat"
refute_server_lock "$reponame" "$id" "refs/heads/main"
)
end_test
begin_test "unlocking a lock by id with good ref"
(
set -e
reponame="unlock-by-id-main-branch-required"
setup_repo "$reponame" "c.dat"
git lfs lock --json "c.dat" | tee lock.log
id=$(assert_lock lock.log c.dat)
assert_server_lock "$reponame" "$id" "refs/heads/main"
git lfs unlock --id="$id"
refute_server_lock "$reponame" "$id" "refs/heads/main"
)
end_test
begin_test "unlocking a lock by path with tracked ref"
(
set -e
reponame="unlock-by-path-tracked-branch-required"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"
git lfs track "*.dat"
echo "c" > c.dat
git add .gitattributes c.dat
git commit -m "add c.dat"
git config push.default upstream
git config branch.main.merge refs/heads/tracked
git config branch.main.remote origin
git push origin main
git lfs lock --json "c.dat" | tee lock.log
id=$(assert_lock lock.log c.dat)
assert_server_lock "$reponame" "$id" "refs/heads/tracked"
git lfs unlock "c.dat"
refute_server_lock "$reponame" "$id" "refs/heads/tracked"
)
end_test
begin_test "unlocking a lock by id with tracked ref"
(
set -e
reponame="unlock-by-id-tracked-branch-required"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"
git lfs track "*.dat"
echo "c" > c.dat
git add .gitattributes c.dat
git commit -m "add c.dat"
git config push.default upstream
git config branch.main.merge refs/heads/tracked
git config branch.main.remote origin
git push origin main
git lfs lock --json "c.dat" | tee lock.log
id=$(assert_lock lock.log c.dat)
assert_server_lock "$reponame" "$id" "refs/heads/tracked"
git lfs unlock --id="$id"
refute_server_lock "$reponame" "$id" "refs/heads/tracked"
)
end_test
begin_test "unlocking a lock by path with bad ref without a ref required"
(
set -e
reponame="unlock-by-path-other-branch-not-required"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"
git lfs track "*.dat"
echo "c" > c.dat
git add .gitattributes c.dat
git commit -m "add c.dat"
git push origin main:other
git checkout -b other
git lfs lock --json "c.dat" | tee lock.log
id=$(assert_lock lock.log c.dat)
assert_server_lock "$reponame" "$id" "refs/heads/other"
git checkout main
git lfs unlock "c.dat"
refute_server_lock "$reponame" "$id" "refs/heads/other"
)
end_test
begin_test "unlocking a lock by path with bad ref"
(
set -e
reponame="unlock-by-path-other-branch-required"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"
git lfs track "*.dat"
echo "c" > c.dat
git add .gitattributes c.dat
git commit -m "add c.dat"
git push origin main:other
git checkout -b other
git lfs lock --json "c.dat" | tee lock.log
id=$(assert_lock lock.log c.dat)
assert_server_lock "$reponame" "$id" "refs/heads/other"
git checkout main
git lfs unlock "c.dat" 2>&1 | tee unlock.log
if [ "0" -eq "${PIPESTATUS[0]}" ]; then
echo >&2 "fatal: expected 'git lfs lock \'a.dat\'' to fail"
exit 1
fi
assert_server_lock "$reponame" "$id" "refs/heads/other"
grep 'Expected ref "refs/heads/other", got "refs/heads/main"' unlock.log
)
end_test
begin_test "unlocking a lock by id with bad ref"
(
set -e
reponame="unlock-by-id-other-branch-required"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"
git lfs track "*.dat"
echo "c" > c.dat
git add .gitattributes c.dat
git commit -m "add c.dat"
git push origin main:other
git checkout -b other
git lfs lock --json "c.dat" | tee lock.log
id=$(assert_lock lock.log c.dat)
assert_server_lock "$reponame" "$id" "refs/heads/other"
git checkout main
git lfs unlock --id="$id" 2>&1 | tee unlock.log
if [ "0" -eq "${PIPESTATUS[0]}" ]; then
echo >&2 "fatal: expected 'git lfs lock \'a.dat\'' to fail"
exit 1
fi
assert_server_lock "$reponame" "$id" "refs/heads/other"
grep 'Expected ref "refs/heads/other", got "refs/heads/main"' unlock.log
)
end_test
begin_test "unlock multiple files"
(
set -e
reponame="unlock-multiple-files"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"
git lfs track "*.dat"
echo "a" > a.dat
echo "b" > b.dat
git add .gitattributes a.dat b.dat
git commit -m "add dat files"
git push origin main:other
git lfs lock a.dat
git lfs lock b.dat
git lfs unlock *.dat >log 2>&1
grep "Exactly one of --id or a set of paths must be provided" log && exit 1
true
)
end_test
begin_test "unlock multiple files (JSON)"
(
set -e
reponame="unlock-multiple-files-json"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"
git lfs track "*.dat"
echo "a" > a.dat
echo "b" > b.dat
git add .gitattributes a.dat b.dat
git commit -m "add dat files"
git push origin main:other
git lfs lock a.dat
git lfs lock b.dat
git lfs unlock --json *.dat | tee lock.json
grep -F '[{"path":"a.dat","unlocked":true},{"path":"b.dat","unlocked":true}]' lock.json
)
end_test
begin_test "unlocking a file makes it readonly"
(
set -e
reponame="unlock_set_readonly"
setup_repo "$reponame" "c.dat"
git lfs lock --json "c.dat"
assert_file_writeable c.dat
git lfs unlock "c.dat"
refute_file_writeable c.dat
)
end_test
begin_test "unlocking a file ignores readonly"
(
set -e
reponame="unlock_set_readonly_ignore"
setup_repo "$reponame" "c.dat"
git lfs lock --json "c.dat"
assert_file_writeable c.dat
git -c lfs.setlockablereadonly=false lfs unlock "c.dat"
assert_file_writeable c.dat
)
end_test
begin_test "unlocking lock removed file"
(
set -e
reponame="unlock-removed-file"
setup_repo "$reponame" "a.dat"
git lfs lock --json "a.dat" | tee lock.log
id=$(assert_lock lock.log a.dat)
assert_server_lock "$reponame" "$id"
git rm a.dat
git commit -m "a.dat"
rm *.log *.json # ensure clean git status
git status
git lfs unlock --force "a.dat" 2>&1 | tee unlock.log
refute_server_lock "$reponame" "$id"
)
end_test
begin_test "unlocking nonexistent file"
(
set -e
reponame="unlock-nonexistent-file"
setup_repo "$reponame" "a.dat"
git lfs lock --json "b.dat" | tee lock.log
id=$(assert_lock lock.log b.dat)
assert_server_lock "$reponame" "$id"
git lfs unlock --force "b.dat" 2>&1 | tee unlock.log
refute_server_lock "$reponame" "$id"
)
end_test
begin_test "unlocking unlockable file"
(
set -e
reponame="unlock-unlockable-file"
# Try with lockable patterns.
setup_repo "$reponame" "a.dat"
touch README.md
git add README.md
git commit -m 'Add README'
git lfs lock --json "README.md" | tee lock.log
id=$(assert_lock lock.log README.md)
assert_server_lock "$reponame" "$id"
assert_file_writeable "README.md"
git lfs unlock --force "README.md" 2>&1 | tee unlock.log
refute_server_lock "$reponame" "$id"
assert_file_writeable "README.md"
cd "$TRASHDIR"
# Try without any lockable patterns.
setup_remote_repo_with_file "$reponame-2" "a.dat"
touch README.md
git add README.md
git commit -m 'Add README'
git lfs lock --json "README.md" | tee lock.log
id=$(assert_lock lock.log README.md)
assert_server_lock "$reponame-2" "$id"
assert_file_writeable "README.md"
git lfs unlock --force "README.md" 2>&1 | tee unlock.log
refute_server_lock "$reponame-2" "$id"
assert_file_writeable "README.md"
)
end_test
begin_test "unlocking a lock (--json)"
(
set -e
reponame="unlock_by_path_json"
setup_repo "$reponame" "c_json.dat"
git lfs lock --json "c_json.dat" | tee lock.log
id=$(assert_lock lock.log c_json.dat)
assert_server_lock "$reponame" "$id"
git lfs unlock --json "c_json.dat" 2>&1 | tee unlock.log
grep "\"unlocked\":true" unlock.log
refute_server_lock "$reponame" "$id"
)
end_test
begin_test "unlocking a lock by id"
(
set -e
reponame="unlock_by_id"
setup_repo "$reponame" "d.dat"
git lfs lock --json "d.dat" | tee lock.log
assert_file_writeable d.dat
id=$(assert_lock lock.log d.dat)
assert_server_lock "$reponame" "$id"
git lfs unlock --id="$id"
refute_file_writeable d.dat
)
end_test
begin_test "unlocking a lock by id (--json)"
(
set -e
reponame="unlock_by_id_json"
setup_repo "$reponame" "c_json.dat"
git lfs lock --json "c_json.dat" | tee lock.log
id=$(assert_lock lock.log c_json.dat)
assert_server_lock "$reponame" "$id"
git lfs unlock --json --id="$id" 2>&1 | tee unlock.log
grep "\"unlocked\":true" unlock.log
refute_server_lock "$reponame" "$id"
)
end_test
begin_test "unlocking a lock without sufficient info"
(
set -e
reponame="unlock_ambiguous"
setup_repo "$reponame" "e.dat"
git lfs lock --json "e.dat" | tee lock.log
id=$(assert_lock lock.log e.dat)
assert_server_lock "$reponame" "$id"
git lfs unlock 2>&1 | tee unlock.log
grep "Exactly one of --id or a set of paths must be provided" unlock.log
assert_server_lock "$reponame" "$id"
)
end_test
begin_test "unlocking a lock while uncommitted"
(
set -e
reponame="unlock_modified"
setup_repo "$reponame" "mod.dat"
git lfs lock --json "mod.dat" | tee lock.log
id=$(assert_lock lock.log mod.dat)
assert_server_lock "$reponame" "$id"
echo "\nSomething" >> mod.dat
git lfs unlock "mod.dat" 2>&1 | tee unlock.log
[ ${PIPESTATUS[0]} -ne "0" ]
grep "Cannot unlock file with uncommitted changes" unlock.log
assert_server_lock "$reponame" "$id"
# should allow after discard
git checkout mod.dat
git lfs unlock "mod.dat" 2>&1 | tee unlock.log
refute_server_lock "$reponame" "$id"
)
end_test
begin_test "unlocking a lock with ambiguous arguments"
(
set -e
reponame="unlock_ambiguous_args"
setup_repo "$reponame" "a.dat"
git lfs lock --json "a.dat" | tee lock.log
id=$(assert_lock lock.log a.dat)
assert_server_lock "$reponame" "$id"
git lfs unlock --id "$id" a.dat 2>&1 | tee unlock.log
if [ "0" -eq "${PIPESTATUS[0]}" ]; then
echo >&2 "expected ambiguous \`git lfs unlock\` command to exit, didn't"
exit 1
fi
grep "Exactly one of --id or a set of paths must be provided" unlock.log
assert_server_lock "$reponame" "$id"
)
end_test
begin_test "unlocking a lock while uncommitted with --force"
(
set -e
reponame="unlock_modified_force"
setup_repo "$reponame" "modforce.dat"
git lfs lock --json "modforce.dat" | tee lock.log
id=$(assert_lock lock.log modforce.dat)
assert_server_lock "$reponame" "$id"
echo "\nSomething" >> modforce.dat
# should allow with --force
git lfs unlock --force "modforce.dat" 2>&1 | tee unlock.log
grep "warning: unlocking with uncommitted changes" unlock.log
refute_server_lock "$reponame" "$id"
)
end_test
begin_test "unlocking a lock while untracked"
(
set -e
reponame="unlock_untracked"
setup_repo "$reponame" "notrelevant.dat"
git lfs track "*.dat"
# Create file but don't add it to git
# Shouldn't be able to unlock it
echo "something" > untracked.dat
git lfs lock --json "untracked.dat" | tee lock.log
id=$(assert_lock lock.log untracked.dat)
assert_server_lock "$reponame" "$id"
git lfs unlock "untracked.dat" 2>&1 | tee unlock.log
[ ${PIPESTATUS[0]} -ne "0" ]
grep "Cannot unlock file with uncommitted changes" unlock.log
assert_server_lock "$reponame" "$id"
# should allow after add/commit
git add untracked.dat
git commit -m "Added untracked"
git lfs unlock "untracked.dat" 2>&1 | tee unlock.log
refute_server_lock "$reponame" "$id"
)
end_test
begin_test "unlock with git-lfs-transfer"
(
set -e
setup_pure_ssh
reponame="unlock-git-lfs-transfer"
setup_remote_repo_with_file "$reponame" "f.dat"
clone_repo "$reponame" "$reponame"
sshurl=$(ssh_remote "$reponame")
git config lfs.url "$sshurl"
GIT_TRACE_PACKET=1 git lfs lock --json "f.dat" | tee lock.log
id=$(assert_lock lock.log f.dat)
assert_server_lock_ssh "$reponame" "$id" "refs/heads/main"
git lfs unlock --id "$id"
refute_server_lock_ssh "$reponame" "$id" "refs/heads/main"
)
end_test
|