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' '
|
|
|
|
tail -1 tmp | grep "^cgit"
|
2008-03-17 23:13:16 +01:00
|
|
|
'
|
|
|
|
|
2013-04-01 16:09:05 +02:00
|
|
|
test_expect_success 'find initial commit' '
|
|
|
|
root=$(git --git-dir="$PWD/repos/foo/.git" rev-list HEAD | tail -1)
|
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' '
|
|
|
|
tail -1 tmp | 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
|