git-p4: small improvements to user-preservation
[git] / t / t9800-git-p4.sh
1 #!/bin/sh
2
3 test_description='git-p4 tests'
4
5 . ./test-lib.sh
6
7 ( p4 -h && p4d -h ) >/dev/null 2>&1 || {
8         skip_all='skipping git-p4 tests; no p4 or p4d'
9         test_done
10 }
11
12 GITP4=$GIT_BUILD_DIR/contrib/fast-import/git-p4
13 P4DPORT=10669
14
15 export P4PORT=localhost:$P4DPORT
16
17 db="$TRASH_DIRECTORY/db"
18 cli="$TRASH_DIRECTORY/cli"
19 git="$TRASH_DIRECTORY/git"
20
21 test_debug 'echo p4d -q -d -r "$db" -p $P4DPORT'
22 test_expect_success setup '
23         mkdir -p "$db" &&
24         p4d -q -d -r "$db" -p $P4DPORT &&
25         mkdir -p "$cli" &&
26         mkdir -p "$git" &&
27         export P4PORT=localhost:$P4DPORT
28 '
29
30 test_expect_success 'add p4 files' '
31         cd "$cli" &&
32         p4 client -i <<-EOF &&
33         Client: client
34         Description: client
35         Root: $cli
36         View: //depot/... //client/...
37         EOF
38         export P4CLIENT=client &&
39         echo file1 >file1 &&
40         p4 add file1 &&
41         p4 submit -d "file1" &&
42         echo file2 >file2 &&
43         p4 add file2 &&
44         p4 submit -d "file2" &&
45         cd "$TRASH_DIRECTORY"
46 '
47
48 test_expect_success 'basic git-p4 clone' '
49         "$GITP4" clone --dest="$git" //depot &&
50         cd "$git" &&
51         git log --oneline >lines &&
52         test_line_count = 1 lines &&
53         cd .. &&
54         rm -rf "$git" && mkdir "$git"
55 '
56
57 test_expect_success 'git-p4 clone @all' '
58         "$GITP4" clone --dest="$git" //depot@all &&
59         cd "$git" &&
60         git log --oneline >lines &&
61         test_line_count = 2 lines &&
62         cd .. &&
63         rm -rf "$git" && mkdir "$git"
64 '
65
66 test_expect_success 'git-p4 sync uninitialized repo' '
67         test_create_repo "$git" &&
68         cd "$git" &&
69         test_must_fail "$GITP4" sync &&
70         rm -rf "$git" && mkdir "$git"
71 '
72
73 #
74 # Create a git repo by hand.  Add a commit so that HEAD is valid.
75 # Test imports a new p4 repository into a new git branch.
76 #
77 test_expect_success 'git-p4 sync new branch' '
78         test_create_repo "$git" &&
79         cd "$git" &&
80         test_commit head &&
81         "$GITP4" sync --branch=refs/remotes/p4/depot //depot@all &&
82         git log --oneline p4/depot >lines &&
83         cat lines &&
84         test_line_count = 2 lines &&
85         cd .. &&
86         rm -rf "$git" && mkdir "$git"
87 '
88
89 test_expect_success 'exit when p4 fails to produce marshaled output' '
90         badp4dir="$TRASH_DIRECTORY/badp4dir" &&
91         mkdir -p "$badp4dir" &&
92         cat >"$badp4dir"/p4 <<-EOF &&
93         #!$SHELL_PATH
94         exit 1
95         EOF
96         chmod 755 "$badp4dir"/p4 &&
97         PATH="$badp4dir:$PATH" "$GITP4" clone --dest="$git" //depot >errs 2>&1 ; retval=$? &&
98         test $retval -eq 1 &&
99         test_must_fail grep -q Traceback errs
100 '
101
102 test_expect_success 'add p4 files with wildcards in the names' '
103         cd "$cli" &&
104         echo file-wild-hash >file-wild#hash &&
105         echo file-wild-star >file-wild\*star &&
106         echo file-wild-at >file-wild@at &&
107         echo file-wild-percent >file-wild%percent &&
108         p4 add -f file-wild* &&
109         p4 submit -d "file wildcards" &&
110         cd "$TRASH_DIRECTORY"
111 '
112
113 test_expect_success 'wildcard files git-p4 clone' '
114         "$GITP4" clone --dest="$git" //depot &&
115         cd "$git" &&
116         test -f file-wild#hash &&
117         test -f file-wild\*star &&
118         test -f file-wild@at &&
119         test -f file-wild%percent &&
120         cd "$TRASH_DIRECTORY" &&
121         rm -rf "$git" && mkdir "$git"
122 '
123
124 test_expect_success 'clone bare' '
125         "$GITP4" clone --dest="$git" --bare //depot &&
126         cd "$git" &&
127         test ! -d .git &&
128         bare=`git config --get core.bare` &&
129         test "$bare" = true &&
130         cd "$TRASH_DIRECTORY" &&
131         rm -rf "$git" && mkdir "$git"
132 '
133
134 p4_add_user() {
135     name=$1
136     fullname=$2
137     p4 user -f -i <<EOF &&
138 User: $name
139 Email: $name@localhost
140 FullName: $fullname
141 EOF
142     p4 passwd -P secret $name
143 }
144
145 p4_grant_admin() {
146     name=$1
147     p4 protect -o |\
148         awk "{print}END{print \"    admin user $name * //depot/...\"}" |\
149         p4 protect -i
150 }
151
152 p4_check_commit_author() {
153     file=$1
154     user=$2
155     if p4 changes -m 1 //depot/$file | grep $user > /dev/null ; then
156         return 0
157     else
158         echo "file $file not modified by user $user" 1>&2
159         return 1
160     fi
161 }
162
163 # Test username support, submitting as user 'alice'
164 test_expect_success 'preserve users' '
165         p4_add_user alice Alice &&
166         p4_add_user bob Bob &&
167         p4_grant_admin alice &&
168         "$GITP4" clone --dest="$git" //depot &&
169         cd "$git" &&
170         echo "username: a change by alice" >> file1 &&
171         echo "username: a change by bob" >> file2 &&
172         git commit --author "Alice <alice@localhost>" -m "a change by alice" file1 &&
173         git commit --author "Bob <bob@localhost>" -m "a change by bob" file2 &&
174         git config git-p4.skipSubmitEditCheck true &&
175         P4EDITOR=touch P4USER=alice P4PASSWD=secret "$GITP4" commit --preserve-user &&
176         p4_check_commit_author file1 alice &&
177         p4_check_commit_author file2 bob &&
178         cd "$TRASH_DIRECTORY" &&
179         rm -rf "$git" && mkdir "$git"
180 '
181
182 # Test username support, submitting as bob, who lacks admin rights. Should
183 # not submit change to p4 (git diff should show deltas).
184 test_expect_success 'refuse to preserve users without perms' '
185         "$GITP4" clone --dest="$git" //depot &&
186         cd "$git" &&
187         echo "username-noperms: a change by alice" >> file1 &&
188         git commit --author "Alice <alice@localhost>" -m "perms: a change by alice" file1 &&
189         ! P4EDITOR=touch P4USER=bob P4PASSWD=secret "$GITP4" commit --preserve-user &&
190         ! git diff --exit-code HEAD..p4/master > /dev/null &&
191         cd "$TRASH_DIRECTORY" &&
192         rm -rf "$git" && mkdir "$git"
193 '
194
195 # What happens with unknown author? Without allowMissingP4Users it should fail.
196 test_expect_success 'preserve user where author is unknown to p4' '
197         "$GITP4" clone --dest="$git" //depot &&
198         cd "$git" &&
199         git config git-p4.skipSubmitEditCheck true
200         echo "username-bob: a change by bob" >> file1 &&
201         git commit --author "Bob <bob@localhost>" -m "preserve: a change by bob" file1 &&
202         echo "username-unknown: a change by charlie" >> file1 &&
203         git commit --author "Charlie <charlie@localhost>" -m "preserve: a change by charlie" file1 &&
204         ! P4EDITOR=touch P4USER=alice P4PASSWD=secret "$GITP4" commit --preserve-user &&
205         ! git diff --exit-code HEAD..p4/master > /dev/null &&
206         echo "$0: repeat with allowMissingP4Users enabled" &&
207         git config git-p4.allowMissingP4Users true &&
208         git config git-p4.preserveUser true &&
209         P4EDITOR=touch P4USER=alice P4PASSWD=secret "$GITP4" commit &&
210         git diff --exit-code HEAD..p4/master > /dev/null &&
211         p4_check_commit_author file1 alice &&
212         cd "$TRASH_DIRECTORY" &&
213         rm -rf "$git" && mkdir "$git"
214 '
215
216 test_expect_success 'shutdown' '
217         pid=`pgrep -f p4d` &&
218         test -n "$pid" &&
219         test_debug "ps wl `echo $pid`" &&
220         kill $pid
221 '
222
223 test_done