]> git.ipfire.org Git - thirdparty/git.git/blob - t/t6120-describe.sh
git-cvsserver: allow regex metacharacters in CVSROOT
[thirdparty/git.git] / t / t6120-describe.sh
1 #!/bin/sh
2
3 test_description='test describe
4
5 B
6 .--------------o----o----o----x
7 / / /
8 o----o----o----o----o----. /
9 \ A c /
10 .------------o---o---o
11 D e
12 '
13 . ./test-lib.sh
14
15 check_describe () {
16 expect="$1"
17 shift
18 R=$(git describe "$@" 2>err.actual)
19 S=$?
20 cat err.actual >&3
21 test_expect_success "describe $*" '
22 test $S = 0 &&
23 case "$R" in
24 $expect) echo happy ;;
25 *) echo "Oops - $R is not $expect";
26 false ;;
27 esac
28 '
29 }
30
31 test_expect_success setup '
32
33 test_tick &&
34 echo one >file && git add file && git commit -m initial &&
35 one=$(git rev-parse HEAD) &&
36
37 git describe --always HEAD &&
38
39 test_tick &&
40 echo two >file && git add file && git commit -m second &&
41 two=$(git rev-parse HEAD) &&
42
43 test_tick &&
44 echo three >file && git add file && git commit -m third &&
45
46 test_tick &&
47 echo A >file && git add file && git commit -m A &&
48 test_tick &&
49 git tag -a -m A A &&
50
51 test_tick &&
52 echo c >file && git add file && git commit -m c &&
53 test_tick &&
54 git tag c &&
55
56 git reset --hard $two &&
57 test_tick &&
58 echo B >side && git add side && git commit -m B &&
59 test_tick &&
60 git tag -a -m B B &&
61
62 test_tick &&
63 git merge -m Merged c &&
64 merged=$(git rev-parse HEAD) &&
65
66 git reset --hard $two &&
67 test_tick &&
68 echo D >another && git add another && git commit -m D &&
69 test_tick &&
70 git tag -a -m D D &&
71
72 test_tick &&
73 echo DD >another && git commit -a -m another &&
74
75 test_tick &&
76 git tag e &&
77
78 test_tick &&
79 echo DDD >another && git commit -a -m "yet another" &&
80
81 test_tick &&
82 git merge -m Merged $merged &&
83
84 test_tick &&
85 echo X >file && echo X >side && git add file side &&
86 git commit -m x
87
88 '
89
90 check_describe A-* HEAD
91 check_describe A-* HEAD^
92 check_describe D-* HEAD^^
93 check_describe A-* HEAD^^2
94 check_describe B HEAD^^2^
95
96 check_describe c-* --tags HEAD
97 check_describe c-* --tags HEAD^
98 check_describe e-* --tags HEAD^^
99 check_describe c-* --tags HEAD^^2
100 check_describe B --tags HEAD^^2^
101
102 check_describe B-0-* --long HEAD^^2^
103 check_describe A-3-* --long HEAD^^2
104
105 : >err.expect
106 check_describe A --all A^0
107 test_expect_success 'no warning was displayed for A' '
108 test_cmp err.expect err.actual
109 '
110
111 test_expect_success 'rename tag A to Q locally' '
112 mv .git/refs/tags/A .git/refs/tags/Q
113 '
114 cat - >err.expect <<EOF
115 warning: tag 'A' is really 'Q' here
116 EOF
117 check_describe A-* HEAD
118 test_expect_success 'warning was displayed for Q' '
119 test_cmp err.expect err.actual
120 '
121 test_expect_success 'rename tag Q back to A' '
122 mv .git/refs/tags/Q .git/refs/tags/A
123 '
124
125 test_expect_success 'pack tag refs' 'git pack-refs'
126 check_describe A-* HEAD
127
128 test_expect_success 'set-up matching pattern tests' '
129 git tag -a -m test-annotated test-annotated &&
130 echo >>file &&
131 test_tick &&
132 git commit -a -m "one more" &&
133 git tag test1-lightweight &&
134 echo >>file &&
135 test_tick &&
136 git commit -a -m "yet another" &&
137 git tag test2-lightweight &&
138 echo >>file &&
139 test_tick &&
140 git commit -a -m "even more"
141
142 '
143
144 check_describe "test-annotated-*" --match="test-*"
145
146 check_describe "test1-lightweight-*" --tags --match="test1-*"
147
148 check_describe "test2-lightweight-*" --tags --match="test2-*"
149
150 check_describe "test2-lightweight-*" --long --tags --match="test2-*" HEAD^
151
152 test_done