mirror of
https://git.zx2c4.com/cgit
synced 2025-08-03 17:44:27 +02:00
Create initial testsuite
This creates a simple testsuite, heavily inspired by the testsuite in git. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
ab21082c21
commit
b4649fc905
12 changed files with 299 additions and 1 deletions
20
tests/t0106-diff.sh
Executable file
20
tests/t0106-diff.sh
Executable file
|
@ -0,0 +1,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 -e "a/file-5 b/file-5" trash/tmp'
|
||||
run_test 'find blob link' 'grep -e "<a href=./foo/tree/file-5?id=" trash/tmp'
|
||||
run_test 'find added file' 'grep -e "new file mode 100644" trash/tmp'
|
||||
|
||||
run_test 'find hunk header' '
|
||||
grep -e "<div class=.hunk.>@@ -0,0 +1 @@</div>" trash/tmp
|
||||
'
|
||||
|
||||
run_test 'find added line' '
|
||||
grep -e "<div class=.add.>+5</div>" trash/tmp
|
||||
'
|
||||
|
||||
tests_done
|
Loading…
Add table
Add a link
Reference in a new issue