]> git.ipfire.org Git - thirdparty/git.git/blame - t/lib-git-svn.sh
svn: initial "master" points to trunk if possible
[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 10fi
1b19ccd2
JK
11if ! test_have_prereq PERL; then
12 say 'skipping git svn tests, perl not available'
13 test_done
14fi
36f5b1f0 15
b9c85187
EW
16GIT_DIR=$PWD/.git
17GIT_SVN_DIR=$GIT_DIR/svn/git-svn
18SVN_TREE=$GIT_SVN_DIR/svn-tree
19
36f5b1f0 20svn >/dev/null 2>&1
4b832e81 21if test $? -ne 1
36f5b1f0 22then
fae74a04 23 say '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
c6d499a8
EW
32perl -w -e "
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
EW
41 if test $x -eq 42; then
42 err='Perl SVN libraries must be >= 1.1.0'
e66191f4
EW
43 elif test $x -eq 41; then
44 err='svnadmin failed to create fsfs repository'
c6d499a8
EW
45 else
46 err='Perl SVN libraries not found or unusable, skipping test'
47 fi
fae74a04 48 say "$err"
c6d499a8 49 test_done
dc62e25c
EW
50fi
51
2edb9c5c 52rawsvnrepo="$svnrepo"
e1516119 53svnrepo="file://$svnrepo"
36f5b1f0 54
7b3fab87 55poke() {
56cf9806 56 test-chmtime +1 "$1"
7b3fab87 57}
29633bb9 58
da083d68
ER
59# We need this, because we should pass empty configuration directory to
60# the 'svn commit' to avoid automated property changes and other stuff
61# that could be set from user's configuration files in ~/.subversion.
62svn_cmd () {
63 [ -d "$svnconf" ] || mkdir "$svnconf"
64 orig_svncmd="$1"; shift
65 if [ -z "$orig_svncmd" ]; then
66 svn
67 return
68 fi
69 svn "$orig_svncmd" --config-dir "$svnconf" "$@"
70}
71
3644da72
KB
72for 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
82done
83for d in \
84 "$SVN_HTTPD_MODULE_PATH" \
85 /usr/lib/apache2/modules \
86 /usr/libexec/apache2 \
87; do
88 if test -d "$d"
89 then
90 SVN_HTTPD_MODULE_PATH="$d"
91 break
92 fi
93done
29633bb9
EW
94
95start_httpd () {
d1a8d0ea 96 repo_base_path="$1"
29633bb9
EW
97 if test -z "$SVN_HTTPD_PORT"
98 then
99 echo >&2 'SVN_HTTPD_PORT is not defined!'
100 return
101 fi
d1a8d0ea
EW
102 if test -z "$repo_base_path"
103 then
104 repo_base_path=svn
105 fi
29633bb9
EW
106
107 mkdir "$GIT_DIR"/logs
108
109 cat > "$GIT_DIR/httpd.conf" <<EOF
1364ff27 110ServerName "git svn test"
29633bb9
EW
111ServerRoot "$GIT_DIR"
112DocumentRoot "$GIT_DIR"
113PidFile "$GIT_DIR/httpd.pid"
3644da72 114LockFile logs/accept.lock
29633bb9
EW
115Listen 127.0.0.1:$SVN_HTTPD_PORT
116LoadModule dav_module $SVN_HTTPD_MODULE_PATH/mod_dav.so
117LoadModule dav_svn_module $SVN_HTTPD_MODULE_PATH/mod_dav_svn.so
d1a8d0ea 118<Location /$repo_base_path>
29633bb9 119 DAV svn
3901a8c8 120 SVNPath "$rawsvnrepo"
29633bb9
EW
121</Location>
122EOF
123 "$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf -k start
d1a8d0ea 124 svnrepo="http://127.0.0.1:$SVN_HTTPD_PORT/$repo_base_path"
29633bb9
EW
125}
126
127stop_httpd () {
128 test -z "$SVN_HTTPD_PORT" && return
129 "$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf -k stop
130}
060610c5
EW
131
132convert_to_rev_db () {
133 perl -w -- - "$@" <<\EOF
134use strict;
135@ARGV == 2 or die "Usage: convert_to_rev_db <input> <output>";
136open my $wr, '+>', $ARGV[1] or die "$!: couldn't open: $ARGV[1]";
137open my $rd, '<', $ARGV[0] or die "$!: couldn't open: $ARGV[0]";
138my $size = (stat($rd))[7];
139($size % 24) == 0 or die "Inconsistent size: $size";
140while (sysread($rd, my $buf, 24) == 24) {
141 my ($r, $c) = unpack('NH40', $buf);
142 my $offset = $r * 41;
143 seek $wr, 0, 2 or die $!;
144 my $pos = tell $wr;
145 if ($pos < $offset) {
146 for (1 .. (($offset - $pos) / 41)) {
147 print $wr (('0' x 40),"\n") or die $!;
148 }
149 }
150 seek $wr, $offset, 0 or die $!;
151 print $wr $c,"\n" or die $!;
152}
153close $wr or die $!;
154close $rd or die $!;
155EOF
156}
dd9da51f
AB
157
158require_svnserve () {
159 if test -z "$SVNSERVE_PORT"
160 then
161 say 'skipping svnserve test. (set $SVNSERVE_PORT to enable)'
162 test_done
dd9da51f
AB
163 fi
164}
165
166start_svnserve () {
167 svnserve --listen-port $SVNSERVE_PORT \
168 --root "$rawsvnrepo" \
169 --listen-once \
170 --listen-host 127.0.0.1 &
171}
172