Remove empty ref directories that prevent creating a ref.
[git/dscho.git] / t / t3200-branch.sh
blob6907cbcd295614bf895ef2a8d0be59e08e570f09
1 #!/bin/sh
3 # Copyright (c) 2005 Amos Waterland
6 test_description='git branch --foo should not create bogus branch
8 This test runs git branch --help and checks that the argument is properly
9 handled. Specifically, that a bogus branch is not created.
11 . ./test-lib.sh
13 test_expect_success \
14 'prepare an trivial repository' \
15 'echo Hello > A &&
16 git-update-index --add A &&
17 git-commit -m "Initial commit." &&
18 HEAD=$(git-rev-parse --verify HEAD)'
20 test_expect_success \
21 'git branch --help should return success now.' \
22 'git-branch --help'
24 test_expect_failure \
25 'git branch --help should not have created a bogus branch' \
26 'test -f .git/refs/heads/--help'
28 test_expect_success \
29 'git branch abc should create a branch' \
30 'git-branch abc && test -f .git/refs/heads/abc'
32 test_expect_success \
33 'git branch a/b/c should create a branch' \
34 'git-branch a/b/c && test -f .git/refs/heads/a/b/c'
36 cat >expect <<EOF
37 0000000000000000000000000000000000000000 $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000 branch: Created from HEAD
38 EOF
39 test_expect_success \
40 'git branch -l d/e/f should create a branch and a log' \
41 'GIT_COMMITTER_DATE="2005-05-26 23:30" \
42 git-branch -l d/e/f &&
43 test -f .git/refs/heads/d/e/f &&
44 test -f .git/logs/refs/heads/d/e/f &&
45 diff expect .git/logs/refs/heads/d/e/f'
47 test_expect_success \
48 'git branch -d d/e/f should delete a branch and a log' \
49 'git-branch -d d/e/f &&
50 test ! -f .git/refs/heads/d/e/f &&
51 test ! -f .git/logs/refs/heads/d/e/f'
53 cat >expect <<EOF
54 0000000000000000000000000000000000000000 $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000 checkout: Created from master^0
55 EOF
56 test_expect_success \
57 'git checkout -b g/h/i -l should create a branch and a log' \
58 'GIT_COMMITTER_DATE="2005-05-26 23:30" \
59 git-checkout -b g/h/i -l master &&
60 test -f .git/refs/heads/g/h/i &&
61 test -f .git/logs/refs/heads/g/h/i &&
62 diff expect .git/logs/refs/heads/g/h/i'
64 test_expect_success \
65 'git branch j/k should work after branch j has been deleted' \
66 'git-branch j &&
67 git-branch -d j &&
68 git-branch j/k'
70 test_expect_success \
71 'git branch l should work after branch l/m has been deleted' \
72 'git-branch l/m &&
73 git-branch -d l/m &&
74 git-branch l'
76 test_done