merge(third_party/cgit): Import at master of 2020-01-11
Imported commit '723dc8fbcb
' as
'third_party/cgit'.
This commit is contained in:
commit
5a069d5888
102 changed files with 15632 additions and 0 deletions
32
third_party/cgit/tests/t0104-tree.sh
vendored
Executable file
32
third_party/cgit/tests/t0104-tree.sh
vendored
Executable file
|
@ -0,0 +1,32 @@
|
|||
#!/bin/sh
|
||||
|
||||
test_description='Check content on tree page'
|
||||
. ./setup.sh
|
||||
|
||||
test_expect_success 'generate bar/tree' 'cgit_url "bar/tree" >tmp'
|
||||
test_expect_success 'find file-1' 'grep "file-1" tmp'
|
||||
test_expect_success 'find file-50' 'grep "file-50" tmp'
|
||||
|
||||
test_expect_success 'generate bar/tree/file-50' 'cgit_url "bar/tree/file-50" >tmp'
|
||||
|
||||
test_expect_success 'find line 1' '
|
||||
grep "<a id=.n1. href=.#n1.>1</a>" tmp
|
||||
'
|
||||
|
||||
test_expect_success 'no line 2' '
|
||||
! grep "<a id=.n2. href=.#n2.>2</a>" tmp
|
||||
'
|
||||
|
||||
test_expect_success 'generate foo+bar/tree' 'cgit_url "foo%2bbar/tree" >tmp'
|
||||
|
||||
test_expect_success 'verify a+b link' '
|
||||
grep "/foo+bar/tree/a+b" tmp
|
||||
'
|
||||
|
||||
test_expect_success 'generate foo+bar/tree?h=1+2' 'cgit_url "foo%2bbar/tree&h=1%2b2" >tmp'
|
||||
|
||||
test_expect_success 'verify a+b?h=1+2 link' '
|
||||
grep "/foo+bar/tree/a+b?h=1%2b2" tmp
|
||||
'
|
||||
|
||||
test_done
|
Loading…
Add table
Add a link
Reference in a new issue