aboutsummaryrefslogtreecommitdiffstats
path: root/tests/setup.sh
diff options
context:
space:
mode:
authorGravatar Lukas Fleischer <cgit@cryptocrack.de>2014-01-14 20:01:06 (JST)
committerGravatar Jason A. Donenfeld <Jason@zx2c4.com>2014-01-14 21:55:53 (JST)
commitce56d89a2662549acd178292450798f5ffcd4bc6 (patch)
tree273b423beda8ced8cec3228f02dbf2554ebb26a8 /tests/setup.sh
parent1167dbb95bcd6bb2916312a7900e360c101e7eca (diff)
downloadcgit-ce56d89a2662549acd178292450798f5ffcd4bc6.zip
cgit-ce56d89a2662549acd178292450798f5ffcd4bc6.tar.gz
tests/: Add t0111-filter.sh
This adds basic tests for all types of exec filters. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Diffstat (limited to 'tests/setup.sh')
-rwxr-xr-xtests/setup.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/setup.sh b/tests/setup.sh
index 5476ced..861f48a 100755
--- a/tests/setup.sh
+++ b/tests/setup.sh
@@ -58,6 +58,8 @@ else
58 PATH="$(pwd)/../..:$PATH" 58 PATH="$(pwd)/../..:$PATH"
59fi 59fi
60 60
61FILTER_DIRECTORY=$(cd ../filters && pwd)
62
61mkrepo() { 63mkrepo() {
62 name=$1 64 name=$1
63 count=$2 65 count=$2
@@ -90,6 +92,7 @@ setup_repos()
90 mkrepo repos/bar 50 >/dev/null 92 mkrepo repos/bar 50 >/dev/null
91 mkrepo repos/foo+bar 10 testplus >/dev/null 93 mkrepo repos/foo+bar 10 testplus >/dev/null
92 mkrepo "repos/with space" 2 >/dev/null 94 mkrepo "repos/with space" 2 >/dev/null
95 mkrepo repos/filter 5 testplus >/dev/null
93 cat >cgitrc <<EOF 96 cat >cgitrc <<EOF
94virtual-root=/ 97virtual-root=/
95cache-root=$PWD/cache 98cache-root=$PWD/cache
@@ -102,6 +105,7 @@ summary-log=5
102summary-branches=5 105summary-branches=5
103summary-tags=5 106summary-tags=5
104clone-url=git://example.org/\$CGIT_REPO_URL.git 107clone-url=git://example.org/\$CGIT_REPO_URL.git
108enable-filter-overrides=1
105 109
106repo.url=foo 110repo.url=foo
107repo.path=$PWD/repos/foo/.git 111repo.path=$PWD/repos/foo/.git
@@ -120,6 +124,15 @@ repo.desc=the foo+bar repo
120repo.url=with space 124repo.url=with space
121repo.path=$PWD/repos/with space/.git 125repo.path=$PWD/repos/with space/.git
122repo.desc=spaced repo 126repo.desc=spaced repo
127
128repo.url=filter
129repo.path=$PWD/repos/filter/.git
130repo.desc=filtered repo
131repo.about-filter=exec:$FILTER_DIRECTORY/capitalize-stdin.sh
132repo.commit-filter=exec:$FILTER_DIRECTORY/capitalize-stdin.sh
133repo.email-filter=exec:$FILTER_DIRECTORY/capitalize-argv1.sh
134repo.source-filter=exec:$FILTER_DIRECTORY/capitalize-stdin.sh
135repo.readme=master:a+b
123EOF 136EOF
124} 137}
125 138