blob: 82ef9b04e55eaed26a6e64cdf119864228ea547e [file] [log] [blame]
Lars Hjemlib4649fc2007-11-11 00:40:58 +01001#!/bin/sh
2
John Keepingc95cc5e2013-04-01 15:09:05 +01003test_description='Check content on index page'
Lars Hjemlib4649fc2007-11-11 00:40:58 +01004. ./setup.sh
5
John Keepingc95cc5e2013-04-01 15:09:05 +01006test_expect_success 'generate index page' 'cgit_url "" >tmp'
7test_expect_success 'find foo repo' 'grep "foo" tmp'
8test_expect_success 'find foo description' 'grep "\[no description\]" tmp'
9test_expect_success 'find bar repo' 'grep "bar" tmp'
10test_expect_success 'find bar description' 'grep "the bar repo" tmp'
11test_expect_success 'find foo+bar repo' 'grep ">foo+bar<" tmp'
12test_expect_success 'verify foo+bar link' 'grep "/foo+bar/" tmp'
13test_expect_success 'verify "with%20space" link' 'grep "/with%20space/" tmp'
14test_expect_success 'no tree-link' '! grep "foo/tree" tmp'
15test_expect_success 'no log-link' '! grep "foo/log" tmp'
Lars Hjemlib4649fc2007-11-11 00:40:58 +010016
John Keepingc95cc5e2013-04-01 15:09:05 +010017test_done