2012-11-29 02:11:01 +04:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2010 Sverre Rabbelier
|
|
|
|
#
|
|
|
|
|
|
|
|
test_description='Test remote-helper import and export commands'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
if ! type "${BASH-bash}" >/dev/null 2>&1; then
|
|
|
|
skip_all='skipping remote-testgit tests, bash not available'
|
|
|
|
test_done
|
|
|
|
fi
|
|
|
|
|
|
|
|
compare_refs() {
|
|
|
|
git --git-dir="$1/.git" rev-parse --verify $2 >expect &&
|
|
|
|
git --git-dir="$3/.git" rev-parse --verify $4 >actual &&
|
|
|
|
test_cmp expect actual
|
|
|
|
}
|
|
|
|
|
|
|
|
test_expect_success 'setup repository' '
|
|
|
|
git init --bare server/.git &&
|
|
|
|
git clone server public &&
|
|
|
|
(cd public &&
|
|
|
|
echo content >file &&
|
|
|
|
git add file &&
|
|
|
|
git commit -m one &&
|
|
|
|
git push origin master)
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'cloning from local repo' '
|
|
|
|
git clone "testgit::${PWD}/server" localclone &&
|
|
|
|
test_cmp public/file localclone/file
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'create new commit on remote' '
|
|
|
|
(cd public &&
|
|
|
|
echo content >>file &&
|
|
|
|
git commit -a -m two &&
|
|
|
|
git push)
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'pulling from local repo' '
|
|
|
|
(cd localclone && git pull) &&
|
|
|
|
test_cmp public/file localclone/file
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'pushing to local repo' '
|
|
|
|
(cd localclone &&
|
|
|
|
echo content >>file &&
|
|
|
|
git commit -a -m three &&
|
|
|
|
git push) &&
|
|
|
|
compare_refs localclone HEAD server HEAD
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'fetch new branch' '
|
|
|
|
(cd public &&
|
|
|
|
git checkout -b new &&
|
|
|
|
echo content >>file &&
|
|
|
|
git commit -a -m five &&
|
|
|
|
git push origin new
|
|
|
|
) &&
|
|
|
|
(cd localclone &&
|
|
|
|
git fetch origin new
|
|
|
|
) &&
|
|
|
|
compare_refs public HEAD localclone FETCH_HEAD
|
|
|
|
'
|
|
|
|
|
2012-11-29 02:11:02 +04:00
|
|
|
#
|
|
|
|
# This is only needed because of a bug not detected by this script. It will be
|
|
|
|
# fixed shortly, but for now lets not cause regressions.
|
|
|
|
#
|
|
|
|
test_expect_success 'bump commit in public' '
|
|
|
|
(cd public &&
|
|
|
|
git checkout master &&
|
|
|
|
git pull &&
|
|
|
|
echo content >>file &&
|
|
|
|
git commit -a -m four &&
|
|
|
|
git push) &&
|
|
|
|
compare_refs public HEAD server HEAD
|
|
|
|
'
|
|
|
|
|
2012-11-29 02:11:01 +04:00
|
|
|
test_expect_success 'fetch multiple branches' '
|
|
|
|
(cd localclone &&
|
|
|
|
git fetch
|
|
|
|
) &&
|
|
|
|
compare_refs server master localclone refs/remotes/origin/master &&
|
|
|
|
compare_refs server new localclone refs/remotes/origin/new
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'push when remote has extra refs' '
|
2012-11-29 02:11:02 +04:00
|
|
|
(cd localclone &&
|
|
|
|
git reset --hard origin/master &&
|
2012-11-29 02:11:01 +04:00
|
|
|
echo content >>file &&
|
|
|
|
git commit -a -m six &&
|
|
|
|
git push
|
|
|
|
) &&
|
2012-11-29 02:11:02 +04:00
|
|
|
compare_refs localclone master server master
|
2012-11-29 02:11:01 +04:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'push new branch by name' '
|
2012-11-29 02:11:02 +04:00
|
|
|
(cd localclone &&
|
2012-11-29 02:11:01 +04:00
|
|
|
git checkout -b new-name &&
|
|
|
|
echo content >>file &&
|
|
|
|
git commit -a -m seven &&
|
|
|
|
git push origin new-name
|
|
|
|
) &&
|
2012-11-29 02:11:02 +04:00
|
|
|
compare_refs localclone HEAD server refs/heads/new-name
|
2012-11-29 02:11:01 +04:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_failure 'push new branch with old:new refspec' '
|
2012-11-29 02:11:02 +04:00
|
|
|
(cd localclone &&
|
2012-11-29 02:11:01 +04:00
|
|
|
git push origin new-name:new-refspec
|
|
|
|
) &&
|
2012-11-29 02:11:02 +04:00
|
|
|
compare_refs localclone HEAD server refs/heads/new-refspec
|
2012-11-29 02:11:01 +04:00
|
|
|
'
|
|
|
|
|
|
|
|
test_done
|