aboutsummaryrefslogtreecommitdiffstats
path: root/tests/t0108-patch.sh
diff options
context:
space:
mode:
authorGravatar John Keeping <john@keeping.me.uk>2013-04-01 23:09:05 (JST)
committerGravatar Jason A. Donenfeld <Jason@zx2c4.com>2013-04-09 05:27:11 (JST)
commitc95cc5ec56dbb7394015eb18201403be6d80f69b (patch)
tree7014b96a1a1408b5291532c0c442082aba693a80 /tests/t0108-patch.sh
parent8a92df033e974af6338b530a0d78d1bdb0b0f918 (diff)
downloadcgit-c95cc5ec56dbb7394015eb18201403be6d80f69b.zip
cgit-c95cc5ec56dbb7394015eb18201403be6d80f69b.tar.gz
tests: use Git's test framework
This allows tests to run in parallel as well as letting us use "prove" or another TAP harness to run the tests. Git's test framework requires Git to be fully built before letting any tests run, so add a new target to the top-level Makefile which builds all of Git instead of just libgit.a and make the "test" target depend on that. Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to 'tests/t0108-patch.sh')
-rwxr-xr-xtests/t0108-patch.sh37
1 files changed, 18 insertions, 19 deletions
diff --git a/tests/t0108-patch.sh b/tests/t0108-patch.sh
index f92f69c..3b5bae4 100755
--- a/tests/t0108-patch.sh
+++ b/tests/t0108-patch.sh
@@ -1,39 +1,38 @@
1#!/bin/sh 1#!/bin/sh
2 2
3test_description='Check content on patch page'
3. ./setup.sh 4. ./setup.sh
4 5
5prepare_tests "Check content on patch page" 6test_expect_success 'generate foo/patch' '
6 7 cgit_query "url=foo/patch" >tmp
7run_test 'generate foo/patch' '
8 cgit_query "url=foo/patch" >trash/tmp
9' 8'
10 9
11run_test 'find `From:` line' ' 10test_expect_success 'find `From:` line' '
12 grep "^From: " trash/tmp 11 grep "^From: " tmp
13' 12'
14 13
15run_test 'find `Date:` line' ' 14test_expect_success 'find `Date:` line' '
16 grep "^Date: " trash/tmp 15 grep "^Date: " tmp
17' 16'
18 17
19run_test 'find `Subject:` line' ' 18test_expect_success 'find `Subject:` line' '
20 grep "^Subject: commit 5" trash/tmp 19 grep "^Subject: commit 5" tmp
21' 20'
22 21
23run_test 'find `cgit` signature' ' 22test_expect_success 'find `cgit` signature' '
24 tail -1 trash/tmp | grep "^cgit" 23 tail -1 tmp | grep "^cgit"
25' 24'
26 25
27run_test 'find initial commit' ' 26test_expect_success 'find initial commit' '
28 root=$(git --git-dir="$PWD/trash/repos/foo/.git" rev-list HEAD | tail -1) 27 root=$(git --git-dir="$PWD/repos/foo/.git" rev-list HEAD | tail -1)
29' 28'
30 29
31run_test 'generate patch for initial commit' ' 30test_expect_success 'generate patch for initial commit' '
32 cgit_query "url=foo/patch&id=$root" >trash/tmp 31 cgit_query "url=foo/patch&id=$root" >tmp
33' 32'
34 33
35run_test 'find `cgit` signature' ' 34test_expect_success 'find `cgit` signature' '
36 tail -1 trash/tmp | grep "^cgit" 35 tail -1 tmp | grep "^cgit"
37' 36'
38 37
39tests_done 38test_done