-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtest_patch_remove.py
More file actions
451 lines (374 loc) · 14.4 KB
/
test_patch_remove.py
File metadata and controls
451 lines (374 loc) · 14.4 KB
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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
"""Unit tests for PATCH remove operation checkers."""
import json
from scim2_models import EnterpriseUser
from scim2_models import User
from werkzeug.wrappers import Response
from scim2_tester.checkers.patch_remove import check_remove_attribute
from scim2_tester.utils import Status
def test_successful_remove(httpserver, testing_context):
"""Test successful PATCH remove returns SUCCESS in CheckResult."""
httpserver.expect_request(uri="/Users", method="POST").respond_with_json(
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"id": "123",
"userName": "test@example.com",
"displayName": "Test User",
"nickName": "testy",
},
status=201,
)
# Track the state of the resource
resource_state = {
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"id": "123",
"userName": "test@example.com",
"displayName": "Test User",
"nickName": "testy",
}
def get_handler(request):
return Response(
json.dumps(resource_state),
status=200,
headers={"Content-Type": "application/scim+json"},
)
def patch_handler(request):
nonlocal resource_state
patch_data = json.loads(request.get_data(as_text=True))
operation = patch_data["Operations"][0]
path = operation["path"]
field_mapping = {
"display_name": "displayName",
"nick_name": "nickName",
"profile_url": "profileUrl",
"user_type": "userType",
"preferred_language": "preferredLanguage",
}
json_field = field_mapping.get(path, path)
del resource_state[json_field]
return Response(
json.dumps(resource_state),
status=200,
headers={"Content-Type": "application/scim+json"},
)
httpserver.expect_request(uri="/Users/123", method="PATCH").respond_with_handler(
patch_handler
)
httpserver.expect_request(uri="/Users/123", method="GET").respond_with_handler(
get_handler
)
results = check_remove_attribute(testing_context, User)
unexpected = [r for r in results if r.status != Status.SUCCESS]
assert not unexpected
def test_remove_server_error(httpserver, testing_context):
"""Test PATCH remove server error returns ERROR in CheckResult."""
httpserver.expect_request(uri="/Users", method="POST").respond_with_json(
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"id": "123",
"userName": "test@example.com",
"displayName": "Test User",
},
status=201,
)
def patch_handler(request):
return Response(
json.dumps(
{
"schemas": ["urn:ietf:params:scim:api:messages:2.0:Error"],
"status": "500",
"detail": "Internal Server Error",
}
),
status=500,
headers={"Content-Type": "application/scim+json"},
)
httpserver.expect_request(uri="/Users/123", method="PATCH").respond_with_handler(
patch_handler
)
results = check_remove_attribute(testing_context, User)
unexpected = [r for r in results if r.status != Status.ERROR]
assert not unexpected
def test_attribute_not_removed(httpserver, testing_context):
"""Test attribute not removed returns ERROR in CheckResult."""
httpserver.expect_request(uri="/Users", method="POST").respond_with_json(
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"id": "123",
"userName": "test@example.com",
"displayName": "Test User",
"nickName": "testy",
},
status=201,
)
httpserver.expect_request(uri="/Users/123", method="PATCH").respond_with_json(
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"id": "123",
"userName": "test@example.com",
"displayName": "Test User",
"nickName": "testy",
},
status=200,
)
results = check_remove_attribute(testing_context, User)
unexpected = [r for r in results if r.status != Status.ERROR]
assert not unexpected
def test_no_removable_attributes(testing_context):
"""Test no removable attributes returns SKIPPED."""
from unittest.mock import patch
with patch(
"scim2_tester.checkers.patch_remove.iter_all_urns",
return_value=iter([]),
):
results = check_remove_attribute(testing_context, User)
unexpected = [r for r in results if r.status != Status.SKIPPED]
assert not unexpected
def test_complex_successful_remove(httpserver, testing_context):
"""Test successful PATCH remove for complex attributes returns SUCCESS."""
httpserver.expect_request(uri="/Users", method="POST").respond_with_json(
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"id": "123",
"userName": "test@example.com",
"name": {
"givenName": "Test",
"familyName": "User",
},
},
status=201,
)
# Track the state of the resource
resource_state = {
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"id": "123",
"userName": "test@example.com",
"name": {
"givenName": "Test",
"familyName": "User",
},
}
def get_handler(request):
return Response(
json.dumps(resource_state),
status=200,
headers={"Content-Type": "application/scim+json"},
)
def patch_handler(request):
nonlocal resource_state
patch_data = json.loads(request.get_data(as_text=True))
operation = patch_data["Operations"][0]
path = operation["path"]
del resource_state[path]
return Response(
json.dumps(resource_state),
status=200,
headers={"Content-Type": "application/scim+json"},
)
httpserver.expect_request(uri="/Users/123", method="PATCH").respond_with_handler(
patch_handler
)
httpserver.expect_request(uri="/Users/123", method="GET").respond_with_handler(
get_handler
)
results = check_remove_attribute(testing_context, User)
unexpected = [r for r in results if r.status != Status.SUCCESS]
assert not unexpected
def test_user_with_enterprise_extension_remove(httpserver, testing_context):
"""Test PATCH remove with User[EnterpriseUser] extension support."""
def create_handler(request):
request_data = json.loads(request.get_data(as_text=True))
resource_id = "123e4567-e89b-12d3-a456-426614174000"
response_data = {
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User",
"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User",
],
"id": resource_id,
"meta": {
"resourceType": "User",
"location": f"http://localhost/Users/{resource_id}",
"created": "2024-01-01T00:00:00Z",
"lastModified": "2024-01-01T00:00:00Z",
"version": 'W/"1"',
},
}
for key in [
"userName",
"displayName",
"nickName",
"profileUrl",
"userType",
"preferredLanguage",
]:
response_data[key] = request_data[key]
return Response(
json.dumps(response_data),
status=201,
headers={
"Content-Type": "application/scim+json",
"Location": f"http://localhost/Users/{resource_id}",
},
)
httpserver.expect_request(uri="/Users", method="POST").respond_with_handler(
create_handler
)
# Track the state of the resource
resource_state = {
"schemas": [
"urn:ietf:params:scim:schemas:core:2.0:User",
"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User",
],
"id": "123e4567-e89b-12d3-a456-426614174000",
"meta": {
"resourceType": "User",
"location": "http://localhost/Users/123e4567-e89b-12d3-a456-426614174000",
"created": "2024-01-01T00:00:00Z",
"lastModified": "2024-01-01T00:00:00Z",
"version": 'W/"2"',
},
"userName": "test@example.com",
"displayName": "Test User",
"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User": {
"employeeNumber": "EMP001",
"department": "Engineering",
},
}
def get_handler(request):
return Response(
json.dumps(resource_state),
status=200,
headers={"Content-Type": "application/scim+json"},
)
def update_patch_handler(request):
nonlocal resource_state
patch_data = json.loads(request.get_data(as_text=True))
operation = patch_data["Operations"][0]
path = operation["path"]
field_mapping = {
"display_name": "displayName",
"nick_name": "nickName",
"profile_url": "profileUrl",
"user_type": "userType",
"preferred_language": "preferredLanguage",
}
json_field = field_mapping.get(path, path)
if json_field in resource_state:
del resource_state[json_field]
return Response(
json.dumps(resource_state),
status=200,
headers={"Content-Type": "application/scim+json"},
)
httpserver.expect_request(
uri="/Users/123e4567-e89b-12d3-a456-426614174000", method="PATCH"
).respond_with_handler(update_patch_handler)
httpserver.expect_request(
uri="/Users/123e4567-e89b-12d3-a456-426614174000", method="GET"
).respond_with_handler(get_handler)
httpserver.expect_request(
uri="/Users/123e4567-e89b-12d3-a456-426614174000", method="DELETE"
).respond_with_data("", status=204)
results = check_remove_attribute(testing_context, User[EnterpriseUser])
unexpected = [r for r in results if r.status != Status.SUCCESS]
assert not unexpected, (
f"All results should be SUCCESS, got: {[r.reason for r in results if r.status != Status.SUCCESS]}"
)
def test_patch_remove_query_failure_after_patch(httpserver, testing_context):
"""Test PATCH remove when query fails after successful patch."""
httpserver.expect_request(uri="/Users", method="POST").respond_with_json(
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"id": "123",
"userName": "test@example.com",
"displayName": "test_display",
},
status=201,
)
httpserver.expect_request(uri="/Users/123", method="PATCH").respond_with_json(
{
"schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"],
"id": "123",
"userName": "test@example.com",
},
status=200,
)
httpserver.expect_request(uri="/Users/123", method="GET").respond_with_json(
{
"schemas": ["urn:ietf:params:scim:api:messages:2.0:Error"],
"detail": "Resource not found after remove",
"status": "404",
},
status=404,
)
httpserver.expect_request(uri="/Users/123", method="DELETE").respond_with_data(
"", status=204
)
results = check_remove_attribute(testing_context, User)
error_results = [
r
for r in results
if r.status == Status.ERROR
and "Failed to query resource after remove" in r.reason
]
assert len(error_results) > 0
def test_patch_remove_attribute_not_removed(testing_context):
"""Test PATCH remove when modify result shows attribute was not removed."""
from unittest.mock import Mock
mock_client = Mock()
mock_user = User(id="123", user_name="test@example.com", display_name="persistent")
mock_client.create.return_value = mock_user
# Mock modify to return a resource where the attribute is still present
mock_modified_user = User(
id="123",
user_name="test@example.com",
display_name="persistent", # Still there after remove attempt
)
mock_client.modify.return_value = mock_modified_user
mock_client.query.return_value = mock_modified_user
testing_context.client = mock_client
results = check_remove_attribute(testing_context, User)
error_results = [
r
for r in results
if r.status == Status.ERROR and "did not remove attribute" in r.reason
]
assert len(error_results) > 0
def test_patch_remove_writeonly_attribute(testing_context):
"""Test PATCH remove when modify result has writeOnly attribute value."""
from unittest.mock import Mock
mock_client = Mock()
mock_user = User(id="123", user_name="test@example.com", password="secret123")
mock_client.create.return_value = mock_user
# Mock modify to return a resource with writeOnly attribute still present
mock_modified_user = User(
id="123",
user_name="test@example.com",
password="secret123", # writeOnly attribute still present
)
mock_client.modify.return_value = mock_modified_user
mock_client.query.return_value = User(
id="123",
user_name="test@example.com",
# password not returned in query (writeOnly)
)
testing_context.client = mock_client
results = check_remove_attribute(testing_context, User)
# For writeOnly attributes, should continue to query step
success_results = [
r
for r in results
if r.status == Status.SUCCESS and "password" in r.data.get("urn", "")
]
assert len(success_results) > 0
def test_patch_not_supported(testing_context):
"""Test PATCH remove returns SKIPPED when PATCH is not supported."""
from unittest.mock import Mock
# Mock ServiceProviderConfig with patch.supported = False
mock_service_provider_config = Mock()
mock_service_provider_config.patch.supported = False
testing_context.client.service_provider_config = mock_service_provider_config
results = check_remove_attribute(testing_context, User)
assert len(results) == 1
assert results[0].status == Status.SKIPPED
assert "PATCH operations not supported by server" in results[0].reason
assert results[0].resource_type == "User"