From: Vlad S. <ser...@us...> - 2005-06-29 03:46:14
|
Update of /cvsroot/naviserver/naviserver/tests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14098/tests Modified Files: http_byteranges.test Log Message: see ChangeLog Index: http_byteranges.test =================================================================== RCS file: /cvsroot/naviserver/naviserver/tests/http_byteranges.test,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** http_byteranges.test 29 Jun 2005 01:56:44 -0000 1.1 --- http_byteranges.test 29 Jun 2005 03:45:50 -0000 1.2 *************** *** 157,171 **** ! test http-3.1 {syntactically invalid} -constraints serverListen -body { nstest_http -getbody 1 -setheaders {Range bytes=3-2} \ -getheaders {Content-length Content-range} \ GET /10bytes ! } -result {200 10 {} 0123456789} ! test http-3.2 {syntactically invalid} -constraints serverListen -body { nstest_http -getbody 1 -setheaders {Range bytes=11-10} \ -getheaders {Content-length Content-range} \ GET /10bytes ! } -result {200 10 {} 0123456789} test http-3.3 {syntactically invalid} -constraints serverListen -body { --- 157,171 ---- ! test http-3.1 {invalid offsets} -constraints serverListen -body { nstest_http -getbody 1 -setheaders {Range bytes=3-2} \ -getheaders {Content-length Content-range} \ GET /10bytes ! } -result {416 10 {bytes */10} {}} ! test http-3.2 {invalid offsets} -constraints serverListen -body { nstest_http -getbody 1 -setheaders {Range bytes=11-10} \ -getheaders {Content-length Content-range} \ GET /10bytes ! } -result {416 10 {bytes */10} {}} test http-3.3 {syntactically invalid} -constraints serverListen -body { |