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
|
# vi:filetype=perl
use lib 'lib';
use Test::Nginx::LWP;
plan tests => repeat_each() * 2 * blocks();
$ENV{TEST_NGINX_BACKENDS_PORT} ||= "www.taobao.com:80";
no_root_location();
#no_diff;
run_tests();
__DATA__
=== TEST 1: the "fix string substitution" command
--- http_config
upstream backends {
server $TEST_NGINX_BACKENDS_PORT;
}
--- config
location / {
subs_filter 'taobao.com' 'yaoweibin';
proxy_set_header Host 'www.taobao.com';
proxy_pass http://backends;
}
--- request
GET /
--- response_body_unlike: ^(.*)taobao\.com(.*)$
|