@@ -119,14 +119,14 @@ def raw_api_test_helper(raw_api, should_cleanup_old_buckets):
119
119
set (ALL_CAPABILITIES )
120
120
- {'readBuckets' , 'listAllBucketNames' }
121
121
- preview_feature_caps
122
- - set (auth_dict ['allowed ' ]['capabilities' ])
122
+ - set (auth_dict ['apiInfo' ][ 'storageApi ' ]['capabilities' ])
123
123
)
124
124
assert not missing_capabilities , f'it appears that the raw_api integration test is being run with a non-full key. Missing capabilities: { missing_capabilities } '
125
125
126
126
account_id = auth_dict ['accountId' ]
127
127
account_auth_token = auth_dict ['authorizationToken' ]
128
- api_url = auth_dict ['apiUrl' ]
129
- download_url = auth_dict ['downloadUrl' ]
128
+ api_url = auth_dict ['apiInfo' ][ 'storageApi' ][ ' apiUrl' ]
129
+ download_url = auth_dict ['apiInfo' ][ 'storageApi' ][ ' downloadUrl' ]
130
130
131
131
# b2_create_key
132
132
print ('b2_create_key' )
@@ -599,7 +599,7 @@ def raw_api_test_helper(raw_api, should_cleanup_old_buckets):
599
599
600
600
601
601
def _subtest_bucket_notification_rules (raw_api , auth_dict , api_url , account_auth_token , bucket_id ):
602
- if 'writeBucketNotifications' not in auth_dict ['allowed ' ]['capabilities' ]:
602
+ if 'writeBucketNotifications' not in auth_dict ['apiInfo' ][ 'storageApi ' ]['capabilities' ]:
603
603
pytest .skip ('Test account does not have writeBucketNotifications capability' )
604
604
605
605
notification_rule = {
@@ -644,8 +644,11 @@ def _subtest_bucket_notification_rules(raw_api, auth_dict, api_url, account_auth
644
644
def cleanup_old_buckets ():
645
645
raw_api = B2RawHTTPApi (B2Http ())
646
646
auth_dict = authorize_raw_api (raw_api )
647
+
647
648
bucket_list_dict = raw_api .list_buckets (
648
- auth_dict ['apiUrl' ], auth_dict ['authorizationToken' ], auth_dict ['accountId' ]
649
+ auth_dict ['apiInfo' ]['storageApi' ]['apiUrl' ],
650
+ auth_dict ['authorizationToken' ],
651
+ auth_dict ['accountId' ],
649
652
)
650
653
_cleanup_old_buckets (raw_api , auth_dict , bucket_list_dict )
651
654
@@ -658,7 +661,7 @@ def _cleanup_old_buckets(raw_api, auth_dict, bucket_list_dict):
658
661
print ('cleaning up old bucket: ' + bucket_name )
659
662
_clean_and_delete_bucket (
660
663
raw_api ,
661
- auth_dict ['apiUrl' ],
664
+ auth_dict ['apiInfo' ][ 'storageApi' ][ ' apiUrl' ],
662
665
auth_dict ['authorizationToken' ],
663
666
auth_dict ['accountId' ],
664
667
bucket_id ,
0 commit comments