Newer
Older
Resource /opt/robot-tests/tests/resources/common.resource
Library /opt/robot-tests/tests/libraries/bodyRequests.py
Library XML
Library String
Resource /opt/robot-tests/tests/resources/common/basicRequests.robot
Resource ../../resources/common.resource
Suite Teardown Reset Testing Environment
Test Setup Reset Testing Environment
Test Teardown Reset Testing Environment
*** Variables ***
${API_INVOKER_NOT_REGISTERED} not-valid
${SUBSCRIBER_ID_NOT_VALID} not-valid
${SUBSCRIPTION_ID_NOT_VALID} not-valid
*** Test Cases ***
Creates a new individual CAPIF Event Subscription
# Default Invoker Registration and Onboarding
${register_user_info_invoker} ${url} ${request_body}= Invoker Default Onboarding
${request_body}= Create Events Subscription
${resp}= Post Request Capif
... /capif-events/v1/${register_user_info_invoker['api_invoker_id']}/subscriptions
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
# Check Results
Check Response Variable Type And Values ${resp} 201 EventSubscription
${subscriber_id} ${subscription_id}= Check Event Location Header ${resp}
Creates a new individual CAPIF Event Subscription with Invalid SubscriberId
[Tags] capif_api_events-2
# Default Invoker Registration and Onboarding
${register_user_info_invoker} ${url} ${request_body}= Invoker Default Onboarding
${request_body}= Create Events Subscription
${resp}= Post Request Capif
... /capif-events/v1/${SUBSCRIBER_ID_NOT_VALID}/subscriptions
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
# Check Results
Check Response Variable Type And Values ${resp} 404 ProblemDetails
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
... title=Not Found
... status=404
... detail=Invoker or APF or AEF or AMF Not found
... cause=Subscriber Not Found
Deletes an individual CAPIF Event Subscription
[Tags] capif_api_events-3
# Default Invoker Registration and Onboarding
${register_user_info_invoker} ${url} ${request_body}= Invoker Default Onboarding
${request_body}= Create Events Subscription
${resp}= Post Request Capif
... /capif-events/v1/${register_user_info_invoker['api_invoker_id']}/subscriptions
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
Check Response Variable Type And Values ${resp} 201 EventSubscription
${subscriber_id} ${subscription_id}= Check Event Location Header ${resp}
${resp}= Delete Request Capif
... /capif-events/v1/${subscriber_id}/subscriptions/${subscription_id}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
Status Should Be 204 ${resp}
Deletes an individual CAPIF Event Subscription with invalid SubscriberId
[Tags] capif_api_events-4
# Default Invoker Registration and Onboarding
${register_user_info_invoker} ${url} ${request_body}= Invoker Default Onboarding
${request_body}= Create Events Subscription
${resp}= Post Request Capif
... /capif-events/v1/${register_user_info_invoker['api_invoker_id']}/subscriptions
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
Check Response Variable Type And Values ${resp} 201 EventSubscription
${subscriber_id} ${subscription_id}= Check Event Location Header ${resp}
${resp}= Delete Request Capif
... /capif-events/v1/${SUBSCRIBER_ID_NOT_VALID}/subscriptions/${subscription_id}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
Check Response Variable Type And Values ${resp} 404 ProblemDetails
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
... title=Not Found
... status=404
... detail=Invoker or APF or AEF or AMF Not found
... cause=Subscriber Not Found
Deletes an individual CAPIF Event Subscription with invalid SubscriptionId
[Tags] capif_api_events-5
# Default Invoker Registration and Onboarding
${register_user_info_invoker} ${url} ${request_body}= Invoker Default Onboarding
${request_body}= Create Events Subscription
${resp}= Post Request Capif
... /capif-events/v1/${register_user_info_invoker['api_invoker_id']}/subscriptions
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
Check Response Variable Type And Values ${resp} 201 EventSubscription
${subscriber_id} ${subscription_id}= Check Event Location Header ${resp}
${resp}= Delete Request Capif
... /capif-events/v1/${subscriber_id}/subscriptions/${SUBSCRIPTION_ID_NOT_VALID}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
# Check Results
Check Response Variable Type And Values ${resp} 401 ProblemDetails
... title=Unauthorized
... detail=User not authorized
... cause=You are not the owner of this resource
Invoker receives Service API Invocation events
# Initialize Mock server
Init Mock Server
# Register APF
${register_user_info}= Provider Default Registration
# Publish one api
Publish Service Api ${register_user_info}
# Register INVOKER
${register_user_info_invoker} ${url} ${request_body}= Invoker Default Onboarding
${discover_response}= Get Request Capif
... ${DISCOVER_URL}${register_user_info_invoker['api_invoker_id']}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
${api_ids} ${api_names}= Get Api Ids And Names From Discover Response ${discover_response}
# Subscribe to events
${events_list}= Create List SERVICE_API_INVOCATION_SUCCESS SERVICE_API_INVOCATION_FAILURE
${aef_ids}= Create List ${register_user_info['aef_id']}
${event_filter}= Create Capif Event Filter aefIds=${aef_ids}
${event_filters}= Create List ${event_filter}
${request_body}= Create Events Subscription
... events=@{events_list}
... notification_destination=${NOTIFICATION_DESTINATION_URL}/testing
... event_filters=${event_filters}
... supported_features=4
${resp}= Post Request Capif
... /capif-events/v1/${register_user_info_invoker['api_invoker_id']}/subscriptions
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
# Check Results
Check Response Variable Type And Values ${resp} 201 EventSubscription
${subscriber_id} ${subscription_id}= Check Event Location Header ${resp}
# Create Log Entry, emulate success and failure api invocation
${results}= Create List 200 400
${request_body}= Create Log Entry
... ${register_user_info['aef_id']}
... ${register_user_info_invoker['api_invoker_id']}
... ${api_ids}
... ${api_names}
... results=${results}
${resp}= Post Request Capif
... /api-invocation-logs/v1/${register_user_info['aef_id']}/logs
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${AEF_PROVIDER_USERNAME}
# Check Results
Check Response Variable Type And Values ${resp} 201 InvocationLog
${resource_url}= Check Location Header ${resp} ${LOCATION_LOGGING_RESOURCE_REGEX}
# Check Event Notifications
## Create check Events to ensure all notifications were received
${events_expected}= Create Events From InvocationLogs
... ${subscription_id}
... ${request_body}
## Check Events Expected towards received notifications at mock server
Wait Until Keyword Succeeds 5x 5s Check Mock Server Notification Events ${events_expected}
Invoker subscribe to Service API Available and Unavailable events
[Tags] capif_api_events-7 mockserver
# Initialize Mock server
Init Mock Server
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
# Register APF
${register_user_info_provider}= Provider Default Registration
# Publish one api
${service_api_description_published_1} ${resource_url_1} ${request_body}= Publish Service Api
... ${register_user_info_provider}
# Register INVOKER
${register_user_info_invoker} ${url} ${request_body}= Invoker Default Onboarding
${discover_response}= Get Request Capif
... ${DISCOVER_URL}${register_user_info_invoker['api_invoker_id']}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
${api_ids} ${api_names}= Get Api Ids And Names From Discover Response ${discover_response}
# Subscribe to events
${events_list}= Create List SERVICE_API_AVAILABLE SERVICE_API_UNAVAILABLE
${aef_ids}= Create List ${register_user_info_provider['aef_id']}
${event_filter}= Create Capif Event Filter aefIds=${aef_ids}
${event_filters}= Create List ${event_filter}
${request_body}= Create Events Subscription
... events=@{events_list}
... notification_destination=${NOTIFICATION_DESTINATION_URL}/testing
... event_filters=${event_filters}
... supported_features=4
${resp}= Post Request Capif
... /capif-events/v1/${register_user_info_invoker['api_invoker_id']}/subscriptions
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
# Check Results
Check Response Variable Type And Values ${resp} 201 EventSubscription
${subscriber_id} ${subscription_id}= Check Event Location Header ${resp}
# Provider publish new API
${service_api_description_published_2} ${resource_url_2} ${request_body}= Publish Service Api
... ${register_user_info_provider}
... service_2
# Provider Remove service_1 published API
${resp}= Delete Request Capif
... ${resource_url_1.path}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${APF_PROVIDER_USERNAME}
Status Should Be 204 ${resp}
# Check Event Notifications
## Create check Events to ensure all notifications were received
${service_api_available_resources}= Create List ${resource_url_2}
${service_api_unavailable_resources}= Create List ${resource_url_1}
${events_expected}= Create Expected Events For Service API Notifications
... subscription_id=${subscription_id}
... service_api_available_resources=${service_api_available_resources}
... service_api_unavailable_resources=${service_api_unavailable_resources}
## Check Events Expected towards received notifications at mock server
Wait Until Keyword Succeeds 5x 5s Check Mock Server Notification Events ${events_expected}
Invoker subscribe to Service API Update
[Tags] capif_api_events-8 mockserver
# Initialize Mock server
Init Mock Server
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
# Register APF
${register_user_info_provider}= Provider Default Registration
# Publish one api
${service_api_description_published} ${resource_url} ${request_body}= Publish Service Api
... ${register_user_info_provider}
# Register INVOKER
${register_user_info_invoker} ${url} ${request_body}= Invoker Default Onboarding
${discover_response}= Get Request Capif
... ${DISCOVER_URL}${register_user_info_invoker['api_invoker_id']}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
${api_ids} ${api_names}= Get Api Ids And Names From Discover Response ${discover_response}
# Subscribe to events
${events_list}= Create List SERVICE_API_UPDATE
${aef_ids}= Create List ${register_user_info_provider['aef_id']}
${event_filter}= Create Capif Event Filter aefIds=${aef_ids}
${event_filters}= Create List ${event_filter}
${request_body}= Create Events Subscription
... events=@{events_list}
... notification_destination=${NOTIFICATION_DESTINATION_URL}/testing
... event_filters=${event_filters}
... supported_features=4
${resp}= Post Request Capif
... /capif-events/v1/${register_user_info_invoker['api_invoker_id']}/subscriptions
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
# Check Results
Check Response Variable Type And Values ${resp} 201 EventSubscription
${subscriber_id} ${subscription_id}= Check Event Location Header ${resp}
# Update Service API
${service_api_description_modified}= Create Service Api Description service_1_modified
${resp}= Put Request Capif
... ${resource_url.path}
... json=${service_api_description_modified}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${APF_PROVIDER_USERNAME}
Check Response Variable Type And Values ${resp} 200 ServiceAPIDescription
... apiName=service_1_modified
# Check Event Notifications
## Create check Events to ensure all notifications were received
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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
${events_expected}= Create Expected Service Update Event
... ${subscription_id}
... ${resource_url}
... ${service_api_description_modified}
## Check Events Expected towards received notifications at mock server
Wait Until Keyword Succeeds 5x 5s Check Mock Server Notification Events ${events_expected}
Provider subscribe to API Invoker events
[Tags] capif_api_events-9 mockserver
# Initialize Mock server
Init Mock Server
# Register APF
${register_user_info_provider}= Provider Default Registration
# Subscribe to events
${events_list}= Create List API_INVOKER_ONBOARDED API_INVOKER_UPDATED API_INVOKER_OFFBOARDED
${request_body}= Create Events Subscription
... events=@{events_list}
... notification_destination=${NOTIFICATION_DESTINATION_URL}/testing
... supported_features=4
${resp}= Post Request Capif
... /capif-events/v1/${register_user_info_provider['amf_id']}/subscriptions
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${AMF_PROVIDER_USERNAME}
# Check Results
Check Response Variable Type And Values ${resp} 201 EventSubscription
${subscriber_id} ${subscription_id}= Check Event Location Header ${resp}
# Register INVOKER
${register_user_info_invoker} ${url} ${request_body}= Invoker Default Onboarding
# Update Invoker onboarded information
${new_notification_destination}= Set Variable
... http://${CAPIF_CALLBACK_IP}:${CAPIF_CALLBACK_PORT}/netapp_new_callback
Set To Dictionary
... ${request_body}
... notificationDestination=${new_notification_destination}
${resp}= Put Request Capif
... ${url.path}
... ${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
# Check Update
Check Response Variable Type And Values ${resp} 200 APIInvokerEnrolmentDetails
... notificationDestination=${new_notification_destination}
# Remove Invoker from CCF
${resp}= Delete Request Capif
... ${url.path}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
Call Method ${CAPIF_USERS} remove_capif_users_entry ${url.path}
# Check Remove
Should Be Equal As Strings ${resp.status_code} 204
# Check Event Notifications
## Create check Events to ensure all notifications were received
${events_expected}= Create Expected Api Invoker Events
... ${subscription_id}
... ${register_user_info_invoker['api_invoker_id']}
## Check Events Expected towards received notifications at mock server
Wait Until Keyword Succeeds 5x 5s Check Mock Server Notification Events ${events_expected}
Invoker subscribed to ACL update event
[Tags] capif_api_events-10 mockserver smoke
# Initialize Mock server
Init Mock Server
# Register APF
${register_user_info_provider}= Provider Default Registration
# Publish one api
${service_api_description_published} ${resource_url} ${request_body}= Publish Service Api
... ${register_user_info_provider}
# Store apiId1
${service_api_id}= Set Variable ${service_api_description_published['apiId']}
# Register INVOKER
${register_user_info_invoker} ${url} ${request_body}= Invoker Default Onboarding
# Subscribe to events
${events_list}= Create List ACCESS_CONTROL_POLICY_UPDATE
${request_body}= Create Events Subscription
... events=@{events_list}
... notification_destination=${NOTIFICATION_DESTINATION_URL}/testing
... supported_features=4
${resp}= Post Request Capif
... /capif-events/v1/${register_user_info_provider['amf_id']}/subscriptions
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${AMF_PROVIDER_USERNAME}
# Check Results
Check Response Variable Type And Values ${resp} 201 EventSubscription
${subscriber_id} ${subscription_id}= Check Event Location Header ${resp}
# Test
${discover_response}= Get Request Capif
... ${DISCOVER_URL}${register_user_info_invoker['api_invoker_id']}&aef-id=${register_user_info_provider['aef_id']}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
Check Response Variable Type And Values ${discover_response} 200 DiscoveredAPIs
# create Security Context
${request_service_security_body}= Create Service Security From Discover Response
... http://${CAPIF_HOSTNAME}:${CAPIF_HTTP_PORT}/test
... ${discover_response}
${resp}= Put Request Capif
... /capif-security/v1/trustedInvokers/${register_user_info_invoker['api_invoker_id']}
... json=${request_service_security_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
# Check Service Security
Check Response Variable Type And Values ${resp} 201 ServiceSecurity
${resource_url}= Check Location Header ${resp} ${LOCATION_SECURITY_RESOURCE_REGEX}
${resp}= Get Request Capif
... /access-control-policy/v1/accessControlPolicyList/${service_api_id}?aef-id=${register_user_info_provider['aef_id']}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${AEF_PROVIDER_USERNAME}
Check Response Variable Type And Values ${resp} 200 AccessControlPolicyList
# Check returned values
Should Not Be Empty ${resp.json()['apiInvokerPolicies']}
Length Should Be ${resp.json()['apiInvokerPolicies']} 1
Should Be Equal As Strings
... ${resp.json()['apiInvokerPolicies'][0]['apiInvokerId']}
... ${register_user_info_invoker['api_invoker_id']}
${api_invoker_policies}= Set Variable ${resp.json()['apiInvokerPolicies']}
# Check Event Notifications
## Create check Events to ensure all notifications were received
${events_expected}= Create Expected Access Control Policy Update Event
... ${subscription_id}
... ${service_api_id}
... ${api_invoker_policies}
## Check Events Expected towards received notifications at mock server
Wait Until Keyword Succeeds 5x 5s Check Mock Server Notification Events ${events_expected}
Provider receives an ACL unavailable event when invoker remove Security Context.
[Tags] capif_api_events-11 mockserver
# Initialize Mock server
Init Mock Server
# Register APF
${register_user_info_provider}= Provider Default Registration
# Publish one api
${service_api_description_published} ${resource_url} ${request_body}= Publish Service Api
... ${register_user_info_provider}
# Store apiId1
${serviceApiId}= Set Variable ${service_api_description_published['apiId']}
# Register INVOKER
${register_user_info_invoker} ${url} ${request_body}= Invoker Default Onboarding
# Subscribe to events
${events_list}= Create List ACCESS_CONTROL_POLICY_UNAVAILABLE
${request_body}= Create Events Subscription
... events=@{events_list}
... notification_destination=${NOTIFICATION_DESTINATION_URL}/testing
... supported_features=4
${resp}= Post Request Capif
... /capif-events/v1/${register_user_info_provider['amf_id']}/subscriptions
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
# Check Results
Check Response Variable Type And Values ${resp} 201 EventSubscription
${subscriber_id} ${subscription_id}= Check Event Location Header ${resp}
# Test
${discover_response}= Get Request Capif
... ${DISCOVER_URL}${register_user_info_invoker['api_invoker_id']}&aef-id=${register_user_info_provider['aef_id']}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
Check Response Variable Type And Values ${discover_response} 200 DiscoveredAPIs
# create Security Context
${request_service_security_body}= Create Service Security From Discover Response
... http://${CAPIF_HOSTNAME}:${CAPIF_HTTP_PORT}/test
... ${discover_response}
${resp}= Put Request Capif
... /capif-security/v1/trustedInvokers/${register_user_info_invoker['api_invoker_id']}
... json=${request_service_security_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
# Check Service Security
Check Response Variable Type And Values ${resp} 201 ServiceSecurity
${resource_url}= Check Location Header ${resp} ${LOCATION_SECURITY_RESOURCE_REGEX}
# Remove Security Context by Provider
${resp}= Delete Request Capif
... /capif-security/v1/trustedInvokers/${register_user_info_invoker['api_invoker_id']}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${AEF_PROVIDER_USERNAME}
Status Should Be 204 ${resp}
# Check Event Notifications
## Create check Events to ensure all notifications were received
${events_expected}= Create Expected Access Control Policy Unavailable ${subscription_id}
## Check Events Expected towards received notifications at mock server
Wait Until Keyword Succeeds 5x 5s Check Mock Server Notification Events ${events_expected}
Invoker receives an Invoker Authorization Revoked and ACL unavailable event when Provider revoke Invoker Authorization.
[Tags] capif_api_events-12 mockserver smoke
# Initialize Mock server
Init Mock Server
# Register APF
${register_user_info_provider}= Provider Default Registration
# Publish one api
${service_api_description_published} ${resource_url} ${request_body}= Publish Service Api
... ${register_user_info_provider}
# Store apiId1
${serviceApiId}= Set Variable ${service_api_description_published['apiId']}
# Register INVOKER
${register_user_info_invoker} ${url} ${request_body}= Invoker Default Onboarding
# Subscribe to events
${events_list}= Create List ACCESS_CONTROL_POLICY_UNAVAILABLE API_INVOKER_AUTHORIZATION_REVOKED
${request_body}= Create Events Subscription
... events=@{events_list}
... notification_destination=${NOTIFICATION_DESTINATION_URL}/testing
... supported_features=4
${resp}= Post Request Capif
... /capif-events/v1/${register_user_info_provider['amf_id']}/subscriptions
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
# Check Results
Check Response Variable Type And Values ${resp} 201 EventSubscription
${subscriber_id} ${subscription_id}= Check Event Location Header ${resp}
# Test
${discover_response}= Get Request Capif
... ${DISCOVER_URL}${register_user_info_invoker['api_invoker_id']}&aef-id=${register_user_info_provider['aef_id']}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
Check Response Variable Type And Values ${discover_response} 200 DiscoveredAPIs
${api_ids}= Get Api Ids From Discover Response ${discover_response}
# create Security Context
${request_service_security_body}= Create Service Security From Discover Response
... http://${CAPIF_HOSTNAME}:${CAPIF_HTTP_PORT}/test
... ${discover_response}
${resp}= Put Request Capif
... /capif-security/v1/trustedInvokers/${register_user_info_invoker['api_invoker_id']}
... json=${request_service_security_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
# Check Service Security
Check Response Variable Type And Values ${resp} 201 ServiceSecurity
${resource_url}= Check Location Header ${resp} ${LOCATION_SECURITY_RESOURCE_REGEX}
# Revoke Security Context by Provider
${request_body}= Create Security Notification Body
... ${register_user_info_invoker['api_invoker_id']}
... ${api_ids}
${resp}= Post Request Capif
... /capif-security/v1/trustedInvokers/${register_user_info_invoker['api_invoker_id']}/delete
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${AEF_PROVIDER_USERNAME}
# Check Results
Status Should Be 204 ${resp}
# Check Event Notifications
## Create check Events to ensure all notifications were received
${events_expected}= Create Expected Access Control Policy Unavailable ${subscription_id}
${events_expected}= Create Expected Api Invoker Authorization Revoked
... ${subscription_id}
... events_expected=${events_expected}
## Check Events Expected towards received notifications at mock server
Wait Until Keyword Succeeds 5x 5s Check Mock Server Notification Events ${events_expected}
Creates a new individual CAPIF Event Subscription without supported features attribute
[Tags] capif_api_events-13 smoke
# Default Invoker Registration and Onboarding
${register_user_info_invoker} ${url} ${request_body}= Invoker Default Onboarding
${request_body}= Create Events Subscription supported_features=${NONE}
${resp}= Post Request Capif
... /capif-events/v1/${register_user_info_invoker['api_invoker_id']}/subscriptions
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
# Check Results
Check Response Variable Type And Values
... ${resp}
... 400
... ProblemDetails
... title=Bad Request
... status=400
... detail=supportedFeatures not present in request
... cause=supportedFeatures not present
Invoker receives Service API Invocation events without Enhanced Event Report
[Tags] capif_api_events-14 mockserver smoke
# Initialize Mock server
Init Mock Server
# Register APF
${register_user_info}= Provider Default Registration
# Publish one api
Publish Service Api ${register_user_info}
# Register INVOKER
${register_user_info_invoker} ${url} ${request_body}= Invoker Default Onboarding
${discover_response}= Get Request Capif
... ${DISCOVER_URL}${register_user_info_invoker['api_invoker_id']}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
${api_ids} ${api_names}= Get Api Ids And Names From Discover Response ${discover_response}
# Subscribe to events
${events_list}= Create List SERVICE_API_INVOCATION_SUCCESS SERVICE_API_INVOCATION_FAILURE
${aef_ids}= Create List ${register_user_info['aef_id']}
${event_filter}= Create Capif Event Filter aefIds=${aef_ids}
${event_filters}= Create List ${event_filter}
${request_body}= Create Events Subscription
... events=@{events_list}
... notification_destination=${NOTIFICATION_DESTINATION_URL}/testing
... event_filters=${event_filters}
... supported_features=0
${resp}= Post Request Capif
... /capif-events/v1/${register_user_info_invoker['api_invoker_id']}/subscriptions
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
# Check Results
Check Response Variable Type And Values ${resp} 201 EventSubscription
${subscriber_id} ${subscription_id}= Check Event Location Header ${resp}
# Create Log Entry, emulate success and failure api invocation
${results}= Create List 200 400
${request_body}= Create Log Entry
... ${register_user_info['aef_id']}
... ${register_user_info_invoker['api_invoker_id']}
... ${api_ids}
... ${api_names}
... results=${results}
${resp}= Post Request Capif
... /api-invocation-logs/v1/${register_user_info['aef_id']}/logs
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${AEF_PROVIDER_USERNAME}
# Check Results
Check Response Variable Type And Values ${resp} 201 InvocationLog
${resource_url}= Check Location Header ${resp} ${LOCATION_LOGGING_RESOURCE_REGEX}
# Check Event Notifications
## Create check Events to ensure all notifications were received
${events_expected}= Create Events From InvocationLogs
... ${subscription_id}
... ${request_body}
... event_detail_expected=${FALSE}
## Check Events Expected towards received notifications at mock server
Wait Until Keyword Succeeds 5x 5s Check Mock Server Notification Events ${events_expected}
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
Invoker subscribe to Service API Available and Unavailable events without Enhanced Event Report
[Tags] capif_api_events-15 mockserver
# Initialize Mock server
Init Mock Server
# Register APF
${register_user_info_provider}= Provider Default Registration
# Publish one api
${service_api_description_published_1} ${resource_url_1} ${request_body}= Publish Service Api
... ${register_user_info_provider}
# Register INVOKER
${register_user_info_invoker} ${url} ${request_body}= Invoker Default Onboarding
${discover_response}= Get Request Capif
... ${DISCOVER_URL}${register_user_info_invoker['api_invoker_id']}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
${api_ids} ${api_names}= Get Api Ids And Names From Discover Response ${discover_response}
# Subscribe to events
${events_list}= Create List SERVICE_API_AVAILABLE SERVICE_API_UNAVAILABLE
${aef_ids}= Create List ${register_user_info_provider['aef_id']}
${event_filter}= Create Capif Event Filter aefIds=${aef_ids}
${event_filters}= Create List ${event_filter}
${request_body}= Create Events Subscription
... events=@{events_list}
... notification_destination=${NOTIFICATION_DESTINATION_URL}/testing
... event_filters=${event_filters}
... supported_features=0
${resp}= Post Request Capif
... /capif-events/v1/${register_user_info_invoker['api_invoker_id']}/subscriptions
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
# Check Results
Check Response Variable Type And Values ${resp} 201 EventSubscription
${subscriber_id} ${subscription_id}= Check Event Location Header ${resp}
# Provider publish new API
${service_api_description_published_2} ${resource_url_2} ${request_body}= Publish Service Api
... ${register_user_info_provider}
... service_2
# Provider Remove service_1 published API
${resp}= Delete Request Capif
... ${resource_url_1.path}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${APF_PROVIDER_USERNAME}
Status Should Be 204 ${resp}
# Check Event Notifications
## Create check Events to ensure all notifications were received
${service_api_available_resources}= Create List ${resource_url_2}
${service_api_unavailable_resources}= Create List ${resource_url_1}
${events_expected}= Create Expected Events For Service API Notifications
... subscription_id=${subscription_id}
... service_api_available_resources=${service_api_available_resources}
... service_api_unavailable_resources=${service_api_unavailable_resources}
... event_detail_expected=${FALSE}
## Check Events Expected towards received notifications at mock server
Wait Until Keyword Succeeds 5x 5s Check Mock Server Notification Events ${events_expected}
Invoker subscribe to Service API Update without Enhanced Event Report
[Tags] capif_api_events-16 mockserver
# Initialize Mock server
Init Mock Server
# Register APF
${register_user_info_provider}= Provider Default Registration
# Publish one api
${service_api_description_published} ${resource_url} ${request_body}= Publish Service Api
... ${register_user_info_provider}
# Register INVOKER
${register_user_info_invoker} ${url} ${request_body}= Invoker Default Onboarding
${discover_response}= Get Request Capif
... ${DISCOVER_URL}${register_user_info_invoker['api_invoker_id']}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
${api_ids} ${api_names}= Get Api Ids And Names From Discover Response ${discover_response}
# Subscribe to events
${events_list}= Create List SERVICE_API_UPDATE
${aef_ids}= Create List ${register_user_info_provider['aef_id']}
${event_filter}= Create Capif Event Filter aefIds=${aef_ids}
${event_filters}= Create List ${event_filter}
${request_body}= Create Events Subscription
... events=@{events_list}
... notification_destination=${NOTIFICATION_DESTINATION_URL}/testing
... event_filters=${event_filters}
... supported_features=0
${resp}= Post Request Capif
... /capif-events/v1/${register_user_info_invoker['api_invoker_id']}/subscriptions
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
# Check Results
Check Response Variable Type And Values ${resp} 201 EventSubscription
${subscriber_id} ${subscription_id}= Check Event Location Header ${resp}
# Update Service API
${service_api_description_modified}= Create Service Api Description service_1_modified
${resp}= Put Request Capif
... ${resource_url.path}
... json=${service_api_description_modified}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${APF_PROVIDER_USERNAME}
Check Response Variable Type And Values ${resp} 200 ServiceAPIDescription
... apiName=service_1_modified
# Check Event Notifications
## Create check Events to ensure all notifications were received
${events_expected}= Create Expected Service Update Event
... ${subscription_id}
... ${resource_url}
... ${service_api_description_modified}
... event_detail_expected=${FALSE}
## Check Events Expected towards received notifications at mock server
Wait Until Keyword Succeeds 5x 5s Check Mock Server Notification Events ${events_expected}
Provider subscribe to API Invoker events without Enhanced Event Report
[Tags] capif_api_events-17 mockserver
# Initialize Mock server
Init Mock Server
# Register APF
${register_user_info_provider}= Provider Default Registration
# Subscribe to events
${events_list}= Create List API_INVOKER_ONBOARDED API_INVOKER_UPDATED API_INVOKER_OFFBOARDED
${request_body}= Create Events Subscription
... events=@{events_list}
... notification_destination=${NOTIFICATION_DESTINATION_URL}/testing
${resp}= Post Request Capif
... /capif-events/v1/${register_user_info_provider['amf_id']}/subscriptions
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${AMF_PROVIDER_USERNAME}
# Check Results
Check Response Variable Type And Values ${resp} 201 EventSubscription
${subscriber_id} ${subscription_id}= Check Event Location Header ${resp}
# Register INVOKER
${register_user_info_invoker} ${url} ${request_body}= Invoker Default Onboarding
# Update Invoker onboarded information
${new_notification_destination}= Set Variable
... http://${CAPIF_CALLBACK_IP}:${CAPIF_CALLBACK_PORT}/netapp_new_callback
Set To Dictionary
... ${request_body}
... notificationDestination=${new_notification_destination}
${resp}= Put Request Capif
... ${url.path}
... ${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
# Check Update
Check Response Variable Type And Values ${resp} 200 APIInvokerEnrolmentDetails
... notificationDestination=${new_notification_destination}
# Remove Invoker from CCF
${resp}= Delete Request Capif
... ${url.path}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${INVOKER_USERNAME}
Call Method ${CAPIF_USERS} remove_capif_users_entry ${url.path}
# Check Remove
Should Be Equal As Strings ${resp.status_code} 204
# Check Event Notifications
## Create check Events to ensure all notifications were received
${events_expected}= Create Expected Api Invoker Events
... ${register_user_info_invoker['api_invoker_id']}
## Check Events Expected towards received notifications at mock server
Wait Until Keyword Succeeds 5x 5s Check Mock Server Notification Events ${events_expected}
Invoker subscribed to ACL update event without Enhanced Event Report
[Tags] capif_api_events-18 mockserver
# Initialize Mock server
Init Mock Server
# Register APF
${register_user_info_provider}= Provider Default Registration
# Publish one api
${service_api_description_published} ${resource_url} ${request_body}= Publish Service Api
... ${register_user_info_provider}
# Store apiId1
${service_api_id}= Set Variable ${service_api_description_published['apiId']}
# Register INVOKER
${register_user_info_invoker} ${url} ${request_body}= Invoker Default Onboarding
# Subscribe to events
${events_list}= Create List ACCESS_CONTROL_POLICY_UPDATE
${request_body}= Create Events Subscription
... events=@{events_list}
... notification_destination=${NOTIFICATION_DESTINATION_URL}/testing
${resp}= Post Request Capif
... /capif-events/v1/${register_user_info_provider['amf_id']}/subscriptions
... json=${request_body}
... server=${CAPIF_HTTPS_URL}
... verify=ca.crt
... username=${AMF_PROVIDER_USERNAME}
# Check Results
Check Response Variable Type And Values ${resp} 201 EventSubscription