2008-03-17 22:13:16 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2013-04-01 14:09:05 +00:00
|
|
|
test_description='Check content on patch page'
|
2008-03-17 22:13:16 +00:00
|
|
|
. ./setup.sh
|
|
|
|
|
2013-04-01 14:09:05 +00:00
|
|
|
test_expect_success 'generate foo/patch' '
|
|
|
|
cgit_query "url=foo/patch" >tmp
|
2008-03-17 22:13:16 +00:00
|
|
|
'
|
|
|
|
|
2013-04-01 14:09:05 +00:00
|
|
|
test_expect_success 'find `From:` line' '
|
|
|
|
grep "^From: " tmp
|
2008-03-17 22:13:16 +00:00
|
|
|
'
|
|
|
|
|
2013-04-01 14:09:05 +00:00
|
|
|
test_expect_success 'find `Date:` line' '
|
|
|
|
grep "^Date: " tmp
|
2008-03-17 22:13:16 +00:00
|
|
|
'
|
|
|
|
|
2013-04-01 14:09:05 +00:00
|
|
|
test_expect_success 'find `Subject:` line' '
|
|
|
|
grep "^Subject: commit 5" tmp
|
2008-03-17 22:13:16 +00:00
|
|
|
'
|
|
|
|
|
2013-04-01 14:09:05 +00:00
|
|
|
test_expect_success 'find `cgit` signature' '
|
|
|
|
tail -1 tmp | grep "^cgit"
|
2008-03-17 22:13:16 +00:00
|
|
|
'
|
|
|
|
|
2013-04-01 14:09:05 +00:00
|
|
|
test_expect_success 'find initial commit' '
|
|
|
|
root=$(git --git-dir="$PWD/repos/foo/.git" rev-list HEAD | tail -1)
|
2008-03-17 22:13:16 +00:00
|
|
|
'
|
|
|
|
|
2013-04-01 14:09:05 +00:00
|
|
|
test_expect_success 'generate patch for initial commit' '
|
|
|
|
cgit_query "url=foo/patch&id=$root" >tmp
|
2008-03-17 22:13:16 +00:00
|
|
|
'
|
|
|
|
|
2013-04-01 14:09:05 +00:00
|
|
|
test_expect_success 'find `cgit` signature' '
|
|
|
|
tail -1 tmp | grep "^cgit"
|
2008-03-17 22:13:16 +00:00
|
|
|
'
|
2010-08-27 02:02:03 +00:00
|
|
|
|
2013-04-01 14:09:05 +00:00
|
|
|
test_done
|