merge-recursive: demonstrate an incorrect conflict with submodule
[git/dscho.git] / t / t1402-check-ref-format.sh
blobeb45afb018f6e3849204b44cce06ae1a4e2e29aa
1 #!/bin/sh
3 test_description='Test git check-ref-format'
5 . ./test-lib.sh
7 valid_ref() {
8 test_expect_success "ref name '$1' is valid" \
9 "git check-ref-format '$1'"
11 invalid_ref() {
12 test_expect_success "ref name '$1' is not valid" \
13 "test_must_fail git check-ref-format '$1'"
16 valid_ref 'heads/foo'
17 invalid_ref 'foo'
18 valid_ref 'foo/bar/baz'
19 valid_ref 'refs///heads/foo'
20 invalid_ref 'heads/foo/'
21 invalid_ref './foo'
22 invalid_ref '.refs/foo'
23 invalid_ref 'heads/foo..bar'
24 invalid_ref 'heads/foo?bar'
25 valid_ref 'foo./bar'
26 invalid_ref 'heads/foo.lock'
27 valid_ref 'heads/foo@bar'
28 invalid_ref 'heads/v@{ation'
29 invalid_ref 'heads/foo\bar'
31 test_expect_success "check-ref-format --branch @{-1}" '
32 T=$(git write-tree) &&
33 sha1=$(echo A | git commit-tree $T) &&
34 git update-ref refs/heads/master $sha1 &&
35 git update-ref refs/remotes/origin/master $sha1
36 git checkout master &&
37 git checkout origin/master &&
38 git checkout master &&
39 refname=$(git check-ref-format --branch @{-1}) &&
40 test "$refname" = "$sha1" &&
41 refname2=$(git check-ref-format --branch @{-2}) &&
42 test "$refname2" = master'
44 valid_ref_normalized() {
45 test_expect_success "ref name '$1' simplifies to '$2'" "
46 refname=\$(git check-ref-format --print '$1') &&
47 test \"\$refname\" = '$2'"
49 invalid_ref_normalized() {
50 test_expect_success "check-ref-format --print rejects '$1'" "
51 test_must_fail git check-ref-format --print '$1'"
54 valid_ref_normalized 'heads/foo' 'heads/foo'
55 valid_ref_normalized 'refs///heads/foo' 'refs/heads/foo'
56 invalid_ref_normalized 'foo'
57 invalid_ref_normalized 'heads/foo/../bar'
58 invalid_ref_normalized 'heads/./foo'
59 invalid_ref_normalized 'heads\foo'
61 test_done