]> git.ipfire.org Git - thirdparty/git.git/blame - t/lib-git-svn.sh
Merge branch 'maint'
[thirdparty/git.git] / t / lib-git-svn.sh
CommitLineData
60d02ccc
EW
1. ./test-lib.sh
2
16805d3e
NS
3remotes_git_svn=remotes/git""-svn
4git_svn_id=git""-svn-id
5
60d02ccc 6if test -n "$NO_SVN_TESTS"
36f5b1f0 7then
fadb5156 8 skip_all='skipping git svn tests, NO_SVN_TESTS defined'
60d02ccc 9 test_done
36f5b1f0 10fi
1b19ccd2 11if ! test_have_prereq PERL; then
fadb5156 12 skip_all='skipping git svn tests, perl not available'
1b19ccd2
JK
13 test_done
14fi
36f5b1f0 15
b9c85187 16GIT_DIR=$PWD/.git
6f5748e1 17GIT_SVN_DIR=$GIT_DIR/svn/refs/remotes/git-svn
b9c85187
EW
18SVN_TREE=$GIT_SVN_DIR/svn-tree
19
36f5b1f0 20svn >/dev/null 2>&1
4b832e81 21if test $? -ne 1
36f5b1f0 22then
e8344e86 23 skip_all='skipping git svn tests, svn not found'
36f5b1f0 24 test_done
36f5b1f0
EW
25fi
26
27svnrepo=$PWD/svnrepo
cdf3ec01 28export svnrepo
da083d68
ER
29svnconf=$PWD/svnconf
30export svnconf
36f5b1f0 31
94221d22 32perl -w -e "
c6d499a8
EW
33use SVN::Core;
34use SVN::Repos;
35\$SVN::Core::VERSION gt '1.1.0' or exit(42);
cdf3ec01 36system(qw/svnadmin create --fs-type fsfs/, \$ENV{svnrepo}) == 0 or exit(41);
38434f2e 37" >&3 2>&4
c6d499a8
EW
38x=$?
39if test $x -ne 0
dc62e25c 40then
c6d499a8 41 if test $x -eq 42; then
e8344e86 42 skip_all='Perl SVN libraries must be >= 1.1.0'
e66191f4 43 elif test $x -eq 41; then
e8344e86 44 skip_all='svnadmin failed to create fsfs repository'
c6d499a8 45 else
e8344e86 46 skip_all='Perl SVN libraries not found or unusable'
c6d499a8 47 fi
c6d499a8 48 test_done
dc62e25c
EW
49fi
50
2edb9c5c 51rawsvnrepo="$svnrepo"
e1516119 52svnrepo="file://$svnrepo"
36f5b1f0 53
7b3fab87 54poke() {
56cf9806 55 test-chmtime +1 "$1"
7b3fab87 56}
29633bb9 57
da083d68
ER
58# We need this, because we should pass empty configuration directory to
59# the 'svn commit' to avoid automated property changes and other stuff
60# that could be set from user's configuration files in ~/.subversion.
61svn_cmd () {
62 [ -d "$svnconf" ] || mkdir "$svnconf"
63 orig_svncmd="$1"; shift
64 if [ -z "$orig_svncmd" ]; then
65 svn
66 return
67 fi
68 svn "$orig_svncmd" --config-dir "$svnconf" "$@"
69}
70
3aa30471 71prepare_httpd () {
b6fe9748
RJ
72 for d in \
73 "$SVN_HTTPD_PATH" \
74 /usr/sbin/apache2 \
75 /usr/sbin/httpd \
76 ; do
77 if test -f "$d"
78 then
79 SVN_HTTPD_PATH="$d"
80 break
81 fi
82 done
cff484a9
RJ
83 if test -z "$SVN_HTTPD_PATH"
84 then
3aa30471
RJ
85 echo >&2 '*** error: Apache not found'
86 return 1
cff484a9 87 fi
b6fe9748
RJ
88 for d in \
89 "$SVN_HTTPD_MODULE_PATH" \
90 /usr/lib/apache2/modules \
91 /usr/libexec/apache2 \
92 ; do
93 if test -d "$d"
94 then
95 SVN_HTTPD_MODULE_PATH="$d"
96 break
97 fi
98 done
cff484a9
RJ
99 if test -z "$SVN_HTTPD_MODULE_PATH"
100 then
3aa30471
RJ
101 echo >&2 '*** error: Apache module dir not found'
102 return 1
29633bb9 103 fi
3aa30471 104 if test ! -f "$SVN_HTTPD_MODULE_PATH/mod_dav_svn.so"
d1a8d0ea 105 then
3aa30471
RJ
106 echo >&2 '*** error: Apache module "mod_dav_svn" not found'
107 return 1
d1a8d0ea 108 fi
29633bb9 109
3aa30471 110 repo_base_path="${1-svn}"
29633bb9
EW
111 mkdir "$GIT_DIR"/logs
112
113 cat > "$GIT_DIR/httpd.conf" <<EOF
1364ff27 114ServerName "git svn test"
29633bb9
EW
115ServerRoot "$GIT_DIR"
116DocumentRoot "$GIT_DIR"
117PidFile "$GIT_DIR/httpd.pid"
3644da72 118LockFile logs/accept.lock
29633bb9
EW
119Listen 127.0.0.1:$SVN_HTTPD_PORT
120LoadModule dav_module $SVN_HTTPD_MODULE_PATH/mod_dav.so
121LoadModule dav_svn_module $SVN_HTTPD_MODULE_PATH/mod_dav_svn.so
d1a8d0ea 122<Location /$repo_base_path>
29633bb9 123 DAV svn
3901a8c8 124 SVNPath "$rawsvnrepo"
29633bb9
EW
125</Location>
126EOF
3aa30471
RJ
127}
128
129start_httpd () {
130 if test -z "$SVN_HTTPD_PORT"
131 then
132 echo >&2 'SVN_HTTPD_PORT is not defined!'
133 return
134 fi
135
136 prepare_httpd "$1" || return 1
137
29633bb9 138 "$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf -k start
d1a8d0ea 139 svnrepo="http://127.0.0.1:$SVN_HTTPD_PORT/$repo_base_path"
29633bb9
EW
140}
141
142stop_httpd () {
143 test -z "$SVN_HTTPD_PORT" && return
3aa30471 144 test ! -f "$GIT_DIR/httpd.conf" && return
29633bb9
EW
145 "$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf -k stop
146}
060610c5
EW
147
148convert_to_rev_db () {
94221d22 149 perl -w -- - "$@" <<\EOF
060610c5 150use strict;
b978403a 151@ARGV == 2 or die "usage: convert_to_rev_db <input> <output>";
060610c5
EW
152open my $wr, '+>', $ARGV[1] or die "$!: couldn't open: $ARGV[1]";
153open my $rd, '<', $ARGV[0] or die "$!: couldn't open: $ARGV[0]";
154my $size = (stat($rd))[7];
155($size % 24) == 0 or die "Inconsistent size: $size";
156while (sysread($rd, my $buf, 24) == 24) {
157 my ($r, $c) = unpack('NH40', $buf);
158 my $offset = $r * 41;
159 seek $wr, 0, 2 or die $!;
160 my $pos = tell $wr;
161 if ($pos < $offset) {
162 for (1 .. (($offset - $pos) / 41)) {
163 print $wr (('0' x 40),"\n") or die $!;
164 }
165 }
166 seek $wr, $offset, 0 or die $!;
167 print $wr $c,"\n" or die $!;
168}
169close $wr or die $!;
170close $rd or die $!;
171EOF
172}
dd9da51f
AB
173
174require_svnserve () {
175 if test -z "$SVNSERVE_PORT"
176 then
e8344e86 177 skip_all='skipping svnserve test. (set $SVNSERVE_PORT to enable)'
dd9da51f 178 test_done
dd9da51f
AB
179 fi
180}
181
182start_svnserve () {
183 svnserve --listen-port $SVNSERVE_PORT \
184 --root "$rawsvnrepo" \
185 --listen-once \
186 --listen-host 127.0.0.1 &
187}
188