3 if test -n "$NO_SVN_TESTS"
5 test_expect_success 'skipping git-svn tests, NO_SVN_TESTS defined' :
11 GIT_SVN_DIR=$GIT_DIR/svn/git-svn
12 SVN_TREE=$GIT_SVN_DIR/svn-tree
17 test_expect_success 'skipping git-svn tests, svn not found' :
28 \$SVN::Core::VERSION gt '1.1.0' or exit(42);
29 system(qw/svnadmin create --fs-type fsfs/, \$ENV{svnrepo}) == 0 or exit(41);
34 if test $x -eq 42; then
35 err='Perl SVN libraries must be >= 1.1.0'
36 elif test $x -eq 41; then
37 err='svnadmin failed to create fsfs repository'
39 err='Perl SVN libraries not found or unusable, skipping test'
41 test_expect_success "$err" :
47 svnrepo="file://$svnrepo"
65 "$SVN_HTTPD_MODULE_PATH" \
66 /usr/lib/apache2/modules \
67 /usr/libexec/apache2 \
71 SVN_HTTPD_MODULE_PATH="$d"
78 if test -z "$SVN_HTTPD_PORT"
80 echo >&2 'SVN_HTTPD_PORT is not defined!'
83 if test -z "$repo_base_path"
90 cat > "$GIT_DIR/httpd.conf" <<EOF
91 ServerName "git-svn test"
93 DocumentRoot "$GIT_DIR"
94 PidFile "$GIT_DIR/httpd.pid"
95 LockFile logs/accept.lock
96 Listen 127.0.0.1:$SVN_HTTPD_PORT
97 LoadModule dav_module $SVN_HTTPD_MODULE_PATH/mod_dav.so
98 LoadModule dav_svn_module $SVN_HTTPD_MODULE_PATH/mod_dav_svn.so
99 <Location /$repo_base_path>
104 "$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf -k start
105 svnrepo="http://127.0.0.1:$SVN_HTTPD_PORT/$repo_base_path"
109 test -z "$SVN_HTTPD_PORT" && return
110 "$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf -k stop
113 convert_to_rev_db () {
114 perl -w -- - "$@" <<\EOF
116 @ARGV == 2 or die "Usage: convert_to_rev_db <input> <output>";
117 open my $wr, '+>', $ARGV[1] or die "$!: couldn't open: $ARGV[1]";
118 open my $rd, '<', $ARGV[0] or die "$!: couldn't open: $ARGV[0]";
119 my $size = (stat($rd))[7];
120 ($size % 24) == 0 or die "Inconsistent size: $size";
121 while (sysread($rd, my $buf, 24) == 24) {
122 my ($r, $c) = unpack('NH40', $buf);
123 my $offset = $r * 41;
124 seek $wr, 0, 2 or die $!;
126 if ($pos < $offset) {
127 for (1 .. (($offset - $pos) / 41)) {
128 print $wr (('0' x 40),"\n") or die $!;
131 seek $wr, $offset, 0 or die $!;
132 print $wr $c,"\n" or die $!;