Blob


1 #!/bin/sh
2 #
3 # Copyright (c) 2019 Stefan Sperling <stsp@openbsd.org>
4 #
5 # Permission to use, copy, modify, and distribute this software for any
6 # purpose with or without fee is hereby granted, provided that the above
7 # copyright notice and this permission notice appear in all copies.
8 #
9 # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 . ./common.sh
19 function test_tag_create {
20 local testroot=`test_init tag_create`
21 local commit_id=`git_show_head $testroot/repo`
22 local tag=1.0.0
23 local tag2=2.0.0
25 # Create a tag based on repository's HEAD reference
26 got tag -m 'test' -r $testroot/repo $tag HEAD > $testroot/stdout
27 ret="$?"
28 if [ "$ret" != "0" ]; then
29 echo "got ref command failed unexpectedly"
30 test_done "$testroot" "$ret"
31 return 1
32 fi
34 tag_id=`got ref -r $testroot/repo -l \
35 | grep "^refs/tags/$tag" | tr -d ' ' | cut -d: -f2`
36 echo "Created tag $tag_id" > $testroot/stdout.expected
37 cmp -s $testroot/stdout $testroot/stdout.expected
38 ret="$?"
39 if [ "$ret" != "0" ]; then
40 diff -u $testroot/stdout.expected $testroot/stdout
41 test_done "$testroot" "$ret"
42 return 1
43 fi
45 # Ensure that Git recognizes the tag Got has created
46 (cd $testroot/repo && git checkout -q $tag)
47 ret="$?"
48 if [ "$ret" != "0" ]; then
49 echo "git checkout command failed unexpectedly"
50 test_done "$testroot" "$ret"
51 return 1
52 fi
54 # Ensure Got recognizes the new tag
55 got checkout -c $tag $testroot/repo $testroot/wt >/dev/null
56 ret="$?"
57 if [ "$ret" != "0" ]; then
58 echo "got checkout command failed unexpectedly"
59 test_done "$testroot" "$ret"
60 return 1
61 fi
63 # Create a tag based on implied worktree HEAD ref
64 (cd $testroot/wt && got tag -m 'test' $tag2 > $testroot/stdout)
65 ret="$?"
66 if [ "$ret" != "0" ]; then
67 test_done "$testroot" "$ret"
68 return 1
69 fi
71 tag_id2=`got ref -r $testroot/repo -l \
72 | grep "^refs/tags/$tag2" | tr -d ' ' | cut -d: -f2`
73 echo "Created tag $tag_id2" > $testroot/stdout.expected
74 cmp -s $testroot/stdout $testroot/stdout.expected
75 ret="$?"
76 if [ "$ret" != "0" ]; then
77 diff -u $testroot/stdout.expected $testroot/stdout
78 test_done "$testroot" "$ret"
79 return 1
80 fi
82 (cd $testroot/repo && git checkout -q $tag2)
83 ret="$?"
84 if [ "$ret" != "0" ]; then
85 echo "git checkout command failed unexpectedly"
86 test_done "$testroot" "$ret"
87 fi
89 # Attempt to create a tag pointing at a non-commit
90 local tree_id=`git_show_tree $testroot/repo`
91 (cd $testroot/wt && got tag -m 'test' foobar $tree_id \
92 2> $testroot/stderr)
93 ret="$?"
94 if [ "$ret" == "0" ]; then
95 echo "git tag command succeeded unexpectedly"
96 test_done "$testroot" "1"
97 return 1
98 fi
100 echo "got: object not found" > $testroot/stderr.expected
101 cmp -s $testroot/stderr $testroot/stderr.expected
102 ret="$?"
103 if [ "$ret" != "0" ]; then
104 diff -u $testroot/stderr.expected $testroot/stderr
105 test_done "$testroot" "$ret"
106 return 1
107 fi
109 got ref -r $testroot/repo -l > $testroot/stdout
110 echo "HEAD: $commit_id" > $testroot/stdout.expected
111 echo -n "refs/got/worktree/base-" >> $testroot/stdout.expected
112 cat $testroot/wt/.got/uuid | tr -d '\n' >> $testroot/stdout.expected
113 echo ": $commit_id" >> $testroot/stdout.expected
114 echo "refs/heads/master: $commit_id" >> $testroot/stdout.expected
115 echo "refs/tags/$tag: $tag_id" >> $testroot/stdout.expected
116 echo "refs/tags/$tag2: $tag_id2" >> $testroot/stdout.expected
117 cmp -s $testroot/stdout $testroot/stdout.expected
118 ret="$?"
119 if [ "$ret" != "0" ]; then
120 diff -u $testroot/stdout.expected $testroot/stdout
121 fi
122 test_done "$testroot" "$ret"
125 function test_tag_list {
126 local testroot=`test_init tag_list`
127 local commit_id=`git_show_head $testroot/repo`
128 local tag=1.0.0
129 local tag2=2.0.0
131 # create tag with Git
132 (cd $testroot/repo && git tag -a -m 'test' $tag)
133 # create tag with Got
134 (cd $testroot/repo && got tag -m 'test' $tag2 > /dev/null)
136 tag_id=`got ref -r $testroot/repo -l \
137 | grep "^refs/tags/$tag" | tr -d ' ' | cut -d: -f2`
138 local tagger_time=`git_show_tagger_time $testroot/repo $tag`
139 d1=`env TZ=UTC date -r $tagger_time +"%a %b %e %X %Y UTC"`
140 tag_id2=`got ref -r $testroot/repo -l \
141 | grep "^refs/tags/$tag2" | tr -d ' ' | cut -d: -f2`
142 local tagger_time2=`git_show_tagger_time $testroot/repo $tag2`
143 d2=`env TZ=UTC date -r $tagger_time2 +"%a %b %e %X %Y UTC"`
145 got tag -r $testroot/repo -l > $testroot/stdout
147 echo "-----------------------------------------------" \
148 > $testroot/stdout.expected
149 echo "tag $tag2 $tag_id2" >> $testroot/stdout.expected
150 echo "from: $GOT_AUTHOR" >> $testroot/stdout.expected
151 echo "date: $d1" >> $testroot/stdout.expected
152 echo "object: commit $commit_id" >> $testroot/stdout.expected
153 echo " " >> $testroot/stdout.expected
154 echo " test" >> $testroot/stdout.expected
155 echo " " >> $testroot/stdout.expected
156 echo "-----------------------------------------------" \
157 >> $testroot/stdout.expected
158 echo "tag $tag $tag_id" >> $testroot/stdout.expected
159 echo "from: $GOT_AUTHOR" >> $testroot/stdout.expected
160 echo "date: $d2" >> $testroot/stdout.expected
161 echo "object: commit $commit_id" >> $testroot/stdout.expected
162 echo " " >> $testroot/stdout.expected
163 echo " test" >> $testroot/stdout.expected
164 echo " " >> $testroot/stdout.expected
165 cmp -s $testroot/stdout $testroot/stdout.expected
166 ret="$?"
167 if [ "$ret" != "0" ]; then
168 diff -u $testroot/stdout.expected $testroot/stdout
169 fi
170 test_done "$testroot" "$ret"
173 run_test test_tag_create
174 run_test test_tag_list