Clarify and correct -z
[git/dscho.git] / t / t9143-git-svn-gc.sh
blob99f69c6a0b8c7d3eea5211db333d0be41f9f5fa4
1 #!/bin/sh
3 # Copyright (c) 2009 Robert Allan Zeh
5 test_description='git svn gc basic tests'
7 . ./lib-git-svn.sh
9 test_expect_success 'setup directories and test repo' '
10 mkdir import &&
11 mkdir tmp &&
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' '
21 cd test_wc &&
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/refs/remotes/git-svn/unhandled.log tmp
34 test_expect_success 'create leftover index' '> .git/svn/refs/remotes/git-svn/index'
36 test_expect_success 'git svn gc runs' 'git svn gc'
38 test_expect_success 'git svn index removed' '! test -f .git/svn/refs/remotes/git-svn/index'
40 if perl -MCompress::Zlib -e 0 2>/dev/null
41 then
42 test_expect_success 'git svn gc produces a valid gzip file' '
43 gunzip .git/svn/refs/remotes/git-svn/unhandled.log.gz
45 else
46 say "Perl Compress::Zlib unavailable, skipping gunzip test"
49 test_expect_success 'git svn gc does not change unhandled.log files' '
50 test_cmp .git/svn/refs/remotes/git-svn/unhandled.log tmp/unhandled.log
53 test_done