Merge branch 'ap/maint-diff-rename-avoid-overlap' into maint
[git/jnareb-git.git] / t / t9812-git-p4-wildcards.sh
blob67633257f3fccb2408d678759bce87f7a58acd0a
1 #!/bin/sh
3 test_description='git p4 wildcards'
5 . ./lib-git-p4.sh
7 test_expect_success 'start p4d' '
8 start_p4d
11 test_expect_success 'add p4 files with wildcards in the names' '
13 cd "$cli" &&
14 printf "file2\nhas\nsome\nrandom\ntext\n" >file2 &&
15 p4 add file2 &&
16 echo file-wild-hash >file-wild#hash &&
17 if test_have_prereq NOT_MINGW NOT_CYGWIN
18 then
19 echo file-wild-star >file-wild\*star
20 fi &&
21 echo file-wild-at >file-wild@at &&
22 echo file-wild-percent >file-wild%percent &&
23 p4 add -f file-wild* &&
24 p4 submit -d "file wildcards"
28 test_expect_success 'wildcard files git p4 clone' '
29 git p4 clone --dest="$git" //depot &&
30 test_when_finished cleanup_git &&
32 cd "$git" &&
33 test -f file-wild#hash &&
34 if test_have_prereq NOT_MINGW NOT_CYGWIN
35 then
36 test -f file-wild\*star
37 fi &&
38 test -f file-wild@at &&
39 test -f file-wild%percent
43 test_expect_success 'wildcard files submit back to p4, add' '
44 test_when_finished cleanup_git &&
45 git p4 clone --dest="$git" //depot &&
47 cd "$git" &&
48 echo git-wild-hash >git-wild#hash &&
49 if test_have_prereq NOT_MINGW NOT_CYGWIN
50 then
51 echo git-wild-star >git-wild\*star
52 fi &&
53 echo git-wild-at >git-wild@at &&
54 echo git-wild-percent >git-wild%percent &&
55 git add git-wild* &&
56 git commit -m "add some wildcard filenames" &&
57 git config git-p4.skipSubmitEdit true &&
58 git p4 submit
59 ) &&
61 cd "$cli" &&
62 test_path_is_file git-wild#hash &&
63 if test_have_prereq NOT_MINGW NOT_CYGWIN
64 then
65 test_path_is_file git-wild\*star
66 fi &&
67 test_path_is_file git-wild@at &&
68 test_path_is_file git-wild%percent
72 test_expect_success 'wildcard files submit back to p4, modify' '
73 test_when_finished cleanup_git &&
74 git p4 clone --dest="$git" //depot &&
76 cd "$git" &&
77 echo new-line >>git-wild#hash &&
78 if test_have_prereq NOT_MINGW NOT_CYGWIN
79 then
80 echo new-line >>git-wild\*star
81 fi &&
82 echo new-line >>git-wild@at &&
83 echo new-line >>git-wild%percent &&
84 git add git-wild* &&
85 git commit -m "modify the wildcard files" &&
86 git config git-p4.skipSubmitEdit true &&
87 git p4 submit
88 ) &&
90 cd "$cli" &&
91 test_line_count = 2 git-wild#hash &&
92 if test_have_prereq NOT_MINGW NOT_CYGWIN
93 then
94 test_line_count = 2 git-wild\*star
95 fi &&
96 test_line_count = 2 git-wild@at &&
97 test_line_count = 2 git-wild%percent
101 test_expect_success 'wildcard files submit back to p4, copy' '
102 test_when_finished cleanup_git &&
103 git p4 clone --dest="$git" //depot &&
105 cd "$git" &&
106 cp file2 git-wild-cp#hash &&
107 git add git-wild-cp#hash &&
108 cp git-wild#hash file-wild-3 &&
109 git add file-wild-3 &&
110 git commit -m "wildcard copies" &&
111 git config git-p4.detectCopies true &&
112 git config git-p4.detectCopiesHarder true &&
113 git config git-p4.skipSubmitEdit true &&
114 git p4 submit
115 ) &&
117 cd "$cli" &&
118 test_path_is_file git-wild-cp#hash &&
119 test_path_is_file file-wild-3
123 test_expect_success 'wildcard files submit back to p4, rename' '
124 test_when_finished cleanup_git &&
125 git p4 clone --dest="$git" //depot &&
127 cd "$git" &&
128 git mv git-wild@at file-wild-4 &&
129 git mv file-wild-3 git-wild-cp%percent &&
130 git commit -m "wildcard renames" &&
131 git config git-p4.detectRenames true &&
132 git config git-p4.skipSubmitEdit true &&
133 git p4 submit
134 ) &&
136 cd "$cli" &&
137 test_path_is_missing git-wild@at &&
138 test_path_is_file git-wild-cp%percent
142 test_expect_success 'wildcard files submit back to p4, delete' '
143 test_when_finished cleanup_git &&
144 git p4 clone --dest="$git" //depot &&
146 cd "$git" &&
147 git rm git-wild* &&
148 git commit -m "delete the wildcard files" &&
149 git config git-p4.skipSubmitEdit true &&
150 git p4 submit
151 ) &&
153 cd "$cli" &&
154 test_path_is_missing git-wild#hash &&
155 if test_have_prereq NOT_MINGW NOT_CYGWIN
156 then
157 test_path_is_missing git-wild\*star
158 fi &&
159 test_path_is_missing git-wild@at &&
160 test_path_is_missing git-wild%percent
164 test_expect_success 'kill p4d' '
165 kill_p4d
168 test_done