summaryrefslogtreecommitdiff
path: root/ngx_stream_lua-0.0.16/t/117-raw-req-socket-timeout.t
blob: e5a0ce5518cc646014cc87c39200cb8513f49c06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# vim:set ft= ts=4 sw=4 et fdm=marker:

BEGIN {
    if (!defined $ENV{LD_PRELOAD}) {
        $ENV{LD_PRELOAD} = '';
    }

    if ($ENV{LD_PRELOAD} !~ /\bmockeagain\.so\b/) {
        $ENV{LD_PRELOAD} = "mockeagain.so $ENV{LD_PRELOAD}";
    }

    if ($ENV{MOCKEAGAIN} eq 'r') {
        $ENV{MOCKEAGAIN} = 'rw';

    } else {
        $ENV{MOCKEAGAIN} = 'w';
    }

    $ENV{TEST_NGINX_EVENT_TYPE} = 'poll';
    $ENV{MOCKEAGAIN_WRITE_TIMEOUT_PATTERN} = 'hello, world';
    $ENV{TEST_NGINX_POSTPONE_OUTPUT} = 1;
}

use Test::Nginx::Socket::Lua::Stream;use t::StapThread;

our $GCScript = $t::StapThread::GCScript;
our $StapScript = $t::StapThread::StapScript;

#worker_connections(1014);
#master_on();
#workers(2);
#log_level('warn');

repeat_each(2);

plan tests => repeat_each() * (blocks() * 3 + 2);

#no_diff();
no_long_string();
run_tests();

__DATA__

=== TEST 1: pending response data
--- stream_server_config
    #postpone_output 1;
    content_by_lua_block {
        ngx.say("hello")
        local sock, err = ngx.req.socket(true)
        if not sock then
            ngx.log(ngx.ERR, "server: failed to get raw req socket: ", err)
            return
        end
    }

--- config
    server_tokens off;

--- stream_request
--- stap2
F(ngx_stream_header_filter) {
    println("header filter")
}
F(ngx_stream_lua_req_socket) {
    println("lua req socket")
}
--- stream_response
hello
--- error_log
server: failed to get raw req socket: pending data to write



=== TEST 2: send timeout
--- stream_server_config
    #postpone_output 1;
    content_by_lua_block {
        local sock, err = ngx.req.socket(true)
        if not sock then
            ngx.log(ngx.ERR, "server: failed to get raw req socket: ", err)
            return
        end
        sock:settimeout(100)
        local ok, err = sock:send("hello, world!")
        if not ok then
            ngx.log(ngx.ERR, "server: failed to send: ", err)
        end
        ngx.exit(444)
    }

--- config
    server_tokens off;

--- stream_request
--- stream_response_like chomp
^received \d+ bytes of response data\.$
--- log_stream_response
--- error_log
stream lua tcp socket write timed out
server: failed to send: timeout
--- no_error_log
[alert]