2019-10-31 09:27:28 +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.
|
|
|
|
#
|
2019-09-10 09:42:55 +08:00
|
|
|
use t::APISIX 'no_plan';
|
2019-07-24 16:59:37 +08:00
|
|
|
|
|
|
|
repeat_each(2);
|
|
|
|
no_long_string();
|
|
|
|
no_root_location();
|
|
|
|
no_shuffle();
|
|
|
|
run_tests;
|
|
|
|
|
|
|
|
__DATA__
|
|
|
|
|
|
|
|
=== TEST 1: sanity
|
|
|
|
--- config
|
|
|
|
location /t {
|
|
|
|
content_by_lua_block {
|
|
|
|
local plugin = require("apisix.plugins.jwt-auth")
|
|
|
|
local conf = {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
local ok, err = plugin.check_schema(conf)
|
|
|
|
if not ok then
|
|
|
|
ngx.say(err)
|
|
|
|
end
|
|
|
|
|
|
|
|
ngx.say(require("cjson").encode(conf))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--- request
|
|
|
|
GET /t
|
|
|
|
--- response_body_like eval
|
|
|
|
qr/{"algorithm":"HS256","secret":"\w+-\w+-\w+-\w+-\w+","exp":86400}/
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
=== TEST 2: wrong type of string
|
|
|
|
--- config
|
|
|
|
location /t {
|
|
|
|
content_by_lua_block {
|
|
|
|
local plugin = require("apisix.plugins.jwt-auth")
|
|
|
|
local ok, err = plugin.check_schema({key = 123})
|
|
|
|
if not ok then
|
|
|
|
ngx.say(err)
|
|
|
|
end
|
|
|
|
|
|
|
|
ngx.say("done")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--- request
|
|
|
|
GET /t
|
|
|
|
--- response_body
|
2019-10-23 12:58:10 +08:00
|
|
|
property "key" validation failed: wrong type: expected string, got number
|
2019-07-24 16:59:37 +08:00
|
|
|
done
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
=== TEST 3: add consumer with username and plugins
|
|
|
|
--- config
|
|
|
|
location /t {
|
|
|
|
content_by_lua_block {
|
|
|
|
local t = require("lib.test_admin").test
|
|
|
|
local code, body = t('/apisix/admin/consumers',
|
2019-09-22 06:05:58 +08:00
|
|
|
ngx.HTTP_PUT,
|
|
|
|
[[{
|
2019-07-24 16:59:37 +08:00
|
|
|
"username": "jack",
|
|
|
|
"plugins": {
|
2019-09-22 06:05:58 +08:00
|
|
|
"jwt-auth": {
|
|
|
|
"key": "user-key",
|
|
|
|
"secret": "my-secret-key"
|
2019-07-24 16:59:37 +08:00
|
|
|
}
|
2019-09-22 06:05:58 +08:00
|
|
|
}
|
2019-07-24 16:59:37 +08:00
|
|
|
}]],
|
|
|
|
[[{
|
|
|
|
"node": {
|
|
|
|
"value": {
|
|
|
|
"username": "jack",
|
|
|
|
"plugins": {
|
|
|
|
"jwt-auth": {
|
|
|
|
"key": "user-key",
|
|
|
|
"secret": "my-secret-key"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"action": "set"
|
|
|
|
}]]
|
|
|
|
)
|
|
|
|
|
|
|
|
ngx.status = code
|
|
|
|
ngx.say(body)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--- request
|
|
|
|
GET /t
|
|
|
|
--- response_body
|
|
|
|
passed
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
=== TEST 4: enable jwt auth plugin using admin api
|
|
|
|
--- config
|
|
|
|
location /t {
|
|
|
|
content_by_lua_block {
|
|
|
|
local t = require("lib.test_admin").test
|
|
|
|
local code, body = t('/apisix/admin/routes/1',
|
2019-09-22 06:05:58 +08:00
|
|
|
ngx.HTTP_PUT,
|
|
|
|
[[{
|
|
|
|
"plugins": {
|
|
|
|
"jwt-auth": {}
|
|
|
|
},
|
|
|
|
"upstream": {
|
|
|
|
"nodes": {
|
|
|
|
"127.0.0.1:1980": 1
|
2019-07-24 16:59:37 +08:00
|
|
|
},
|
2019-09-22 06:05:58 +08:00
|
|
|
"type": "roundrobin"
|
|
|
|
},
|
|
|
|
"uri": "/hello"
|
2019-07-24 16:59:37 +08:00
|
|
|
}]]
|
|
|
|
)
|
|
|
|
|
|
|
|
if code >= 300 then
|
|
|
|
ngx.status = code
|
|
|
|
end
|
|
|
|
ngx.say(body)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--- request
|
|
|
|
GET /t
|
|
|
|
--- response_body
|
|
|
|
passed
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
=== TEST 5: sign
|
|
|
|
--- request
|
|
|
|
GET /apisix/plugin/jwt/sign?key=user-key
|
|
|
|
--- response_body_like eval
|
|
|
|
qr/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.\w+.\w+/
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-10-30 10:41:14 +08:00
|
|
|
=== TEST 6: test for unsupported method
|
|
|
|
--- request
|
|
|
|
PATCH /apisix/plugin/jwt/sign?key=user-key
|
|
|
|
--- error_code: 404
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
=== TEST 7: verify, missing token
|
2019-07-24 16:59:37 +08:00
|
|
|
--- request
|
|
|
|
GET /hello
|
|
|
|
--- error_code: 401
|
|
|
|
--- response_body
|
|
|
|
{"message":"Missing JWT token in request"}
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-10-30 10:41:14 +08:00
|
|
|
=== TEST 8: verify: invalid JWT token
|
2019-07-24 16:59:37 +08:00
|
|
|
--- request
|
|
|
|
GET /hello?jwt=invalid-eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJrZXkiOiJ1c2VyLWtleSIsImV4cCI6MTU2Mzg3MDUwMX0.pPNVvh-TQsdDzorRwa-uuiLYiEBODscp9wv0cwD6c68
|
|
|
|
--- error_code: 401
|
|
|
|
--- response_body
|
|
|
|
{"message":"invalid header: invalid-eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"}
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-10-30 10:41:14 +08:00
|
|
|
=== TEST 9: verify: expired JWT token
|
2019-07-24 16:59:37 +08:00
|
|
|
--- request
|
|
|
|
GET /hello?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJrZXkiOiJ1c2VyLWtleSIsImV4cCI6MTU2Mzg3MDUwMX0.pPNVvh-TQsdDzorRwa-uuiLYiEBODscp9wv0cwD6c68
|
|
|
|
--- error_code: 401
|
|
|
|
--- response_body
|
|
|
|
{"message":"'exp' claim expired at Tue, 23 Jul 2019 08:28:21 GMT"}
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-10-30 10:41:14 +08:00
|
|
|
=== TEST 10: verify (in argument)
|
2019-07-24 16:59:37 +08:00
|
|
|
--- request
|
|
|
|
GET /hello?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJrZXkiOiJ1c2VyLWtleSIsImV4cCI6MTg3OTMxODU0MX0.fNtFJnNmJgzbiYmGB0Yjvm-l6A6M4jRV1l4mnVFSYjs
|
|
|
|
--- response_body
|
|
|
|
hello world
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-10-30 10:41:14 +08:00
|
|
|
=== TEST 11: verify (in header)
|
2019-07-24 16:59:37 +08:00
|
|
|
--- request
|
|
|
|
GET /hello
|
|
|
|
--- more_headers
|
2020-01-07 10:34:33 +08:00
|
|
|
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJrZXkiOiJ1c2VyLWtleSIsImV4cCI6MTg3OTMxODU0MX0.fNtFJnNmJgzbiYmGB0Yjvm-l6A6M4jRV1l4mnVFSYjs
|
2019-07-24 16:59:37 +08:00
|
|
|
--- response_body
|
|
|
|
hello world
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-10-30 10:41:14 +08:00
|
|
|
=== TEST 12: verify (in cookie)
|
2019-07-24 16:59:37 +08:00
|
|
|
--- request
|
|
|
|
GET /hello
|
|
|
|
--- more_headers
|
|
|
|
Cookie: jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJrZXkiOiJ1c2VyLWtleSIsImV4cCI6MTg3OTMxODU0MX0.fNtFJnNmJgzbiYmGB0Yjvm-l6A6M4jRV1l4mnVFSYjs
|
|
|
|
--- response_body
|
|
|
|
hello world
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|
2020-01-07 10:34:33 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
=== TEST 13: verify (in header without Bearer)
|
|
|
|
--- request
|
|
|
|
GET /hello
|
|
|
|
--- more_headers
|
|
|
|
Authorization: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJrZXkiOiJ1c2VyLWtleSIsImV4cCI6MTg3OTMxODU0MX0.fNtFJnNmJgzbiYmGB0Yjvm-l6A6M4jRV1l4mnVFSYjs
|
|
|
|
--- response_body
|
|
|
|
hello world
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
=== TEST 14: verify (header with bearer)
|
|
|
|
--- request
|
|
|
|
GET /hello
|
|
|
|
--- more_headers
|
|
|
|
Authorization: bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJrZXkiOiJ1c2VyLWtleSIsImV4cCI6MTg3OTMxODU0MX0.fNtFJnNmJgzbiYmGB0Yjvm-l6A6M4jRV1l4mnVFSYjs
|
|
|
|
--- response_body
|
|
|
|
hello world
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
=== TEST 15: verify (invalid bearer token)
|
|
|
|
--- request
|
|
|
|
GET /hello
|
|
|
|
--- more_headers
|
|
|
|
Authorization: bearer invalid-eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJrZXkiOiJ1c2VyLWtleSIsImV4cCI6MTg3OTMxODU0MX0.fNtFJnNmJgzbiYmGB0Yjvm-l6A6M4jRV1l4mnVFSYjs
|
|
|
|
--- error_code: 401
|
|
|
|
--- response_body
|
|
|
|
{"message":"invalid header: invalid-eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"}
|
|
|
|
--- no_error_log
|
|
|
|
[error]
|