From 77ac382607ab9a8bbd410a560d853d58aca6daf1 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Tue, 14 Jan 2014 11:13:08 +0100 Subject: tests/: Add t0111-filter.sh This adds basic tests for all types of exec filters. Signed-off-by: Lukas Fleischer --- tests/t0111-filter.sh | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 tests/t0111-filter.sh (limited to 'tests/t0111-filter.sh') 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 @@ +#!/bin/sh + +test_description='Check filtered content' +. ./setup.sh + +test_expect_success 'generate filter/tree/a%2bb' ' + cgit_url "filter/tree/a%2bb" >tmp +' + +test_expect_success 'check whether the source filter works' ' + grep "HELLO$" tmp +' + +test_expect_success 'generate filter/about/' ' + cgit_url "filter/about/" >tmp +' + +test_expect_success 'check whether the about filter works' ' + grep "
HELLO$" tmp +' + +test_expect_success 'generate filter/commit/' ' + cgit_url "filter/commit/" >tmp +' + +test_expect_success 'check whether the commit filter works' ' + grep "
ADD A+B" tmp +' + +test_expect_success 'check whether the email filter works for authors' ' + grep "" tmp +' + +test_expect_success 'check whether the email filter works for committers' ' + grep "" tmp +' + +test_done -- cgit v1.2.3-24-g4f1b