]> git.ipfire.org Git - thirdparty/git.git/blame - t/lib-git-svn.sh
Merge branch 'rj/maint-test-fixes'
[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
55369342 32"$PERL_PATH" -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
b6fe9748
RJ
71if test -n "$SVN_HTTPD_PORT"
72then
73 for d in \
74 "$SVN_HTTPD_PATH" \
75 /usr/sbin/apache2 \
76 /usr/sbin/httpd \
77 ; do
78 if test -f "$d"
79 then
80 SVN_HTTPD_PATH="$d"
81 break
82 fi
83 done
cff484a9
RJ
84 if test -z "$SVN_HTTPD_PATH"
85 then
86 skip_all='skipping git svn tests, Apache not found'
87 test_done
88 fi
b6fe9748
RJ
89 for d in \
90 "$SVN_HTTPD_MODULE_PATH" \
91 /usr/lib/apache2/modules \
92 /usr/libexec/apache2 \
93 ; do
94 if test -d "$d"
95 then
96 SVN_HTTPD_MODULE_PATH="$d"
97 break
98 fi
99 done
cff484a9
RJ
100 if test -z "$SVN_HTTPD_MODULE_PATH"
101 then
102 skip_all='skipping git svn tests, Apache module dir not found'
103 test_done
104 fi
b6fe9748 105fi
29633bb9
EW
106
107start_httpd () {
d1a8d0ea 108 repo_base_path="$1"
29633bb9
EW
109 if test -z "$SVN_HTTPD_PORT"
110 then
111 echo >&2 'SVN_HTTPD_PORT is not defined!'
112 return
113 fi
d1a8d0ea
EW
114 if test -z "$repo_base_path"
115 then
116 repo_base_path=svn
117 fi
29633bb9
EW
118
119 mkdir "$GIT_DIR"/logs
120
121 cat > "$GIT_DIR/httpd.conf" <<EOF
1364ff27 122ServerName "git svn test"
29633bb9
EW
123ServerRoot "$GIT_DIR"
124DocumentRoot "$GIT_DIR"
125PidFile "$GIT_DIR/httpd.pid"
3644da72 126LockFile logs/accept.lock
29633bb9
EW
127Listen 127.0.0.1:$SVN_HTTPD_PORT
128LoadModule dav_module $SVN_HTTPD_MODULE_PATH/mod_dav.so
129LoadModule dav_svn_module $SVN_HTTPD_MODULE_PATH/mod_dav_svn.so
d1a8d0ea 130<Location /$repo_base_path>
29633bb9 131 DAV svn
3901a8c8 132 SVNPath "$rawsvnrepo"
29633bb9
EW
133</Location>
134EOF
135 "$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf -k start
d1a8d0ea 136 svnrepo="http://127.0.0.1:$SVN_HTTPD_PORT/$repo_base_path"
29633bb9
EW
137}
138
139stop_httpd () {
140 test -z "$SVN_HTTPD_PORT" && return
141 "$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf -k stop
142}
060610c5
EW
143
144convert_to_rev_db () {
55369342 145 "$PERL_PATH" -w -- - "$@" <<\EOF
060610c5
EW
146use strict;
147@ARGV == 2 or die "Usage: convert_to_rev_db <input> <output>";
148open my $wr, '+>', $ARGV[1] or die "$!: couldn't open: $ARGV[1]";
149open my $rd, '<', $ARGV[0] or die "$!: couldn't open: $ARGV[0]";
150my $size = (stat($rd))[7];
151($size % 24) == 0 or die "Inconsistent size: $size";
152while (sysread($rd, my $buf, 24) == 24) {
153 my ($r, $c) = unpack('NH40', $buf);
154 my $offset = $r * 41;
155 seek $wr, 0, 2 or die $!;
156 my $pos = tell $wr;
157 if ($pos < $offset) {
158 for (1 .. (($offset - $pos) / 41)) {
159 print $wr (('0' x 40),"\n") or die $!;
160 }
161 }
162 seek $wr, $offset, 0 or die $!;
163 print $wr $c,"\n" or die $!;
164}
165close $wr or die $!;
166close $rd or die $!;
167EOF
168}
dd9da51f
AB
169
170require_svnserve () {
171 if test -z "$SVNSERVE_PORT"
172 then
e8344e86 173 skip_all='skipping svnserve test. (set $SVNSERVE_PORT to enable)'
dd9da51f 174 test_done
dd9da51f
AB
175 fi
176}
177
178start_svnserve () {
179 svnserve --listen-port $SVNSERVE_PORT \
180 --root "$rawsvnrepo" \
181 --listen-once \
182 --listen-host 127.0.0.1 &
183}
184