Signed-off-by: Christian Couder <[email protected]>
---
t/t7513-interpret-trailers.sh | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/t/t7513-interpret-trailers.sh b/t/t7513-interpret-trailers.sh
index f5ef81f..2d50b7a 100755
--- a/t/t7513-interpret-trailers.sh
+++ b/t/t7513-interpret-trailers.sh
@@ -212,4 +212,31 @@ test_expect_success 'with input from stdin' '
test_cmp expected actual
'
+test_expect_success 'with simple command' '
+ git config trailer.sign.key "Signed-off-by: " &&
+ git config trailer.sign.where "after" &&
+ git config trailer.sign.ifExist "addIfDifferentNeighbor" &&
+ git config trailer.sign.command "echo \"A U Thor
<[email protected]>\"" &&
+ cat complex_message_body >expected &&
+ printf "Fixes: \nAcked-by= \nReviewed-by: \nSigned-off-by:
\nSigned-off-by: A U Thor <[email protected]>\n" >>expected &&
+ git interpret-trailers "review:" "fix=22" < complex_message >actual &&
+ test_cmp expected actual
+'
+
+test_expect_success 'setup a commit' '
+ echo "Content of the first commit." > a.txt &&
+ git add a.txt &&
+ git commit -m "Add file a.txt"
+'
+
+test_expect_success 'with command using $ARG' '
+ git config trailer.fix.ifExist "overwrite" &&
+ git config trailer.fix.command "git log -1 --oneline --format=\"%h
(%s)\" --abbrev-commit --abbrev=14 \$ARG" &&
+ FIXED=$(git log -1 --oneline --format="%h (%s)" --abbrev-commit
--abbrev=14 HEAD) &&
+ cat complex_message_body >expected &&
+ printf "Fixes: $FIXED\nAcked-by= \nReviewed-by: \nSigned-off-by:
\nSigned-off-by: A U Thor <[email protected]>\n" >>expected &&
+ git interpret-trailers "review:" "fix=HEAD" < complex_message >actual &&
+ test_cmp expected actual
+'
+
test_done
--
1.8.5.2.201.gacc5987
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html