2006-05-17 11:55:40 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2006 Shawn Pearce
|
|
|
|
#
|
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
test_description='Test git update-ref and basic ref logging'
|
2006-05-17 11:55:40 +02:00
|
|
|
. ./test-lib.sh
|
|
|
|
|
2011-04-24 07:34:13 +02:00
|
|
|
Z=$_z40
|
2008-01-16 00:50:17 +01:00
|
|
|
|
|
|
|
test_expect_success setup '
|
|
|
|
|
|
|
|
for name in A B C D E F
|
|
|
|
do
|
|
|
|
test_tick &&
|
|
|
|
T=$(git write-tree) &&
|
|
|
|
sha1=$(echo $name | git commit-tree $T) &&
|
|
|
|
eval $name=$sha1
|
|
|
|
done
|
|
|
|
|
|
|
|
'
|
|
|
|
|
2006-05-17 11:55:40 +02:00
|
|
|
m=refs/heads/master
|
2006-07-29 05:44:51 +02:00
|
|
|
n_dir=refs/heads/gu
|
|
|
|
n=$n_dir/fixes
|
2006-05-17 11:55:40 +02:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
"create $m" \
|
2007-07-03 07:52:14 +02:00
|
|
|
"git update-ref $m $A &&
|
2006-09-16 22:41:14 +02:00
|
|
|
test $A"' = $(cat .git/'"$m"')'
|
2006-05-17 11:55:40 +02:00
|
|
|
test_expect_success \
|
|
|
|
"create $m" \
|
2007-07-03 07:52:14 +02:00
|
|
|
"git update-ref $m $B $A &&
|
2006-09-16 22:41:14 +02:00
|
|
|
test $B"' = $(cat .git/'"$m"')'
|
2008-05-25 18:14:29 +02:00
|
|
|
test_expect_success "fail to delete $m with stale ref" '
|
|
|
|
test_must_fail git update-ref -d $m $A &&
|
|
|
|
test $B = "$(cat .git/$m)"
|
|
|
|
'
|
|
|
|
test_expect_success "delete $m" '
|
|
|
|
git update-ref -d $m $B &&
|
|
|
|
! test -f .git/$m
|
|
|
|
'
|
2006-05-17 11:55:40 +02:00
|
|
|
rm -f .git/$m
|
|
|
|
|
2008-06-03 01:34:53 +02:00
|
|
|
test_expect_success "delete $m without oldvalue verification" "
|
|
|
|
git update-ref $m $A &&
|
|
|
|
test $A = \$(cat .git/$m) &&
|
|
|
|
git update-ref -d $m &&
|
|
|
|
! test -f .git/$m
|
|
|
|
"
|
|
|
|
rm -f .git/$m
|
|
|
|
|
2006-07-29 05:44:51 +02:00
|
|
|
test_expect_success \
|
|
|
|
"fail to create $n" \
|
2010-10-31 08:36:19 +01:00
|
|
|
"touch .git/$n_dir &&
|
|
|
|
test_must_fail git update-ref $n $A >out 2>err"
|
2006-07-29 05:44:51 +02:00
|
|
|
rm -f .git/$n_dir out err
|
|
|
|
|
2006-05-17 11:55:40 +02:00
|
|
|
test_expect_success \
|
|
|
|
"create $m (by HEAD)" \
|
2007-07-03 07:52:14 +02:00
|
|
|
"git update-ref HEAD $A &&
|
2006-09-16 22:41:14 +02:00
|
|
|
test $A"' = $(cat .git/'"$m"')'
|
2006-05-17 11:55:40 +02:00
|
|
|
test_expect_success \
|
|
|
|
"create $m (by HEAD)" \
|
2007-07-03 07:52:14 +02:00
|
|
|
"git update-ref HEAD $B $A &&
|
2006-09-16 22:41:14 +02:00
|
|
|
test $B"' = $(cat .git/'"$m"')'
|
2008-05-25 18:14:29 +02:00
|
|
|
test_expect_success "fail to delete $m (by HEAD) with stale ref" '
|
|
|
|
test_must_fail git update-ref -d HEAD $A &&
|
|
|
|
test $B = $(cat .git/$m)
|
|
|
|
'
|
|
|
|
test_expect_success "delete $m (by HEAD)" '
|
|
|
|
git update-ref -d HEAD $B &&
|
|
|
|
! test -f .git/$m
|
|
|
|
'
|
2006-05-17 11:55:40 +02:00
|
|
|
rm -f .git/$m
|
|
|
|
|
2012-10-21 12:40:31 +02:00
|
|
|
test_expect_success \
|
|
|
|
"create $m (by HEAD)" \
|
|
|
|
"git update-ref HEAD $A &&
|
|
|
|
test $A"' = $(cat .git/'"$m"')'
|
|
|
|
test_expect_success \
|
|
|
|
"pack refs" \
|
|
|
|
"git pack-refs --all"
|
|
|
|
test_expect_success \
|
|
|
|
"move $m (by HEAD)" \
|
|
|
|
"git update-ref HEAD $B $A &&
|
|
|
|
test $B"' = $(cat .git/'"$m"')'
|
2012-10-21 12:40:32 +02:00
|
|
|
test_expect_success "delete $m (by HEAD) should remove both packed and loose $m" '
|
2012-10-21 12:40:31 +02:00
|
|
|
git update-ref -d HEAD $B &&
|
|
|
|
! grep "$m" .git/packed-refs &&
|
|
|
|
! test -f .git/$m
|
|
|
|
'
|
|
|
|
rm -f .git/$m
|
|
|
|
|
2008-10-26 03:33:58 +01:00
|
|
|
cp -f .git/HEAD .git/HEAD.orig
|
|
|
|
test_expect_success "delete symref without dereference" '
|
|
|
|
git update-ref --no-deref -d HEAD &&
|
|
|
|
! test -f .git/HEAD
|
|
|
|
'
|
|
|
|
cp -f .git/HEAD.orig .git/HEAD
|
|
|
|
|
2008-11-01 00:25:44 +01:00
|
|
|
test_expect_success "delete symref without dereference when the referred ref is packed" '
|
|
|
|
echo foo >foo.c &&
|
|
|
|
git add foo.c &&
|
|
|
|
git commit -m foo &&
|
|
|
|
git pack-refs --all &&
|
|
|
|
git update-ref --no-deref -d HEAD &&
|
|
|
|
! test -f .git/HEAD
|
|
|
|
'
|
|
|
|
cp -f .git/HEAD.orig .git/HEAD
|
|
|
|
git update-ref -d $m
|
|
|
|
|
2008-02-01 10:50:53 +01:00
|
|
|
test_expect_success '(not) create HEAD with old sha1' "
|
2008-07-12 17:47:52 +02:00
|
|
|
test_must_fail git update-ref HEAD $A $B
|
2008-02-01 10:50:53 +01:00
|
|
|
"
|
|
|
|
test_expect_success "(not) prior created .git/$m" "
|
|
|
|
! test -f .git/$m
|
|
|
|
"
|
2006-05-17 11:55:40 +02:00
|
|
|
rm -f .git/$m
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
"create HEAD" \
|
2007-07-03 07:52:14 +02:00
|
|
|
"git update-ref HEAD $A"
|
2008-02-01 10:50:53 +01:00
|
|
|
test_expect_success '(not) change HEAD with wrong SHA1' "
|
2008-07-12 17:47:52 +02:00
|
|
|
test_must_fail git update-ref HEAD $B $Z
|
2008-02-01 10:50:53 +01:00
|
|
|
"
|
|
|
|
test_expect_success "(not) changed .git/$m" "
|
|
|
|
! test $B"' = $(cat .git/'"$m"')
|
|
|
|
'
|
2006-05-17 11:55:40 +02:00
|
|
|
rm -f .git/$m
|
|
|
|
|
2006-12-14 23:41:17 +01:00
|
|
|
: a repository with working tree always has reflog these days...
|
|
|
|
: >.git/logs/refs/heads/master
|
2006-05-17 11:55:40 +02:00
|
|
|
test_expect_success \
|
|
|
|
"create $m (logged by touch)" \
|
|
|
|
'GIT_COMMITTER_DATE="2005-05-26 23:30" \
|
2007-07-03 07:52:14 +02:00
|
|
|
git update-ref HEAD '"$A"' -m "Initial Creation" &&
|
2006-09-16 22:41:14 +02:00
|
|
|
test '"$A"' = $(cat .git/'"$m"')'
|
2006-05-17 11:55:40 +02:00
|
|
|
test_expect_success \
|
|
|
|
"update $m (logged by touch)" \
|
|
|
|
'GIT_COMMITTER_DATE="2005-05-26 23:31" \
|
2007-07-03 07:52:14 +02:00
|
|
|
git update-ref HEAD'" $B $A "'-m "Switch" &&
|
2006-09-16 22:41:14 +02:00
|
|
|
test '"$B"' = $(cat .git/'"$m"')'
|
2006-05-17 11:55:40 +02:00
|
|
|
test_expect_success \
|
|
|
|
"set $m (logged by touch)" \
|
|
|
|
'GIT_COMMITTER_DATE="2005-05-26 23:41" \
|
2007-07-03 07:52:14 +02:00
|
|
|
git update-ref HEAD'" $A &&
|
2006-09-16 22:41:14 +02:00
|
|
|
test $A"' = $(cat .git/'"$m"')'
|
2006-05-17 11:55:40 +02:00
|
|
|
|
|
|
|
cat >expect <<EOF
|
|
|
|
$Z $A $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000 Initial Creation
|
|
|
|
$A $B $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150260 +0000 Switch
|
|
|
|
$B $A $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150860 +0000
|
|
|
|
EOF
|
|
|
|
test_expect_success \
|
|
|
|
"verifying $m's log" \
|
2009-03-16 21:18:42 +01:00
|
|
|
"test_cmp expect .git/logs/$m"
|
2006-05-17 11:55:40 +02:00
|
|
|
rm -rf .git/$m .git/logs expect
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'enable core.logAllRefUpdates' \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git config core.logAllRefUpdates true &&
|
|
|
|
test true = $(git config --bool --get core.logAllRefUpdates)'
|
2006-05-17 11:55:40 +02:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
"create $m (logged by config)" \
|
|
|
|
'GIT_COMMITTER_DATE="2005-05-26 23:32" \
|
2007-07-03 07:52:14 +02:00
|
|
|
git update-ref HEAD'" $A "'-m "Initial Creation" &&
|
2006-09-16 22:41:14 +02:00
|
|
|
test '"$A"' = $(cat .git/'"$m"')'
|
2006-05-17 11:55:40 +02:00
|
|
|
test_expect_success \
|
|
|
|
"update $m (logged by config)" \
|
|
|
|
'GIT_COMMITTER_DATE="2005-05-26 23:33" \
|
2007-07-03 07:52:14 +02:00
|
|
|
git update-ref HEAD'" $B $A "'-m "Switch" &&
|
2006-09-16 22:41:14 +02:00
|
|
|
test '"$B"' = $(cat .git/'"$m"')'
|
2006-05-17 11:55:40 +02:00
|
|
|
test_expect_success \
|
|
|
|
"set $m (logged by config)" \
|
|
|
|
'GIT_COMMITTER_DATE="2005-05-26 23:43" \
|
2007-07-03 07:52:14 +02:00
|
|
|
git update-ref HEAD '"$A &&
|
2006-09-16 22:41:14 +02:00
|
|
|
test $A"' = $(cat .git/'"$m"')'
|
2006-05-17 11:55:40 +02:00
|
|
|
|
|
|
|
cat >expect <<EOF
|
|
|
|
$Z $A $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150320 +0000 Initial Creation
|
|
|
|
$A $B $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150380 +0000 Switch
|
|
|
|
$B $A $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150980 +0000
|
|
|
|
EOF
|
|
|
|
test_expect_success \
|
|
|
|
"verifying $m's log" \
|
2009-03-16 21:18:42 +01:00
|
|
|
'test_cmp expect .git/logs/$m'
|
2006-05-17 11:55:40 +02:00
|
|
|
rm -f .git/$m .git/logs/$m expect
|
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
git update-ref $m $D
|
2006-05-19 09:28:19 +02:00
|
|
|
cat >.git/logs/$m <<EOF
|
2008-07-08 06:38:54 +02:00
|
|
|
0000000000000000000000000000000000000000 $C $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150320 -0500
|
|
|
|
$C $A $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150350 -0500
|
2006-05-19 09:28:19 +02:00
|
|
|
$A $B $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150380 -0500
|
|
|
|
$F $Z $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150680 -0500
|
|
|
|
$Z $E $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150980 -0500
|
|
|
|
EOF
|
|
|
|
|
|
|
|
ed="Thu, 26 May 2005 18:32:00 -0500"
|
|
|
|
gd="Thu, 26 May 2005 18:33:00 -0500"
|
|
|
|
ld="Thu, 26 May 2005 18:43:00 -0500"
|
|
|
|
test_expect_success \
|
2006-05-19 09:29:43 +02:00
|
|
|
'Query "master@{May 25 2005}" (before history)' \
|
2010-10-31 08:30:58 +01:00
|
|
|
'rm -f o e &&
|
2007-07-03 07:52:14 +02:00
|
|
|
git rev-parse --verify "master@{May 25 2005}" >o 2>e &&
|
2006-09-16 22:41:14 +02:00
|
|
|
test '"$C"' = $(cat o) &&
|
2007-01-19 10:19:05 +01:00
|
|
|
test "warning: Log for '\'master\'' only goes back to $ed." = "$(cat e)"'
|
2006-05-19 09:28:19 +02:00
|
|
|
test_expect_success \
|
2006-05-19 09:29:43 +02:00
|
|
|
"Query master@{2005-05-25} (before history)" \
|
2010-10-31 08:30:58 +01:00
|
|
|
'rm -f o e &&
|
2007-07-03 07:52:14 +02:00
|
|
|
git rev-parse --verify master@{2005-05-25} >o 2>e &&
|
2006-09-16 22:41:14 +02:00
|
|
|
test '"$C"' = $(cat o) &&
|
2007-01-19 10:19:05 +01:00
|
|
|
echo test "warning: Log for '\'master\'' only goes back to $ed." = "$(cat e)"'
|
2006-05-19 09:28:19 +02:00
|
|
|
test_expect_success \
|
2006-05-19 09:29:43 +02:00
|
|
|
'Query "master@{May 26 2005 23:31:59}" (1 second before history)' \
|
2010-10-31 08:30:58 +01:00
|
|
|
'rm -f o e &&
|
2007-07-03 07:52:14 +02:00
|
|
|
git rev-parse --verify "master@{May 26 2005 23:31:59}" >o 2>e &&
|
2006-09-16 22:41:14 +02:00
|
|
|
test '"$C"' = $(cat o) &&
|
2007-01-19 10:19:05 +01:00
|
|
|
test "warning: Log for '\''master'\'' only goes back to $ed." = "$(cat e)"'
|
2006-05-19 09:28:19 +02:00
|
|
|
test_expect_success \
|
2006-05-19 09:29:43 +02:00
|
|
|
'Query "master@{May 26 2005 23:32:00}" (exactly history start)' \
|
2010-10-31 08:30:58 +01:00
|
|
|
'rm -f o e &&
|
2007-07-03 07:52:14 +02:00
|
|
|
git rev-parse --verify "master@{May 26 2005 23:32:00}" >o 2>e &&
|
2008-07-08 06:38:54 +02:00
|
|
|
test '"$C"' = $(cat o) &&
|
|
|
|
test "" = "$(cat e)"'
|
|
|
|
test_expect_success \
|
|
|
|
'Query "master@{May 26 2005 23:32:30}" (first non-creation change)' \
|
2010-10-31 08:30:58 +01:00
|
|
|
'rm -f o e &&
|
2008-07-08 06:38:54 +02:00
|
|
|
git rev-parse --verify "master@{May 26 2005 23:32:30}" >o 2>e &&
|
2006-09-16 22:41:14 +02:00
|
|
|
test '"$A"' = $(cat o) &&
|
2006-05-19 09:28:19 +02:00
|
|
|
test "" = "$(cat e)"'
|
|
|
|
test_expect_success \
|
2006-05-19 09:29:43 +02:00
|
|
|
'Query "master@{2005-05-26 23:33:01}" (middle of history with gap)' \
|
2010-10-31 08:30:58 +01:00
|
|
|
'rm -f o e &&
|
2007-07-03 07:52:14 +02:00
|
|
|
git rev-parse --verify "master@{2005-05-26 23:33:01}" >o 2>e &&
|
2006-09-16 22:41:14 +02:00
|
|
|
test '"$B"' = $(cat o) &&
|
|
|
|
test "warning: Log .git/logs/'"$m has gap after $gd"'." = "$(cat e)"'
|
2006-05-19 09:28:19 +02:00
|
|
|
test_expect_success \
|
2006-05-19 09:29:43 +02:00
|
|
|
'Query "master@{2005-05-26 23:38:00}" (middle of history)' \
|
2010-10-31 08:30:58 +01:00
|
|
|
'rm -f o e &&
|
2007-07-03 07:52:14 +02:00
|
|
|
git rev-parse --verify "master@{2005-05-26 23:38:00}" >o 2>e &&
|
2006-09-16 22:41:14 +02:00
|
|
|
test '"$Z"' = $(cat o) &&
|
2006-05-19 09:28:19 +02:00
|
|
|
test "" = "$(cat e)"'
|
|
|
|
test_expect_success \
|
2006-05-19 09:29:43 +02:00
|
|
|
'Query "master@{2005-05-26 23:43:00}" (exact end of history)' \
|
2010-10-31 08:30:58 +01:00
|
|
|
'rm -f o e &&
|
2007-07-03 07:52:14 +02:00
|
|
|
git rev-parse --verify "master@{2005-05-26 23:43:00}" >o 2>e &&
|
2006-09-16 22:41:14 +02:00
|
|
|
test '"$E"' = $(cat o) &&
|
2006-05-19 09:28:19 +02:00
|
|
|
test "" = "$(cat e)"'
|
|
|
|
test_expect_success \
|
2006-05-19 09:29:43 +02:00
|
|
|
'Query "master@{2005-05-28}" (past end of history)' \
|
2010-10-31 08:30:58 +01:00
|
|
|
'rm -f o e &&
|
2007-07-03 07:52:14 +02:00
|
|
|
git rev-parse --verify "master@{2005-05-28}" >o 2>e &&
|
2006-09-16 22:41:14 +02:00
|
|
|
test '"$D"' = $(cat o) &&
|
|
|
|
test "warning: Log .git/logs/'"$m unexpectedly ended on $ld"'." = "$(cat e)"'
|
2006-05-19 09:28:19 +02:00
|
|
|
|
2006-05-19 09:29:43 +02:00
|
|
|
|
|
|
|
rm -f .git/$m .git/logs/$m expect
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'creating initial files' \
|
2006-05-25 05:33:18 +02:00
|
|
|
'echo TEST >F &&
|
2007-07-03 07:52:14 +02:00
|
|
|
git add F &&
|
2006-05-25 05:33:18 +02:00
|
|
|
GIT_AUTHOR_DATE="2005-05-26 23:30" \
|
2008-09-03 10:59:27 +02:00
|
|
|
GIT_COMMITTER_DATE="2005-05-26 23:30" git commit -m add -a &&
|
2010-10-31 08:30:58 +01:00
|
|
|
h_TEST=$(git rev-parse --verify HEAD) &&
|
2006-05-25 05:33:18 +02:00
|
|
|
echo The other day this did not work. >M &&
|
|
|
|
echo And then Bob told me how to fix it. >>M &&
|
|
|
|
echo OTHER >F &&
|
|
|
|
GIT_AUTHOR_DATE="2005-05-26 23:41" \
|
2008-09-03 10:59:27 +02:00
|
|
|
GIT_COMMITTER_DATE="2005-05-26 23:41" git commit -F M -a &&
|
2007-07-03 07:52:14 +02:00
|
|
|
h_OTHER=$(git rev-parse --verify HEAD) &&
|
2006-07-11 04:48:47 +02:00
|
|
|
GIT_AUTHOR_DATE="2005-05-26 23:44" \
|
2008-09-03 10:59:27 +02:00
|
|
|
GIT_COMMITTER_DATE="2005-05-26 23:44" git commit --amend &&
|
2007-07-03 07:52:14 +02:00
|
|
|
h_FIXED=$(git rev-parse --verify HEAD) &&
|
2006-07-11 04:48:47 +02:00
|
|
|
echo Merged initial commit and a later commit. >M &&
|
|
|
|
echo $h_TEST >.git/MERGE_HEAD &&
|
|
|
|
GIT_AUTHOR_DATE="2005-05-26 23:45" \
|
2008-09-03 10:59:27 +02:00
|
|
|
GIT_COMMITTER_DATE="2005-05-26 23:45" git commit -F M &&
|
2007-11-09 00:41:39 +01:00
|
|
|
h_MERGED=$(git rev-parse --verify HEAD) &&
|
2006-05-25 05:33:18 +02:00
|
|
|
rm -f M'
|
|
|
|
|
|
|
|
cat >expect <<EOF
|
2006-07-11 04:48:47 +02:00
|
|
|
$Z $h_TEST $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000 commit (initial): add
|
2006-05-25 05:33:18 +02:00
|
|
|
$h_TEST $h_OTHER $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150860 +0000 commit: The other day this did not work.
|
2006-07-11 04:48:47 +02:00
|
|
|
$h_OTHER $h_FIXED $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117151040 +0000 commit (amend): The other day this did not work.
|
|
|
|
$h_FIXED $h_MERGED $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117151100 +0000 commit (merge): Merged initial commit and a later commit.
|
2006-05-25 05:33:18 +02:00
|
|
|
EOF
|
|
|
|
test_expect_success \
|
2008-09-03 10:59:27 +02:00
|
|
|
'git commit logged updates' \
|
2009-03-16 21:18:42 +01:00
|
|
|
"test_cmp expect .git/logs/$m"
|
2006-07-11 04:48:47 +02:00
|
|
|
unset h_TEST h_OTHER h_FIXED h_MERGED
|
2006-05-19 09:29:43 +02:00
|
|
|
|
|
|
|
test_expect_success \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git cat-file blob master:F (expect OTHER)' \
|
|
|
|
'test OTHER = $(git cat-file blob master:F)'
|
2006-05-19 09:29:43 +02:00
|
|
|
test_expect_success \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git cat-file blob master@{2005-05-26 23:30}:F (expect TEST)' \
|
|
|
|
'test TEST = $(git cat-file blob "master@{2005-05-26 23:30}:F")'
|
2006-05-19 09:29:43 +02:00
|
|
|
test_expect_success \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git cat-file blob master@{2005-05-26 23:42}:F (expect OTHER)' \
|
|
|
|
'test OTHER = $(git cat-file blob "master@{2005-05-26 23:42}:F")'
|
2006-05-19 09:29:43 +02:00
|
|
|
|
2013-09-11 14:46:18 +02:00
|
|
|
a=refs/heads/a
|
|
|
|
b=refs/heads/b
|
|
|
|
c=refs/heads/c
|
|
|
|
E='""'
|
|
|
|
F='%s\0'
|
|
|
|
pws='path with space'
|
|
|
|
|
|
|
|
test_expect_success 'stdin test setup' '
|
|
|
|
echo "$pws" >"$pws" &&
|
|
|
|
git add -- "$pws" &&
|
|
|
|
git commit -m "$pws"
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success '-z fails without --stdin' '
|
|
|
|
test_must_fail git update-ref -z $m $m $m 2>err &&
|
|
|
|
grep "usage: git update-ref" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin works with no input' '
|
|
|
|
>stdin &&
|
|
|
|
git update-ref --stdin <stdin &&
|
|
|
|
git rev-parse --verify -q $m
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails on empty line' '
|
|
|
|
echo "" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: empty command in input" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails on only whitespace' '
|
|
|
|
echo " " >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: whitespace before command: " err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails on leading whitespace' '
|
|
|
|
echo " create $a $m" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: whitespace before command: create $a $m" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails on unknown command' '
|
|
|
|
echo "unknown $a" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: unknown command: unknown $a" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails on badly quoted input' '
|
|
|
|
echo "create $a \"master" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: badly quoted argument: \\\"master" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails on arguments not separated by space' '
|
|
|
|
echo "create \"$a\"master" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: expected SP but got: master" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails create with no ref' '
|
|
|
|
echo "create " >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: create line missing <ref>" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails create with bad ref name' '
|
|
|
|
echo "create ~a $m" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: invalid ref format: ~a" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails create with no new value' '
|
|
|
|
echo "create $a" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: create $a missing <newvalue>" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails create with too many arguments' '
|
|
|
|
echo "create $a $m $m" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: create $a has extra input: $m" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails update with no ref' '
|
|
|
|
echo "update " >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: update line missing <ref>" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails update with bad ref name' '
|
|
|
|
echo "update ~a $m" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: invalid ref format: ~a" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails update with no new value' '
|
|
|
|
echo "update $a" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: update $a missing <newvalue>" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails update with too many arguments' '
|
|
|
|
echo "update $a $m $m $m" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: update $a has extra input: $m" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails delete with no ref' '
|
|
|
|
echo "delete " >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: delete line missing <ref>" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails delete with bad ref name' '
|
|
|
|
echo "delete ~a $m" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: invalid ref format: ~a" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails delete with too many arguments' '
|
|
|
|
echo "delete $a $m $m" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: delete $a has extra input: $m" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails verify with too many arguments' '
|
|
|
|
echo "verify $a $m $m" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: verify $a has extra input: $m" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails option with unknown name' '
|
|
|
|
echo "option unknown" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: option unknown: unknown" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin fails with duplicate refs' '
|
|
|
|
cat >stdin <<-EOF &&
|
|
|
|
create $a $m
|
|
|
|
create $b $m
|
|
|
|
create $a $m
|
|
|
|
EOF
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: Multiple updates for ref '"'"'$a'"'"' not allowed." err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin create ref works' '
|
|
|
|
echo "create $a $m" >stdin &&
|
|
|
|
git update-ref --stdin <stdin &&
|
|
|
|
git rev-parse $m >expect &&
|
|
|
|
git rev-parse $a >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin update ref creates with zero old value' '
|
|
|
|
echo "update $b $m $Z" >stdin &&
|
|
|
|
git update-ref --stdin <stdin &&
|
|
|
|
git rev-parse $m >expect &&
|
|
|
|
git rev-parse $b >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
git update-ref -d $b
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin update ref creates with empty old value' '
|
|
|
|
echo "update $b $m $E" >stdin &&
|
|
|
|
git update-ref --stdin <stdin &&
|
|
|
|
git rev-parse $m >expect &&
|
|
|
|
git rev-parse $b >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin create ref works with path with space to blob' '
|
|
|
|
echo "create refs/blobs/pws \"$m:$pws\"" >stdin &&
|
|
|
|
git update-ref --stdin <stdin &&
|
|
|
|
git rev-parse "$m:$pws" >expect &&
|
|
|
|
git rev-parse refs/blobs/pws >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
git update-ref -d refs/blobs/pws
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin update ref fails with wrong old value' '
|
|
|
|
echo "update $c $m $m~1" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: Cannot lock the ref '"'"'$c'"'"'" err &&
|
|
|
|
test_must_fail git rev-parse --verify -q $c
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin update ref fails with bad old value' '
|
|
|
|
echo "update $c $m does-not-exist" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: invalid old value for ref $c: does-not-exist" err &&
|
|
|
|
test_must_fail git rev-parse --verify -q $c
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin create ref fails with bad new value' '
|
|
|
|
echo "create $c does-not-exist" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: invalid new value for ref $c: does-not-exist" err &&
|
|
|
|
test_must_fail git rev-parse --verify -q $c
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin create ref fails with zero new value' '
|
|
|
|
echo "create $c " >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: create $c given zero new value" err &&
|
|
|
|
test_must_fail git rev-parse --verify -q $c
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin update ref works with right old value' '
|
|
|
|
echo "update $b $m~1 $m" >stdin &&
|
|
|
|
git update-ref --stdin <stdin &&
|
|
|
|
git rev-parse $m~1 >expect &&
|
|
|
|
git rev-parse $b >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin delete ref fails with wrong old value' '
|
|
|
|
echo "delete $a $m~1" >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: Cannot lock the ref '"'"'$a'"'"'" err &&
|
|
|
|
git rev-parse $m >expect &&
|
|
|
|
git rev-parse $a >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin delete ref fails with zero old value' '
|
|
|
|
echo "delete $a " >stdin &&
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: delete $a given zero old value" err &&
|
|
|
|
git rev-parse $m >expect &&
|
|
|
|
git rev-parse $a >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin update symref works option no-deref' '
|
|
|
|
git symbolic-ref TESTSYMREF $b &&
|
|
|
|
cat >stdin <<-EOF &&
|
|
|
|
option no-deref
|
|
|
|
update TESTSYMREF $a $b
|
|
|
|
EOF
|
|
|
|
git update-ref --stdin <stdin &&
|
|
|
|
git rev-parse TESTSYMREF >expect &&
|
|
|
|
git rev-parse $a >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
git rev-parse $m~1 >expect &&
|
|
|
|
git rev-parse $b >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin delete symref works option no-deref' '
|
|
|
|
git symbolic-ref TESTSYMREF $b &&
|
|
|
|
cat >stdin <<-EOF &&
|
|
|
|
option no-deref
|
|
|
|
delete TESTSYMREF $b
|
|
|
|
EOF
|
|
|
|
git update-ref --stdin <stdin &&
|
|
|
|
test_must_fail git rev-parse --verify -q TESTSYMREF &&
|
|
|
|
git rev-parse $m~1 >expect &&
|
|
|
|
git rev-parse $b >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin delete ref works with right old value' '
|
|
|
|
echo "delete $b $m~1" >stdin &&
|
|
|
|
git update-ref --stdin <stdin &&
|
|
|
|
test_must_fail git rev-parse --verify -q $b
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin update/create/verify combination works' '
|
|
|
|
cat >stdin <<-EOF &&
|
|
|
|
update $a $m
|
|
|
|
create $b $m
|
|
|
|
verify $c
|
|
|
|
EOF
|
|
|
|
git update-ref --stdin <stdin &&
|
|
|
|
git rev-parse $m >expect &&
|
|
|
|
git rev-parse $a >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
git rev-parse $b >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
test_must_fail git rev-parse --verify -q $c
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin update refs works with identity updates' '
|
|
|
|
cat >stdin <<-EOF &&
|
|
|
|
update $a $m $m
|
|
|
|
update $b $m $m
|
|
|
|
update $c $Z $E
|
|
|
|
EOF
|
|
|
|
git update-ref --stdin <stdin &&
|
|
|
|
git rev-parse $m >expect &&
|
|
|
|
git rev-parse $a >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
git rev-parse $b >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
test_must_fail git rev-parse --verify -q $c
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin update refs fails with wrong old value' '
|
|
|
|
git update-ref $c $m &&
|
|
|
|
cat >stdin <<-EOF &&
|
|
|
|
update $a $m $m
|
|
|
|
update $b $m $m
|
|
|
|
update $c ''
|
|
|
|
EOF
|
|
|
|
test_must_fail git update-ref --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: Cannot lock the ref '"'"'$c'"'"'" err &&
|
|
|
|
git rev-parse $m >expect &&
|
|
|
|
git rev-parse $a >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
git rev-parse $b >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
git rev-parse $c >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin delete refs works with packed and loose refs' '
|
|
|
|
git pack-refs --all &&
|
|
|
|
git update-ref $c $m~1 &&
|
|
|
|
cat >stdin <<-EOF &&
|
|
|
|
delete $a $m
|
|
|
|
update $b $Z $m
|
|
|
|
update $c $E $m~1
|
|
|
|
EOF
|
|
|
|
git update-ref --stdin <stdin &&
|
|
|
|
test_must_fail git rev-parse --verify -q $a &&
|
|
|
|
test_must_fail git rev-parse --verify -q $b &&
|
|
|
|
test_must_fail git rev-parse --verify -q $c
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z works on empty input' '
|
|
|
|
>stdin &&
|
|
|
|
git update-ref -z --stdin <stdin &&
|
|
|
|
git rev-parse --verify -q $m
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails on empty line' '
|
|
|
|
echo "" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: whitespace before command: " err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails on empty command' '
|
|
|
|
printf $F "" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: empty command in input" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails on only whitespace' '
|
|
|
|
printf $F " " >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: whitespace before command: " err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails on leading whitespace' '
|
|
|
|
printf $F " create $a" "$m" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: whitespace before command: create $a" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails on unknown command' '
|
|
|
|
printf $F "unknown $a" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: unknown command: unknown $a" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails create with no ref' '
|
|
|
|
printf $F "create " >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: create line missing <ref>" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails create with bad ref name' '
|
|
|
|
printf $F "create ~a " "$m" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: invalid ref format: ~a " err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails create with no new value' '
|
|
|
|
printf $F "create $a" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: create $a missing <newvalue>" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails create with too many arguments' '
|
|
|
|
printf $F "create $a" "$m" "$m" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: unknown command: $m" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails update with no ref' '
|
|
|
|
printf $F "update " >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: update line missing <ref>" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails update with bad ref name' '
|
|
|
|
printf $F "update ~a" "$m" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: invalid ref format: ~a" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails update with no new value' '
|
|
|
|
printf $F "update $a" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: update $a missing <newvalue>" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails update with no old value' '
|
|
|
|
printf $F "update $a" "$m" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: update $a missing \\[<oldvalue>\\] NUL" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails update with too many arguments' '
|
|
|
|
printf $F "update $a" "$m" "$m" "$m" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: unknown command: $m" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails delete with no ref' '
|
|
|
|
printf $F "delete " >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: delete line missing <ref>" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails delete with bad ref name' '
|
|
|
|
printf $F "delete ~a" "$m" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: invalid ref format: ~a" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails delete with no old value' '
|
|
|
|
printf $F "delete $a" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: delete $a missing \\[<oldvalue>\\] NUL" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails delete with too many arguments' '
|
|
|
|
printf $F "delete $a" "$m" "$m" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: unknown command: $m" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails verify with too many arguments' '
|
|
|
|
printf $F "verify $a" "$m" "$m" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: unknown command: $m" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails verify with no old value' '
|
|
|
|
printf $F "verify $a" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: verify $a missing \\[<oldvalue>\\] NUL" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails option with unknown name' '
|
|
|
|
printf $F "option unknown" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: option unknown: unknown" err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z fails with duplicate refs' '
|
|
|
|
printf $F "create $a" "$m" "create $b" "$m" "create $a" "$m" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: Multiple updates for ref '"'"'$a'"'"' not allowed." err
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z create ref works' '
|
|
|
|
printf $F "create $a" "$m" >stdin &&
|
|
|
|
git update-ref -z --stdin <stdin &&
|
|
|
|
git rev-parse $m >expect &&
|
|
|
|
git rev-parse $a >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z update ref creates with zero old value' '
|
|
|
|
printf $F "update $b" "$m" "$Z" >stdin &&
|
|
|
|
git update-ref -z --stdin <stdin &&
|
|
|
|
git rev-parse $m >expect &&
|
|
|
|
git rev-parse $b >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
git update-ref -d $b
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z update ref creates with empty old value' '
|
|
|
|
printf $F "update $b" "$m" "" >stdin &&
|
|
|
|
git update-ref -z --stdin <stdin &&
|
|
|
|
git rev-parse $m >expect &&
|
|
|
|
git rev-parse $b >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z create ref works with path with space to blob' '
|
|
|
|
printf $F "create refs/blobs/pws" "$m:$pws" >stdin &&
|
|
|
|
git update-ref -z --stdin <stdin &&
|
|
|
|
git rev-parse "$m:$pws" >expect &&
|
|
|
|
git rev-parse refs/blobs/pws >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
git update-ref -d refs/blobs/pws
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z update ref fails with wrong old value' '
|
|
|
|
printf $F "update $c" "$m" "$m~1" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: Cannot lock the ref '"'"'$c'"'"'" err &&
|
|
|
|
test_must_fail git rev-parse --verify -q $c
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z update ref fails with bad old value' '
|
|
|
|
printf $F "update $c" "$m" "does-not-exist" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: invalid old value for ref $c: does-not-exist" err &&
|
|
|
|
test_must_fail git rev-parse --verify -q $c
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z create ref fails with bad new value' '
|
|
|
|
printf $F "create $c" "does-not-exist" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: invalid new value for ref $c: does-not-exist" err &&
|
|
|
|
test_must_fail git rev-parse --verify -q $c
|
|
|
|
'
|
|
|
|
|
2014-04-07 15:47:52 +02:00
|
|
|
test_expect_failure 'stdin -z create ref fails with empty new value' '
|
2013-09-11 14:46:18 +02:00
|
|
|
printf $F "create $c" "" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
2014-04-07 15:47:52 +02:00
|
|
|
grep "fatal: create $c missing <newvalue>" err &&
|
2013-09-11 14:46:18 +02:00
|
|
|
test_must_fail git rev-parse --verify -q $c
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z update ref works with right old value' '
|
|
|
|
printf $F "update $b" "$m~1" "$m" >stdin &&
|
|
|
|
git update-ref -z --stdin <stdin &&
|
|
|
|
git rev-parse $m~1 >expect &&
|
|
|
|
git rev-parse $b >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z delete ref fails with wrong old value' '
|
|
|
|
printf $F "delete $a" "$m~1" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: Cannot lock the ref '"'"'$a'"'"'" err &&
|
|
|
|
git rev-parse $m >expect &&
|
|
|
|
git rev-parse $a >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z delete ref fails with zero old value' '
|
|
|
|
printf $F "delete $a" "$Z" >stdin &&
|
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: delete $a given zero old value" err &&
|
|
|
|
git rev-parse $m >expect &&
|
|
|
|
git rev-parse $a >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z update symref works option no-deref' '
|
|
|
|
git symbolic-ref TESTSYMREF $b &&
|
|
|
|
printf $F "option no-deref" "update TESTSYMREF" "$a" "$b" >stdin &&
|
|
|
|
git update-ref -z --stdin <stdin &&
|
|
|
|
git rev-parse TESTSYMREF >expect &&
|
|
|
|
git rev-parse $a >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
git rev-parse $m~1 >expect &&
|
|
|
|
git rev-parse $b >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z delete symref works option no-deref' '
|
|
|
|
git symbolic-ref TESTSYMREF $b &&
|
|
|
|
printf $F "option no-deref" "delete TESTSYMREF" "$b" >stdin &&
|
|
|
|
git update-ref -z --stdin <stdin &&
|
|
|
|
test_must_fail git rev-parse --verify -q TESTSYMREF &&
|
|
|
|
git rev-parse $m~1 >expect &&
|
|
|
|
git rev-parse $b >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z delete ref works with right old value' '
|
|
|
|
printf $F "delete $b" "$m~1" >stdin &&
|
|
|
|
git update-ref -z --stdin <stdin &&
|
|
|
|
test_must_fail git rev-parse --verify -q $b
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z update/create/verify combination works' '
|
|
|
|
printf $F "update $a" "$m" "" "create $b" "$m" "verify $c" "" >stdin &&
|
|
|
|
git update-ref -z --stdin <stdin &&
|
|
|
|
git rev-parse $m >expect &&
|
|
|
|
git rev-parse $a >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
git rev-parse $b >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
test_must_fail git rev-parse --verify -q $c
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z update refs works with identity updates' '
|
|
|
|
printf $F "update $a" "$m" "$m" "update $b" "$m" "$m" "update $c" "$Z" "" >stdin &&
|
|
|
|
git update-ref -z --stdin <stdin &&
|
|
|
|
git rev-parse $m >expect &&
|
|
|
|
git rev-parse $a >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
git rev-parse $b >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
test_must_fail git rev-parse --verify -q $c
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z update refs fails with wrong old value' '
|
|
|
|
git update-ref $c $m &&
|
2014-04-07 15:47:53 +02:00
|
|
|
printf $F "update $a" "$m" "$m" "update $b" "$m" "$m" "update $c" "$m" "$Z" >stdin &&
|
2013-09-11 14:46:18 +02:00
|
|
|
test_must_fail git update-ref -z --stdin <stdin 2>err &&
|
|
|
|
grep "fatal: Cannot lock the ref '"'"'$c'"'"'" err &&
|
|
|
|
git rev-parse $m >expect &&
|
|
|
|
git rev-parse $a >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
git rev-parse $b >actual &&
|
|
|
|
test_cmp expect actual &&
|
|
|
|
git rev-parse $c >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'stdin -z delete refs works with packed and loose refs' '
|
|
|
|
git pack-refs --all &&
|
|
|
|
git update-ref $c $m~1 &&
|
|
|
|
printf $F "delete $a" "$m" "update $b" "$Z" "$m" "update $c" "" "$m~1" >stdin &&
|
|
|
|
git update-ref -z --stdin <stdin &&
|
|
|
|
test_must_fail git rev-parse --verify -q $a &&
|
|
|
|
test_must_fail git rev-parse --verify -q $b &&
|
|
|
|
test_must_fail git rev-parse --verify -q $c
|
|
|
|
'
|
|
|
|
|
2006-05-17 11:55:40 +02:00
|
|
|
test_done
|