Changeset 1960
- Timestamp:
- 09/07/08 18:01:47 (4 months ago)
- Files:
-
- cherokee/trunk/ChangeLog (modified) (1 diff)
- cherokee/trunk/qa/171-SCGI-Keepalive.py (modified) (1 diff)
- cherokee/trunk/qa/172-Chunked-CGI.py (modified) (2 diffs)
- cherokee/trunk/qa/173-Chunked-SCGI.py (added)
- cherokee/trunk/qa/Makefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/ChangeLog
r1959 r1960 1 1 2008-09-07 Alvaro Lopez Ortega <alvaro@alobbs.com> 2 3 * qa/173-Chunked-SCGI.py, qa/Makefile.am: Adds a new QA test to 4 check whether SCGI works with chunked encoding. 2 5 3 6 * cherokee/thread.c: Fixes keep-alive timeout. It was not closing cherokee/trunk/qa/171-SCGI-Keepalive.py
r1949 r1960 55 55 self.CopyFile ('pyscgi.py', pyscgi) 56 56 57 58 57 vars = globals() 59 58 vars['scgi_file'] = scgi_file cherokee/trunk/qa/172-Chunked-CGI.py
r1949 r1960 3 3 DIR = "chunked_cgi_1" 4 4 MAGIC = letters_random (300) 5 6 CHUNKED_BEGIN = hex(len(MAGIC))[2:] + '\r\n' 5 7 CHUNKED_FINISH = "0\r\n\r\n" 6 8 … … 27 29 "Host: localhost\r\n" 28 30 self.expected_error = 200 29 self.expected_content = [MAGIC, "Transfer-Encoding: chunked", CHUNKED_FINISH] 31 self.expected_content = ["Transfer-Encoding: chunked", 32 CHUNKED_BEGIN, MAGIC, CHUNKED_FINISH] 30 33 self.conf = CONF 31 34 cherokee/trunk/qa/Makefile.am
r1940 r1960 177 177 170-Error-ContentLength.py \ 178 178 171-SCGI-Keepalive.py \ 179 172-Chunked-CGI.py 179 172-Chunked-CGI.py \ 180 173-Chunked-SCGI.py 180 181 181 182 test: