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)' '
|
|
|
|
CGIT_VERSION=$(sed -n "s/CGIT_VERSION = //p" ../../VERSION)
|
|
|
|
git --git-dir="$PWD/repos/foo/.git" format-patch -p --subject-prefix="" --signature="cgit $CGIT_VERSION" --stdout HEAD^ >tmp2
|
|
|
|
sed "1,5d" tmp >tmp_
|
|
|
|
cmp tmp_ tmp2
|
|
|
|
'
|
|
|
|
|
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-04-01 16:09:05 +02:00
|
|
|
test_done
|