Rename the test trash directory to contain spaces.
[git/bdonlan.git] / t / lib-git-svn.sh
blob445df78cac05230df89a3efb1d5753589400aa32
1 . ./test-lib.sh
3 if test -n "$NO_SVN_TESTS"
4 then
5 test_expect_success 'skipping git-svn tests, NO_SVN_TESTS defined' :
6 test_done
7 exit
8 fi
10 GIT_DIR=$PWD/.git
11 GIT_SVN_DIR=$GIT_DIR/svn/git-svn
12 SVN_TREE=$GIT_SVN_DIR/svn-tree
14 svn >/dev/null 2>&1
15 if test $? -ne 1
16 then
17 test_expect_success 'skipping git-svn tests, svn not found' :
18 test_done
19 exit
22 svnrepo=$PWD/svnrepo
23 export svnrepo
25 perl -w -e "
26 use SVN::Core;
27 use SVN::Repos;
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);
30 " >&3 2>&4
31 x=$?
32 if test $x -ne 0
33 then
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'
38 else
39 err='Perl SVN libraries not found or unusable, skipping test'
41 test_expect_success "$err" :
42 test_done
43 exit
46 rawsvnrepo="$svnrepo"
47 svnrepo="file://$svnrepo"
49 poke() {
50 test-chmtime +1 "$1"
53 for 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
63 done
64 for 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
74 done
76 start_httpd () {
77 if test -z "$SVN_HTTPD_PORT"
78 then
79 echo >&2 'SVN_HTTPD_PORT is not defined!'
80 return
83 mkdir "$GIT_DIR"/logs
85 cat > "$GIT_DIR/httpd.conf" <<EOF
86 ServerName "git-svn test"
87 ServerRoot "$GIT_DIR"
88 DocumentRoot "$GIT_DIR"
89 PidFile "$GIT_DIR/httpd.pid"
90 LockFile logs/accept.lock
91 Listen 127.0.0.1:$SVN_HTTPD_PORT
92 LoadModule dav_module $SVN_HTTPD_MODULE_PATH/mod_dav.so
93 LoadModule dav_svn_module $SVN_HTTPD_MODULE_PATH/mod_dav_svn.so
94 <Location /svn>
95 DAV svn
96 SVNPath $rawsvnrepo
97 </Location>
98 EOF
99 "$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf -k start
100 svnrepo=http://127.0.0.1:$SVN_HTTPD_PORT/svn
103 stop_httpd () {
104 test -z "$SVN_HTTPD_PORT" && return
105 "$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf -k stop
108 convert_to_rev_db () {
109 perl -w -- - "$@" <<\EOF
110 use strict;
111 @ARGV == 2 or die "Usage: convert_to_rev_db <input> <output>";
112 open my $wr, '+>', $ARGV[1] or die "$!: couldn't open: $ARGV[1]";
113 open my $rd, '<', $ARGV[0] or die "$!: couldn't open: $ARGV[0]";
114 my $size = (stat($rd))[7];
115 ($size % 24) == 0 or die "Inconsistent size: $size";
116 while (sysread($rd, my $buf, 24) == 24) {
117 my ($r, $c) = unpack('NH40', $buf);
118 my $offset = $r * 41;
119 seek $wr, 0, 2 or die $!;
120 my $pos = tell $wr;
121 if ($pos < $offset) {
122 for (1 .. (($offset - $pos) / 41)) {
123 print $wr (('0' x 40),"\n") or die $!;
126 seek $wr, $offset, 0 or die $!;
127 print $wr $c,"\n" or die $!;
129 close $wr or die $!;
130 close $rd or die $!;