| # |
| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to You under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with |
| # the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # |
| use t::APISIX 'no_plan'; |
| |
| repeat_each(1); |
| no_long_string(); |
| no_root_location(); |
| no_shuffle(); |
| log_level("info"); |
| |
| add_block_preprocessor(sub { |
| my ($block) = @_; |
| |
| $block->set_value("stream_conf_enable", 1); |
| |
| if (!defined $block->extra_stream_config) { |
| my $stream_config = <<_EOC_; |
| server { |
| listen unix:\$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({}) |
| } |
| } |
| |
| _EOC_ |
| $block->set_value("extra_stream_config", $stream_config); |
| } |
| |
| my $unix_socket_path = $ENV{"TEST_NGINX_HTML_DIR"} . "/nginx.sock"; |
| my $cmd = $block->ext_plugin_cmd // "['sleep', '5s']"; |
| my $extra_yaml_config = <<_EOC_; |
| ext-plugin: |
| path_for_test: $unix_socket_path |
| cmd: $cmd |
| _EOC_ |
| |
| $block->set_value("extra_yaml_config", $extra_yaml_config); |
| |
| if (!$block->request) { |
| $block->set_value("request", "GET /t"); |
| } |
| |
| if (!$block->error_log) { |
| $block->set_value("no_error_log", "[error]\n[alert]"); |
| } |
| }); |
| |
| run_tests; |
| |
| __DATA__ |
| |
| === TEST 1: add route |
| --- config |
| location /t { |
| content_by_lua_block { |
| local json = require("toolkit.json") |
| local t = require("lib.test_admin") |
| |
| local code, message, res = t.test('/apisix/admin/routes/1', |
| ngx.HTTP_PUT, |
| [[{ |
| "uri": "/hello", |
| "plugins": { |
| "ext-plugin-pre-req": { |
| } |
| }, |
| "upstream": { |
| "nodes": { |
| "127.0.0.1:1980": 1 |
| }, |
| "type": "roundrobin" |
| } |
| }]] |
| ) |
| |
| if code >= 300 then |
| ngx.status = code |
| ngx.say(message) |
| return |
| end |
| |
| ngx.say(message) |
| } |
| } |
| --- response_body |
| passed |
| |
| |
| |
| === TEST 2: stop |
| --- request |
| GET /hello |
| --- response_body chomp |
| cat |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({stop = true}) |
| } |
| } |
| --- error_code: 405 |
| --- response_headers |
| X-Resp: foo |
| X-Req: bar |
| |
| |
| |
| === TEST 3: check input |
| --- request |
| PUT /hello?xx=y&xx=z&&y=&&z |
| --- more_headers |
| X-Req: foo |
| X-Req: bar |
| X-Resp: cat |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({check_input = true}) |
| } |
| } |
| |
| |
| |
| === TEST 4: check input (ipv6) |
| --- config |
| location /t { |
| content_by_lua_block { |
| local t = require("lib.test_admin").test_ipv6 |
| t('/hello') |
| } |
| } |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({check_input_ipv6 = true}) |
| } |
| } |
| --- listen_ipv6 |
| |
| |
| |
| === TEST 5: rewrite |
| --- request |
| GET /hello |
| --- more_headers |
| X-Change: foo |
| X-Delete: foo |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({rewrite = true}) |
| } |
| } |
| --- response_body |
| uri: /uri |
| host: localhost |
| x-add: bar |
| x-change: bar |
| x-real-ip: 127.0.0.1 |
| |
| |
| |
| === TEST 6: rewrite host |
| --- request |
| GET /hello |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({rewrite_host = true}) |
| } |
| } |
| --- response_body |
| uri: /uri |
| host: 127.0.0.1 |
| x-real-ip: 127.0.0.1 |
| |
| |
| |
| === TEST 7: rewrite args |
| --- request |
| GET /hello?c=foo&d=bar |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({rewrite_args = true}) |
| } |
| } |
| --- response_body |
| uri: /plugin_proxy_rewrite_args |
| a: foo,bar |
| c: bar |
| |
| |
| |
| === TEST 8: proxy-rewrite + rewrite host |
| --- config |
| location /t { |
| content_by_lua_block { |
| local json = require("toolkit.json") |
| local t = require("lib.test_admin") |
| |
| local code, message, res = t.test('/apisix/admin/routes/1', |
| ngx.HTTP_PUT, |
| [[{ |
| "uri": "/hello", |
| "plugins": { |
| "proxy-rewrite": { |
| "host": "test.com" |
| }, |
| "ext-plugin-post-req": { |
| } |
| }, |
| "upstream": { |
| "nodes": { |
| "127.0.0.1:1980": 1 |
| }, |
| "type": "roundrobin" |
| } |
| }]] |
| ) |
| |
| if code >= 300 then |
| ngx.status = code |
| ngx.say(message) |
| return |
| end |
| |
| ngx.say(message) |
| } |
| } |
| --- response_body |
| passed |
| |
| |
| |
| === TEST 9: hit |
| --- request |
| GET /hello |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({rewrite_host = true, check_input_rewrite_host = true}) |
| } |
| } |
| --- response_body |
| uri: /uri |
| host: 127.0.0.1 |
| x-real-ip: 127.0.0.1 |
| |
| |
| |
| === TEST 10: proxy-rewrite + rewrite path |
| --- config |
| location /t { |
| content_by_lua_block { |
| local json = require("toolkit.json") |
| local t = require("lib.test_admin") |
| |
| local code, message, res = t.test('/apisix/admin/routes/1', |
| ngx.HTTP_PUT, |
| [[{ |
| "uri": "/hello", |
| "plugins": { |
| "proxy-rewrite": { |
| "uri": "/xxx" |
| }, |
| "ext-plugin-post-req": { |
| } |
| }, |
| "upstream": { |
| "nodes": { |
| "127.0.0.1:1980": 1 |
| }, |
| "type": "roundrobin" |
| } |
| }]] |
| ) |
| |
| if code >= 300 then |
| ngx.status = code |
| ngx.say(message) |
| return |
| end |
| |
| ngx.say(message) |
| } |
| } |
| --- response_body |
| passed |
| |
| |
| |
| === TEST 11: hit |
| --- request |
| GET /hello |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({rewrite_host = true, check_input_rewrite_path = true}) |
| } |
| } |
| --- response_body |
| uri: /uri |
| host: 127.0.0.1 |
| x-real-ip: 127.0.0.1 |
| |
| |
| |
| === TEST 12: proxy-rewrite + rewrite path with args |
| --- config |
| location /t { |
| content_by_lua_block { |
| local json = require("toolkit.json") |
| local t = require("lib.test_admin") |
| |
| local code, message, res = t.test('/apisix/admin/routes/1', |
| ngx.HTTP_PUT, |
| [[{ |
| "uri": "/hello", |
| "plugins": { |
| "proxy-rewrite": { |
| "uri": "/xxx?x=z" |
| }, |
| "ext-plugin-post-req": { |
| } |
| }, |
| "upstream": { |
| "nodes": { |
| "127.0.0.1:1980": 1 |
| }, |
| "type": "roundrobin" |
| } |
| }]] |
| ) |
| |
| if code >= 300 then |
| ngx.status = code |
| ngx.say(message) |
| return |
| end |
| |
| ngx.say(message) |
| } |
| } |
| --- response_body |
| passed |
| |
| |
| |
| === TEST 13: hit |
| --- request |
| GET /hello |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({rewrite_args = true, check_input_rewrite_args = true}) |
| } |
| } |
| --- response_body |
| uri: /plugin_proxy_rewrite_args |
| a: foo,bar |
| c: bar |
| x: z |
| |
| |
| |
| === TEST 14: rewrite args only |
| --- config |
| location /t { |
| content_by_lua_block { |
| local json = require("toolkit.json") |
| local t = require("lib.test_admin") |
| |
| local code, message, res = t.test('/apisix/admin/routes/1', |
| ngx.HTTP_PUT, |
| [[{ |
| "uri": "/plugin_proxy_rewrite_args", |
| "plugins": { |
| "ext-plugin-post-req": { |
| } |
| }, |
| "upstream": { |
| "nodes": { |
| "127.0.0.1:1980": 1 |
| }, |
| "type": "roundrobin" |
| } |
| }]] |
| ) |
| |
| if code >= 300 then |
| ngx.status = code |
| ngx.say(message) |
| return |
| end |
| |
| ngx.say(message) |
| } |
| } |
| --- response_body |
| passed |
| |
| |
| |
| === TEST 15: hit |
| --- request |
| GET /plugin_proxy_rewrite_args |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({rewrite_args_only = true}) |
| } |
| } |
| --- response_body |
| uri: /plugin_proxy_rewrite_args |
| a: foo,bar |
| c: bar |
| |
| |
| |
| === TEST 16: rewrite, bad path |
| --- config |
| location /t { |
| content_by_lua_block { |
| local json = require("toolkit.json") |
| local t = require("lib.test_admin") |
| |
| local code, message, res = t.test('/apisix/admin/routes/1', |
| ngx.HTTP_PUT, |
| [[{ |
| "uri": "/hello", |
| "plugins": { |
| "ext-plugin-post-req": { |
| } |
| }, |
| "upstream": { |
| "nodes": { |
| "127.0.0.1:1980": 1 |
| }, |
| "type": "roundrobin" |
| } |
| }]] |
| ) |
| |
| if code >= 300 then |
| ngx.status = code |
| ngx.say(message) |
| return |
| end |
| |
| ngx.say(message) |
| } |
| } |
| --- response_body |
| passed |
| |
| |
| |
| === TEST 17: hit |
| --- request |
| GET /hello |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({rewrite_bad_path = true}) |
| } |
| } |
| --- error_log |
| undefined path in test server, uri: /plugin_proxy_rewrite_args%3Fa=2 |
| --- error_code: 404 |
| |
| |
| |
| === TEST 18: stop without setting status code |
| --- request |
| GET /hello |
| --- response_body chomp |
| cat |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({stop = true, check_default_status = true}) |
| } |
| } |
| --- response_headers |
| X-Resp: foo |
| X-Req: bar |
| |
| |
| |
| === TEST 19: rewrite response header and call the upstream service |
| --- request |
| GET /hello |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({rewrite_resp_header = true}) |
| } |
| } |
| --- response_body |
| plugin_proxy_rewrite_resp_header |
| --- response_headers |
| X-Resp: foo |
| X-Req: bar |
| |
| |
| |
| === TEST 20: rewrite non-important response headers and call the upstream service |
| --- request |
| GET /hello |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({rewrite_vital_resp_header = true}) |
| } |
| } |
| --- response_body |
| plugin_proxy_rewrite_resp_header |
| --- response_headers |
| X-Resp: foo |
| X-Req: bar |
| Content-Type: text/plain |
| Content-Encoding: |
| |
| |
| |
| === TEST 21: trace stopped request |
| --- config |
| location /t { |
| content_by_lua_block { |
| local json = require("toolkit.json") |
| local t = require("lib.test_admin") |
| |
| local code, message, res = t.test('/apisix/admin/routes/1', |
| ngx.HTTP_PUT, |
| [[{ |
| "uri": "/hello", |
| "plugins": { |
| "zipkin": { |
| "endpoint": "http://127.0.0.1:1980/mock_zipkin", |
| "sample_ratio": 1 |
| }, |
| "ext-plugin-pre-req": { |
| } |
| }, |
| "upstream": { |
| "nodes": { |
| "127.0.0.1:1980": 1 |
| }, |
| "type": "roundrobin" |
| } |
| }]] |
| ) |
| |
| if code >= 300 then |
| ngx.status = code |
| ngx.say(message) |
| return |
| end |
| |
| ngx.say(message) |
| } |
| } |
| --- response_body |
| passed |
| |
| |
| |
| === TEST 22: hit |
| --- extra_init_by_lua |
| local prev_new = require("opentracing.tracer").new |
| local function new(...) |
| ngx.log(ngx.WARN, "tracer attached to stopped request") |
| return prev_new(...) |
| end |
| require("opentracing.tracer").new = new |
| --- request |
| GET /hello |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({stop = true}) |
| } |
| } |
| --- error_code: 405 |
| --- error_log |
| tracer attached to stopped request |
| |
| |
| |
| === TEST 23: set header with OpenResty API should invalidate the cache |
| --- config |
| location /t { |
| content_by_lua_block { |
| local json = require("toolkit.json") |
| local t = require("lib.test_admin") |
| |
| local code, message, res = t.test('/apisix/admin/routes/1', |
| ngx.HTTP_PUT, |
| [[{ |
| "uri": "/hello", |
| "plugins": { |
| "serverless-pre-function": { |
| "functions" : ["return function(conf, ctx) |
| require('apisix.core').request.headers(); |
| ngx.req.set_header('X-Req', 'foo'); |
| require('ngx.req').add_header('X-Req', 'bar'); |
| ngx.req.set_header('X-Resp', 'cat'); |
| end"] |
| }, |
| "ext-plugin-post-req": { |
| } |
| }, |
| "upstream": { |
| "nodes": { |
| "127.0.0.1:1980": 1 |
| }, |
| "type": "roundrobin" |
| } |
| }]] |
| ) |
| |
| if code >= 300 then |
| ngx.status = code |
| ngx.say(message) |
| return |
| end |
| |
| ngx.say(message) |
| } |
| } |
| --- response_body |
| passed |
| |
| |
| |
| === TEST 24: check input |
| --- request |
| PUT /hello?xx=y&xx=z&&y=&&z |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({check_input = true}) |
| } |
| } |
| |
| |
| |
| === TEST 25: rewrite same response headers and call the upstream service |
| --- request |
| GET /hello |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({rewrite_same_resp_header = true}) |
| } |
| } |
| --- response_body |
| plugin_proxy_rewrite_resp_header |
| --- response_headers |
| X-Resp: foo |
| X-Req: bar |
| X-Same: one, two |
| |
| |
| |
| === TEST 26: stop with modify same response headers |
| --- request |
| GET /hello |
| --- response_body chomp |
| cat |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({stop = true}) |
| } |
| } |
| --- error_code: 405 |
| --- response_headers |
| X-Resp: foo |
| X-Req: bar |
| X-Same: one, two |
| |
| |
| |
| === TEST 27: add route |
| --- config |
| location /t { |
| content_by_lua_block { |
| local json = require("toolkit.json") |
| local t = require("lib.test_admin") |
| |
| local code, message, res = t.test('/apisix/admin/routes/1', |
| ngx.HTTP_PUT, |
| [[{ |
| "uri": "/echo", |
| "plugins": { |
| "ext-plugin-pre-req": { |
| } |
| }, |
| "upstream": { |
| "nodes": { |
| "127.0.0.1:1980": 1 |
| }, |
| "type": "roundrobin" |
| } |
| }]] |
| ) |
| |
| if code >= 300 then |
| ngx.status = code |
| ngx.say(message) |
| return |
| end |
| |
| ngx.say(message) |
| } |
| } |
| --- response_body |
| passed |
| |
| |
| |
| === TEST 28: test rewrite request body |
| --- request |
| GET /echo |
| --- response_body chomp |
| cat |
| --- extra_stream_config |
| server { |
| listen unix:$TEST_NGINX_HTML_DIR/nginx.sock; |
| |
| content_by_lua_block { |
| local ext = require("lib.ext-plugin") |
| ext.go({rewrite_request_body = true}) |
| } |
| } |
| --- response_body |
| abc |