exec_cmd: remove unused extern
[git/dscho.git] / t / lib-git-svn.sh
blob6a9d9757239f0476422b1a97228927b1ba1ac934
1 . ./test-lib.sh
3 remotes_git_svn=remotes/git""-svn
4 git_svn_id=git""-svn-id
6 if test -n "$NO_SVN_TESTS"
7 then
8 skip_all='skipping git svn tests, NO_SVN_TESTS defined'
9 test_done
11 if ! test_have_prereq PERL; then
12 skip_all='skipping git svn tests, perl not available'
13 test_done
16 GIT_DIR=$PWD/.git
17 GIT_SVN_DIR=$GIT_DIR/svn/refs/remotes/git-svn
18 SVN_TREE=$GIT_SVN_DIR/svn-tree
20 svn >/dev/null 2>&1
21 if test $? -ne 1
22 then
23 skip_all='skipping git svn tests, svn not found'
24 test_done
27 svnrepo=$PWD/svnrepo
28 export svnrepo
29 svnconf=$PWD/svnconf
30 export svnconf
32 "$PERL_PATH" -w -e "
33 use SVN::Core;
34 use SVN::Repos;
35 \$SVN::Core::VERSION gt '1.1.0' or exit(42);
36 system(qw/svnadmin create --fs-type fsfs/, \$ENV{svnrepo}) == 0 or exit(41);
37 " >&3 2>&4
38 x=$?
39 if test $x -ne 0
40 then
41 if test $x -eq 42; then
42 skip_all='Perl SVN libraries must be >= 1.1.0'
43 elif test $x -eq 41; then
44 skip_all='svnadmin failed to create fsfs repository'
45 else
46 skip_all='Perl SVN libraries not found or unusable'
48 test_done
51 rawsvnrepo="$svnrepo"
52 svnrepo="file://$svnrepo"
54 poke() {
55 test-chmtime +1 "$1"
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.
61 svn_cmd () {
62 [ -d "$svnconf" ] || mkdir "$svnconf"
63 orig_svncmd="$1"; shift
64 if [ -z "$orig_svncmd" ]; then
65 svn
66 return
68 svn "$orig_svncmd" --config-dir "$svnconf" "$@"
71 if test -n "$SVN_HTTPD_PORT"
72 then
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
83 done
84 if test -z "$SVN_HTTPD_PATH"
85 then
86 skip_all='skipping git svn tests, Apache not found'
87 test_done
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
99 done
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
107 start_httpd () {
108 repo_base_path="$1"
109 if test -z "$SVN_HTTPD_PORT"
110 then
111 echo >&2 'SVN_HTTPD_PORT is not defined!'
112 return
114 if test -z "$repo_base_path"
115 then
116 repo_base_path=svn
119 mkdir "$GIT_DIR"/logs
121 cat > "$GIT_DIR/httpd.conf" <<EOF
122 ServerName "git svn test"
123 ServerRoot "$GIT_DIR"
124 DocumentRoot "$GIT_DIR"
125 PidFile "$GIT_DIR/httpd.pid"
126 LockFile logs/accept.lock
127 Listen 127.0.0.1:$SVN_HTTPD_PORT
128 LoadModule dav_module $SVN_HTTPD_MODULE_PATH/mod_dav.so
129 LoadModule dav_svn_module $SVN_HTTPD_MODULE_PATH/mod_dav_svn.so
130 <Location /$repo_base_path>
131 DAV svn
132 SVNPath "$rawsvnrepo"
133 </Location>
135 "$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf -k start
136 svnrepo="http://127.0.0.1:$SVN_HTTPD_PORT/$repo_base_path"
139 stop_httpd () {
140 test -z "$SVN_HTTPD_PORT" && return
141 "$SVN_HTTPD_PATH" -f "$GIT_DIR"/httpd.conf -k stop
144 convert_to_rev_db () {
145 "$PERL_PATH" -w -- - "$@" <<\EOF
146 use strict;
147 @ARGV == 2 or die "Usage: convert_to_rev_db <input> <output>";
148 open my $wr, '+>', $ARGV[1] or die "$!: couldn't open: $ARGV[1]";
149 open my $rd, '<', $ARGV[0] or die "$!: couldn't open: $ARGV[0]";
150 my $size = (stat($rd))[7];
151 ($size % 24) == 0 or die "Inconsistent size: $size";
152 while (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 $!;
162 seek $wr, $offset, 0 or die $!;
163 print $wr $c,"\n" or die $!;
165 close $wr or die $!;
166 close $rd or die $!;
170 require_svnserve () {
171 if test -z "$SVNSERVE_PORT"
172 then
173 skip_all='skipping svnserve test. (set $SVNSERVE_PORT to enable)'
174 test_done
178 start_svnserve () {
179 svnserve --listen-port $SVNSERVE_PORT \
180 --root "$rawsvnrepo" \
181 --listen-once \
182 --listen-host 127.0.0.1 &