3 # Copyright (c) 2009 Robert Allan Zeh
5 test_description='git svn gc basic tests'
9 test_expect_success 'setup directories and test repo' '
12 echo "Sample text for Subversion repository." > import/test.txt &&
13 svn_cmd import -m "import for git svn" import "$svnrepo" > /dev/null
16 test_expect_success 'checkout working copy from svn' \
17 'svn_cmd co "$svnrepo" test_wc'
19 test_expect_success 'set some properties to create an unhandled.log file' '
22 svn_cmd propset foo bar test.txt &&
23 svn_cmd commit -m "property set"
26 test_expect_success 'Setup repo' 'git svn init "$svnrepo"'
28 test_expect_success 'Fetch repo' 'git svn fetch'
30 test_expect_success 'make backup copy of unhandled.log' '
31 cp .git/svn/git-svn/unhandled.log tmp
34 test_expect_success 'git svn gc runs' 'git svn gc'
36 test_expect_success 'git svn gc produces a valid gzip file' '
37 gunzip .git/svn/git-svn/unhandled.log.gz
40 test_expect_success 'git svn gc does not change unhandled.log files' '
41 test_cmp .git/svn/git-svn/unhandled.log tmp/unhandled.log