]> git.ipfire.org Git - thirdparty/git.git/blame - t/lib-git-svn.sh
Makefile: allow building without perl
[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
fae74a04 8 say 'skipping git svn tests, NO_SVN_TESTS defined'
60d02ccc 9 test_done
36f5b1f0
EW
10fi
11
b9c85187
EW
12GIT_DIR=$PWD/.git
13GIT_SVN_DIR=$GIT_DIR/svn/git-svn
14SVN_TREE=$GIT_SVN_DIR/svn-tree
15
36f5b1f0 16svn >/dev/null 2>&1
4b832e81 17if test $? -ne 1
36f5b1f0 18then
fae74a04 19 say 'skipping git svn tests, svn not found'
36f5b1f0 20 test_done
36f5b1f0
EW
21fi
22
23svnrepo=$PWD/svnrepo
cdf3ec01 24export svnrepo
36f5b1f0 25
c6d499a8
EW
26perl -w -e "
27use SVN::Core;
28use SVN::Repos;
29\$SVN::Core::VERSION gt '1.1.0' or exit(42);
cdf3ec01 30system(qw/svnadmin create --fs-type fsfs/, \$ENV{svnrepo}) == 0 or exit(41);
38434f2e 31" >&3 2>&4
c6d499a8
EW
32x=$?
33if test $x -ne 0
dc62e25c 34then
c6d499a8
EW
35 if test $x -eq 42; then
36 err='Perl SVN libraries must be >= 1.1.0'
e66191f4
EW
37 elif test $x -eq 41; then
38 err='svnadmin failed to create fsfs repository'
c6d499a8
EW
39 else
40 err='Perl SVN libraries not found or unusable, skipping test'
41 fi
fae74a04 42 say "$err"
c6d499a8 43 test_done
dc62e25c
EW
44fi
45
2edb9c5c 46rawsvnrepo="$svnrepo"
e1516119 47svnrepo="file://$svnrepo"
36f5b1f0 48
7b3fab87 49poke() {
56cf9806 50 test-chmtime +1 "$1"
7b3fab87 51}
29633bb9 52
3644da72
KB
53for d in \
54 "$SVN_HTTPD_PATH" \
55 /usr/sbin/apache2 \
56 /usr/sbin/httpd \
57; do
58 if test -f "$d"
59 then
60 SVN_HTTPD_PATH="$d"
61 break
62 fi
63done
64for d in \
65 "$SVN_HTTPD_MODULE_PATH" \
66 /usr/lib/apache2/modules \
67 /usr/libexec/apache2 \
68; do
69 if test -d "$d"
70 then
71 SVN_HTTPD_MODULE_PATH="$d"
72 break
73 fi
74done
29633bb9
EW
75
76start_httpd () {
d1a8d0ea 77 repo_base_path="$1"
29633bb9
EW
78 if test -z "$SVN_HTTPD_PORT"
79 then
80 echo >&2 'SVN_HTTPD_PORT is not defined!'
81 return
82 fi
d1a8d0ea
EW
83 if test -z "$repo_base_path"
84 then
85 repo_base_path=svn
86 fi
29633bb9
EW
87
88 mkdir "$GIT_DIR"/logs
89
90 cat > "$GIT_DIR/httpd.conf" <<EOF
1364ff27 91ServerName "git svn test"
29633bb9
EW
92ServerRoot "$GIT_DIR"
93DocumentRoot "$GIT_DIR"
94PidFile "$GIT_DIR/httpd.pid"
3644da72 95LockFile logs/accept.lock
29633bb9
EW
96Listen 127.0.0.1:$SVN_HTTPD_PORT
97LoadModule dav_module $SVN_HTTPD_MODULE_PATH/mod_dav.so
98LoadModule dav_svn_module $SVN_HTTPD_MODULE_PATH/mod_dav_svn.so
d1a8d0ea 99<Location /$repo_base_path>
29633bb9 100 DAV svn
3901a8c8 101 SVNPath "$rawsvnrepo"
29633bb9
EW
102</Location>
103EOF
104 "$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf -k start
d1a8d0ea 105 svnrepo="http://127.0.0.1:$SVN_HTTPD_PORT/$repo_base_path"
29633bb9
EW
106}
107
108stop_httpd () {
109 test -z "$SVN_HTTPD_PORT" && return
110 "$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf -k stop
111}
060610c5
EW
112
113convert_to_rev_db () {
114 perl -w -- - "$@" <<\EOF
115use strict;
116@ARGV == 2 or die "Usage: convert_to_rev_db <input> <output>";
117open my $wr, '+>', $ARGV[1] or die "$!: couldn't open: $ARGV[1]";
118open my $rd, '<', $ARGV[0] or die "$!: couldn't open: $ARGV[0]";
119my $size = (stat($rd))[7];
120($size % 24) == 0 or die "Inconsistent size: $size";
121while (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 $!;
125 my $pos = tell $wr;
126 if ($pos < $offset) {
127 for (1 .. (($offset - $pos) / 41)) {
128 print $wr (('0' x 40),"\n") or die $!;
129 }
130 }
131 seek $wr, $offset, 0 or die $!;
132 print $wr $c,"\n" or die $!;
133}
134close $wr or die $!;
135close $rd or die $!;
136EOF
137}
dd9da51f
AB
138
139require_svnserve () {
140 if test -z "$SVNSERVE_PORT"
141 then
142 say 'skipping svnserve test. (set $SVNSERVE_PORT to enable)'
143 test_done
dd9da51f
AB
144 fi
145}
146
147start_svnserve () {
148 svnserve --listen-port $SVNSERVE_PORT \
149 --root "$rawsvnrepo" \
150 --listen-once \
151 --listen-host 127.0.0.1 &
152}
153