2007-05-02 02:45:22 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2007 Frank Lichtenheld
|
|
|
|
#
|
|
|
|
|
|
|
|
test_description='git-cvsserver access
|
|
|
|
|
|
|
|
tests read access to a git repository with the
|
|
|
|
cvs CLI client via git-cvsserver server'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
2009-04-03 21:33:59 +02:00
|
|
|
if ! test_have_prereq PERL; then
|
2010-06-24 19:44:48 +02:00
|
|
|
skip_all='skipping git cvsserver tests, perl not available'
|
2009-04-03 21:33:59 +02:00
|
|
|
test_done
|
|
|
|
fi
|
2007-05-02 02:45:22 +02:00
|
|
|
cvs >/dev/null 2>&1
|
|
|
|
if test $? -ne 1
|
|
|
|
then
|
2010-06-24 19:44:48 +02:00
|
|
|
skip_all='skipping git-cvsserver tests, cvs not found'
|
2007-05-02 02:45:22 +02:00
|
|
|
test_done
|
|
|
|
fi
|
2013-10-29 02:23:03 +01:00
|
|
|
perl -e 'use DBI; use DBD::SQLite' >/dev/null 2>&1 || {
|
2010-06-24 19:44:48 +02:00
|
|
|
skip_all='skipping git-cvsserver tests, Perl SQLite interface unavailable'
|
2007-05-09 18:19:42 +02:00
|
|
|
test_done
|
|
|
|
}
|
2007-05-02 02:45:22 +02:00
|
|
|
|
mingw: work around pwd issues in the tests
In Git for Windows' SDK, the tests are run using a Bash that relies on
the POSIX emulation layer MSYS2 (itself a friendly fork of Cygwin). As
such, paths in tests can be POSIX paths. As soon as those paths are
passed to git.exe (which does *not* use the POSIX emulation layer),
those paths are converted into Windows paths, though. This happens
for command-line parameters, but not when reading, say, config variables.
To help with that, the `pwd` command is overridden to return the Windows
path of the current working directory when testing Git on Windows.
However, when talking to anything using the POSIX emulation layer, it is
really much better to use POSIX paths because Windows paths contain a
colon after the drive letter that will easily be mistaken for the common
separator in path lists.
So let's just use the $PWD variable when the POSIX path is needed.
This lets t7800-difftool.sh, t9400-git-cvsserver-server.sh,
t9402-git-cvsserver-refs.sh and t9401-git-cvsserver-crlf.sh pass in Git
for Windows' SDK.
Note: the cvsserver tests require not only the `cvs` package (install
it into Git for Windows' SDK via `pacman -S cvs`) but also the Perl
SQLite bindings (install them into Git for Windows' SDK via
`cpan DBD::SQLite`).
This patch is based on earlier work by 마누엘 and Karsten Blees.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-01-27 17:19:59 +01:00
|
|
|
WORKDIR=$PWD
|
|
|
|
SERVERDIR=$PWD/gitcvs.git
|
2007-05-12 01:35:18 +02:00
|
|
|
git_config="$SERVERDIR/config"
|
2007-05-02 02:45:22 +02:00
|
|
|
CVSROOT=":fork:$SERVERDIR"
|
mingw: work around pwd issues in the tests
In Git for Windows' SDK, the tests are run using a Bash that relies on
the POSIX emulation layer MSYS2 (itself a friendly fork of Cygwin). As
such, paths in tests can be POSIX paths. As soon as those paths are
passed to git.exe (which does *not* use the POSIX emulation layer),
those paths are converted into Windows paths, though. This happens
for command-line parameters, but not when reading, say, config variables.
To help with that, the `pwd` command is overridden to return the Windows
path of the current working directory when testing Git on Windows.
However, when talking to anything using the POSIX emulation layer, it is
really much better to use POSIX paths because Windows paths contain a
colon after the drive letter that will easily be mistaken for the common
separator in path lists.
So let's just use the $PWD variable when the POSIX path is needed.
This lets t7800-difftool.sh, t9400-git-cvsserver-server.sh,
t9402-git-cvsserver-refs.sh and t9401-git-cvsserver-crlf.sh pass in Git
for Windows' SDK.
Note: the cvsserver tests require not only the `cvs` package (install
it into Git for Windows' SDK via `pacman -S cvs`) but also the Perl
SQLite bindings (install them into Git for Windows' SDK via
`cpan DBD::SQLite`).
This patch is based on earlier work by 마누엘 and Karsten Blees.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-01-27 17:19:59 +01:00
|
|
|
CVSWORK="$PWD/cvswork"
|
2007-05-02 02:45:22 +02:00
|
|
|
CVS_SERVER=git-cvsserver
|
|
|
|
export CVSROOT CVS_SERVER
|
|
|
|
|
|
|
|
rm -rf "$CVSWORK" "$SERVERDIR"
|
2008-01-26 10:54:05 +01:00
|
|
|
test_expect_success 'setup' '
|
2013-01-05 01:22:26 +01:00
|
|
|
git config push.default matching &&
|
2008-01-26 10:54:05 +01:00
|
|
|
echo >empty &&
|
2007-05-02 02:45:22 +02:00
|
|
|
git add empty &&
|
|
|
|
git commit -q -m "First Commit" &&
|
2008-01-26 10:54:06 +01:00
|
|
|
mkdir secondroot &&
|
|
|
|
( cd secondroot &&
|
|
|
|
git init &&
|
|
|
|
touch secondrootfile &&
|
|
|
|
git add secondrootfile &&
|
|
|
|
git commit -m "second root") &&
|
merge: refuse to create too cool a merge by default
While it makes sense to allow merging unrelated histories of two
projects that started independently into one, in the way "gitk" was
merged to "git" itself aka "the coolest merge ever", such a merge is
still an unusual event. Worse, if somebody creates an independent
history by starting from a tarball of an established project and
sends a pull request to the original project, "git merge" however
happily creates such a merge without any sign of something unusual
is happening.
Teach "git merge" to refuse to create such a merge by default,
unless the user passes a new "--allow-unrelated-histories" option to
tell it that the user is aware that two unrelated projects are
merged.
Because such a "two project merge" is a rare event, a configuration
option to always allow such a merge is not added.
We could add the same option to "git pull" and have it passed
through to underlying "git merge". I do not have a fundamental
opposition against such a feature, but this commit does not do so
and instead leaves it as low-hanging fruit for others, because such
a "two project merge" would be done after fetching the other project
into some location in the working tree of an existing project and
making sure how well they fit together, it is sufficient to allow a
local merge without such an option pass-through from "git pull" to
"git merge". Many tests that are updated by this patch does the
pass-through manually by turning:
git pull something
into its equivalent:
git fetch something &&
git merge --allow-unrelated-histories FETCH_HEAD
If somebody is inclined to add such an option, updated tests in this
change need to be adjusted back to:
git pull --allow-unrelated-histories something
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2016-03-18 21:21:09 +01:00
|
|
|
git fetch secondroot master &&
|
|
|
|
git merge --allow-unrelated-histories FETCH_HEAD &&
|
2009-03-07 00:04:09 +01:00
|
|
|
git clone -q --bare "$WORKDIR/.git" "$SERVERDIR" >/dev/null 2>&1 &&
|
2007-05-02 02:45:22 +02:00
|
|
|
GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled true &&
|
2010-05-15 04:46:04 +02:00
|
|
|
GIT_DIR="$SERVERDIR" git config gitcvs.logfile "$SERVERDIR/gitcvs.log" &&
|
|
|
|
GIT_DIR="$SERVERDIR" git config gitcvs.authdb "$SERVERDIR/auth.db" &&
|
|
|
|
echo cvsuser:cvGVEarMLnhlA > "$SERVERDIR/auth.db"
|
2008-01-26 10:54:05 +01:00
|
|
|
'
|
2007-05-02 02:45:22 +02:00
|
|
|
|
|
|
|
# note that cvs doesn't accept absolute pathnames
|
|
|
|
# as argument to co -d
|
|
|
|
test_expect_success 'basic checkout' \
|
2007-05-12 01:35:18 +02:00
|
|
|
'GIT_CONFIG="$git_config" cvs -Q co -d cvswork master &&
|
2010-10-31 02:46:54 +01:00
|
|
|
test "$(echo $(grep -v ^D cvswork/CVS/Entries|cut -d/ -f2,3,5 | head -n 1))" = "empty/1.1/" &&
|
2008-03-12 22:34:34 +01:00
|
|
|
test "$(echo $(grep -v ^D cvswork/CVS/Entries|cut -d/ -f2,3,5 | sed -ne \$p))" = "secondrootfile/1.1/"'
|
2007-05-02 02:45:22 +02:00
|
|
|
|
2007-05-21 00:31:58 +02:00
|
|
|
#------------------------
|
|
|
|
# PSERVER AUTHENTICATION
|
|
|
|
#------------------------
|
|
|
|
|
|
|
|
cat >request-anonymous <<EOF
|
|
|
|
BEGIN AUTH REQUEST
|
|
|
|
$SERVERDIR
|
|
|
|
anonymous
|
|
|
|
|
|
|
|
END AUTH REQUEST
|
|
|
|
EOF
|
|
|
|
|
|
|
|
cat >request-git <<EOF
|
|
|
|
BEGIN AUTH REQUEST
|
|
|
|
$SERVERDIR
|
|
|
|
git
|
|
|
|
|
|
|
|
END AUTH REQUEST
|
|
|
|
EOF
|
|
|
|
|
2007-05-27 14:33:10 +02:00
|
|
|
cat >login-anonymous <<EOF
|
|
|
|
BEGIN VERIFICATION REQUEST
|
|
|
|
$SERVERDIR
|
|
|
|
anonymous
|
|
|
|
|
|
|
|
END VERIFICATION REQUEST
|
|
|
|
EOF
|
|
|
|
|
|
|
|
cat >login-git <<EOF
|
|
|
|
BEGIN VERIFICATION REQUEST
|
|
|
|
$SERVERDIR
|
|
|
|
git
|
|
|
|
|
|
|
|
END VERIFICATION REQUEST
|
|
|
|
EOF
|
|
|
|
|
2010-05-15 04:46:04 +02:00
|
|
|
cat >login-git-ok <<EOF
|
|
|
|
BEGIN VERIFICATION REQUEST
|
|
|
|
$SERVERDIR
|
|
|
|
cvsuser
|
|
|
|
Ah<Z:yZZ30 e
|
|
|
|
END VERIFICATION REQUEST
|
|
|
|
EOF
|
|
|
|
|
2007-05-21 00:31:58 +02:00
|
|
|
test_expect_success 'pserver authentication' \
|
|
|
|
'cat request-anonymous | git-cvsserver pserver >log 2>&1 &&
|
2010-01-27 00:08:31 +01:00
|
|
|
sed -ne \$p log | grep "^I LOVE YOU\$"'
|
2007-05-21 00:31:58 +02:00
|
|
|
|
|
|
|
test_expect_success 'pserver authentication failure (non-anonymous user)' \
|
|
|
|
'if cat request-git | git-cvsserver pserver >log 2>&1
|
|
|
|
then
|
|
|
|
false
|
|
|
|
else
|
|
|
|
true
|
|
|
|
fi &&
|
2010-01-27 00:08:31 +01:00
|
|
|
sed -ne \$p log | grep "^I HATE YOU\$"'
|
2007-05-21 00:31:58 +02:00
|
|
|
|
2010-05-15 04:46:04 +02:00
|
|
|
test_expect_success 'pserver authentication success (non-anonymous user with password)' \
|
|
|
|
'cat login-git-ok | git-cvsserver pserver >log 2>&1 &&
|
|
|
|
sed -ne \$p log | grep "^I LOVE YOU\$"'
|
|
|
|
|
2007-05-27 14:33:10 +02:00
|
|
|
test_expect_success 'pserver authentication (login)' \
|
|
|
|
'cat login-anonymous | git-cvsserver pserver >log 2>&1 &&
|
2010-01-27 00:08:31 +01:00
|
|
|
sed -ne \$p log | grep "^I LOVE YOU\$"'
|
2007-05-27 14:33:10 +02:00
|
|
|
|
|
|
|
test_expect_success 'pserver authentication failure (login/non-anonymous user)' \
|
|
|
|
'if cat login-git | git-cvsserver pserver >log 2>&1
|
|
|
|
then
|
|
|
|
false
|
|
|
|
else
|
|
|
|
true
|
|
|
|
fi &&
|
2010-01-27 00:08:31 +01:00
|
|
|
sed -ne \$p log | grep "^I HATE YOU\$"'
|
2007-05-27 14:33:10 +02:00
|
|
|
|
2007-05-21 00:31:58 +02:00
|
|
|
|
2007-06-07 16:57:00 +02:00
|
|
|
# misuse pserver authentication for testing of req_Root
|
|
|
|
|
|
|
|
cat >request-relative <<EOF
|
|
|
|
BEGIN AUTH REQUEST
|
|
|
|
gitcvs.git
|
|
|
|
anonymous
|
|
|
|
|
|
|
|
END AUTH REQUEST
|
|
|
|
EOF
|
|
|
|
|
|
|
|
cat >request-conflict <<EOF
|
|
|
|
BEGIN AUTH REQUEST
|
|
|
|
$SERVERDIR
|
|
|
|
anonymous
|
|
|
|
|
|
|
|
END AUTH REQUEST
|
|
|
|
Root $WORKDIR
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success 'req_Root failure (relative pathname)' \
|
|
|
|
'if cat request-relative | git-cvsserver pserver >log 2>&1
|
|
|
|
then
|
|
|
|
echo unexpected success
|
|
|
|
false
|
|
|
|
else
|
|
|
|
true
|
|
|
|
fi &&
|
2008-03-12 22:32:17 +01:00
|
|
|
tail log | grep "^error 1 Root must be an absolute pathname$"'
|
2007-06-07 16:57:00 +02:00
|
|
|
|
|
|
|
test_expect_success 'req_Root failure (conflicting roots)' \
|
|
|
|
'cat request-conflict | git-cvsserver pserver >log 2>&1 &&
|
2008-03-12 22:32:17 +01:00
|
|
|
tail log | grep "^error 1 Conflicting roots specified$"'
|
2007-06-07 16:57:00 +02:00
|
|
|
|
2007-06-07 16:57:01 +02:00
|
|
|
test_expect_success 'req_Root (strict paths)' \
|
2008-05-04 07:37:59 +02:00
|
|
|
'cat request-anonymous | git-cvsserver --strict-paths pserver "$SERVERDIR" >log 2>&1 &&
|
2010-01-27 00:08:31 +01:00
|
|
|
sed -ne \$p log | grep "^I LOVE YOU\$"'
|
2007-06-07 16:57:01 +02:00
|
|
|
|
2008-02-01 10:50:53 +01:00
|
|
|
test_expect_success 'req_Root failure (strict-paths)' '
|
|
|
|
! cat request-anonymous |
|
2008-05-04 07:37:59 +02:00
|
|
|
git-cvsserver --strict-paths pserver "$WORKDIR" >log 2>&1
|
2008-02-01 10:50:53 +01:00
|
|
|
'
|
2007-06-07 16:57:01 +02:00
|
|
|
|
|
|
|
test_expect_success 'req_Root (w/o strict-paths)' \
|
2008-05-04 07:37:59 +02:00
|
|
|
'cat request-anonymous | git-cvsserver pserver "$WORKDIR/" >log 2>&1 &&
|
2010-01-27 00:08:31 +01:00
|
|
|
sed -ne \$p log | grep "^I LOVE YOU\$"'
|
2007-06-07 16:57:01 +02:00
|
|
|
|
2008-02-01 10:50:53 +01:00
|
|
|
test_expect_success 'req_Root failure (w/o strict-paths)' '
|
|
|
|
! cat request-anonymous |
|
2008-05-04 07:37:59 +02:00
|
|
|
git-cvsserver pserver "$WORKDIR/gitcvs" >log 2>&1
|
2008-02-01 10:50:53 +01:00
|
|
|
'
|
2007-06-07 16:57:01 +02:00
|
|
|
|
|
|
|
cat >request-base <<EOF
|
|
|
|
BEGIN AUTH REQUEST
|
|
|
|
/gitcvs.git
|
|
|
|
anonymous
|
|
|
|
|
|
|
|
END AUTH REQUEST
|
2007-06-15 03:01:52 +02:00
|
|
|
Root /gitcvs.git
|
2007-06-07 16:57:01 +02:00
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success 'req_Root (base-path)' \
|
2008-05-04 07:37:59 +02:00
|
|
|
'cat request-base | git-cvsserver --strict-paths --base-path "$WORKDIR/" pserver "$SERVERDIR" >log 2>&1 &&
|
2010-01-27 00:08:31 +01:00
|
|
|
sed -ne \$p log | grep "^I LOVE YOU\$"'
|
2007-06-07 16:57:01 +02:00
|
|
|
|
2008-02-01 10:50:53 +01:00
|
|
|
test_expect_success 'req_Root failure (base-path)' '
|
|
|
|
! cat request-anonymous |
|
2008-05-04 07:37:59 +02:00
|
|
|
git-cvsserver --strict-paths --base-path "$WORKDIR" pserver "$SERVERDIR" >log 2>&1
|
2008-02-01 10:50:53 +01:00
|
|
|
'
|
2007-06-07 16:57:00 +02:00
|
|
|
|
2007-06-15 03:01:53 +02:00
|
|
|
GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled false || exit 1
|
|
|
|
|
|
|
|
test_expect_success 'req_Root (export-all)' \
|
2008-05-04 07:37:59 +02:00
|
|
|
'cat request-anonymous | git-cvsserver --export-all pserver "$WORKDIR" >log 2>&1 &&
|
2010-01-27 00:08:31 +01:00
|
|
|
sed -ne \$p log | grep "^I LOVE YOU\$"'
|
2007-06-15 03:01:53 +02:00
|
|
|
|
2008-02-01 10:50:53 +01:00
|
|
|
test_expect_success 'req_Root failure (export-all w/o whitelist)' \
|
|
|
|
'! (cat request-anonymous | git-cvsserver --export-all pserver >log 2>&1 || false)'
|
2007-06-15 03:01:53 +02:00
|
|
|
|
|
|
|
test_expect_success 'req_Root (everything together)' \
|
2008-05-04 07:37:59 +02:00
|
|
|
'cat request-base | git-cvsserver --export-all --strict-paths --base-path "$WORKDIR/" pserver "$SERVERDIR" >log 2>&1 &&
|
2010-01-27 00:08:31 +01:00
|
|
|
sed -ne \$p log | grep "^I LOVE YOU\$"'
|
2007-06-15 03:01:53 +02:00
|
|
|
|
|
|
|
GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled true || exit 1
|
|
|
|
|
2007-05-21 00:31:56 +02:00
|
|
|
#--------------
|
|
|
|
# CONFIG TESTS
|
|
|
|
#--------------
|
|
|
|
|
|
|
|
test_expect_success 'gitcvs.enabled = false' \
|
|
|
|
'GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled false &&
|
|
|
|
if GIT_CONFIG="$git_config" cvs -Q co -d cvswork2 master >cvs.log 2>&1
|
|
|
|
then
|
|
|
|
echo unexpected cvs success
|
|
|
|
false
|
|
|
|
else
|
|
|
|
true
|
|
|
|
fi &&
|
2008-03-12 22:32:17 +01:00
|
|
|
grep "GITCVS emulation disabled" cvs.log &&
|
2007-05-21 00:31:56 +02:00
|
|
|
test ! -d cvswork2'
|
|
|
|
|
|
|
|
rm -fr cvswork2
|
|
|
|
test_expect_success 'gitcvs.ext.enabled = true' \
|
|
|
|
'GIT_DIR="$SERVERDIR" git config --bool gitcvs.ext.enabled true &&
|
|
|
|
GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled false &&
|
|
|
|
GIT_CONFIG="$git_config" cvs -Q co -d cvswork2 master >cvs.log 2>&1 &&
|
2010-03-12 06:40:33 +01:00
|
|
|
test_cmp cvswork cvswork2'
|
2007-05-21 00:31:56 +02:00
|
|
|
|
|
|
|
rm -fr cvswork2
|
|
|
|
test_expect_success 'gitcvs.ext.enabled = false' \
|
|
|
|
'GIT_DIR="$SERVERDIR" git config --bool gitcvs.ext.enabled false &&
|
|
|
|
GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled true &&
|
|
|
|
if GIT_CONFIG="$git_config" cvs -Q co -d cvswork2 master >cvs.log 2>&1
|
|
|
|
then
|
|
|
|
echo unexpected cvs success
|
|
|
|
false
|
|
|
|
else
|
|
|
|
true
|
|
|
|
fi &&
|
2008-03-12 22:32:17 +01:00
|
|
|
grep "GITCVS emulation disabled" cvs.log &&
|
2007-05-21 00:31:56 +02:00
|
|
|
test ! -d cvswork2'
|
|
|
|
|
|
|
|
rm -fr cvswork2
|
|
|
|
test_expect_success 'gitcvs.dbname' \
|
|
|
|
'GIT_DIR="$SERVERDIR" git config --bool gitcvs.ext.enabled true &&
|
|
|
|
GIT_DIR="$SERVERDIR" git config gitcvs.dbname %Ggitcvs.%a.%m.sqlite &&
|
|
|
|
GIT_CONFIG="$git_config" cvs -Q co -d cvswork2 master >cvs.log 2>&1 &&
|
2010-03-12 06:40:33 +01:00
|
|
|
test_cmp cvswork cvswork2 &&
|
2007-05-21 00:31:56 +02:00
|
|
|
test -f "$SERVERDIR/gitcvs.ext.master.sqlite" &&
|
|
|
|
cmp "$SERVERDIR/gitcvs.master.sqlite" "$SERVERDIR/gitcvs.ext.master.sqlite"'
|
|
|
|
|
|
|
|
rm -fr cvswork2
|
|
|
|
test_expect_success 'gitcvs.ext.dbname' \
|
|
|
|
'GIT_DIR="$SERVERDIR" git config --bool gitcvs.ext.enabled true &&
|
|
|
|
GIT_DIR="$SERVERDIR" git config gitcvs.ext.dbname %Ggitcvs1.%a.%m.sqlite &&
|
|
|
|
GIT_DIR="$SERVERDIR" git config gitcvs.dbname %Ggitcvs2.%a.%m.sqlite &&
|
|
|
|
GIT_CONFIG="$git_config" cvs -Q co -d cvswork2 master >cvs.log 2>&1 &&
|
2010-03-12 06:40:33 +01:00
|
|
|
test_cmp cvswork cvswork2 &&
|
2007-05-21 00:31:56 +02:00
|
|
|
test -f "$SERVERDIR/gitcvs1.ext.master.sqlite" &&
|
|
|
|
test ! -f "$SERVERDIR/gitcvs2.ext.master.sqlite" &&
|
|
|
|
cmp "$SERVERDIR/gitcvs.master.sqlite" "$SERVERDIR/gitcvs1.ext.master.sqlite"'
|
|
|
|
|
|
|
|
|
|
|
|
#------------
|
|
|
|
# CVS UPDATE
|
|
|
|
#------------
|
|
|
|
|
|
|
|
rm -fr "$SERVERDIR"
|
|
|
|
cd "$WORKDIR" &&
|
2009-03-07 00:04:09 +01:00
|
|
|
git clone -q --bare "$WORKDIR/.git" "$SERVERDIR" >/dev/null 2>&1 &&
|
2007-05-21 00:31:56 +02:00
|
|
|
GIT_DIR="$SERVERDIR" git config --bool gitcvs.enabled true &&
|
2007-06-25 16:00:24 +02:00
|
|
|
GIT_DIR="$SERVERDIR" git config gitcvs.logfile "$SERVERDIR/gitcvs.log" ||
|
2007-05-21 00:31:56 +02:00
|
|
|
exit 1
|
|
|
|
|
2007-05-02 02:45:22 +02:00
|
|
|
test_expect_success 'cvs update (create new file)' \
|
|
|
|
'echo testfile1 >testfile1 &&
|
|
|
|
git add testfile1 &&
|
|
|
|
git commit -q -m "Add testfile1" &&
|
|
|
|
git push gitcvs.git >/dev/null &&
|
|
|
|
cd cvswork &&
|
2007-05-12 01:35:18 +02:00
|
|
|
GIT_CONFIG="$git_config" cvs -Q update &&
|
2007-05-02 02:45:22 +02:00
|
|
|
test "$(echo $(grep testfile1 CVS/Entries|cut -d/ -f2,3,5))" = "testfile1/1.1/" &&
|
2010-03-12 06:40:33 +01:00
|
|
|
test_cmp testfile1 ../testfile1'
|
2007-05-02 02:45:22 +02:00
|
|
|
|
|
|
|
cd "$WORKDIR"
|
|
|
|
test_expect_success 'cvs update (update existing file)' \
|
|
|
|
'echo line 2 >>testfile1 &&
|
|
|
|
git add testfile1 &&
|
|
|
|
git commit -q -m "Append to testfile1" &&
|
|
|
|
git push gitcvs.git >/dev/null &&
|
|
|
|
cd cvswork &&
|
2007-05-12 01:35:18 +02:00
|
|
|
GIT_CONFIG="$git_config" cvs -Q update &&
|
2007-05-02 02:45:22 +02:00
|
|
|
test "$(echo $(grep testfile1 CVS/Entries|cut -d/ -f2,3,5))" = "testfile1/1.2/" &&
|
2010-03-12 06:40:33 +01:00
|
|
|
test_cmp testfile1 ../testfile1'
|
2007-05-02 02:45:22 +02:00
|
|
|
|
|
|
|
cd "$WORKDIR"
|
|
|
|
#TODO: cvsserver doesn't support update w/o -d
|
2008-02-01 10:50:53 +01:00
|
|
|
test_expect_failure "cvs update w/o -d doesn't create subdir (TODO)" '
|
|
|
|
mkdir test &&
|
2007-05-02 02:45:22 +02:00
|
|
|
echo >test/empty &&
|
|
|
|
git add test &&
|
|
|
|
git commit -q -m "Single Subdirectory" &&
|
|
|
|
git push gitcvs.git >/dev/null &&
|
|
|
|
cd cvswork &&
|
2007-05-12 01:35:18 +02:00
|
|
|
GIT_CONFIG="$git_config" cvs -Q update &&
|
2008-02-01 10:50:53 +01:00
|
|
|
test ! -d test
|
|
|
|
'
|
2007-05-02 02:45:22 +02:00
|
|
|
|
|
|
|
cd "$WORKDIR"
|
|
|
|
test_expect_success 'cvs update (subdirectories)' \
|
|
|
|
'(for dir in A A/B A/B/C A/D E; do
|
|
|
|
mkdir $dir &&
|
|
|
|
echo "test file in $dir" >"$dir/file_in_$(echo $dir|sed -e "s#/# #g")" &&
|
|
|
|
git add $dir;
|
|
|
|
done) &&
|
|
|
|
git commit -q -m "deep sub directory structure" &&
|
|
|
|
git push gitcvs.git >/dev/null &&
|
|
|
|
cd cvswork &&
|
2007-05-12 01:35:18 +02:00
|
|
|
GIT_CONFIG="$git_config" cvs -Q update -d &&
|
2007-05-02 02:45:22 +02:00
|
|
|
(for dir in A A/B A/B/C A/D E; do
|
|
|
|
filename="file_in_$(echo $dir|sed -e "s#/# #g")" &&
|
|
|
|
if test "$(echo $(grep -v ^D $dir/CVS/Entries|cut -d/ -f2,3,5))" = "$filename/1.1/" &&
|
2010-03-12 06:40:33 +01:00
|
|
|
test_cmp "$dir/$filename" "../$dir/$filename"; then
|
2007-05-02 02:45:22 +02:00
|
|
|
:
|
|
|
|
else
|
|
|
|
echo >failure
|
|
|
|
fi
|
|
|
|
done) &&
|
|
|
|
test ! -f failure'
|
|
|
|
|
|
|
|
cd "$WORKDIR"
|
|
|
|
test_expect_success 'cvs update (delete file)' \
|
|
|
|
'git rm testfile1 &&
|
|
|
|
git commit -q -m "Remove testfile1" &&
|
|
|
|
git push gitcvs.git >/dev/null &&
|
|
|
|
cd cvswork &&
|
2007-05-12 01:35:18 +02:00
|
|
|
GIT_CONFIG="$git_config" cvs -Q update &&
|
2007-05-02 02:45:22 +02:00
|
|
|
test -z "$(grep testfile1 CVS/Entries)" &&
|
|
|
|
test ! -f testfile1'
|
|
|
|
|
|
|
|
cd "$WORKDIR"
|
|
|
|
test_expect_success 'cvs update (re-add deleted file)' \
|
|
|
|
'echo readded testfile >testfile1 &&
|
|
|
|
git add testfile1 &&
|
|
|
|
git commit -q -m "Re-Add testfile1" &&
|
|
|
|
git push gitcvs.git >/dev/null &&
|
|
|
|
cd cvswork &&
|
2007-05-12 01:35:18 +02:00
|
|
|
GIT_CONFIG="$git_config" cvs -Q update &&
|
2007-05-02 02:45:22 +02:00
|
|
|
test "$(echo $(grep testfile1 CVS/Entries|cut -d/ -f2,3,5))" = "testfile1/1.4/" &&
|
2010-03-12 06:40:33 +01:00
|
|
|
test_cmp testfile1 ../testfile1'
|
2007-05-02 02:45:22 +02:00
|
|
|
|
2007-05-21 00:31:57 +02:00
|
|
|
cd "$WORKDIR"
|
|
|
|
test_expect_success 'cvs update (merge)' \
|
|
|
|
'echo Line 0 >expected &&
|
|
|
|
for i in 1 2 3 4 5 6 7
|
|
|
|
do
|
|
|
|
echo Line $i >>merge
|
|
|
|
echo Line $i >>expected
|
|
|
|
done &&
|
|
|
|
echo Line 8 >>expected &&
|
|
|
|
git add merge &&
|
|
|
|
git commit -q -m "Merge test (pre-merge)" &&
|
|
|
|
git push gitcvs.git >/dev/null &&
|
|
|
|
cd cvswork &&
|
|
|
|
GIT_CONFIG="$git_config" cvs -Q update &&
|
|
|
|
test "$(echo $(grep merge CVS/Entries|cut -d/ -f2,3,5))" = "merge/1.1/" &&
|
2010-03-12 06:40:33 +01:00
|
|
|
test_cmp merge ../merge &&
|
2007-05-21 00:31:57 +02:00
|
|
|
( echo Line 0; cat merge ) >merge.tmp &&
|
|
|
|
mv merge.tmp merge &&
|
|
|
|
cd "$WORKDIR" &&
|
|
|
|
echo Line 8 >>merge &&
|
|
|
|
git add merge &&
|
|
|
|
git commit -q -m "Merge test (merge)" &&
|
|
|
|
git push gitcvs.git >/dev/null &&
|
|
|
|
cd cvswork &&
|
2007-05-27 14:33:09 +02:00
|
|
|
sleep 1 && touch merge &&
|
2007-05-21 00:31:57 +02:00
|
|
|
GIT_CONFIG="$git_config" cvs -Q update &&
|
2010-03-12 06:40:33 +01:00
|
|
|
test_cmp merge ../expected'
|
2007-05-21 00:31:57 +02:00
|
|
|
|
|
|
|
cd "$WORKDIR"
|
|
|
|
|
|
|
|
cat >expected.C <<EOF
|
|
|
|
<<<<<<< merge.mine
|
|
|
|
Line 0
|
|
|
|
=======
|
|
|
|
LINE 0
|
2012-10-14 07:42:21 +02:00
|
|
|
>>>>>>> merge.1.3
|
2007-05-21 00:31:57 +02:00
|
|
|
EOF
|
|
|
|
|
|
|
|
for i in 1 2 3 4 5 6 7 8
|
|
|
|
do
|
|
|
|
echo Line $i >>expected.C
|
|
|
|
done
|
|
|
|
|
|
|
|
test_expect_success 'cvs update (conflict merge)' \
|
|
|
|
'( echo LINE 0; cat merge ) >merge.tmp &&
|
|
|
|
mv merge.tmp merge &&
|
|
|
|
git add merge &&
|
|
|
|
git commit -q -m "Merge test (conflict)" &&
|
|
|
|
git push gitcvs.git >/dev/null &&
|
|
|
|
cd cvswork &&
|
|
|
|
GIT_CONFIG="$git_config" cvs -Q update &&
|
2010-03-12 06:40:33 +01:00
|
|
|
test_cmp merge ../expected.C'
|
2007-05-21 00:31:57 +02:00
|
|
|
|
|
|
|
cd "$WORKDIR"
|
|
|
|
test_expect_success 'cvs update (-C)' \
|
|
|
|
'cd cvswork &&
|
|
|
|
GIT_CONFIG="$git_config" cvs -Q update -C &&
|
2010-03-12 06:40:33 +01:00
|
|
|
test_cmp merge ../merge'
|
2007-05-21 00:31:57 +02:00
|
|
|
|
|
|
|
cd "$WORKDIR"
|
|
|
|
test_expect_success 'cvs update (merge no-op)' \
|
|
|
|
'echo Line 9 >>merge &&
|
|
|
|
cp merge cvswork/merge &&
|
|
|
|
git add merge &&
|
|
|
|
git commit -q -m "Merge test (no-op)" &&
|
|
|
|
git push gitcvs.git >/dev/null &&
|
|
|
|
cd cvswork &&
|
2007-05-27 14:33:09 +02:00
|
|
|
sleep 1 && touch merge &&
|
2007-05-21 00:31:57 +02:00
|
|
|
GIT_CONFIG="$git_config" cvs -Q update &&
|
2010-03-12 06:40:33 +01:00
|
|
|
test_cmp merge ../merge'
|
2007-05-21 00:31:57 +02:00
|
|
|
|
2008-03-27 23:18:23 +01:00
|
|
|
cd "$WORKDIR"
|
|
|
|
test_expect_success 'cvs update (-p)' '
|
|
|
|
touch really-empty &&
|
|
|
|
echo Line 1 > no-lf &&
|
2008-10-31 06:09:13 +01:00
|
|
|
printf "Line 2" >> no-lf &&
|
2008-03-27 23:18:23 +01:00
|
|
|
git add really-empty no-lf &&
|
|
|
|
git commit -q -m "Update -p test" &&
|
|
|
|
git push gitcvs.git >/dev/null &&
|
|
|
|
cd cvswork &&
|
|
|
|
GIT_CONFIG="$git_config" cvs update &&
|
|
|
|
rm -f failures &&
|
|
|
|
for i in merge no-lf empty really-empty; do
|
|
|
|
GIT_CONFIG="$git_config" cvs update -p "$i" >$i.out
|
2010-05-14 11:31:37 +02:00
|
|
|
test_cmp $i.out ../$i >>failures 2>&1
|
2008-03-27 23:18:23 +01:00
|
|
|
done &&
|
|
|
|
test -z "$(cat failures)"
|
|
|
|
'
|
|
|
|
|
2008-07-17 19:00:28 +02:00
|
|
|
cd "$WORKDIR"
|
|
|
|
test_expect_success 'cvs update (module list supports packed refs)' '
|
|
|
|
GIT_DIR="$SERVERDIR" git pack-refs --all &&
|
|
|
|
GIT_CONFIG="$git_config" cvs -n up -d 2> out &&
|
|
|
|
grep "cvs update: New directory \`master'\''" < out
|
|
|
|
'
|
|
|
|
|
2008-03-27 23:18:02 +01:00
|
|
|
#------------
|
|
|
|
# CVS STATUS
|
|
|
|
#------------
|
|
|
|
|
|
|
|
cd "$WORKDIR"
|
|
|
|
test_expect_success 'cvs status' '
|
|
|
|
mkdir status.dir &&
|
|
|
|
echo Line > status.dir/status.file &&
|
|
|
|
echo Line > status.file &&
|
|
|
|
git add status.dir status.file &&
|
|
|
|
git commit -q -m "Status test" &&
|
|
|
|
git push gitcvs.git >/dev/null &&
|
|
|
|
cd cvswork &&
|
|
|
|
GIT_CONFIG="$git_config" cvs update &&
|
|
|
|
GIT_CONFIG="$git_config" cvs status | grep "^File: status.file" >../out &&
|
2012-04-11 13:24:01 +02:00
|
|
|
test_line_count = 2 ../out
|
2008-03-27 23:18:02 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
cd "$WORKDIR"
|
|
|
|
test_expect_success 'cvs status (nonrecursive)' '
|
|
|
|
cd cvswork &&
|
|
|
|
GIT_CONFIG="$git_config" cvs status -l | grep "^File: status.file" >../out &&
|
2012-04-11 13:24:01 +02:00
|
|
|
test_line_count = 1 ../out
|
2008-03-27 23:18:02 +01:00
|
|
|
'
|
|
|
|
|
|
|
|
cd "$WORKDIR"
|
|
|
|
test_expect_success 'cvs status (no subdirs in header)' '
|
|
|
|
cd cvswork &&
|
|
|
|
GIT_CONFIG="$git_config" cvs status | grep ^File: >../out &&
|
|
|
|
! grep / <../out
|
|
|
|
'
|
|
|
|
|
2008-07-17 19:00:30 +02:00
|
|
|
#------------
|
|
|
|
# CVS CHECKOUT
|
|
|
|
#------------
|
|
|
|
|
|
|
|
cd "$WORKDIR"
|
|
|
|
test_expect_success 'cvs co -c (shows module database)' '
|
|
|
|
GIT_CONFIG="$git_config" cvs co -c > out &&
|
2012-04-19 22:05:26 +02:00
|
|
|
grep "^master[ ][ ]*master$" <out &&
|
|
|
|
! grep -v "^master[ ][ ]*master$" <out
|
2008-07-17 19:00:30 +02:00
|
|
|
'
|
|
|
|
|
2012-10-14 07:42:14 +02:00
|
|
|
#------------
|
|
|
|
# CVS LOG
|
|
|
|
#------------
|
|
|
|
|
|
|
|
# Known issues with git-cvsserver current log output:
|
|
|
|
# - Hard coded "lines: +2 -3" placeholder, instead of real numbers.
|
|
|
|
# - CVS normally does not internally add a blank first line
|
2014-04-01 00:11:47 +02:00
|
|
|
# or a last line with nothing but a space to log messages.
|
2012-10-14 07:42:14 +02:00
|
|
|
# - The latest cvs 1.12.x server sends +0000 timezone (with some hidden "MT"
|
|
|
|
# tagging in the protocol), and if cvs 1.12.x client sees the MT tags,
|
|
|
|
# it converts to local time zone. git-cvsserver doesn't do the +0000
|
|
|
|
# or the MT tags...
|
|
|
|
# - The latest 1.12.x releases add a "commitid:" field on to the end of the
|
|
|
|
# "date:" line (after "lines:"). Maybe we could stick git's commit id
|
|
|
|
# in it? Or does CVS expect a certain number of bits (too few for
|
|
|
|
# a full sha1)?
|
|
|
|
#
|
|
|
|
# Given the above, expect the following test to break if git-cvsserver's
|
|
|
|
# log output is improved. The test is just to ensure it doesn't
|
|
|
|
# accidentally get worse.
|
|
|
|
|
|
|
|
sed -e 's/^x//' -e 's/SP$/ /' > "$WORKDIR/expect" <<EOF
|
|
|
|
x
|
|
|
|
xRCS file: $WORKDIR/gitcvs.git/master/merge,v
|
|
|
|
xWorking file: merge
|
|
|
|
xhead: 1.4
|
|
|
|
xbranch:
|
|
|
|
xlocks: strict
|
|
|
|
xaccess list:
|
|
|
|
xsymbolic names:
|
|
|
|
xkeyword substitution: kv
|
|
|
|
xtotal revisions: 4; selected revisions: 4
|
|
|
|
xdescription:
|
|
|
|
x----------------------------
|
|
|
|
xrevision 1.4
|
|
|
|
xdate: __DATE__; author: author; state: Exp; lines: +2 -3
|
|
|
|
x
|
|
|
|
xMerge test (no-op)
|
|
|
|
xSP
|
|
|
|
x----------------------------
|
|
|
|
xrevision 1.3
|
|
|
|
xdate: __DATE__; author: author; state: Exp; lines: +2 -3
|
|
|
|
x
|
|
|
|
xMerge test (conflict)
|
|
|
|
xSP
|
|
|
|
x----------------------------
|
|
|
|
xrevision 1.2
|
|
|
|
xdate: __DATE__; author: author; state: Exp; lines: +2 -3
|
|
|
|
x
|
|
|
|
xMerge test (merge)
|
|
|
|
xSP
|
|
|
|
x----------------------------
|
|
|
|
xrevision 1.1
|
|
|
|
xdate: __DATE__; author: author; state: Exp; lines: +2 -3
|
|
|
|
x
|
|
|
|
xMerge test (pre-merge)
|
|
|
|
xSP
|
|
|
|
x=============================================================================
|
|
|
|
EOF
|
|
|
|
expectStat="$?"
|
|
|
|
|
|
|
|
cd "$WORKDIR"
|
|
|
|
test_expect_success 'cvs log' '
|
|
|
|
cd cvswork &&
|
|
|
|
test x"$expectStat" = x"0" &&
|
|
|
|
GIT_CONFIG="$git_config" cvs log merge >../out &&
|
|
|
|
sed -e "s%2[0-9][0-9][0-9]/[01][0-9]/[0-3][0-9] [0-2][0-9]:[0-5][0-9]:[0-5][0-9]%__DATE__%" ../out > ../actual &&
|
|
|
|
test_cmp ../expect ../actual
|
|
|
|
'
|
|
|
|
|
2008-09-05 09:57:35 +02:00
|
|
|
#------------
|
|
|
|
# CVS ANNOTATE
|
|
|
|
#------------
|
|
|
|
|
|
|
|
cd "$WORKDIR"
|
|
|
|
test_expect_success 'cvs annotate' '
|
|
|
|
cd cvswork &&
|
|
|
|
GIT_CONFIG="$git_config" cvs annotate merge >../out &&
|
|
|
|
sed -e "s/ .*//" ../out >../actual &&
|
|
|
|
for i in 3 1 1 1 1 1 1 1 2 4; do echo 1.$i; done >../expect &&
|
|
|
|
test_cmp ../expect ../actual
|
|
|
|
'
|
|
|
|
|
2007-05-02 02:45:22 +02:00
|
|
|
test_done
|