]> git.ipfire.org Git - thirdparty/git.git/blame - t/t9813-git-p4-preserve-users.sh
path.c: don't call the match function without value in trie_find()
[thirdparty/git.git] / t / t9813-git-p4-preserve-users.sh
CommitLineData
9b6513ac
PW
1#!/bin/sh
2
3test_description='git p4 preserve users'
4
5. ./lib-git-p4.sh
6
7test_expect_success 'start p4d' '
8 start_p4d
9'
10
11test_expect_success 'create files' '
12 (
13 cd "$cli" &&
14 p4 client -o | sed "/LineEnd/s/:.*/:unix/" | p4 client -i &&
15 echo file1 >file1 &&
16 echo file2 >file2 &&
17 p4 add file1 file2 &&
18 p4 submit -d "add files"
19 )
20'
21
9b6513ac
PW
22p4_grant_admin() {
23 name=$1 &&
24 {
25 p4 protect -o &&
26 echo " admin user $name * //depot/..."
27 } | p4 protect -i
28}
29
30p4_check_commit_author() {
31 file=$1 user=$2 &&
32 p4 changes -m 1 //depot/$file | grep -q $user
33}
34
35make_change_by_user() {
36 file=$1 name=$2 email=$3 &&
37 echo "username: a change by $name" >>"$file" &&
38 git add "$file" &&
39 git commit --author "$name <$email>" -m "a change by $name"
40}
41
42# Test username support, submitting as user 'alice'
43test_expect_success 'preserve users' '
0055b56e
PW
44 p4_add_user alice &&
45 p4_add_user bob &&
9b6513ac
PW
46 p4_grant_admin alice &&
47 git p4 clone --dest="$git" //depot &&
48 test_when_finished cleanup_git &&
49 (
50 cd "$git" &&
51 echo "username: a change by alice" >>file1 &&
52 echo "username: a change by bob" >>file2 &&
0055b56e
PW
53 git commit --author "Alice <alice@example.com>" -m "a change by alice" file1 &&
54 git commit --author "Bob <bob@example.com>" -m "a change by bob" file2 &&
9b6513ac 55 git config git-p4.skipSubmitEditCheck true &&
0e496492 56 P4EDITOR="test-tool chmtime +5" P4USER=alice P4PASSWD=secret &&
f3b5b07c
LD
57 export P4EDITOR P4USER P4PASSWD &&
58 git p4 commit --preserve-user &&
9b6513ac
PW
59 p4_check_commit_author file1 alice &&
60 p4_check_commit_author file2 bob
61 )
62'
63
64# Test username support, submitting as bob, who lacks admin rights. Should
65# not submit change to p4 (git diff should show deltas).
66test_expect_success 'refuse to preserve users without perms' '
67 git p4 clone --dest="$git" //depot &&
68 test_when_finished cleanup_git &&
69 (
70 cd "$git" &&
71 git config git-p4.skipSubmitEditCheck true &&
72 echo "username-noperms: a change by alice" >>file1 &&
0055b56e 73 git commit --author "Alice <alice@example.com>" -m "perms: a change by alice" file1 &&
0e496492 74 P4EDITOR="test-tool chmtime +5" P4USER=bob P4PASSWD=secret &&
9b6513ac
PW
75 export P4EDITOR P4USER P4PASSWD &&
76 test_must_fail git p4 commit --preserve-user &&
77 ! git diff --exit-code HEAD..p4/master
78 )
79'
80
81# What happens with unknown author? Without allowMissingP4Users it should fail.
82test_expect_success 'preserve user where author is unknown to p4' '
83 git p4 clone --dest="$git" //depot &&
84 test_when_finished cleanup_git &&
85 (
86 cd "$git" &&
87 git config git-p4.skipSubmitEditCheck true &&
88 echo "username-bob: a change by bob" >>file1 &&
0055b56e 89 git commit --author "Bob <bob@example.com>" -m "preserve: a change by bob" file1 &&
9b6513ac 90 echo "username-unknown: a change by charlie" >>file1 &&
0055b56e 91 git commit --author "Charlie <charlie@example.com>" -m "preserve: a change by charlie" file1 &&
0e496492 92 P4EDITOR="test-tool chmtime +5" P4USER=alice P4PASSWD=secret &&
9b6513ac
PW
93 export P4EDITOR P4USER P4PASSWD &&
94 test_must_fail git p4 commit --preserve-user &&
95 ! git diff --exit-code HEAD..p4/master &&
96
97 echo "$0: repeat with allowMissingP4Users enabled" &&
98 git config git-p4.allowMissingP4Users true &&
99 git config git-p4.preserveUser true &&
100 git p4 commit &&
101 git diff --exit-code HEAD..p4/master &&
102 p4_check_commit_author file1 alice
103 )
104'
105
106# If we're *not* using --preserve-user, git-p4 should warn if we're submitting
107# changes that are not all ours.
108# Test: user in p4 and user unknown to p4.
109# Test: warning disabled and user is the same.
110test_expect_success 'not preserving user with mixed authorship' '
111 git p4 clone --dest="$git" //depot &&
112 test_when_finished cleanup_git &&
113 (
114 cd "$git" &&
115 git config git-p4.skipSubmitEditCheck true &&
0055b56e 116 p4_add_user derek &&
9b6513ac 117
0055b56e 118 make_change_by_user usernamefile3 Derek derek@example.com &&
9b6513ac
PW
119 P4EDITOR=cat P4USER=alice P4PASSWD=secret &&
120 export P4EDITOR P4USER P4PASSWD &&
c6f44e1d
PB
121 git p4 commit >actual &&
122 grep "git author derek@example.com does not match" actual &&
9b6513ac 123
0055b56e 124 make_change_by_user usernamefile3 Charlie charlie@example.com &&
c6f44e1d
PB
125 git p4 commit >actual &&
126 grep "git author charlie@example.com does not match" actual &&
9b6513ac 127
0055b56e 128 make_change_by_user usernamefile3 alice alice@example.com &&
c7cf9566
PB
129 git p4 commit >actual &&
130 ! grep "git author.*does not match" actual &&
9b6513ac
PW
131
132 git config git-p4.skipUserNameCheck true &&
0055b56e 133 make_change_by_user usernamefile3 Charlie charlie@example.com &&
c7cf9566
PB
134 git p4 commit >actual &&
135 ! grep "git author.*does not match" actual &&
9b6513ac
PW
136
137 p4_check_commit_author usernamefile3 alice
138 )
139'
140
9b6513ac 141test_done