blob: 89c58593dfeff6acf229a8f833216561b97b4ede (
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
|
# vi:filetype=
use lib 'lib';
use Test::Nginx::Socket;
plan tests => repeat_each() * (3 * blocks());
$ENV{TEST_NGINX_MEMCACHED_PORT} ||= 11211;
#no_diff;
run_tests();
__DATA__
=== TEST 1: bad cmd
--- config
location /foo {
if ($uri ~* 'foo') {
set $memc_cmd flush_all;
}
memc_pass 127.0.0.1:$TEST_NGINX_MEMCACHED_PORT;
}
--- request
GET /foo
--- response_body eval
"OK\r\n"
--- no_error_log
[error]
|