forked from 3scale/APIcast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapicast-request-logs.t
171 lines (152 loc) · 4.14 KB
/
apicast-request-logs.t
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
use lib 't';
use Test::APIcast 'no_plan';
run_tests();
__DATA__
=== TEST 1: request logs and response codes are not sent unless opt-in
--- http_config
include $TEST_NGINX_UPSTREAM_CONFIG;
lua_package_path "$TEST_NGINX_LUA_PATH";
init_by_lua_block {
require('apicast.configuration_loader').mock({
services = {
{
id = 42,
backend_version = 1,
proxy = {
api_backend = 'http://127.0.0.1:$TEST_NGINX_SERVER_PORT/api/',
proxy_rules = {
{ pattern = '/', http_method = 'GET', metric_system_name = 'bar', delta = 1}
}
}
},
}
})
-- Response codes cannot be sent when the request is not cached. In that
-- case, the authrep is called before calling the upstream, so the
-- response code is not available. Response codes are only sent in the
-- post-action phase. The cache is populated here to force a post-action
-- phase.
ngx.shared.api_keys:set('42:somekey:usage%5Bbar%5D=0', 200)
}
lua_shared_dict api_keys 1m;
--- config
include $TEST_NGINX_APICAST_CONFIG;
location /api/ {
echo "api response";
}
location /transactions/authrep.xml {
content_by_lua_block {
local args = ngx.req.get_uri_args()
for key, val in pairs(args) do
ngx.log(ngx.DEBUG, key, ": ", val)
end
ngx.exit(200)
}
}
--- request
GET /foo?user_key=somekey
--- response_body
api response
--- error_code: 200
--- grep_error_log eval: qr/log\[\w+\]:.+/
--- grep_error_log_out
=== TEST 2: response codes are sent when opt-in
--- main_config
env APICAST_RESPONSE_CODES=1;
--- http_config
include $TEST_NGINX_UPSTREAM_CONFIG;
lua_package_path "$TEST_NGINX_LUA_PATH";
init_by_lua_block {
require('apicast.configuration_loader').mock({
services = {
{
id = 42,
backend_version = 1,
proxy = {
api_backend = 'http://127.0.0.1:$TEST_NGINX_SERVER_PORT/api/',
proxy_rules = {
{ pattern = '/', http_method = 'GET', metric_system_name = 'bar', delta = 1}
}
}
},
}
})
ngx.shared.api_keys:set('42:somekey:usage%5Bbar%5D=1', 200)
}
lua_shared_dict api_keys 1m;
--- config
include $TEST_NGINX_APICAST_CONFIG;
location /api/ {
echo "api response";
echo_status 201;
}
location /transactions/authrep.xml {
content_by_lua_block {
local args = ngx.req.get_uri_args()
for key, val in pairs(args) do
ngx.log(ngx.DEBUG, key, ": ", val)
end
ngx.exit(200)
}
}
--- request
GET /foo?user_key=somekey
--- response_body
api response
--- error_code: 201
--- grep_error_log eval: qr/log\[\w+\]:.+/
--- grep_error_log_out eval
<<"END";
log[code]: 201
END
=== TEST 3: response codes with multiple reporting threads
--- main_config
env APICAST_RESPONSE_CODES=1;
env APICAST_REPORTING_THREADS=4;
--- http_config
include $TEST_NGINX_UPSTREAM_CONFIG;
lua_package_path "$TEST_NGINX_LUA_PATH";
init_by_lua_block {
require('apicast.configuration_loader').mock({
services = {
{
id = 42,
backend_version = 1,
proxy = {
api_backend = 'http://127.0.0.1:$TEST_NGINX_SERVER_PORT/api/',
proxy_rules = {
{ pattern = '/', http_method = 'GET', metric_system_name = 'bar', delta = 1}
}
}
},
}
})
ngx.shared.api_keys:set('42:somekey:usage%5Bbar%5D=1', 200)
}
lua_shared_dict api_keys 1m;
--- config
include $TEST_NGINX_APICAST_CONFIG;
location /api/ {
echo "api response";
echo_status 201;
}
location /transactions/authrep.xml {
content_by_lua_block {
local args = ngx.req.get_uri_args()
for key, val in pairs(args) do
ngx.log(ngx.DEBUG, key, ": ", val)
end
ngx.exit(200)
}
}
--- request eval
["GET /test?user_key=somekey", "GET /foo?user_key=somekey", "GET /?user_key=somekey"]
--- response_body eval
["api response\x{0a}", "api response\x{0a}", "api response\x{0a}"]
--- error_code eval
[ 201, 201, 201 ]
--- grep_error_log eval: qr/log\[\w+\]:.+/
--- grep_error_log_out eval
<<"END";
log[code]: 201
END