2020-10-17 08:21:47 +08:00
#
# 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_shuffle ( ) ;
no_root_location ( ) ;
run_tests ;
__DATA__
=== TEST 1 : set route , missing redis host
- - - config
location / t {
content_by_lua_block {
local t = require ( "lib.test_admin" ) . test
local code , body = t ( '/apisix/admin/routes/1' ,
ngx . HTTP_PUT ,
[ [ {
"plugins" : {
"limit-count" : {
"count" : 2 ,
"time_window" : 60 ,
"rejected_code" : 503 ,
"key" : "remote_addr" ,
"policy" : "redis-cluster"
}
} ,
"upstream" : {
"nodes" : {
"127.0.0.1:1980" : 1
} ,
"type" : "roundrobin"
} ,
"uri" : "/hello"
} ] ]
)
if code >= 300 then
ngx . status = code
end
ngx . print ( body )
}
}
- - - request
GET / t
- - - error_code: 400
- - - response_body
{ "error_msg" : "failed to check the configuration of plugin limit-count err: failed to validate dependent schema for \"policy\": value should match only one schema, but matches none" }
- - - no_error_log
[ error ]
=== TEST 2 : set route , with redis host and port
- - - config
location / t {
content_by_lua_block {
local t = require ( "lib.test_admin" ) . test
local code , body = t ( '/apisix/admin/routes/1' ,
ngx . HTTP_PUT ,
[ [ {
"uri" : "/hello" ,
"plugins" : {
"limit-count" : {
"count" : 2 ,
"time_window" : 60 ,
"rejected_code" : 503 ,
"key" : "remote_addr" ,
"policy" : "redis-cluster" ,
"redis_timeout" : 1001 ,
"redis_cluster_nodes" : [
"127.0.0.1:5000" ,
"127.0.0.1:5001"
]
}
} ,
"upstream" : {
"nodes" : {
"127.0.0.1:1980" : 1
} ,
"type" : "roundrobin"
}
} ] ]
)
if code >= 300 then
ngx . status = code
end
ngx . say ( body )
}
}
- - - request
GET / t
- - - response_body
passed
- - - no_error_log
[ error ]
=== TEST 3 : set route
- - - config
location / t {
content_by_lua_block {
local t = require ( "lib.test_admin" ) . test
local code , body = t ( '/apisix/admin/routes/1' ,
ngx . HTTP_PUT ,
[ [ {
"uri" : "/hello" ,
"plugins" : {
"limit-count" : {
"count" : 2 ,
"time_window" : 60 ,
"rejected_code" : 503 ,
"key" : "remote_addr" ,
"policy" : "redis-cluster" ,
"redis_cluster_nodes" : [
"127.0.0.1:5000" ,
"127.0.0.1:5001"
]
}
} ,
"upstream" : {
"nodes" : {
"127.0.0.1:1980" : 1
} ,
"type" : "roundrobin"
}
} ] ] ,
[ [ {
"node" : {
"value" : {
"plugins" : {
"limit-count" : {
"count" : 2 ,
"time_window" : 60 ,
"rejected_code" : 503 ,
"key" : "remote_addr" ,
"policy" : "redis-cluster" ,
"redis_timeout" : 1000 ,
"redis_cluster_nodes" : [
"127.0.0.1:5000" ,
"127.0.0.1:5001"
]
}
} ,
"upstream" : {
"nodes" : {
"127.0.0.1:1980" : 1
} ,
"type" : "roundrobin"
} ,
"uri" : "/hello"
} ,
"key" : "/apisix/routes/1"
} ,
"action" : "set"
} ] ]
)
if code >= 300 then
ngx . status = code
end
ngx . say ( body )
}
}
- - - request
GET / t
- - - response_body
passed
- - - no_error_log
[ error ]
=== TEST 4 : up the limit
2020-11-02 16:47:32 +08:00
- - - request
GET / hello
- - - no_error_log
[ error ]
- - - error_log
try to lock with key route #1#redis-cluster
unlock with key route #1#redis-cluster
=== TEST 5 : up the limit
2020-10-17 08:21:47 +08:00
- - - pipelined_requests eval
2020-11-02 16:47:32 +08:00
[ "GET /hello" , "GET /hello" , "GET /hello" ]
2020-10-17 08:21:47 +08:00
- - - error_code eval
2020-11-02 16:47:32 +08:00
[ 200 , 503 , 503 ]
2020-10-17 08:21:47 +08:00
- - - no_error_log
[ error ]
2020-11-02 16:47:32 +08:00
=== TEST 6 : up the limit again
2020-10-17 08:21:47 +08:00
- - - pipelined_requests eval
[ "GET /hello1" , "GET /hello" , "GET /hello2" , "GET /hello" , "GET /hello" ]
- - - error_code eval
[ 404 , 503 , 404 , 503 , 503 ]
- - - no_error_log
[ error ]
2020-11-02 16:47:32 +08:00
=== TEST 7 : set route , four redis nodes , only one is valid
2020-10-17 08:21:47 +08:00
- - - config
location / t {
content_by_lua_block {
local t = require ( "lib.test_admin" ) . test
local code , body = t ( '/apisix/admin/routes/1' ,
ngx . HTTP_PUT ,
[ [ {
"uri" : "/hello" ,
"plugins" : {
"limit-count" : {
"count" : 9999 ,
"time_window" : 60 ,
"key" : "http_x_real_ip" ,
"policy" : "redis-cluster" ,
"redis_cluster_nodes" : [
"127.0.0.1:5000" ,
"127.0.0.1:8001" ,
"127.0.0.1:8002" ,
"127.0.0.1:8003"
]
}
} ,
"upstream" : {
"nodes" : {
"127.0.0.1:1980" : 1
} ,
"type" : "roundrobin"
}
} ] ]
)
if code >= 300 then
ngx . status = code
end
ngx . say ( body )
}
}
- - - request
GET / t
- - - response_body
passed
- - - no_error_log
[ error ]
2020-11-02 16:47:32 +08:00
=== TEST 8 : hit route
2020-10-17 08:21:47 +08:00
- - - config
location / t {
content_by_lua_block {
local t = require ( "lib.test_admin" ) . test
for i = 1 , 20 do
local code , body = t ( '/hello' , ngx . HTTP_GET )
ngx . say ( "code: " , code )
end
}
}
- - - request
GET / t
- - - response_body
code: 200
code: 200
code: 200
code: 200
code: 200
code: 200
code: 200
code: 200
code: 200
code: 200
code: 200
code: 200
code: 200
code: 200
code: 200
code: 200
code: 200
code: 200
code: 200
code: 200
- - - no_error_log
[ error ]
- - - timeout: 10
2020-11-02 16:47:32 +08:00
=== TEST 9 : update route , use new limit configuration
2020-10-17 08:21:47 +08:00
- - - config
location / t {
content_by_lua_block {
local t = require ( "lib.test_admin" ) . test
local function set_route ( count )
t ( '/apisix/admin/routes/1' ,
ngx . HTTP_PUT ,
[ [ {
"uri" : "/hello" ,
"plugins" : {
"limit-count" : {
"count" : ] ] .. count .. [ [ ,
"time_window" : 60 ,
"key" : "http_x_real_ip" ,
"policy" : "redis-cluster" ,
"redis_cluster_nodes" : [
"127.0.0.1:5000" ,
"127.0.0.1:5001"
]
}
} ,
"upstream" : {
"nodes" : {
"127.0.0.1:1980" : 1
} ,
"type" : "roundrobin"
}
} ] ]
)
end
set_route ( 2 )
local t = require ( "lib.test_admin" ) . test
for i = 1 , 5 do
local code , body = t ( '/hello' , ngx . HTTP_GET )
ngx . say ( "code: " , code )
end
set_route ( 3 )
local t = require ( "lib.test_admin" ) . test
for i = 1 , 5 do
local code , body = t ( '/hello' , ngx . HTTP_GET )
ngx . say ( "code: " , code )
end
}
}
- - - request
GET / t
- - - response_body
code: 200
code: 200
code: 503
code: 503
code: 503
code: 200
code: 200
code: 200
code: 503
code: 503
- - - no_error_log
[ error ]