about summary refs log tree commit diff
path: root/tests/t0102-summary.sh
blob: f778cb49d30a341d062270926be987f3cc1bc0e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh

. ./setup.sh

prepare_tests "Check content on summary page"

run_test 'generate foo summary' 'cgit_url "foo" >trash/tmp'
run_test 'find commit 1' 'grep "commit 1" trash/tmp'
run_test 'find commit 5' 'grep "commit 5" trash/tmp'
run_test 'find branch master' 'grep "master" trash/tmp'
run_test 'no tags' '! grep "tags" trash/tmp'
run_test 'clone-url expanded correctly' '
	grep "git://example.org/foo.git" trash/tmp
'

run_test 'generate bar summary' 'cgit_url "bar" >trash/tmp'
run_test 'no commit 45' '! grep "commit 45" trash/tmp'
run_test 'find commit 46' 'grep "commit 46" trash/tmp'
run_test 'find commit 50' 'grep "commit 50" trash/tmp'
run_test 'find branch master' 'grep "master" trash/tmp'
run_test 'no tags' '! grep "tags" trash/tmp'
run_test 'clone-url expanded correctly' '
	grep "git://example.org/bar.git" trash/tmp
'

tests_done
'/pounce/commit/client.c?h=1.4p2&id=f005d2950d8286475fc804e0d0e0cfbf99014323&follow=1'>Send to server if client has no needsJune McEnroe 2019-10-23Implement some amount of client connectionJune McEnroe 2019-10-23Set clients non-blockingJune McEnroe 2019-10-23Clean up state.c and factor out parsingJune McEnroe 2019-10-23Respond to pingsJune McEnroe 2019-10-23Add verbose flagJune McEnroe 2019-10-23Set NOSIGPIPE on server connectionJune McEnroe 2019-10-23Set an initial loop capJune McEnroe 2019-10-23Fix rest parsingJune McEnroe 2019-10-23Add dynamic poll listJune McEnroe 2019-10-23Don't assume commands have targets and handle ERRORJune McEnroe 2019-10-23Clean up state somewhatJune McEnroe 2019-10-23Actually send the buffer...June McEnroe 2019-10-23Add stateJune McEnroe