diff options
-rwxr-xr-x | tests/filters/capitalize-argv1.sh | 3 | ||||
-rwxr-xr-x | tests/filters/capitalize-stdin.sh | 3 | ||||
-rwxr-xr-x | tests/setup.sh | 13 | ||||
-rwxr-xr-x | tests/t0111-filter.sh | 38 |
4 files changed, 57 insertions, 0 deletions
diff --git a/tests/filters/capitalize-argv1.sh b/tests/filters/capitalize-argv1.sh new file mode 100755 index 0000000..2ea0098 --- /dev/null +++ b/tests/filters/capitalize-argv1.sh | |||
@@ -0,0 +1,3 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | echo "$1" | tr '[:lower:]' '[:upper:]' | ||
diff --git a/tests/filters/capitalize-stdin.sh b/tests/filters/capitalize-stdin.sh new file mode 100755 index 0000000..c9f4719 --- /dev/null +++ b/tests/filters/capitalize-stdin.sh | |||
@@ -0,0 +1,3 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | tr '[:lower:]' '[:upper:]' | ||
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" |
59 | fi | 59 | fi |
60 | 60 | ||
61 | FILTER_DIRECTORY=$(cd ../filters && pwd) | ||
62 | |||
61 | mkrepo() { | 63 | mkrepo() { |
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 |
94 | virtual-root=/ | 97 | virtual-root=/ |
95 | cache-root=$PWD/cache | 98 | cache-root=$PWD/cache |
@@ -102,6 +105,7 @@ summary-log=5 | |||
102 | summary-branches=5 | 105 | summary-branches=5 |
103 | summary-tags=5 | 106 | summary-tags=5 |
104 | clone-url=git://example.org/\$CGIT_REPO_URL.git | 107 | clone-url=git://example.org/\$CGIT_REPO_URL.git |
108 | enable-filter-overrides=1 | ||
105 | 109 | ||
106 | repo.url=foo | 110 | repo.url=foo |
107 | repo.path=$PWD/repos/foo/.git | 111 | repo.path=$PWD/repos/foo/.git |
@@ -120,6 +124,15 @@ repo.desc=the foo+bar repo | |||
120 | repo.url=with space | 124 | repo.url=with space |
121 | repo.path=$PWD/repos/with space/.git | 125 | repo.path=$PWD/repos/with space/.git |
122 | repo.desc=spaced repo | 126 | repo.desc=spaced repo |
127 | |||
128 | repo.url=filter | ||
129 | repo.path=$PWD/repos/filter/.git | ||
130 | repo.desc=filtered repo | ||
131 | repo.about-filter=exec:$FILTER_DIRECTORY/capitalize-stdin.sh | ||
132 | repo.commit-filter=exec:$FILTER_DIRECTORY/capitalize-stdin.sh | ||
133 | repo.email-filter=exec:$FILTER_DIRECTORY/capitalize-argv1.sh | ||
134 | repo.source-filter=exec:$FILTER_DIRECTORY/capitalize-stdin.sh | ||
135 | repo.readme=master:a+b | ||
123 | EOF | 136 | EOF |
124 | } | 137 | } |
125 | 138 | ||
diff --git a/tests/t0111-filter.sh b/tests/t0111-filter.sh new file mode 100755 index 0000000..2f99880 --- /dev/null +++ b/tests/t0111-filter.sh | |||
@@ -0,0 +1,38 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | test_description='Check filtered content' | ||
4 | . ./setup.sh | ||
5 | |||
6 | test_expect_success 'generate filter/tree/a%2bb' ' | ||
7 | cgit_url "filter/tree/a%2bb" >tmp | ||
8 | ' | ||
9 | |||
10 | test_expect_success 'check whether the source filter works' ' | ||
11 | grep "<code>HELLO$" tmp | ||
12 | ' | ||
13 | |||
14 | test_expect_success 'generate filter/about/' ' | ||
15 | cgit_url "filter/about/" >tmp | ||
16 | ' | ||
17 | |||
18 | test_expect_success 'check whether the about filter works' ' | ||
19 | grep "<div id='"'"'summary'"'"'>HELLO$" tmp | ||
20 | ' | ||
21 | |||
22 | test_expect_success 'generate filter/commit/' ' | ||
23 | cgit_url "filter/commit/" >tmp | ||
24 | ' | ||
25 | |||
26 | test_expect_success 'check whether the commit filter works' ' | ||
27 | grep "<div class='"'"'commit-subject'"'"'>ADD A+B" tmp | ||
28 | ' | ||
29 | |||
30 | test_expect_success 'check whether the email filter works for authors' ' | ||
31 | grep "<AUTHOR@EXAMPLE.COM>" tmp | ||
32 | ' | ||
33 | |||
34 | test_expect_success 'check whether the email filter works for committers' ' | ||
35 | grep "<COMMITTER@EXAMPLE.COM>" tmp | ||
36 | ' | ||
37 | |||
38 | test_done | ||