Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
casimiro committed Sep 29, 2023
1 parent f57914c commit 77492f4
Show file tree
Hide file tree
Showing 3 changed files with 282 additions and 1 deletion.
259 changes: 259 additions & 0 deletions t/05-others/010-connection_drop.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,259 @@
# vim:set ft= ts=4 sts=4 sw=4 et fdm=marker:

use strict;
use lib '.';
use t::TestWasm;

plan tests => repeat_each() * (blocks() * 4);

run_tests();

__DATA__
=== TEST 1: client connection drop - proxy_wasm & echo - chained filters
If a client drops the connection immediately after sending an HTTP request,
and the sent request is answered by the echo directive,
all filters executing on that request will have their on_response_headers,
on_response_body, on_log and on_done entrypoints invoked.
--- load_nginx_modules: ngx_http_echo_module
--- wasm_modules: on_phases
--- config
location /t {
proxy_wasm on_phases;
proxy_wasm on_phases;
echo ok;
}
--- shutdown
--- ignore_response
--- grep_error_log eval: qr/#\d+ on_(response|log|done).*/
--- grep_error_log_out eval
qr/#\d+ on_response_headers, 5 headers.*
#\d+ on_response_headers, 5 headers.*
#\d+ on_response_body, 3 bytes, eof: false.*
#\d+ on_response_body, 3 bytes, eof: false.*
#\d+ on_response_body, 0 bytes, eof: true.*
#\d+ on_response_body, 0 bytes, eof: true.*
#\d+ on_done.*
#\d+ on_log.*
#\d+ on_done.*
#\d+ on_log.*/
--- no_error_log
[warn]
[error]
[crit]
=== TEST 2: client connection drop - proxy_wasm & proxy_pass - chained filters
If a client drops the connection immediately after sending an HTTP request,
and sent request is proxied by proxy_pass,
all filters executing on that request will only have their on_log and on_done
entrypoints invoked.
--- wasm_modules: on_phases
--- http_config eval
qq{
server {
listen unix:$ENV{TEST_NGINX_UNIX_SOCKET};
location / {
return 201;
}
}
}
--- config
location /t {
proxy_wasm on_phases;
proxy_wasm on_phases;
proxy_pass http://unix:$TEST_NGINX_UNIX_SOCKET:/;
}
--- shutdown
--- ignore_response
--- grep_error_log eval: qr/\[info\] .*? on_(response|log|done).*/
--- grep_error_log_out eval
qr/\[info\] .*? on_done.*
\[info\] .*? on_log.*/
--- no_error_log
[warn]
[error]
[crit]
=== TEST 3: client connection drop - proxy_wasm - filters dispatch HTTP call
If a client drops the connection immediately after sending an HTTP request,
all filters executing on that request that have dispatched HTTP calls will have
their on_http_call_response entrypoint invoked.
--- load_nginx_modules: ngx_http_echo_module
--- wasm_modules: hostcalls
--- http_config eval
qq{
server {
listen unix:$ENV{TEST_NGINX_UNIX_SOCKET};
location /status/200 {
return 200;
}
location /status/201 {
return 201;
}
}
}
--- config
location /t {
proxy_wasm hostcalls 'test=/t/dispatch_http_call \
host=unix:$TEST_NGINX_UNIX_SOCKET \
path=/status/200';
proxy_wasm hostcalls 'test=/t/dispatch_http_call \
host=unix:$TEST_NGINX_UNIX_SOCKET \
path=/status/201';
echo ok;
}
--- shutdown
--- ignore_response
--- grep_error_log eval: qr/\*\d+.*?on_http_call_response.*/
--- grep_error_log_out eval
qr/^\*\d+ .*? on_http_call_response \(id: \d+, status: 200[^*].*
\*\d+ .*? on_http_call_response \(id: \d+, status: 201[^*].*/
--- no_error_log
[warn]
[error]
[crit]
=== TEST 4: client connection drop - proxy_wasm - send_local_response()
If a client drops the connection immediately after sending an HTTP request,
and a filter running on that request calls send_local_response(),
a response will be produced and all filters running on the sent request will
have their on_response_headers, on_response_body, on_log and on_done entrypoints
invoked.
--- wasm_modules: hostcalls
--- config
location /t {
proxy_wasm hostcalls 'test=/t/send_local_response/body';
}
--- shutdown
--- ignore_response
--- grep_error_log eval: qr/\[info\] .*? on_(response|log|done).*/
--- grep_error_log_out eval
qr/\[info\] .*? on_response_headers, 5 headers, eof: true.*
\[info\] .*? on_response_body, 12 bytes, eof: true.*
\[info\] .*? on_done.*
\[info\] .*? on_log.*/
--- no_error_log
[warn]
[error]
[crit]
=== TEST 5: upstream connection drop - dispatch_http_call()
--- wasm_modules: hostcalls
--- tcp_listen: $TEST_NGINX_UNIX_SOCKET
--- tcp_reply eval
sub {
return ["HTTP/1.1 100 OK\r\n",
"Connection: close\r\n",
"Content-Length: 0\r\n",
"\r\n"];
}
--- config
location /t {
proxy_wasm hostcalls 'test=/t/dispatch_http_call \
host=unix:$TEST_NGINX_UNIX_SOCKET \
on_http_call_response=echo_response_headers';
return 204;
}
--- ignore_response
--- grep_error_log eval: qr/(wasm tcp socket|recv:).*/
--- grep_error_log_out eval
qr/wasm tcp socket connected to "unix:$ENV{TEST_NGINX_UNIX_SOCKET}:0"
wasm tcp socket sent all the data
wasm tcp socket handler.*
wasm tcp socket resuming
wasm tcp socket handler.*
wasm tcp socket receive handler for "unix:$ENV{TEST_NGINX_UNIX_SOCKET}:0"
wasm tcp socket resuming
wasm tcp socket trying to receive data.*
recv: eof:1, avail:-1
recv: fd:\d+ 0 of 1024
wasm tcp socket eof
wasm tcp socket no bytes to parse
wasm tcp socket reading done
wasm tcp socket closing/
--- no_error_log
[warn]
[error]
[crit]
--- SKIP
=== TEST 6: client connection drop - wasm_call & echo - body_filter
If a client drops the connection immediately after sending an HTTP request,
and that request is answered by the echo directive,
all wasm functions configured to execute on content/header_filter/body_filter
phases will be invoked.
--- load_nginx_modules: ngx_http_echo_module
--- wasm_modules: ngx_rust_tests
--- config
location /t {
wasm_call content ngx_rust_tests log_notice_hello;
wasm_call header_filter ngx_rust_tests log_notice_hello;
wasm_call body_filter ngx_rust_tests log_notice_hello;
echo ok;
}
--- shutdown
--- ignore_response
--- grep_error_log eval: qr/\[debug\] .*? \*\d wasm ops calling .* in .* phase.*/
--- grep_error_log_out eval
qr/\[debug\] .* wasm ops calling "ngx_rust_tests.log_notice_hello" in "content" phase.*
\[debug\] .* wasm ops calling "ngx_rust_tests.log_notice_hello" in "header_filter" phase.*
\[debug\] .* wasm ops calling "ngx_rust_tests.log_notice_hello" in "body_filter" phase.*
\[debug\] .* wasm ops calling "ngx_rust_tests.log_notice_hello" in "body_filter" phase.*/
--- no_error_log
[warn]
[error]
[crit]
=== TEST 7: client connection drop - wasm_call & proxy_pass - body_filter
If a client drops the connection immediately after sending an HTTP request,
and that request is proxied by proxy_pass,
all wasm functions configured to execute on content phase will be invoked.
--- load_nginx_modules: ngx_http_echo_module
--- wasm_modules: ngx_rust_tests
--- http_config eval
qq{
server {
listen unix:$ENV{TEST_NGINX_UNIX_SOCKET};
location / {
return 201;
}
}
}
--- config
location /t {
wasm_call content ngx_rust_tests log_notice_hello;
wasm_call header_filter ngx_rust_tests log_notice_hello;
wasm_call body_filter ngx_rust_tests log_notice_hello;
proxy_pass http://unix:$TEST_NGINX_UNIX_SOCKET:/;
}
--- shutdown
--- ignore_response
--- grep_error_log eval: qr/\[debug\] .*? \*\d wasm ops calling .* in .* phase.*/
--- grep_error_log_out eval
qr/\[debug\] .* wasm ops calling "ngx_rust_tests.log_notice_hello" in "content" phase.*/
--- no_error_log
[warn]
[error]
[crit]
6 changes: 6 additions & 0 deletions t/lib/proxy-wasm-tests/hostcalls/src/filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,12 @@ impl Context for TestHttp {

self.resume_http_request()
}

fn on_done(&mut self) -> bool {
info!("[hostcalls] on_done");

true
}
}

impl HttpContext for TestHttp {
Expand Down
18 changes: 17 additions & 1 deletion t/lib/proxy-wasm-tests/on-phases/src/filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,23 @@ impl OnPhases {
}
}

impl Context for OnPhases {}
impl Context for OnPhases {
fn on_done(&mut self) -> bool {
info!("#{} on_done", self.context_id);

let log_msg = self
.config
.get("log_msg")
.map_or(String::new(), |s| s.to_string());

if !log_msg.is_empty() {
info!("#{} log_msg: {}", self.context_id, log_msg);
}

true
}
}

impl HttpContext for OnPhases {
fn on_http_request_headers(&mut self, nheaders: usize, _eof: bool) -> Action {
info!(
Expand Down

0 comments on commit 77492f4

Please sign in to comment.