-
-
Notifications
You must be signed in to change notification settings - Fork 400
Expand file tree
/
Copy pathconftest.py
More file actions
426 lines (357 loc) · 12.9 KB
/
conftest.py
File metadata and controls
426 lines (357 loc) · 12.9 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
from __future__ import annotations
import pathlib
from dataclasses import dataclass, field
from typing import TYPE_CHECKING
import numpy as np
import numpy.typing as npt
import pytest
from hypothesis import HealthCheck, Verbosity, settings
from zarr import AsyncGroup, config
from zarr._constants import IS_WASM
from zarr.abc.store import Store
from zarr.codecs.sharding import ShardingCodec, ShardingCodecIndexLocation
from zarr.core.array import (
_parse_chunk_encoding_v2,
_parse_chunk_encoding_v3,
_parse_chunk_key_encoding,
)
from zarr.core.chunk_grids import RegularChunkGrid, _auto_partition
from zarr.core.common import JSON, DimensionNames, parse_dtype, parse_shapelike
from zarr.core.config import config as zarr_config
from zarr.core.metadata.v2 import ArrayV2Metadata
from zarr.core.metadata.v3 import ArrayV3Metadata
from zarr.core.sync import sync
from zarr.storage import FsspecStore, LocalStore, MemoryStore, StorePath, ZipStore
if TYPE_CHECKING:
from collections.abc import Generator
from typing import Any, Literal
from _pytest.compat import LEGACY_PATH
from zarr.abc.codec import Codec
from zarr.core.array import CompressorsLike, FiltersLike, SerializerLike, ShardsLike
from zarr.core.chunk_key_encodings import ChunkKeyEncoding, ChunkKeyEncodingLike
from zarr.core.common import ChunkCoords, MemoryOrder, ShapeLike, ZarrFormat
async def parse_store(
store: Literal["local", "memory", "fsspec", "zip"], path: str
) -> LocalStore | MemoryStore | FsspecStore | ZipStore:
if store == "local":
return await LocalStore.open(path)
if store == "memory":
return await MemoryStore.open()
if store == "fsspec":
return await FsspecStore.open(url=path)
if store == "zip":
return await ZipStore.open(path + "/zarr.zip", mode="w")
raise AssertionError
@pytest.fixture(params=[str, pathlib.Path])
def path_type(request: pytest.FixtureRequest) -> Any:
return request.param
# todo: harmonize this with local_store fixture
@pytest.fixture
async def store_path(tmpdir: LEGACY_PATH) -> StorePath:
store = await LocalStore.open(str(tmpdir))
return StorePath(store)
@pytest.fixture
async def local_store(tmpdir: LEGACY_PATH) -> LocalStore:
return await LocalStore.open(str(tmpdir))
@pytest.fixture
async def remote_store(url: str) -> FsspecStore:
return await FsspecStore.open(url)
@pytest.fixture
async def memory_store() -> MemoryStore:
return await MemoryStore.open()
@pytest.fixture
async def zip_store(tmpdir: LEGACY_PATH) -> ZipStore:
return await ZipStore.open(str(tmpdir / "zarr.zip"), mode="w")
@pytest.fixture
async def store(request: pytest.FixtureRequest, tmpdir: LEGACY_PATH) -> Store:
param = request.param
return await parse_store(param, str(tmpdir))
@pytest.fixture
async def store2(request: pytest.FixtureRequest, tmpdir: LEGACY_PATH) -> Store:
"""Fixture to create a second store for testing copy operations between stores"""
param = request.param
store2_path = tmpdir.mkdir("store2")
return await parse_store(param, str(store2_path))
@pytest.fixture(params=["local", "memory", "zip"])
def sync_store(request: pytest.FixtureRequest, tmp_path: LEGACY_PATH) -> Store:
result = sync(parse_store(request.param, str(tmp_path)))
if not isinstance(result, Store):
raise TypeError("Wrong store class returned by test fixture! got " + result + " instead")
return result
@dataclass
class AsyncGroupRequest:
zarr_format: ZarrFormat
store: Literal["local", "fsspec", "memory", "zip"]
attributes: dict[str, Any] = field(default_factory=dict)
@pytest.fixture
async def async_group(request: pytest.FixtureRequest, tmpdir: LEGACY_PATH) -> AsyncGroup:
param: AsyncGroupRequest = request.param
store = await parse_store(param.store, str(tmpdir))
return await AsyncGroup.from_store(
store,
attributes=param.attributes,
zarr_format=param.zarr_format,
overwrite=False,
)
@pytest.fixture(params=["numpy", "cupy"])
def xp(request: pytest.FixtureRequest) -> Any:
"""Fixture to parametrize over numpy-like libraries"""
if request.param == "cupy":
request.node.add_marker(pytest.mark.gpu)
return pytest.importorskip(request.param)
@pytest.fixture(autouse=True)
def reset_config() -> Generator[None, None, None]:
config.reset()
yield
config.reset()
@dataclass
class ArrayRequest:
shape: ChunkCoords
dtype: str
order: MemoryOrder
@pytest.fixture
def array_fixture(request: pytest.FixtureRequest) -> npt.NDArray[Any]:
array_request: ArrayRequest = request.param
return (
np.arange(np.prod(array_request.shape))
.reshape(array_request.shape, order=array_request.order)
.astype(array_request.dtype)
)
@pytest.fixture(params=(2, 3), ids=["zarr2", "zarr3"])
def zarr_format(request: pytest.FixtureRequest) -> ZarrFormat:
if request.param == 2:
return 2
elif request.param == 3:
return 3
msg = f"Invalid zarr format requested. Got {request.param}, expected on of (2,3)."
raise ValueError(msg)
def pytest_addoption(parser: Any) -> None:
parser.addoption(
"--run-slow-hypothesis",
action="store_true",
default=False,
help="run slow hypothesis tests",
)
parser.addoption(
"--run-slow-wasm",
action="store_true",
default=False,
help="run slow tests only applicable to WASM",
)
def pytest_collection_modifyitems(config: Any, items: Any) -> None:
if config.getoption("--run-slow-hypothesis"):
return
if config.getoption("--run-slow-wasm") and IS_WASM:
return
skip_slow_hyp = pytest.mark.skip(reason="need --run-slow-hypothesis option to run")
skip_slow_wasm = pytest.mark.skip(
reason="need --run-slow-wasm option to run in WASM, or not running in WASM"
)
for item in items:
if "slow_hypothesis" in item.keywords:
item.add_marker(skip_slow_hyp)
if "slow_wasm" in item.keywords and IS_WASM:
item.add_marker(skip_slow_wasm)
settings.register_profile(
"ci",
max_examples=1000,
deadline=None,
suppress_health_check=[HealthCheck.filter_too_much, HealthCheck.too_slow],
)
settings.register_profile(
"local",
max_examples=300,
suppress_health_check=[HealthCheck.filter_too_much, HealthCheck.too_slow],
verbosity=Verbosity.verbose,
)
# TODO: uncomment these overrides when we can get mypy to accept them
"""
@overload
def create_array_metadata(
*,
shape: ShapeLike,
dtype: npt.DTypeLike,
chunks: ChunkCoords | Literal["auto"],
shards: None,
filters: FiltersLike,
compressors: CompressorsLike,
serializer: SerializerLike,
fill_value: Any | None,
order: MemoryOrder | None,
zarr_format: Literal[2],
attributes: dict[str, JSON] | None,
chunk_key_encoding: ChunkKeyEncoding | ChunkKeyEncodingLike | None,
dimension_names: None,
) -> ArrayV2Metadata: ...
@overload
def create_array_metadata(
*,
shape: ShapeLike,
dtype: npt.DTypeLike,
chunks: ChunkCoords | Literal["auto"],
shards: ShardsLike | None,
filters: FiltersLike,
compressors: CompressorsLike,
serializer: SerializerLike,
fill_value: Any | None,
order: None,
zarr_format: Literal[3],
attributes: dict[str, JSON] | None,
chunk_key_encoding: ChunkKeyEncoding | ChunkKeyEncodingLike | None,
dimension_names: Iterable[str] | None,
) -> ArrayV3Metadata: ...
"""
def create_array_metadata(
*,
shape: ShapeLike,
dtype: npt.DTypeLike,
chunks: ChunkCoords | Literal["auto"] = "auto",
shards: ShardsLike | None = None,
filters: FiltersLike = "auto",
compressors: CompressorsLike = "auto",
serializer: SerializerLike = "auto",
fill_value: Any | None = None,
order: MemoryOrder | None = None,
zarr_format: ZarrFormat,
attributes: dict[str, JSON] | None = None,
chunk_key_encoding: ChunkKeyEncoding | ChunkKeyEncodingLike | None = None,
dimension_names: DimensionNames = None,
) -> ArrayV2Metadata | ArrayV3Metadata:
"""
Create array metadata
"""
dtype_parsed = parse_dtype(dtype, zarr_format=zarr_format)
shape_parsed = parse_shapelike(shape)
chunk_key_encoding_parsed = _parse_chunk_key_encoding(
chunk_key_encoding, zarr_format=zarr_format
)
shard_shape_parsed, chunk_shape_parsed = _auto_partition(
array_shape=shape_parsed, shard_shape=shards, chunk_shape=chunks, dtype=dtype_parsed
)
if order is None:
order_parsed = zarr_config.get("array.order")
else:
order_parsed = order
chunks_out: tuple[int, ...]
if zarr_format == 2:
filters_parsed, compressor_parsed = _parse_chunk_encoding_v2(
compressor=compressors, filters=filters, dtype=np.dtype(dtype)
)
return ArrayV2Metadata(
shape=shape_parsed,
dtype=np.dtype(dtype),
chunks=chunk_shape_parsed,
order=order_parsed,
dimension_separator=chunk_key_encoding_parsed.separator,
fill_value=fill_value,
compressor=compressor_parsed,
filters=filters_parsed,
attributes=attributes,
)
elif zarr_format == 3:
array_array, array_bytes, bytes_bytes = _parse_chunk_encoding_v3(
compressors=compressors,
filters=filters,
serializer=serializer,
dtype=dtype_parsed,
)
sub_codecs: tuple[Codec, ...] = (*array_array, array_bytes, *bytes_bytes)
codecs_out: tuple[Codec, ...]
if shard_shape_parsed is not None:
index_location = None
if isinstance(shards, dict):
index_location = ShardingCodecIndexLocation(shards.get("index_location", None))
if index_location is None:
index_location = ShardingCodecIndexLocation.end
sharding_codec = ShardingCodec(
chunk_shape=chunk_shape_parsed,
codecs=sub_codecs,
index_location=index_location,
)
sharding_codec.validate(
shape=chunk_shape_parsed,
dtype=dtype_parsed,
chunk_grid=RegularChunkGrid(chunk_shape=shard_shape_parsed),
)
codecs_out = (sharding_codec,)
chunks_out = shard_shape_parsed
else:
chunks_out = chunk_shape_parsed
codecs_out = sub_codecs
return ArrayV3Metadata(
shape=shape_parsed,
data_type=dtype_parsed,
chunk_grid=RegularChunkGrid(chunk_shape=chunks_out),
chunk_key_encoding=chunk_key_encoding_parsed,
fill_value=fill_value,
codecs=codecs_out,
attributes=attributes,
dimension_names=dimension_names,
)
raise ValueError(f"Invalid Zarr format: {zarr_format}")
# TODO: uncomment these overrides when we can get mypy to accept them
"""
@overload
def meta_from_array(
array: np.ndarray[Any, Any],
chunks: ChunkCoords | Literal["auto"],
shards: None,
filters: FiltersLike,
compressors: CompressorsLike,
serializer: SerializerLike,
fill_value: Any | None,
order: MemoryOrder | None,
zarr_format: Literal[2],
attributes: dict[str, JSON] | None,
chunk_key_encoding: ChunkKeyEncoding | ChunkKeyEncodingLike | None,
dimension_names: Iterable[str] | None,
) -> ArrayV2Metadata: ...
@overload
def meta_from_array(
array: np.ndarray[Any, Any],
chunks: ChunkCoords | Literal["auto"],
shards: ShardsLike | None,
filters: FiltersLike,
compressors: CompressorsLike,
serializer: SerializerLike,
fill_value: Any | None,
order: None,
zarr_format: Literal[3],
attributes: dict[str, JSON] | None,
chunk_key_encoding: ChunkKeyEncoding | ChunkKeyEncodingLike | None,
dimension_names: Iterable[str] | None,
) -> ArrayV3Metadata: ...
"""
def meta_from_array(
array: np.ndarray[Any, Any],
*,
chunks: ChunkCoords | Literal["auto"] = "auto",
shards: ShardsLike | None = None,
filters: FiltersLike = "auto",
compressors: CompressorsLike = "auto",
serializer: SerializerLike = "auto",
fill_value: Any | None = None,
order: MemoryOrder | None = None,
zarr_format: ZarrFormat = 3,
attributes: dict[str, JSON] | None = None,
chunk_key_encoding: ChunkKeyEncoding | ChunkKeyEncodingLike | None = None,
dimension_names: DimensionNames = None,
) -> ArrayV3Metadata | ArrayV2Metadata:
"""
Create array metadata from an array
"""
return create_array_metadata(
shape=array.shape,
dtype=array.dtype,
chunks=chunks,
shards=shards,
filters=filters,
compressors=compressors,
serializer=serializer,
fill_value=fill_value,
order=order,
zarr_format=zarr_format,
attributes=attributes,
chunk_key_encoding=chunk_key_encoding,
dimension_names=dimension_names,
)