-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtoken_ability_spec.rb
339 lines (261 loc) · 11 KB
/
token_ability_spec.rb
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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
# frozen_string_literal: true
require 'cancan/matchers'
RSpec.describe Api::TokenAbility do
let(:user) { create(:user, roles:) }
let(:roles) { :scenario_viewer }
let(:test_token) { JSON.parse(File.read(Rails.root.join('spec/fixtures/identity/token/idp_token.json')))['token'] }
let(:mock_jwk_set) do
{
keys: [
{
kty: 'RSA',
kid: 'test-key-id',
use: 'sig',
n: 'test-modulus',
e: 'AQAB'
}
]
}
end
let(:scopes) { 'scenarios:read' }
let(:mock_decoded_token) do
{
iss: Settings.identity.api_url,
aud: 'all_clients',
sub: user.id,
exp: 1730367768, # Static future expiration
scopes: scopes
}.with_indifferent_access
end
before do
# Stub Faraday to prevent actual HTTP requests
allow(Faraday).to receive(:new).and_return(
double('Faraday::Connection').tap do |connection|
allow(connection).to receive(:get).and_return(
double('Faraday::Response', body: mock_jwk_set.to_json)
)
end
)
# Stub the jwk_set method to return the mock JWK set
allow(described_class).to receive(:jwk_set).and_return(JSON::JWK::Set.new(mock_jwk_set))
# Mock the TokenDecoder behavior
allow(ETEngine::TokenDecoder).to receive(:decode).with(test_token).and_return(mock_decoded_token)
end
let(:ability) { described_class.new(mock_decoded_token, user) }
let!(:public_scenario) { create(:scenario, user: nil, private: false) }
let!(:owned_public_scenario) { create(:scenario, user: user, private: false) }
let!(:owned_private_scenario) { create(:scenario, user: user, private: true) }
let!(:other_public_scenario) { create(:scenario, user: create(:user), private: false) }
let!(:other_private_scenario) { create(:scenario, user: create(:user), private: true) }
# ------------------------------------------------------------------------------------------------
shared_examples_for 'a token without the "scenarios:read" scope' do
it 'may view an unowned public scenario' do
expect(ability).to be_able_to(:read, public_scenario)
end
it 'may view a self-owned public scenario' do
expect(ability).to be_able_to(:read, owned_public_scenario)
end
it 'may view an other-owned public scenario' do
expect(ability).to be_able_to(:read, other_public_scenario)
end
it 'may not view an owned private scenario' do
expect(ability).not_to be_able_to(:read, other_private_scenario)
end
context 'when admin' do
let(:user) { create(:user, admin: true, roles:) }
it 'may not view an owned private scenario' do
expect(ability).not_to be_able_to(:read, other_private_scenario)
end
end
end
shared_examples_for 'a token with the "scenarios:read" scope' do
it 'may view an unowned public scenario' do
expect(ability).to be_able_to(:read, public_scenario)
end
it 'may view a self-owned public scenario' do
expect(ability).to be_able_to(:read, owned_public_scenario)
end
it 'may view an other-owned public scenario' do
expect(ability).to be_able_to(:read, other_public_scenario)
end
it 'may view an owned private scenario' do
expect(ability).to be_able_to(:read, owned_private_scenario)
end
context 'when admin' do
let(:user) { create(:user, admin: true, roles:) }
it 'may view an owned private scenario' do
expect(ability).to be_able_to(:read, other_private_scenario)
end
end
end
shared_examples_for 'a token with the "scenarios:write" scope' do
it 'may create a new scenario' do
expect(ability).to be_able_to(:create, Scenario)
end
it 'may change an unowned public scenario' do
expect(ability).to be_able_to(:update, public_scenario)
end
it 'may change a self-owned public scenario' do
expect(ability).to be_able_to(:update, owned_public_scenario)
end
it 'may change a self-owned private scenario' do
expect(ability).to be_able_to(:update, owned_private_scenario)
end
it 'may not change an other-owned public scenario' do
expect(ability).not_to be_able_to(:update, other_public_scenario)
end
it 'may not change an other-owned private scenario' do
expect(ability).not_to be_able_to(:update, other_private_scenario)
end
it 'may clone an unowned public scenario' do
expect(ability).to be_able_to(:clone, public_scenario)
end
it 'may clone a self-owned public scenario' do
expect(ability).to be_able_to(:clone, owned_public_scenario)
end
it 'may clone an other-owned public scenario' do
expect(ability).to be_able_to(:clone, other_public_scenario)
end
it 'may clone a self-owned private scenario' do
expect(ability).to be_able_to(:clone, owned_private_scenario)
end
it 'may not clone an other-owned private scenario' do
expect(ability).not_to be_able_to(:clone, other_private_scenario)
end
context 'when admin' do
let(:user) { create(:user, admin: true, roles:) }
it 'may change an other-owned public scenario' do
expect(ability).to be_able_to(:update, other_public_scenario)
end
it 'may change an other-owned private scenario' do
expect(ability).to be_able_to(:update, other_private_scenario)
end
it 'may clone an other-owned private scenario' do
expect(ability).to be_able_to(:clone, other_private_scenario)
end
end
end
shared_examples_for 'a token without the "scenarios:write" scope' do
it 'may not create a new scenario' do
expect(ability).not_to be_able_to(:create, Scenario)
end
it 'may not change an unowned public scenario' do
expect(ability).not_to be_able_to(:update, public_scenario)
end
it 'may not change a self-owned public scenario' do
expect(ability).not_to be_able_to(:update, owned_public_scenario)
end
it 'may not change a self-owned private scenario' do
expect(ability).not_to be_able_to(:update, owned_private_scenario)
end
it 'may not change an other-owned public scenario' do
expect(ability).not_to be_able_to(:update, other_public_scenario)
end
it 'may not change an other-owned private scenario' do
expect(ability).not_to be_able_to(:update, other_private_scenario)
end
it 'may not clone an unowned public scenario' do
expect(ability).not_to be_able_to(:clone, public_scenario)
end
it 'may not clone an owned public scenario' do
expect(ability).not_to be_able_to(:clone, owned_public_scenario)
end
it 'may not clone an owned private scenario' do
expect(ability).not_to be_able_to(:clone, owned_private_scenario)
end
context 'when admin' do
let(:user) { create(:user, admin: true, roles:) }
it 'may not change an other-owned public scenario' do
expect(ability).not_to be_able_to(:update, other_public_scenario)
end
it 'may not change an other-owned private scenario' do
expect(ability).not_to be_able_to(:update, other_private_scenario)
end
it 'may not clone an other-owned private scenario' do
expect(ability).not_to be_able_to(:clone, other_private_scenario)
end
end
end
shared_examples_for 'a token with the "scenarios:delete" scope' do
it 'may not delete an unowned public scenario' do
expect(ability).not_to be_able_to(:destroy, public_scenario)
end
it 'may delete a self-owned public scenario' do
expect(ability).to be_able_to(:destroy, owned_public_scenario)
end
it 'may delete a self-owned private scenario' do
expect(ability).to be_able_to(:destroy, owned_private_scenario)
end
it 'may not delete an other-owned public scenario' do
expect(ability).not_to be_able_to(:destroy, other_public_scenario)
end
it 'may not delete an other-owned private scenario' do
expect(ability).not_to be_able_to(:destroy, other_private_scenario)
end
context 'when admin' do
let(:user) { create(:user, admin: true, roles:) }
it 'may delete an other-owned public scenario' do
expect(ability).to be_able_to(:destroy, other_public_scenario)
end
it 'may delete an other-owned private scenario' do
expect(ability).to be_able_to(:destroy, other_private_scenario)
end
end
end
shared_examples_for 'a token without the "scenarios:delete" scope' do
it 'may not delete an unowned public scenario' do
expect(ability).not_to be_able_to(:destroy, public_scenario)
end
it 'may not delete a self-owned public scenario' do
expect(ability).not_to be_able_to(:destroy, owned_public_scenario)
end
it 'may not delete a self-owned private scenario' do
expect(ability).not_to be_able_to(:destroy, owned_private_scenario)
end
it 'may not delete an other-owned public scenario' do
expect(ability).not_to be_able_to(:destroy, other_public_scenario)
end
it 'may not delete an other-owned private scenario' do
expect(ability).not_to be_able_to(:destroy, other_private_scenario)
end
context 'when admin' do
let(:user) { create(:user, admin: true, roles:) }
it 'may not delete an other-owned public scenario' do
expect(ability).not_to be_able_to(:destroy, other_public_scenario)
end
it 'may not delete an other-owned private scenario' do
expect(ability).not_to be_able_to(:destroy, other_private_scenario)
end
end
end
# ------------------------------------------------------------------------------------------------
context 'when the token scope is "public"' do
# Read
include_examples 'a token without the "scenarios:read" scope'
# Update
include_examples 'a token without the "scenarios:write" scope'
# Delete
include_examples 'a token without the "scenarios:delete" scope'
end
# ------------------------------------------------------------------------------------------------
context 'when the token scope is "scenarios:read"' do
let(:scopes) { 'scenarios:read' }
include_examples 'a token with the "scenarios:read" scope'
include_examples 'a token without the "scenarios:write" scope'
include_examples 'a token without the "scenarios:delete" scope'
end
# ------------------------------------------------------------------------------------------------
context 'when the token scope is "scenarios:read scenarios:write"' do
let(:scopes) { 'scenarios:read scenarios:write' }
include_examples 'a token with the "scenarios:read" scope'
include_examples 'a token with the "scenarios:write" scope'
include_examples 'a token without the "scenarios:delete" scope'
end
# ------------------------------------------------------------------------------------------------
context 'when the token scope is "scenarios:read scenarios:write scenarios:delete"' do
let(:scopes) { 'scenarios:read scenarios:write scenarios:delete' }
include_examples 'a token with the "scenarios:read" scope'
include_examples 'a token with the "scenarios:write" scope'
include_examples 'a token with the "scenarios:delete" scope'
end
end