git-tar-tree: no more void pointer arithmetic
[git.git] / t / t3200-branch.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2005 Amos Waterland
4 #
5
6 test_description='git branch --foo should not create bogus branch
7
8 This test runs git branch --help and checks that the argument is properly
9 handled.  Specifically, that a bogus branch is not created.
10 '
11 . ./test-lib.sh
12
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)'
19
20 test_expect_success \
21     'git branch --help should return success now.' \
22     'git-branch --help'
23
24 test_expect_failure \
25     'git branch --help should not have created a bogus branch' \
26     'test -f .git/refs/heads/--help'
27
28 test_expect_success \
29     'git branch abc should create a branch' \
30     'git-branch abc && test -f .git/refs/heads/abc'
31
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'
35
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'
46
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'
52
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'
63
64 test_done