2008-03-17 23:13:16 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2013-04-01 16:09:05 +02:00
|
|
|
test_description='Check content on patch page'
|
2008-03-17 23:13:16 +01:00
|
|
|
. ./setup.sh
|
|
|
|
|
2013-04-01 16:09:05 +02:00
|
|
|
test_expect_success 'generate foo/patch' '
|
|
|
|
cgit_query "url=foo/patch" >tmp
|
2008-03-17 23:13:16 +01:00
|
|
|
'
|
|
|
|
|
2013-04-01 16:09:05 +02:00
|
|
|
test_expect_success 'find `From:` line' '
|
|
|
|
grep "^From: " tmp
|
2008-03-17 23:13:16 +01:00
|
|
|
'
|
|
|
|
|
2013-04-01 16:09:05 +02:00
|
|
|
test_expect_success 'find `Date:` line' '
|
|
|
|
grep "^Date: " tmp
|
2008-03-17 23:13:16 +01:00
|
|
|
'
|
|
|
|
|
2013-04-01 16:09:05 +02:00
|
|
|
test_expect_success 'find `Subject:` line' '
|
|
|
|
grep "^Subject: commit 5" tmp
|
2008-03-17 23:13:16 +01:00
|
|
|
'
|
|
|
|
|
2013-04-01 16:09:05 +02:00
|
|
|
test_expect_success 'find `cgit` signature' '
|
2013-08-26 20:38:33 +02:00
|
|
|
tail -2 tmp | head -1 | grep "^cgit"
|
2008-03-17 23:13:16 +01:00
|
|
|
'
|
|
|
|
|
2013-08-26 20:38:34 +02:00
|
|
|
test_expect_success 'compare with output of git-format-patch(1)' '
|
2014-12-28 14:10:32 +01:00
|
|
|
CGIT_VERSION=$(sed -n "s/CGIT_VERSION = //p" ../../VERSION) &&
|
2014-12-28 14:10:33 +01:00
|
|
|
git --git-dir="$PWD/repos/foo/.git" format-patch --subject-prefix="" --signature="cgit $CGIT_VERSION" --stdout HEAD^ >tmp2 &&
|
2014-12-28 14:10:32 +01:00
|
|
|
strip_headers <tmp >tmp_ &&
|
|
|
|
test_cmp tmp_ tmp2
|
2013-08-26 20:38:34 +02:00
|
|
|
'
|
|
|
|
|
2013-04-01 16:09:05 +02:00
|
|
|
test_expect_success 'find initial commit' '
|
2013-08-26 20:38:31 +02:00
|
|
|
root=$(git --git-dir="$PWD/repos/foo/.git" rev-list --max-parents=0 HEAD)
|
2008-03-17 23:13:16 +01:00
|
|
|
'
|
|
|
|
|
2013-04-01 16:09:05 +02:00
|
|
|
test_expect_success 'generate patch for initial commit' '
|
|
|
|
cgit_query "url=foo/patch&id=$root" >tmp
|
2008-03-17 23:13:16 +01:00
|
|
|
'
|
|
|
|
|
2013-04-01 16:09:05 +02:00
|
|
|
test_expect_success 'find `cgit` signature' '
|
2013-08-26 20:38:33 +02:00
|
|
|
tail -2 tmp | head -1 | grep "^cgit"
|
2008-03-17 23:13:16 +01:00
|
|
|
'
|
2010-08-27 04:02:03 +02:00
|
|
|
|
2013-08-26 20:38:35 +02:00
|
|
|
test_expect_success 'generate patches for multiple commits' '
|
2014-12-28 14:10:32 +01:00
|
|
|
id=$(git --git-dir="$PWD/repos/foo/.git" rev-parse HEAD) &&
|
|
|
|
id2=$(git --git-dir="$PWD/repos/foo/.git" rev-parse HEAD~3) &&
|
2013-08-26 20:38:35 +02:00
|
|
|
cgit_query "url=foo/patch&id=$id&id2=$id2" >tmp
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'find `cgit` signature' '
|
|
|
|
tail -2 tmp | head -1 | grep "^cgit"
|
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'compare with output of git-format-patch(1)' '
|
2014-12-28 14:10:32 +01:00
|
|
|
CGIT_VERSION=$(sed -n "s/CGIT_VERSION = //p" ../../VERSION) &&
|
2014-12-28 14:10:33 +01:00
|
|
|
git --git-dir="$PWD/repos/foo/.git" format-patch -N --subject-prefix="" --signature="cgit $CGIT_VERSION" --stdout HEAD~3..HEAD >tmp2 &&
|
2014-12-28 14:10:32 +01:00
|
|
|
strip_headers <tmp >tmp_ &&
|
|
|
|
test_cmp tmp_ tmp2
|
2013-08-26 20:38:35 +02:00
|
|
|
'
|
|
|
|
|
2013-04-01 16:09:05 +02:00
|
|
|
test_done
|