3 remotes_git_svn=remotes/git""-svn
4 git_svn_id=git""-svn-id
6 if test -n "$NO_SVN_TESTS"
8 test_expect_success 'skipping git svn tests, NO_SVN_TESTS defined' :
14 GIT_SVN_DIR=$GIT_DIR/svn/git-svn
15 SVN_TREE=$GIT_SVN_DIR/svn-tree
20 test_expect_success 'skipping git svn tests, svn not found' :
31 \$SVN::Core::VERSION gt '1.1.0' or exit(42);
32 system(qw/svnadmin create --fs-type fsfs/, \$ENV{svnrepo}) == 0 or exit(41);
37 if test $x -eq 42; then
38 err='Perl SVN libraries must be >= 1.1.0'
39 elif test $x -eq 41; then
40 err='svnadmin failed to create fsfs repository'
42 err='Perl SVN libraries not found or unusable, skipping test'
44 test_expect_success "$err" :
50 svnrepo="file://$svnrepo"
68 "$SVN_HTTPD_MODULE_PATH" \
69 /usr/lib/apache2/modules \
70 /usr/libexec/apache2 \
74 SVN_HTTPD_MODULE_PATH="$d"
81 if test -z "$SVN_HTTPD_PORT"
83 echo >&2 'SVN_HTTPD_PORT is not defined!'
86 if test -z "$repo_base_path"
93 cat > "$GIT_DIR/httpd.conf" <<EOF
94 ServerName "git svn test"
96 DocumentRoot "$GIT_DIR"
97 PidFile "$GIT_DIR/httpd.pid"
98 LockFile logs/accept.lock
99 Listen 127.0.0.1:$SVN_HTTPD_PORT
100 LoadModule dav_module $SVN_HTTPD_MODULE_PATH/mod_dav.so
101 LoadModule dav_svn_module $SVN_HTTPD_MODULE_PATH/mod_dav_svn.so
102 <Location /$repo_base_path>
104 SVNPath "$rawsvnrepo"
107 "$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf -k start
108 svnrepo="http://127.0.0.1:$SVN_HTTPD_PORT/$repo_base_path"
112 test -z "$SVN_HTTPD_PORT" && return
113 "$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf -k stop
116 convert_to_rev_db () {
117 perl -w -- - "$@" <<\EOF
119 @ARGV == 2 or die "Usage: convert_to_rev_db <input> <output>";
120 open my $wr, '+>', $ARGV[1] or die "$!: couldn't open: $ARGV[1]";
121 open my $rd, '<', $ARGV[0] or die "$!: couldn't open: $ARGV[0]";
122 my $size = (stat($rd))[7];
123 ($size % 24) == 0 or die "Inconsistent size: $size";
124 while (sysread($rd, my $buf, 24) == 24) {
125 my ($r, $c) = unpack('NH40', $buf);
126 my $offset = $r * 41;
127 seek $wr, 0, 2 or die $!;
129 if ($pos < $offset) {
130 for (1 .. (($offset - $pos) / 41)) {
131 print $wr (('0' x 40),"\n") or die $!;
134 seek $wr, $offset, 0 or die $!;
135 print $wr $c,"\n" or die $!;
142 require_svnserve () {
143 if test -z "$SVNSERVE_PORT"
145 say 'skipping svnserve test. (set $SVNSERVE_PORT to enable)'
152 svnserve --listen-port $SVNSERVE_PORT \
153 --root "$rawsvnrepo" \
155 --listen-host 127.0.0.1 &