134
134
135
135
136
136
@pytest .fixture (scope = "module" , params = ZARR_FORMATS )
137
- def default_zarr_version (request ) -> Generator [None , None ]:
137
+ def default_zarr_format (request ) -> Generator [None , None ]:
138
138
if has_zarr_v3 :
139
- with zarr .config .set (default_zarr_version = request .param ):
139
+ with zarr .config .set (default_zarr_format = request .param ):
140
140
yield
141
141
else :
142
142
yield
143
143
144
144
145
145
def skip_if_zarr_format_3 (reason : str ):
146
- if has_zarr_v3 and zarr .config ["default_zarr_version " ] == 3 :
146
+ if has_zarr_v3 and zarr .config ["default_zarr_format " ] == 3 :
147
147
pytest .skip (reason = f"Unsupported with zarr_format=3: { reason } " )
148
148
149
149
150
150
def skip_if_zarr_format_2 (reason : str ):
151
- if not has_zarr_v3 or (zarr .config ["default_zarr_version " ] == 2 ):
151
+ if not has_zarr_v3 or (zarr .config ["default_zarr_format " ] == 2 ):
152
152
pytest .skip (reason = f"Unsupported with zarr_format=2: { reason } " )
153
153
154
154
@@ -2270,7 +2270,7 @@ def test_roundtrip_coordinates(self) -> None:
2270
2270
2271
2271
2272
2272
@requires_zarr
2273
- @pytest .mark .usefixtures ("default_zarr_version " )
2273
+ @pytest .mark .usefixtures ("default_zarr_format " )
2274
2274
class ZarrBase (CFEncodedBase ):
2275
2275
DIMENSION_KEY = "_ARRAY_DIMENSIONS"
2276
2276
zarr_version = 2
@@ -2439,7 +2439,7 @@ def test_warning_on_bad_chunks(self) -> None:
2439
2439
with warnings .catch_warnings ():
2440
2440
warnings .filterwarnings (
2441
2441
"ignore" ,
2442
- message = ".*Zarr version 3 specification.*" ,
2442
+ message = ".*Zarr format 3 specification.*" ,
2443
2443
category = UserWarning ,
2444
2444
)
2445
2445
with self .roundtrip (original , open_kwargs = kwargs ) as actual :
@@ -2675,40 +2675,35 @@ def test_write_persistence_modes(self, group) -> None:
2675
2675
assert_identical (original , actual )
2676
2676
2677
2677
def test_compressor_encoding (self ) -> None :
2678
- original = create_test_data ()
2679
2678
# specify a custom compressor
2680
-
2681
- if has_zarr_v3 and zarr .config .config ["default_zarr_version " ] == 3 :
2682
- encoding_key = "codecs "
2679
+ original = create_test_data ()
2680
+ if has_zarr_v3 and zarr .config .config ["default_zarr_format " ] == 3 :
2681
+ encoding_key = "compressors "
2683
2682
# all parameters need to be explicitly specified in order for the comparison to pass below
2684
2683
encoding = {
2684
+ "serializer" : zarr .codecs .BytesCodec (endian = "little" ),
2685
2685
encoding_key : (
2686
- zarr .codecs .BytesCodec (endian = "little" ),
2687
2686
zarr .codecs .BloscCodec (
2688
2687
cname = "zstd" ,
2689
2688
clevel = 3 ,
2690
2689
shuffle = "shuffle" ,
2691
2690
typesize = 8 ,
2692
2691
blocksize = 0 ,
2693
2692
),
2694
- )
2693
+ ),
2695
2694
}
2696
2695
else :
2697
2696
from numcodecs .blosc import Blosc
2698
2697
2699
- encoding_key = "compressor"
2700
- encoding = {encoding_key : Blosc (cname = "zstd" , clevel = 3 , shuffle = 2 )}
2698
+ encoding_key = "compressors" if has_zarr_v3 else "compressor"
2699
+ comp = Blosc (cname = "zstd" , clevel = 3 , shuffle = 2 )
2700
+ encoding = {encoding_key : (comp ,) if has_zarr_v3 else comp }
2701
2701
2702
2702
save_kwargs = dict (encoding = {"var1" : encoding })
2703
2703
2704
2704
with self .roundtrip (original , save_kwargs = save_kwargs ) as ds :
2705
2705
enc = ds ["var1" ].encoding [encoding_key ]
2706
- if has_zarr_v3 and zarr .config .config ["default_zarr_version" ] == 3 :
2707
- # TODO: figure out a cleaner way to do this comparison
2708
- codecs = zarr .core .metadata .v3 .parse_codecs (enc )
2709
- assert codecs == encoding [encoding_key ]
2710
- else :
2711
- assert enc == encoding [encoding_key ]
2706
+ assert enc == encoding [encoding_key ]
2712
2707
2713
2708
def test_group (self ) -> None :
2714
2709
original = create_test_data ()
@@ -2846,14 +2841,12 @@ def test_check_encoding_is_consistent_after_append(self) -> None:
2846
2841
import numcodecs
2847
2842
2848
2843
encoding_value : Any
2849
- if has_zarr_v3 and zarr .config .config ["default_zarr_version " ] == 3 :
2844
+ if has_zarr_v3 and zarr .config .config ["default_zarr_format " ] == 3 :
2850
2845
compressor = zarr .codecs .BloscCodec ()
2851
- encoding_key = "codecs"
2852
- encoding_value = [zarr .codecs .BytesCodec (), compressor ]
2853
2846
else :
2854
2847
compressor = numcodecs .Blosc ()
2855
- encoding_key = "compressor"
2856
- encoding_value = compressor
2848
+ encoding_key = "compressors" if has_zarr_v3 else "compressor"
2849
+ encoding_value = ( compressor ,) if has_zarr_v3 else compressor
2857
2850
2858
2851
encoding = {"da" : {encoding_key : encoding_value }}
2859
2852
ds .to_zarr (store_target , mode = "w" , encoding = encoding , ** self .version_kwargs )
@@ -2995,7 +2988,7 @@ def test_no_warning_from_open_emptydim_with_chunks(self) -> None:
2995
2988
with warnings .catch_warnings ():
2996
2989
warnings .filterwarnings (
2997
2990
"ignore" ,
2998
- message = ".*Zarr version 3 specification.*" ,
2991
+ message = ".*Zarr format 3 specification.*" ,
2999
2992
category = UserWarning ,
3000
2993
)
3001
2994
with self .roundtrip (ds , open_kwargs = dict (chunks = {"a" : 1 })) as ds_reload :
@@ -5479,7 +5472,7 @@ def test_dataarray_to_netcdf_no_name_pathlib(self) -> None:
5479
5472
@requires_zarr
5480
5473
class TestDataArrayToZarr :
5481
5474
def skip_if_zarr_python_3_and_zip_store (self , store ) -> None :
5482
- if has_zarr_v3 and isinstance (store , zarr .storage .zip . ZipStore ):
5475
+ if has_zarr_v3 and isinstance (store , zarr .storage .ZipStore ):
5483
5476
pytest .skip (
5484
5477
reason = "zarr-python 3.x doesn't support reopening ZipStore with a new mode."
5485
5478
)
@@ -5786,7 +5779,7 @@ def test_extract_zarr_variable_encoding() -> None:
5786
5779
var = xr .Variable ("x" , [1 , 2 ])
5787
5780
actual = backends .zarr .extract_zarr_variable_encoding (var )
5788
5781
assert "chunks" in actual
5789
- assert actual ["chunks" ] is None
5782
+ assert actual ["chunks" ] == ( "auto" if has_zarr_v3 else None )
5790
5783
5791
5784
var = xr .Variable ("x" , [1 , 2 ], encoding = {"chunks" : (1 ,)})
5792
5785
actual = backends .zarr .extract_zarr_variable_encoding (var )
@@ -6092,14 +6085,14 @@ def test_raise_writing_to_nczarr(self, mode) -> None:
6092
6085
6093
6086
@requires_netCDF4
6094
6087
@requires_dask
6095
- @pytest .mark .usefixtures ("default_zarr_version " )
6088
+ @pytest .mark .usefixtures ("default_zarr_format " )
6096
6089
def test_pickle_open_mfdataset_dataset ():
6097
6090
with open_example_mfdataset (["bears.nc" ]) as ds :
6098
6091
assert_identical (ds , pickle .loads (pickle .dumps (ds )))
6099
6092
6100
6093
6101
6094
@requires_zarr
6102
- @pytest .mark .usefixtures ("default_zarr_version " )
6095
+ @pytest .mark .usefixtures ("default_zarr_format " )
6103
6096
def test_zarr_closing_internal_zip_store ():
6104
6097
store_name = "tmp.zarr.zip"
6105
6098
original_da = DataArray (np .arange (12 ).reshape ((3 , 4 )))
@@ -6110,7 +6103,7 @@ def test_zarr_closing_internal_zip_store():
6110
6103
6111
6104
6112
6105
@requires_zarr
6113
- @pytest .mark .usefixtures ("default_zarr_version " )
6106
+ @pytest .mark .usefixtures ("default_zarr_format " )
6114
6107
class TestZarrRegionAuto :
6115
6108
def test_zarr_region_auto_all (self , tmp_path ):
6116
6109
x = np .arange (0 , 50 , 10 )
@@ -6286,7 +6279,7 @@ def test_zarr_region_append(self, tmp_path):
6286
6279
6287
6280
6288
6281
@requires_zarr
6289
- @pytest .mark .usefixtures ("default_zarr_version " )
6282
+ @pytest .mark .usefixtures ("default_zarr_format " )
6290
6283
def test_zarr_region (tmp_path ):
6291
6284
x = np .arange (0 , 50 , 10 )
6292
6285
y = np .arange (0 , 20 , 2 )
@@ -6315,7 +6308,7 @@ def test_zarr_region(tmp_path):
6315
6308
6316
6309
@requires_zarr
6317
6310
@requires_dask
6318
- @pytest .mark .usefixtures ("default_zarr_version " )
6311
+ @pytest .mark .usefixtures ("default_zarr_format " )
6319
6312
def test_zarr_region_chunk_partial (tmp_path ):
6320
6313
"""
6321
6314
Check that writing to partial chunks with `region` fails, assuming `safe_chunks=False`.
@@ -6336,7 +6329,7 @@ def test_zarr_region_chunk_partial(tmp_path):
6336
6329
6337
6330
@requires_zarr
6338
6331
@requires_dask
6339
- @pytest .mark .usefixtures ("default_zarr_version " )
6332
+ @pytest .mark .usefixtures ("default_zarr_format " )
6340
6333
def test_zarr_append_chunk_partial (tmp_path ):
6341
6334
t_coords = np .array ([np .datetime64 ("2020-01-01" ).astype ("datetime64[ns]" )])
6342
6335
data = np .ones ((10 , 10 ))
@@ -6374,7 +6367,7 @@ def test_zarr_append_chunk_partial(tmp_path):
6374
6367
6375
6368
@requires_zarr
6376
6369
@requires_dask
6377
- @pytest .mark .usefixtures ("default_zarr_version " )
6370
+ @pytest .mark .usefixtures ("default_zarr_format " )
6378
6371
def test_zarr_region_chunk_partial_offset (tmp_path ):
6379
6372
# https://github.com/pydata/xarray/pull/8459#issuecomment-1819417545
6380
6373
store = tmp_path / "foo.zarr"
@@ -6394,7 +6387,7 @@ def test_zarr_region_chunk_partial_offset(tmp_path):
6394
6387
6395
6388
@requires_zarr
6396
6389
@requires_dask
6397
- @pytest .mark .usefixtures ("default_zarr_version " )
6390
+ @pytest .mark .usefixtures ("default_zarr_format " )
6398
6391
def test_zarr_safe_chunk_append_dim (tmp_path ):
6399
6392
store = tmp_path / "foo.zarr"
6400
6393
data = np .ones ((20 ,))
@@ -6445,7 +6438,7 @@ def test_zarr_safe_chunk_append_dim(tmp_path):
6445
6438
6446
6439
@requires_zarr
6447
6440
@requires_dask
6448
- @pytest .mark .usefixtures ("default_zarr_version " )
6441
+ @pytest .mark .usefixtures ("default_zarr_format " )
6449
6442
def test_zarr_safe_chunk_region (tmp_path ):
6450
6443
store = tmp_path / "foo.zarr"
6451
6444
0 commit comments