diff options
author | Stefan Eissing <icing@apache.org> | 2021-08-20 18:07:44 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2021-08-20 18:07:44 +0200 |
commit | 9438c6497a6653d3f118cbc8d042fd71e22d91fb (patch) | |
tree | d853b8ccf333adaccb6a7a8707d116d36fe6c890 /test/modules/http2/htdocs/cgi/necho.py | |
parent | core: follow up to r1891148: WC bucket defaulting to FLUSH bucket. (diff) | |
download | apache2-9438c6497a6653d3f118cbc8d042fd71e22d91fb.tar.xz apache2-9438c6497a6653d3f118cbc8d042fd71e22d91fb.zip |
* test/module/http2: test suite from github mod_h2 repository
slightly adapted to run in a source build. usage:
> make install # to have httpd, apxs etc. in place
> cd test
> pytest
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1892476 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/modules/http2/htdocs/cgi/necho.py')
-rw-r--r-- | test/modules/http2/htdocs/cgi/necho.py | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/test/modules/http2/htdocs/cgi/necho.py b/test/modules/http2/htdocs/cgi/necho.py new file mode 100644 index 0000000000..b9249b8969 --- /dev/null +++ b/test/modules/http2/htdocs/cgi/necho.py @@ -0,0 +1,54 @@ +#!/usr/bin/env python3 +import cgi, os +import time +import cgitb; cgitb.enable() + +status = '200 Ok' + +try: + form = cgi.FieldStorage() + count = form['count'] + text = form['text'] + + waitsec = float(form['wait1'].value) if 'wait1' in form else 0.0 + if waitsec > 0: + time.sleep(waitsec) + + if int(count.value): + print("Status: 200") + print("""\ +Content-Type: text/plain\n""") + + waitsec = float(form['wait2'].value) if 'wait2' in form else 0.0 + if waitsec > 0: + time.sleep(waitsec) + + i = 0; + for i in range(0, int(count.value)): + print("%s" % (text.value)) + + waitsec = float(form['wait3'].value) if 'wait3' in form else 0.0 + if waitsec > 0: + time.sleep(waitsec) + + else: + print("Status: 400 Parameter Missing") + print("""\ +Content-Type: text/html\n + <html><body> + <p>No count was specified: %s</p> + </body></html>""" % (count.value)) + +except KeyError: + print("Status: 200 Ok") + print("""\ +Content-Type: text/html\n + <html><body> + Echo <form method="POST" enctype="application/x-www-form-urlencoded"> + <input type="text" name="count"> + <input type="text" name="text"> + <button type="submit">Echo</button></form> + </body></html>""") + pass + + |