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
|
######################################################################
#
# File: test/integration/conftest.py
#
# Copyright 2021 Backblaze Inc. All Rights Reserved.
#
# License https://www.backblaze.com/using_b2_code.html
#
######################################################################
from __future__ import annotations
import http
import http.client
import os
import secrets
import pytest
from b2sdk._internal.utils import current_time_millis
from test.integration import get_b2_auth_data
from test.integration.bucket_cleaner import BucketCleaner
from test.integration.helpers import (
BUCKET_CREATED_AT_MILLIS,
authorize,
get_bucket_name_prefix,
random_bucket_name,
)
def pytest_addoption(parser):
"""Add a flag for not cleaning up old buckets"""
parser.addoption(
'--dont-cleanup-old-buckets',
action='store_true',
default=False,
)
@pytest.fixture(scope='session')
def dont_cleanup_old_buckets(request):
return request.config.getoption('--dont-cleanup-old-buckets')
@pytest.fixture(autouse=True, scope='session')
def set_http_debug():
if os.environ.get('B2_DEBUG_HTTP'):
http.client.HTTPConnection.debuglevel = 1
@pytest.fixture(scope='session')
def b2_auth_data():
try:
return get_b2_auth_data()
except ValueError as ex:
pytest.fail(ex.args[0])
@pytest.fixture(scope='session')
def bucket_name_prefix():
return get_bucket_name_prefix(8)
@pytest.fixture(scope='session')
def _b2_api(b2_auth_data):
b2_api, _ = authorize(b2_auth_data)
return b2_api
@pytest.fixture(scope='session')
def bucket_cleaner(bucket_name_prefix, dont_cleanup_old_buckets, _b2_api):
cleaner = BucketCleaner(
dont_cleanup_old_buckets,
_b2_api,
current_run_prefix=bucket_name_prefix,
)
yield cleaner
cleaner.cleanup_buckets()
@pytest.fixture(scope='session')
def b2_api(_b2_api, bucket_cleaner):
return _b2_api
@pytest.fixture
def bucket(b2_api, bucket_name_prefix, bucket_cleaner):
bucket = b2_api.create_bucket(
random_bucket_name(bucket_name_prefix),
'allPrivate',
bucket_info={
'created_by': 'b2-sdk integration test',
BUCKET_CREATED_AT_MILLIS: str(current_time_millis()),
},
)
yield bucket
bucket_cleaner.cleanup_bucket(bucket)
@pytest.fixture
def b2_subfolder(bucket, request):
subfolder_name = f'{request.node.name}_{secrets.token_urlsafe(4)}'
return f'b2://{bucket.name}/{subfolder_name}'
|