aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tests/t0106-diff.sh
blob: eee0c8c10ed7e373f102275b991e719ddac215b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

. ./setup.sh

prepare_tests "Check content on diff page"

run_test 'generate foo/diff' 'cgit_url "foo/diff" >trash/tmp'
run_test 'find diff header' 'grep "a/file-5 b/file-5" trash/tmp'
run_test 'find blob link' 'grep "<a href=./foo/tree/file-5?id=" trash/tmp'
run_test 'find added file' 'grep "new file mode 100644" trash/tmp'

run_test 'find hunk header' '
	grep "<div class=.hunk.>@@ -0,0 +1 @@</div>" trash/tmp
'

run_test 'find added line' '
	grep "<div class=.add.>+5</div>" trash/tmp
'

tests_done
pan>-ie "1,4d" trash/tidy-$test_count || return "$tidy" $tidy_opt trash/tidy-$test_count rc=$? # tidy returns with exitcode 1 on warnings, 2 on error if test $rc = 2 then false else : fi } prepare_tests 'Validate html with tidy' tidy=`which tidy` test -n "$tidy" || { echo "Skipping tests: tidy not found" tests_done exit } run_test 'index page' 'test_url ""' run_test 'foo' 'test_url "foo"' run_test 'foo/log' 'test_url "foo/log"' run_test 'foo/tree' 'test_url "foo/tree"' run_test 'foo/tree/file-1' 'test_url "foo/tree/file-1"' run_test 'foo/commit' 'test_url "foo/commit"' run_test 'foo/diff' 'test_url "foo/diff"' tests_done