Merge branch 'hn/refs-test-cleanup'
A handful of tests that assumed implementation details of files backend for refs have been cleaned up. * hn/refs-test-cleanup: t6001: avoid direct file system access t6500: use "ls -1" to snapshot ref database state t7064: use update-ref -d to remove upstream branch t1410: mark test as REFFILES t1405: mark test for 'git pack-refs' as REFFILES t1405: use 'git reflog exists' to check reflog existence t2402: use ref-store test helper to create broken symlink t3320: use git-symbolic-ref rather than filesystem access t6120: use git-update-ref rather than filesystem access t1503: mark symlink test as REFFILES t6050: use git-update-ref rather than filesystem accessmaint
commit
276bc6357e
|
@ -9,12 +9,18 @@ export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
|
|||
|
||||
RUN="test-tool ref-store main"
|
||||
|
||||
test_expect_success 'pack_refs(PACK_REFS_ALL | PACK_REFS_PRUNE)' '
|
||||
test_commit one &&
|
||||
|
||||
test_expect_success 'setup' '
|
||||
test_commit one
|
||||
'
|
||||
|
||||
test_expect_success REFFILES 'pack_refs(PACK_REFS_ALL | PACK_REFS_PRUNE)' '
|
||||
N=`find .git/refs -type f | wc -l` &&
|
||||
test "$N" != 0 &&
|
||||
$RUN pack-refs 3 &&
|
||||
N=`find .git/refs -type f | wc -l`
|
||||
ALL_OR_PRUNE_FLAG=3 &&
|
||||
$RUN pack-refs ${ALL_OR_PRUNE_FLAG} &&
|
||||
N=`find .git/refs -type f` &&
|
||||
test -z "$N"
|
||||
'
|
||||
|
||||
test_expect_success 'create_symref(FOO, refs/heads/main)' '
|
||||
|
@ -98,12 +104,12 @@ test_expect_success 'reflog_exists(HEAD)' '
|
|||
|
||||
test_expect_success 'delete_reflog(HEAD)' '
|
||||
$RUN delete-reflog HEAD &&
|
||||
! test -f .git/logs/HEAD
|
||||
test_must_fail git reflog exists HEAD
|
||||
'
|
||||
|
||||
test_expect_success 'create-reflog(HEAD)' '
|
||||
$RUN create-reflog HEAD 1 &&
|
||||
test -f .git/logs/HEAD
|
||||
git reflog exists HEAD
|
||||
'
|
||||
|
||||
test_expect_success 'delete_ref(refs/heads/foo)' '
|
||||
|
|
|
@ -374,7 +374,9 @@ test_expect_failure 'reflog with non-commit entries displays all entries' '
|
|||
test_line_count = 3 actual
|
||||
'
|
||||
|
||||
test_expect_success 'reflog expire operates on symref not referrent' '
|
||||
# This test takes a lock on an individual ref; this is not supported in
|
||||
# reftable.
|
||||
test_expect_success REFFILES 'reflog expire operates on symref not referrent' '
|
||||
git branch --create-reflog the_symref &&
|
||||
git branch --create-reflog referrent &&
|
||||
git update-ref referrent HEAD &&
|
||||
|
|
|
@ -142,7 +142,7 @@ test_expect_success 'main@{n} for various n' '
|
|||
test_must_fail git rev-parse --verify main@{$Np1}
|
||||
'
|
||||
|
||||
test_expect_success SYMLINKS 'ref resolution not confused by broken symlinks' '
|
||||
test_expect_success SYMLINKS,REFFILES 'ref resolution not confused by broken symlinks' '
|
||||
ln -s does-not-exist .git/refs/heads/broken &&
|
||||
test_must_fail git rev-parse --verify broken
|
||||
'
|
||||
|
|
|
@ -230,7 +230,7 @@ test_expect_success 'broken main worktree still at the top' '
|
|||
EOF
|
||||
cd linked &&
|
||||
echo "worktree $(pwd)" >expected &&
|
||||
echo "ref: .broken" >../.git/HEAD &&
|
||||
(cd ../ && test-tool ref-store main create-symref HEAD .broken ) &&
|
||||
git worktree list --porcelain >out &&
|
||||
head -n 3 out >actual &&
|
||||
test_cmp ../expected actual &&
|
||||
|
|
|
@ -46,8 +46,9 @@ test_expect_success 'create some new worktrees' '
|
|||
test_expect_success 'merge z into y fails and sets NOTES_MERGE_REF' '
|
||||
git config core.notesRef refs/notes/y &&
|
||||
test_must_fail git notes merge z &&
|
||||
echo "ref: refs/notes/y" >expect &&
|
||||
test_cmp expect .git/NOTES_MERGE_REF
|
||||
echo "refs/notes/y" >expect &&
|
||||
git symbolic-ref NOTES_MERGE_REF >actual &&
|
||||
test_cmp expect actual
|
||||
'
|
||||
|
||||
test_expect_success 'merge z into y while mid-merge in another workdir fails' '
|
||||
|
@ -57,7 +58,7 @@ test_expect_success 'merge z into y while mid-merge in another workdir fails' '
|
|||
test_must_fail git notes merge z 2>err &&
|
||||
test_i18ngrep "a notes merge into refs/notes/y is already in-progress at" err
|
||||
) &&
|
||||
test_path_is_missing .git/worktrees/worktree/NOTES_MERGE_REF
|
||||
test_must_fail git -C worktree symbolic-ref NOTES_MERGE_REF
|
||||
'
|
||||
|
||||
test_expect_success 'merge z into x while mid-merge on y succeeds' '
|
||||
|
@ -68,8 +69,9 @@ test_expect_success 'merge z into x while mid-merge on y succeeds' '
|
|||
test_i18ngrep "Automatic notes merge failed" out &&
|
||||
grep -v "A notes merge into refs/notes/x is already in-progress in" out
|
||||
) &&
|
||||
echo "ref: refs/notes/x" >expect &&
|
||||
test_cmp expect .git/worktrees/worktree2/NOTES_MERGE_REF
|
||||
echo "refs/notes/x" >expect &&
|
||||
git -C worktree2 symbolic-ref NOTES_MERGE_REF >actual &&
|
||||
test_cmp expect actual
|
||||
'
|
||||
|
||||
test_done
|
||||
|
|
|
@ -23,7 +23,8 @@ test_expect_success setup '
|
|||
git commit -a -m "Third in one history." &&
|
||||
A2=$(git rev-parse --verify HEAD) &&
|
||||
|
||||
rm -f .git/refs/heads/main .git/index &&
|
||||
git update-ref -d refs/heads/main &&
|
||||
rm -f .git/index &&
|
||||
|
||||
echo >fileA fileA again &&
|
||||
echo >subdir/fileB fileB again &&
|
||||
|
|
|
@ -132,7 +132,7 @@ tagger T A Gger <> 0 +0000
|
|||
EOF
|
||||
|
||||
test_expect_success 'tag replaced commit' '
|
||||
git mktag <tag.sig >.git/refs/tags/mytag
|
||||
git update-ref refs/tags/mytag $(git mktag <tag.sig)
|
||||
'
|
||||
|
||||
test_expect_success '"git fsck" works' '
|
||||
|
|
|
@ -107,7 +107,8 @@ test_expect_success 'describe --contains defaults to HEAD without commit-ish' '
|
|||
check_describe tags/A --all A^0
|
||||
|
||||
test_expect_success 'renaming tag A to Q locally produces a warning' "
|
||||
mv .git/refs/tags/A .git/refs/tags/Q &&
|
||||
git update-ref refs/tags/Q $(git rev-parse refs/tags/A) &&
|
||||
git update-ref -d refs/tags/A &&
|
||||
git describe HEAD 2>err >out &&
|
||||
cat >expected <<-\EOF &&
|
||||
warning: tag 'Q' is externally known as 'A'
|
||||
|
@ -135,7 +136,8 @@ test_expect_success 'abbrev=0 will not break misplaced tag (2)' '
|
|||
'
|
||||
|
||||
test_expect_success 'rename tag Q back to A' '
|
||||
mv .git/refs/tags/Q .git/refs/tags/A
|
||||
git update-ref refs/tags/A $(git rev-parse refs/tags/Q) &&
|
||||
git update-ref -d refs/tags/Q
|
||||
'
|
||||
|
||||
test_expect_success 'pack tag refs' 'git pack-refs'
|
||||
|
|
|
@ -241,7 +241,7 @@ test_expect_success 'background auto gc respects lock for all operations' '
|
|||
|
||||
# create a ref whose loose presence we can use to detect a pack-refs run
|
||||
git update-ref refs/heads/should-be-loose HEAD &&
|
||||
test_path_is_file .git/refs/heads/should-be-loose &&
|
||||
(ls -1 .git/refs/heads .git/reftable >expect || true) &&
|
||||
|
||||
# now fake a concurrent gc that holds the lock; we can use our
|
||||
# shell pid so that it looks valid.
|
||||
|
@ -258,7 +258,8 @@ test_expect_success 'background auto gc respects lock for all operations' '
|
|||
|
||||
# our gc should exit zero without doing anything
|
||||
run_and_wait_for_auto_gc &&
|
||||
test_path_is_file .git/refs/heads/should-be-loose
|
||||
(ls -1 .git/refs/heads .git/reftable >actual || true) &&
|
||||
test_cmp expect actual
|
||||
'
|
||||
|
||||
# DO NOT leave a detached auto gc process running near the end of the
|
||||
|
|
|
@ -373,10 +373,7 @@ test_expect_success 'verify upstream fields in branch header' '
|
|||
|
||||
## Test upstream-gone case. Fake this by pointing
|
||||
## origin/initial-branch at a non-existing commit.
|
||||
OLD=$(git rev-parse origin/initial-branch) &&
|
||||
NEW=$ZERO_OID &&
|
||||
mv .git/packed-refs .git/old-packed-refs &&
|
||||
sed "s/$OLD/$NEW/g" <.git/old-packed-refs >.git/packed-refs &&
|
||||
git update-ref -d refs/remotes/origin/initial-branch &&
|
||||
|
||||
HUF=$(git rev-parse HEAD) &&
|
||||
|
||||
|
|
Loading…
Reference in New Issue