# # 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'; log_level('debug'); repeat_each(1); no_long_string(); no_root_location(); run_tests; __DATA__ === TEST 1: sanity --- config location /t { content_by_lua_block { local plugin = require("apisix.plugins.authz-keycloak") local ok, err = plugin.check_schema({ token_endpoint = "https://efactory-security-portal.salzburgresearch.at/", grant_type = "urn:ietf:params:oauth:grant-type:uma-ticket" }) if not ok then ngx.say(err) end ngx.say("done") } } --- request GET /t --- response_body done --- no_error_log [error] === TEST 2: full schema check --- config location /t { content_by_lua_block { local plugin = require("apisix.plugins.authz-keycloak") local ok, err = plugin.check_schema({token_endpoint = "https://efactory-security-portal.salzburgresearch.at/", permissions = {"res:customer#scopes:view"}, timeout = 1000, audience = "University", grant_type = "urn:ietf:params:oauth:grant-type:uma-ticket" }) if not ok then ngx.say(err) end ngx.say("done") } } --- request GET /t --- response_body done --- no_error_log [error] === TEST 3: token_endpoint missing --- config location /t { content_by_lua_block { local plugin = require("apisix.plugins.authz-keycloak") local ok, err = plugin.check_schema({permissions = {"res:customer#scopes:view"}}) if not ok then ngx.say(err) end ngx.say("done") } } --- request GET /t --- response_body property "token_endpoint" is required done --- no_error_log [error] === TEST 4: add plugin with view course permissions --- 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": { "authz-keycloak": { "token_endpoint": "http://127.0.0.1:8090/auth/realms/University/protocol/openid-connect/token", "permissions": ["course_resource#view"], "audience": "course_management", "grant_type": "urn:ietf:params:oauth:grant-type:uma-ticket", "timeout": 3000 } }, "upstream": { "nodes": { "127.0.0.1:1982": 1 }, "type": "roundrobin" }, "uri": "/hello1" }]], [[{ "node": { "value": { "plugins": { "authz-keycloak": { "token_endpoint": "http://127.0.0.1:8090/auth/realms/University/protocol/openid-connect/token", "permissions": ["course_resource#view"], "audience": "course_management", "grant_type": "urn:ietf:params:oauth:grant-type:uma-ticket", "timeout": 3000 } }, "upstream": { "nodes": { "127.0.0.1:1982": 1 }, "type": "roundrobin" }, "uri": "/hello1" }, "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 5: Get access token for teacher and access view course route --- config location /t { content_by_lua_block { local json_decode = require("cjson").decode local http = require "resty.http" local httpc = http.new() local uri = "http://127.0.0.1:8090/auth/realms/University/protocol/openid-connect/token" local res, err = httpc:request_uri(uri, { method = "POST", body = "grant_type=password&client_id=course_management&client_secret=d1ec69e9-55d2-4109-a3ea-befa071579d5&username=teacher@gmail.com&password=123456", headers = { ["Content-Type"] = "application/x-www-form-urlencoded" } }) if res.status == 200 then local body = json_decode(res.body) local accessToken = body["access_token"] uri = "http://127.0.0.1:" .. ngx.var.server_port .. "/hello1" local res, err = httpc:request_uri(uri, { method = "GET", headers = { ["Authorization"] = "Bearer " .. accessToken, } }) if res.status == 200 then ngx.say(true) else ngx.say(false) end else ngx.say(false) end } } --- request GET /t --- response_body true --- no_error_log [error] === TEST 6: invalid access token --- config location /t { content_by_lua_block { local http = require "resty.http" local httpc = http.new() local uri = "http://127.0.0.1:" .. ngx.var.server_port .. "/hello1" local res, err = httpc:request_uri(uri, { method = "GET", headers = { ["Authorization"] = "Bearer wrong_token", } }) if res.status == 401 then ngx.say(true) end } } --- request GET /t --- response_body true --- error_log Invalid bearer token === TEST 7: add plugin for delete course 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, [[{ "plugins": { "authz-keycloak": { "token_endpoint": "http://127.0.0.1:8090/auth/realms/University/protocol/openid-connect/token", "permissions": ["course_resource#delete"], "audience": "course_management", "grant_type": "urn:ietf:params:oauth:grant-type:uma-ticket", "timeout": 3000 } }, "upstream": { "nodes": { "127.0.0.1:1982": 1 }, "type": "roundrobin" }, "uri": "/hello1" }]], [[{ "node": { "value": { "plugins": { "authz-keycloak": { "token_endpoint": "http://127.0.0.1:8090/auth/realms/University/protocol/openid-connect/token", "permissions": ["course_resource#delete"], "audience": "course_management", "grant_type": "urn:ietf:params:oauth:grant-type:uma-ticket", "timeout": 3000 } }, "upstream": { "nodes": { "127.0.0.1:1982": 1 }, "type": "roundrobin" }, "uri": "/hello1" }, "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 8: Get access token for student and delete course --- config location /t { content_by_lua_block { local json_decode = require("cjson").decode local http = require "resty.http" local httpc = http.new() local uri = "http://127.0.0.1:8090/auth/realms/University/protocol/openid-connect/token" local res, err = httpc:request_uri(uri, { method = "POST", body = "grant_type=password&client_id=course_management&client_secret=d1ec69e9-55d2-4109-a3ea-befa071579d5&username=student@gmail.com&password=123456", headers = { ["Content-Type"] = "application/x-www-form-urlencoded" } }) if res.status == 200 then local body = json_decode(res.body) local accessToken = body["access_token"] uri = "http://127.0.0.1:" .. ngx.var.server_port .. "/hello1" local res, err = httpc:request_uri(uri, { method = "GET", headers = { ["Authorization"] = "Bearer " .. accessToken, } }) if res.status == 403 then ngx.say(true) else ngx.say(false) end else ngx.say(false) end } } --- request GET /t --- response_body true --- error_log {"error":"access_denied","error_description":"not_authorized"}