[nginx-tests] Tests: removed dependencies on 405 error text.
Maxim Dounin
mdounin at mdounin.ru
Sat Apr 20 18:21:14 UTC 2024
details: http://freenginx.org/hg/nginx-tests/rev/c544b7120a6d
branches:
changeset: 1957:c544b7120a6d
user: Maxim Dounin <mdounin at mdounin.ru>
date: Sat Apr 20 20:58:42 2024 +0300
description:
Tests: removed dependencies on 405 error text.
It is going to be changed from "405 Not Allowed" to "405 Method Not Allowed"
to match RFC description.
diffstat:
empty_gif.t | 2 +-
http_method.t | 4 ++--
stub_status.t | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diffs (45 lines):
diff --git a/empty_gif.t b/empty_gif.t
--- a/empty_gif.t
+++ b/empty_gif.t
@@ -62,7 +62,7 @@ EOF
is(http_get_body('/'), $gif, 'empty gif');
like(http_get('/'), qr!Content-Type: image/gif!i, 'get content type');
like(http_head('/'), qr!Content-Type: image/gif!i, 'head content type');
-like(http('PUT / HTTP/1.0' . CRLF . CRLF), qr!405 Not Allowed!i, 'put');
+like(http('PUT / HTTP/1.0' . CRLF . CRLF), qr! 405 !i, 'put');
###############################################################################
diff --git a/http_method.t b/http_method.t
--- a/http_method.t
+++ b/http_method.t
@@ -49,7 +49,7 @@ EOF
###############################################################################
-like(http(<<EOF), qr/405 Not Allowed(?!.*200 OK)/s, 'trace');
+like(http(<<EOF), qr/ 405 (?!.*200 OK)/s, 'trace');
TRACE / HTTP/1.1
Host: localhost
@@ -59,7 +59,7 @@ Connection: close
EOF
-like(http(<<EOF), qr/405 Not Allowed(?!.*200 OK)/s, 'connect');
+like(http(<<EOF), qr/ 405 (?!.*200 OK)/s, 'connect');
CONNECT / HTTP/1.1
Host: localhost
diff --git a/stub_status.t b/stub_status.t
--- a/stub_status.t
+++ b/stub_status.t
@@ -121,7 +121,7 @@ is($status{'writing'}, 2, 'writing state
# head and post requests
like(http_head('/stub'), qr/200 OK/, 'head request');
-like(http_post('/stub'), qr/405 Not Allowed/, 'post request');
+like(http_post('/stub'), qr/ 405 /, 'post request');
# embedded variables in headers
More information about the nginx-devel
mailing list