summaryrefslogtreecommitdiffstats
path: root/test/modules
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2022-10-22 12:37:25 +0200
committerStefan Eissing <icing@apache.org>2022-10-22 12:37:25 +0200
commitd7ec293abc89a0dde9cc730acfa7ba838601a197 (patch)
tree786ff7d76b0cdbf1559e639a0ce00cefe00b5ee9 /test/modules
parentSteal a number (diff)
downloadapache2-d7ec293abc89a0dde9cc730acfa7ba838601a197.tar.xz
apache2-d7ec293abc89a0dde9cc730acfa7ba838601a197.zip
*) test modules/http1, add testing field value with just whitespace.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1904776 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/modules')
-rw-r--r--test/modules/http1/test_007_strict.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/modules/http1/test_007_strict.py b/test/modules/http1/test_007_strict.py
index 784e77b9fd..7eee027a6f 100644
--- a/test/modules/http1/test_007_strict.py
+++ b/test/modules/http1/test_007_strict.py
@@ -76,6 +76,7 @@ class TestRequestStrict:
['" 123"', '123', 200], # leading spaces are stripped
['"\t123"', '123', 200], # leading tab is stripped
['"expr=%{unescape:123%0A 123}"', '', 500], # illegal char
+ ['" \t "', '', 200], # just ws
])
def test_h1_007_02(self, env, hvalue, expvalue, status):
hname = 'ap-test-007'