forked from 3scale/APIcast
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconfiguration-loading-with-oidc.t
310 lines (289 loc) · 8.79 KB
/
configuration-loading-with-oidc.t
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
use lib 't';
use Test::APIcast::Blackbox 'no_plan';
run_tests();
__DATA__
=== TEST 1: load a config where only some of the services have an OIDC configuration
This is a regression test. APIcast crashed when loading a config where only
some of the services used OIDC.
The reason is that we created an array of OIDC configs with
size=number_of_services. Let's say we have 100 services and only the 50th has an
OIDC config. In this case, we created this Lua table:
{ [50] = oidc_config_here }.
The problem is that cjson raises an error when trying to convert a sparse array
like that into JSON. Using the default cjson configuration, the minimum number
of elements to reproduce the error is 11. So in this test, we create 11 services
and assign an OIDC config only to the last one. Check
https://www.kyne.com.au/~mark/software/lua-cjson-manual.html#encode_sparse_array
for more details.
Now we assign to _false_ the elements of the array that do not have an OIDC
config, so this test should not crash.
--- env eval
(
'THREESCALE_DEPLOYMENT_ENV' => 'production',
'APICAST_CONFIGURATION_LOADER' => 'lazy',
'THREESCALE_PORTAL_ENDPOINT' => "http://test:$ENV{TEST_NGINX_SERVER_PORT}"
)
--- upstream env
location = /admin/api/account/proxy_configs/production.json {
content_by_lua_block {
local expected = { host = 'localhost', version = 'latest', page = '1', per_page = '500' }
require('luassert').same(expected, ngx.req.get_uri_args(0))
local proxy_configs_list = {}
for i = 1,10,1
do
table.insert(proxy_configs_list, {
proxy_config = {
content = {
id = i, backend_version = 1,
proxy = {
hosts = { "localhost" },
api_backend = 'http://test:$TEST_NGINX_SERVER_PORT/api/',
backend = { endpoint = 'http://test:$TEST_NGINX_SERVER_PORT' },
proxy_rules = { { pattern = '/', http_method = 'GET', metric_system_name = 'test', delta = 1 } }
}
}
}
})
end
table.insert(proxy_configs_list, {
proxy_config = {
content = {
id = 11,
proxy = { oidc_issuer_endpoint = 'http://test:$TEST_NGINX_SERVER_PORT/issuer/endpoint' }
}
}
})
local response = { proxy_configs = proxy_configs_list }
ngx.header.content_type = 'application/json;charset=utf-8'
ngx.say(require('cjson').encode(response))
}
}
location = /issuer/endpoint/.well-known/openid-configuration {
content_by_lua_block {
local base = "http://" .. ngx.var.host .. ':' .. ngx.var.server_port
ngx.header.content_type = 'application/json;charset=utf-8'
ngx.say(require('cjson').encode {
issuer = 'https://example.com/auth/realms/apicast',
id_token_signing_alg_values_supported = { 'RS256' },
jwks_uri = base .. '/jwks',
})
}
}
location = /jwks {
content_by_lua_block {
ngx.header.content_type = 'application/json;charset=utf-8'
ngx.say([[
{ "keys": [
{ "kty":"RSA","kid":"somekid",
"n":"sKXP3pwND3rkQ1gx9nMb4By7bmWnHYo2kAAsFD5xq0IDn26zv64tjmuNBHpI6BmkLPk8mIo0B1E8MkxdKZeozQ","e":"AQAB" }
] }
]])
}
}
location /transactions/authrep.xml {
content_by_lua_block {
ngx.exit(200)
}
}
location /api/ {
echo 'yay, api backend';
}
--- request
GET /?user_key=uk
--- error_code: 200
--- response_body
yay, api backend
=== TEST 2: load a config where only some of the services have an OIDC configuration (with a portal endpoint with path)
This test is almost the same as the previous one. The only difference is that,
in this one, THREESCALE_PORTAL_ENDPOINT has a path.
--- env eval
(
'APICAST_CONFIGURATION_LOADER' => 'lazy',
'THREESCALE_PORTAL_ENDPOINT' => "http://test:$ENV{TEST_NGINX_SERVER_PORT}/config"
)
--- upstream env
location = /config/production.json {
echo '
{
"proxy_configs": [
{
"proxy_config": {
"id": 1,
"content": {
"backend_version": 1,
"environment": "production",
"proxy": {
"hosts": [
"localhost"
],
"api_backend": "http://test:$TEST_NGINX_SERVER_PORT/api/",
"backend": {
"endpoint": "http://test:$TEST_NGINX_SERVER_PORT"
},
"proxy_rules": [
{ "pattern": "/", "http_method": "GET", "metric_system_name": "test", "delta": 1}
]
}
}
}
},
{ "proxy_config": { "content": {} } },
{ "proxy_config": { "content": {} } },
{ "proxy_config": { "content": {} } },
{ "proxy_config": { "content": {} } },
{ "proxy_config": { "content": {} } },
{ "proxy_config": { "content": {} } },
{ "proxy_config": { "content": {} } },
{ "proxy_config": { "content": {} } },
{ "proxy_config": { "content": {} } },
{
"proxy_config": {
"id": 2,
"content": {
"backend_version": "oidc",
"environment": "production",
"proxy": {
"oidc_issuer_endpoint": "http://test:$TEST_NGINX_SERVER_PORT/issuer/endpoint",
"backend": {
"endpoint": "http://test:$TEST_NGINX_SERVER_PORT"
},
"proxy_rules": [
{ "pattern": "/", "http_method": "GET", "metric_system_name": "test", "delta": 1}
]
}
}
}
}
]
}
';
}
location = /issuer/endpoint/.well-known/openid-configuration {
content_by_lua_block {
local base = "http://" .. ngx.var.host .. ':' .. ngx.var.server_port
ngx.header.content_type = 'application/json;charset=utf-8'
ngx.say(require('cjson').encode {
issuer = 'https://example.com/auth/realms/apicast',
id_token_signing_alg_values_supported = { 'RS256' },
jwks_uri = base .. '/jwks',
})
}
}
location = /jwks {
content_by_lua_block {
ngx.header.content_type = 'application/json;charset=utf-8'
ngx.say([[
{ "keys": [
{ "kty":"RSA","kid":"somekid",
"n":"sKXP3pwND3rkQ1gx9nMb4By7bmWnHYo2kAAsFD5xq0IDn26zv64tjmuNBHpI6BmkLPk8mIo0B1E8MkxdKZeozQ","e":"AQAB" }
] }
]])
}
}
location /transactions/authrep.xml {
content_by_lua_block {
ngx.exit(200)
}
}
location /api/ {
echo 'yay, api backend';
}
--- request
GET /?user_key=uk
--- error_code: 200
--- response_body
yay, api backend
=== TEST 3: OIDC caching enabled when the same issuer is in place
This test validates that if multiple services has the same issuer for the cache
the configuration will be stored for the issuer and no duplicate request will
happens.
--- env eval
(
'APICAST_CONFIGURATION_LOADER' => 'lazy',
'THREESCALE_PORTAL_ENDPOINT' => "http://test:$ENV{TEST_NGINX_SERVER_PORT}/config"
)
--- upstream env
location = /config/production.json {
echo '
{
"proxy_configs": [
{
"proxy_config": {
"id": 1,
"content": {
"backend_version": "oidc",
"environment": "production",
"proxy": {
"oidc_issuer_endpoint": "http://test:$TEST_NGINX_SERVER_PORT/issuer/endpoint",
"backend": {
"endpoint": "http://test:$TEST_NGINX_SERVER_PORT"
},
"proxy_rules": [
{ "pattern": "/", "http_method": "GET", "metric_system_name": "test", "delta": 1}
]
}
}
}
},
{
"proxy_config": {
"id": 2,
"content": {
"backend_version": "oidc",
"environment": "production",
"proxy": {
"oidc_issuer_endpoint": "http://test:$TEST_NGINX_SERVER_PORT/issuer/endpoint",
"backend": {
"endpoint": "http://test:$TEST_NGINX_SERVER_PORT"
},
"proxy_rules": [
{ "pattern": "/", "http_method": "GET", "metric_system_name": "test", "delta": 1}
]
}
}
}
}
]
}
';
}
location = /issuer/endpoint/.well-known/openid-configuration {
content_by_lua_block {
local base = "http://" .. ngx.var.host .. ':' .. ngx.var.server_port
ngx.header.content_type = 'application/json;charset=utf-8'
ngx.say(require('cjson').encode {
issuer = 'https://example.com/auth/realms/apicast',
id_token_signing_alg_values_supported = { 'RS256' },
jwks_uri = base .. '/jwks',
})
}
}
location = /jwks {
content_by_lua_block {
ngx.header.content_type = 'application/json;charset=utf-8'
ngx.say([[
{ "keys": [
{ "kty":"RSA","kid":"somekid",
"n":"sKXP3pwND3rkQ1gx9nMb4By7bmWnHYo2kAAsFD5xq0IDn26zv64tjmuNBHpI6BmkLPk8mIo0B1E8MkxdKZeozQ","e":"AQAB" }
] }
]])
}
}
location /transactions/authrep.xml {
content_by_lua_block {
ngx.exit(200)
}
}
location /api/ {
echo 'yay, api backend';
}
--- request
GET /?user_key=uk
--- error_code: 401
--- error_log eval
[
/stored in cache for 300 seconds/,
/retrieve OIDC configuration for issuer/,
]
--- no_error_log
[error]