1#!/bin/sh 2# 3# Copyright (c) 2007 Eric Wong 4# 5 6# Don't run this test by default unless the user really wants it 7# I don't like the idea of taking a port and possibly leaving a 8# daemon running on a users system if the test fails. 9# Not all git users will need to interact with SVN. 10 11test_description='git-svn dcommit new files over svn:// test' 12 13. ./lib-git-svn.sh 14 15iftest -z"$SVNSERVE_PORT" 16then 17 say 'skipping svnserve test. (set$SVNSERVE_PORTto enable)' 18 test_done 19exit 20fi 21 22start_svnserve () { 23 svnserve --listen-port$SVNSERVE_PORT \ 24--root"$rawsvnrepo" \ 25--listen-once \ 26--listen-host127.0.0.1& 27} 28 29test_expect_success 'start tracking an empty repo'' 30 svn mkdir -m "empty dir" "$svnrepo"/empty-dir && 31 echo anon-access = write >> "$rawsvnrepo"/conf/svnserve.conf && 32 start_svnserve && 33 git svn init svn://127.0.0.1:$SVNSERVE_PORT&& 34 git svn fetch 35 ' 36 37test_expect_success 'create files in new directory with dcommit'" 38 mkdir git-new-dir && 39 echo hello > git-new-dir/world && 40 git update-index --add git-new-dir/world && 41 git commit -m hello && 42 start_svnserve && 43 git svn dcommit 44 " 45 46test_done