forked from drivendataorg/cloudpathlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
conftest.py
421 lines (336 loc) · 12.7 KB
/
conftest.py
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
import os
from pathlib import Path, PurePosixPath
import shutil
from typing import Dict, Optional
from azure.storage.blob import BlobServiceClient
import boto3
import botocore
from dotenv import find_dotenv, load_dotenv
from google.cloud import storage as google_storage
from pytest_cases import fixture, fixture_union
from shortuuid import uuid
from cloudpathlib import AzureBlobClient, AzureBlobPath, GSClient, GSPath, S3Client, S3Path
from cloudpathlib.cloudpath import implementation_registry
from cloudpathlib.local import (
local_azure_blob_implementation,
LocalAzureBlobClient,
LocalAzureBlobPath,
local_gs_implementation,
LocalGSClient,
LocalGSPath,
local_s3_implementation,
LocalS3Client,
LocalS3Path,
)
import cloudpathlib.azure.azblobclient
import cloudpathlib.s3.s3client
from .mock_clients.mock_azureblob import mocked_client_class_factory, DEFAULT_CONTAINER_NAME
from .mock_clients.mock_gs import (
mocked_client_class_factory as mocked_gsclient_class_factory,
DEFAULT_GS_BUCKET_NAME,
)
from .mock_clients.mock_s3 import mocked_session_class_factory, DEFAULT_S3_BUCKET_NAME
if os.getenv("USE_LIVE_CLOUD") == "1":
load_dotenv(find_dotenv())
SESSION_UUID = uuid()
# ignore these files when uploading test assets
UPLOAD_IGNORE_LIST = [
".DS_Store", # macOS cruft
]
@fixture()
def assets_dir() -> Path:
"""Path to test assets directory."""
return Path(__file__).parent / "assets"
class CloudProviderTestRig:
"""Class that holds together the components needed to test a cloud implementation."""
def __init__(
self,
path_class: type,
client_class: type,
drive: str = "drive",
test_dir: str = "",
live_server: bool = False,
required_client_kwargs: Optional[Dict] = None,
):
"""
Args:
path_class (type): CloudPath subclass
client_class (type): Client subclass
"""
self.path_class = path_class
self.client_class = client_class
self.drive = drive
self.test_dir = test_dir
self.live_server = live_server # if the server is a live server
self.required_client_kwargs = (
required_client_kwargs if required_client_kwargs is not None else {}
)
@property
def cloud_prefix(self):
return self.path_class.cloud_prefix
def create_cloud_path(self, path: str, client=None):
"""CloudPath constructor that appends cloud prefix. Use this to instantiate
cloud path instances with generic paths. Includes drive and root test_dir already.
If `client`, use that client to create the path.
"""
if client:
return client.CloudPath(
cloud_path=f"{self.path_class.cloud_prefix}{self.drive}/{self.test_dir}/{path}"
)
else:
return self.path_class(
cloud_path=f"{self.path_class.cloud_prefix}{self.drive}/{self.test_dir}/{path}"
)
def create_test_dir_name(request) -> str:
"""Generates unique test directory name using test module and test function names."""
module_name = request.module.__name__.rpartition(".")[-1]
function_name = request.function.__name__
test_dir = f"{SESSION_UUID}-{module_name}-{function_name}"
print("Test directory name is:", test_dir)
return test_dir
@fixture()
def azure_rig(request, monkeypatch, assets_dir):
drive = os.getenv("LIVE_AZURE_CONTAINER", DEFAULT_CONTAINER_NAME)
test_dir = create_test_dir_name(request)
live_server = os.getenv("USE_LIVE_CLOUD") == "1"
if live_server:
# Set up test assets
blob_service_client = BlobServiceClient.from_connection_string(
os.getenv("AZURE_STORAGE_CONNECTION_STRING")
)
test_files = [
f for f in assets_dir.glob("**/*") if f.is_file() and f.name not in UPLOAD_IGNORE_LIST
]
for test_file in test_files:
blob_client = blob_service_client.get_blob_client(
container=drive,
blob=str(f"{test_dir}/{PurePosixPath(test_file.relative_to(assets_dir))}"),
)
blob_client.upload_blob(test_file.read_bytes(), overwrite=True)
else:
monkeypatch.setenv("AZURE_STORAGE_CONNECTION_STRING", "")
# Mock cloud SDK
monkeypatch.setattr(
cloudpathlib.azure.azblobclient,
"BlobServiceClient",
mocked_client_class_factory(test_dir),
)
rig = CloudProviderTestRig(
path_class=AzureBlobPath,
client_class=AzureBlobClient,
drive=drive,
test_dir=test_dir,
live_server=live_server,
)
rig.client_class().set_as_default_client() # set default client
yield rig
rig.client_class._default_client = None # reset default client
if live_server:
# Clean up test dir
container_client = blob_service_client.get_container_client(drive)
to_delete = container_client.list_blobs(name_starts_with=test_dir)
container_client.delete_blobs(*to_delete)
@fixture()
def gs_rig(request, monkeypatch, assets_dir):
drive = os.getenv("LIVE_GS_BUCKET", DEFAULT_GS_BUCKET_NAME)
test_dir = create_test_dir_name(request)
live_server = os.getenv("USE_LIVE_CLOUD") == "1"
if live_server:
# Set up test assets
bucket = google_storage.Client().bucket(drive)
test_files = [
f for f in assets_dir.glob("**/*") if f.is_file() and f.name not in UPLOAD_IGNORE_LIST
]
for test_file in test_files:
blob = google_storage.Blob(
str(f"{test_dir}/{PurePosixPath(test_file.relative_to(assets_dir))}"),
bucket,
)
blob.upload_from_filename(str(test_file))
else:
# Mock cloud SDK
monkeypatch.setattr(
cloudpathlib.gs.gsclient,
"StorageClient",
mocked_gsclient_class_factory(test_dir),
)
rig = CloudProviderTestRig(
path_class=GSPath,
client_class=GSClient,
drive=drive,
test_dir=test_dir,
live_server=live_server,
)
rig.client_class().set_as_default_client() # set default client
yield rig
rig.client_class._default_client = None # reset default client
if live_server:
# Clean up test dir
for blob in bucket.list_blobs(prefix=test_dir):
blob.delete()
@fixture()
def s3_rig(request, monkeypatch, assets_dir):
drive = os.getenv("LIVE_S3_BUCKET", DEFAULT_S3_BUCKET_NAME)
test_dir = create_test_dir_name(request)
live_server = os.getenv("USE_LIVE_CLOUD") == "1"
if live_server:
# Set up test assets
session = boto3.Session() # Fresh session to ensure isolation
bucket = session.resource("s3").Bucket(drive)
test_files = [
f for f in assets_dir.glob("**/*") if f.is_file() and f.name not in UPLOAD_IGNORE_LIST
]
for test_file in test_files:
bucket.upload_file(
str(test_file),
str(f"{test_dir}/{PurePosixPath(test_file.relative_to(assets_dir))}"),
)
else:
# Mock cloud SDK
monkeypatch.setattr(
cloudpathlib.s3.s3client,
"Session",
mocked_session_class_factory(test_dir),
)
rig = CloudProviderTestRig(
path_class=S3Path,
client_class=S3Client,
drive=drive,
test_dir=test_dir,
live_server=live_server,
)
rig.client_class().set_as_default_client() # set default client
yield rig
rig.client_class._default_client = None # reset default client
if live_server:
# Clean up test dir
bucket.objects.filter(Prefix=test_dir).delete()
@fixture()
def custom_s3_rig(request, monkeypatch, assets_dir):
"""
Custom S3 rig used to test the integrations with non-AWS S3-compatible object storages like
- MinIO (https://min.io/)
- CEPH (https://ceph.io/ceph-storage/object-storage/)
- others
"""
drive = os.getenv("CUSTOM_S3_BUCKET", DEFAULT_S3_BUCKET_NAME)
test_dir = create_test_dir_name(request)
custom_endpoint_url = os.getenv("CUSTOM_S3_ENDPOINT", "https://s3.us-west-1.drivendatabws.com")
live_server = os.getenv("USE_LIVE_CLOUD") == "1"
if live_server:
monkeypatch.setenv("AWS_ACCESS_KEY_ID", os.getenv("CUSTOM_S3_KEY_ID"))
monkeypatch.setenv("AWS_SECRET_ACCESS_KEY", os.getenv("CUSTOM_S3_SECRET_KEY"))
# Upload test assets
session = boto3.Session() # Fresh session to ensure isolation from AWS S3 auth
s3 = session.resource("s3", endpoint_url=custom_endpoint_url)
# idempotent and our test server on heroku only has ephemeral storage
# so we need to try to create each time
try:
s3.meta.client.head_bucket(Bucket=drive)
except botocore.exceptions.ClientError:
s3.create_bucket(Bucket=drive)
bucket = s3.Bucket(drive)
test_files = [
f for f in assets_dir.glob("**/*") if f.is_file() and f.name not in UPLOAD_IGNORE_LIST
]
for test_file in test_files:
bucket.upload_file(
str(test_file),
str(f"{test_dir}/{PurePosixPath(test_file.relative_to(assets_dir))}"),
)
else:
# Mock cloud SDK
monkeypatch.setattr(
cloudpathlib.s3.s3client,
"Session",
mocked_session_class_factory(test_dir),
)
rig = CloudProviderTestRig(
path_class=S3Path,
client_class=S3Client,
drive=drive,
test_dir=test_dir,
live_server=live_server,
required_client_kwargs=dict(endpoint_url=custom_endpoint_url),
)
rig.client_class(
endpoint_url=custom_endpoint_url
).set_as_default_client() # set default client
# add flag for custom_s3 rig to skip some tests
rig.is_custom_s3 = True
yield rig
rig.client_class._default_client = None # reset default client
if live_server:
bucket.objects.filter(Prefix=test_dir).delete()
@fixture()
def local_azure_rig(request, monkeypatch, assets_dir):
drive = os.getenv("LIVE_AZURE_CONTAINER", DEFAULT_CONTAINER_NAME)
test_dir = create_test_dir_name(request)
# copy test assets
shutil.copytree(assets_dir, LocalAzureBlobClient.get_default_storage_dir() / drive / test_dir)
monkeypatch.setitem(implementation_registry, "azure", local_azure_blob_implementation)
rig = CloudProviderTestRig(
path_class=LocalAzureBlobPath,
client_class=LocalAzureBlobClient,
drive=drive,
test_dir=test_dir,
)
monkeypatch.setenv("AZURE_STORAGE_CONNECTION_STRING", "")
rig.client_class().set_as_default_client() # set default client
yield rig
rig.client_class._default_client = None # reset default client
rig.client_class.reset_default_storage_dir() # reset local storage directory
@fixture()
def local_gs_rig(request, monkeypatch, assets_dir):
drive = os.getenv("LIVE_GS_BUCKET", DEFAULT_GS_BUCKET_NAME)
test_dir = create_test_dir_name(request)
# copy test assets
shutil.copytree(assets_dir, LocalGSClient.get_default_storage_dir() / drive / test_dir)
monkeypatch.setitem(implementation_registry, "gs", local_gs_implementation)
rig = CloudProviderTestRig(
path_class=LocalGSPath,
client_class=LocalGSClient,
drive=drive,
test_dir=test_dir,
)
rig.client_class().set_as_default_client() # set default client
yield rig
rig.client_class._default_client = None # reset default client
rig.client_class.reset_default_storage_dir() # reset local storage directory
@fixture()
def local_s3_rig(request, monkeypatch, assets_dir):
drive = os.getenv("LIVE_S3_BUCKET", DEFAULT_S3_BUCKET_NAME)
test_dir = create_test_dir_name(request)
# copy test assets
shutil.copytree(assets_dir, LocalS3Client.get_default_storage_dir() / drive / test_dir)
monkeypatch.setitem(implementation_registry, "s3", local_s3_implementation)
rig = CloudProviderTestRig(
path_class=LocalS3Path,
client_class=LocalS3Client,
drive=drive,
test_dir=test_dir,
)
rig.client_class().set_as_default_client() # set default client
yield rig
rig.client_class._default_client = None # reset default client
rig.client_class.reset_default_storage_dir() # reset local storage directory
rig = fixture_union(
"rig",
[
azure_rig,
gs_rig,
s3_rig,
custom_s3_rig,
local_azure_rig,
local_s3_rig,
local_gs_rig,
],
)
# run some s3-specific tests on custom s3 (ceph, minio, etc.) and aws s3
s3_like_rig = fixture_union(
"s3_like_rig",
[
s3_rig,
custom_s3_rig,
],
)