3 test_description
='git p4 rcs keywords'
7 test_expect_success
'start p4d' '
12 # Make one file with keyword lines at the top, and
13 # enough plain text to be able to test modifications
14 # far away from the keywords.
16 test_expect_success
'init depot' '
30 sed -i "s/Revision/Revision: do not scrub me/" fileko
31 cp fileko file_text &&
32 sed -i "s/Id/Id: do not scrub me/" file_text
33 p4 add -t text+k filek &&
34 p4 submit -d "filek" &&
35 p4 add -t text+ko fileko &&
36 p4 submit -d "fileko" &&
37 p4 add -t text file_text &&
38 p4 submit -d "file_text"
43 # Generate these in a function to make it easy to use single quote marks.
45 write_scrub_scripts
() {
46 cat >"$TRASH_DIRECTORY/scrub_k.py" <<-\EOF &&
48 sys.stdout.write(re.sub(r'(?i)\$(Id|Header|Author|Date|DateTime|Change|File|Revision):[^$]*\$', r'$\1$', sys.stdin.read()))
50 cat >"$TRASH_DIRECTORY/scrub_ko.py" <<-\
EOF
52 sys.stdout.write(re.sub(r'(?i)\$(Id|Header):[^$]*\$', r'$\1$', sys.stdin.read()))
56 test_expect_success 'scrub scripts' '
61 # Compare $cli/file to its scrubbed version, should be different.
62 # Compare scrubbed $cli/file to $git/file, should be same.
66 scrub="$TRASH_DIRECTORY/$file" &&
67 "$PYTHON_PATH" "$TRASH_DIRECTORY/scrub_k.py" <"$git/$file" >"$scrub" &&
68 ! test_cmp "$cli/$file" "$scrub" &&
69 test_cmp "$git/$file" "$scrub" &&
74 scrub="$TRASH_DIRECTORY/$file" &&
75 "$PYTHON_PATH" "$TRASH_DIRECTORY/scrub_ko.py" <"$git/$file" >"$scrub" &&
76 ! test_cmp "$cli/$file" "$scrub" &&
77 test_cmp "$git/$file" "$scrub" &&
82 # Modify far away from keywords. If no RCS lines show up
83 # in the diff, there is no conflict.
85 test_expect_success 'edit far away from RCS lines' '
86 test_when_finished cleanup_git &&
87 git p4 clone --dest="$git" //depot &&
90 git config git-p4.skipSubmitEdit true &&
91 sed -i "s/^line7/line7 edit/" filek &&
92 git commit -m "filek line7 edit" filek &&
99 # Modify near the keywords. This will require RCS scrubbing.
101 test_expect_success 'edit near RCS lines' '
102 test_when_finished cleanup_git &&
103 git p4 clone --dest="$git" //depot &&
106 git config git-p4.skipSubmitEdit true &&
107 git config git-p4.attemptRCSCleanup true &&
108 sed -i "s/^line4/line4 edit/" filek &&
109 git commit -m "filek line4 edit" filek &&
116 # Modify the keywords themselves. This also will require RCS scrubbing.
118 test_expect_success 'edit keyword lines' '
119 test_when_finished cleanup_git &&
120 git p4 clone --dest="$git" //depot &&
123 git config git-p4.skipSubmitEdit true &&
124 git config git-p4.attemptRCSCleanup true &&
125 sed -i "/Revision/d" filek &&
126 git commit -m "filek remove Revision line" filek &&
133 # Scrubbing text+ko files should not alter all keywords, just Id, Header.
135 test_expect_success 'scrub ko files differently' '
136 test_when_finished cleanup_git &&
137 git p4 clone --dest="$git" //depot &&
140 git config git-p4.skipSubmitEdit true &&
141 git config git-p4.attemptRCSCleanup true &&
142 sed -i "s/^line4/line4 edit/" fileko &&
143 git commit -m "fileko line4 edit" fileko &&
145 scrub_ko_check fileko &&
146 ! scrub_k_check fileko
150 # hack; git p4 submit should do it on its own
151 test_expect_success 'cleanup after failure' '
159 # Do not scrub anything but +k or +ko files. Sneak a change into
160 # the cli file so that submit will get a conflict. Make sure that
161 # scrubbing doesn't make a mess of things.
163 # This might happen only if the git repo is behind the p4 repo at
164 # submit time, and there is a conflict.
166 test_expect_success 'do not scrub plain text' '
167 test_when_finished cleanup_git &&
168 git p4 clone --dest="$git" //depot &&
171 git config git-p4.skipSubmitEdit true &&
172 git config git-p4.attemptRCSCleanup true &&
173 sed -i "s/^line4/line4 edit/" file_text &&
174 git commit -m "file_text line4 edit" file_text &&
178 sed -i "s/^line5/line5 p4 edit/" file_text &&
179 p4 submit -d "file5 p4 edit"
181 echo s | test_expect_code 1 git p4 submit &&
183 # make sure the file is not left open
185 ! p4 fstat -T action file_text
190 # hack; git p4 submit should do it on its own
191 test_expect_success 'cleanup after failure 2' '
205 int main(int argc, const char **argv) {
211 test_expect_success 'add kwfile' '
216 p4 submit -d "file 1" &&
217 create_kw_file kwfile1.c &&
219 p4 submit -d "Add rcw kw file" kwfile1.c
223 p4_append_to_file () {
225 p4 edit -t ktext "$f" &&
226 echo "/* $(date) */" >>"$f" &&
227 p4 submit -d "appending a line in p4"
230 # Create some files with RCS keywords. If they get modified
231 # elsewhere then the version number gets bumped which then
232 # results in a merge conflict if we touch the RCS kw lines,
233 # even though the change itself would otherwise apply cleanly.
234 test_expect_success 'cope with rcs keyword expansion damage' '
235 test_when_finished cleanup_git &&
236 git p4 clone --dest="$git" //depot &&
239 git config git-p4.skipSubmitEdit true &&
240 git config git-p4.attemptRCSCleanup true &&
241 (cd "$cli" && p4_append_to_file kwfile1.c) &&
242 old_lines=$(wc -l <kwfile1.c) &&
243 "$PERL_PATH" -n -i -e "print unless m/Revision:/" kwfile1.c &&
244 new_lines=$(wc -l <kwfile1.c) &&
245 test $new_lines = $(($old_lines - 1)) &&
248 git commit
-m "Zap an RCS kw line" &&
251 git
diff p
4/master
&&
253 echo "try modifying in both" &&
256 echo "line from p4" >>kwfile1.c
&&
257 p4 submit
-d "add a line in p4" kwfile1.c
&&
259 echo "line from git at the top" |
cat - kwfile1.c
>kwfile1.c.new
&&
260 mv kwfile1.c.new kwfile1.c
&&
261 git commit
-m "Add line in git at the top" kwfile1.c
&&
267 test_expect_success 'cope with rcs keyword
file deletion
' '
268 test_when_finished cleanup_git
&&
271 echo "\$Revision\$" >kwdelfile.c
&&
272 p4 add
-t ktext kwdelfile.c
&&
273 p4 submit
-d "Add file to be deleted" &&
277 git p4 clone
--dest="$git" //depot
&&
280 grep Revision kwdelfile.c
&&
281 git
rm -f kwdelfile.c
&&
282 git commit
-m "Delete a file containing RCS keywords" &&
283 git config git-p4.skipSubmitEdit true
&&
284 git config git-p4.attemptRCSCleanup true
&&
290 ! test -f kwdelfile.c
294 # If you add keywords in git of the form $Header$ then everything should
295 # work fine without any special handling.
296 test_expect_success 'Add keywords
in git
which match the default p4 values
' '
297 test_when_finished cleanup_git
&&
298 git p4 clone
--dest="$git" //depot
&&
301 echo "NewKW: \$Revision\$" >>kwfile1.c
&&
303 git commit
-m "Adding RCS keywords in git" &&
304 git config git-p4.skipSubmitEdit true
&&
305 git config git-p4.attemptRCSCleanup true
&&
312 grep "NewKW.*Revision.*[0-9]" kwfile1.c
317 # If you add keywords in git of the form $Header:#1$ then things will fail
318 # unless git-p4 takes steps to scrub the *git* commit.
320 test_expect_failure 'Add keywords
in git
which do not match the default p4 values
' '
321 test_when_finished cleanup_git
&&
322 git p4 clone
--dest="$git" //depot
&&
325 echo "NewKW2: \$Revision:1\$" >>kwfile1.c
&&
327 git commit
-m "Adding RCS keywords in git" &&
328 git config git-p4.skipSubmitEdit true
&&
329 git config git-p4.attemptRCSCleanup true
&&
335 grep "NewKW2.*Revision.*[0-9]" kwfile1.c
340 test_expect_success 'kill p4d
' '