-
-
Notifications
You must be signed in to change notification settings - Fork 324
/
Copy pathtest_group.py
2090 lines (1746 loc) · 73.6 KB
/
test_group.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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from __future__ import annotations
import contextlib
import inspect
import operator
import pickle
import re
import time
import warnings
from typing import TYPE_CHECKING, Any, Literal
import numpy as np
import pytest
from numcodecs import Blosc
import zarr
import zarr.api.asynchronous
import zarr.api.synchronous
import zarr.storage
from zarr import Array, AsyncArray, AsyncGroup, Group
from zarr.abc.store import Store
from zarr.core import sync_group
from zarr.core._info import GroupInfo
from zarr.core.buffer import default_buffer_prototype
from zarr.core.config import config as zarr_config
from zarr.core.group import (
ConsolidatedMetadata,
GroupMetadata,
ImplicitGroupMarker,
_build_metadata_v3,
_get_roots,
_parse_hierarchy_dict,
create_hierarchy,
create_nodes,
create_rooted_hierarchy,
get_node,
)
from zarr.core.metadata.v3 import ArrayV3Metadata
from zarr.core.sync import _collect_aiterator, sync
from zarr.errors import ContainsArrayError, ContainsGroupError, MetadataValidationError
from zarr.storage import LocalStore, MemoryStore, StorePath, ZipStore
from zarr.storage._common import make_store_path
from zarr.storage._utils import _join_paths, normalize_path
from zarr.testing.store import LatencyStore
from .conftest import meta_from_array, parse_store
if TYPE_CHECKING:
from collections.abc import Callable
from _pytest.compat import LEGACY_PATH
from zarr.core.common import JSON, ZarrFormat
@pytest.fixture(params=["local", "memory", "zip"])
async def store(request: pytest.FixtureRequest, tmpdir: LEGACY_PATH) -> Store:
result = await parse_store(request.param, str(tmpdir))
if not isinstance(result, Store):
raise TypeError("Wrong store class returned by test fixture! got " + result + " instead")
return result
@pytest.fixture(params=[True, False])
def overwrite(request: pytest.FixtureRequest) -> bool:
result = request.param
if not isinstance(result, bool):
raise TypeError("Wrong type returned by test fixture.")
return result
def test_group_init(store: Store, zarr_format: ZarrFormat) -> None:
"""
Test that initializing a group from an asyncgroup works.
"""
agroup = sync(AsyncGroup.from_store(store=store, zarr_format=zarr_format))
group = Group(agroup)
assert group._async_group == agroup
async def test_create_creates_parents(store: Store, zarr_format: ZarrFormat) -> None:
# prepare a root node, with some data set
await zarr.api.asynchronous.open_group(
store=store, path="a", zarr_format=zarr_format, attributes={"key": "value"}
)
objs = {x async for x in store.list()}
if zarr_format == 2:
assert objs == {".zgroup", ".zattrs", "a/.zgroup", "a/.zattrs"}
else:
assert objs == {"zarr.json", "a/zarr.json"}
# test that root group node was created
root = await zarr.api.asynchronous.open_group(
store=store,
)
agroup = await root.getitem("a")
assert agroup.attrs == {"key": "value"}
# create a child node with a couple intermediates
await zarr.api.asynchronous.open_group(store=store, path="a/b/c/d", zarr_format=zarr_format)
parts = ["a", "a/b", "a/b/c"]
if zarr_format == 2:
files = [".zattrs", ".zgroup"]
else:
files = ["zarr.json"]
expected = [f"{part}/{file}" for file in files for part in parts]
if zarr_format == 2:
expected.extend([".zgroup", ".zattrs", "a/b/c/d/.zgroup", "a/b/c/d/.zattrs"])
else:
expected.extend(["zarr.json", "a/b/c/d/zarr.json"])
expected = sorted(expected)
result = sorted([x async for x in store.list_prefix("")])
assert result == expected
paths = ["a", "a/b", "a/b/c"]
for path in paths:
g = await zarr.api.asynchronous.open_group(store=store, path=path)
assert isinstance(g, AsyncGroup)
if path == "a":
# ensure we didn't overwrite the root attributes
assert g.attrs == {"key": "value"}
else:
assert g.attrs == {}
@pytest.mark.parametrize("store", ["memory"], indirect=True)
@pytest.mark.parametrize("root_name", ["", "/", "a", "/a"])
@pytest.mark.parametrize("branch_name", ["foo", "/foo", "foo/bar", "/foo/bar"])
def test_group_name_properties(
store: Store, zarr_format: ZarrFormat, root_name: str, branch_name: str
) -> None:
"""
Test that the path, name, and basename attributes of a group and its subgroups are consistent
"""
root = Group.from_store(store=StorePath(store=store, path=root_name), zarr_format=zarr_format)
assert root.path == normalize_path(root_name)
assert root.name == "/" + root.path
assert root.basename == root.path
branch = root.create_group(branch_name)
if root.path == "":
assert branch.path == normalize_path(branch_name)
else:
assert branch.path == "/".join([root.path, normalize_path(branch_name)])
assert branch.name == "/" + branch.path
assert branch.basename == branch_name.split("/")[-1]
@pytest.mark.parametrize("consolidated_metadata", [True, False])
def test_group_members(store: Store, zarr_format: ZarrFormat, consolidated_metadata: bool) -> None:
"""
Test that `Group.members` returns correct values, i.e. the arrays and groups
(explicit and implicit) contained in that group.
"""
# group/
# subgroup/
# subsubgroup/
# subsubsubgroup
# subarray
path = "group"
group = Group.from_store(
store=store,
zarr_format=zarr_format,
)
members_expected: dict[str, Array | Group] = {}
members_expected["subgroup"] = group.create_group("subgroup")
# make a sub-sub-subgroup, to ensure that the children calculation doesn't go
# too deep in the hierarchy
subsubgroup = members_expected["subgroup"].create_group("subsubgroup")
subsubsubgroup = subsubgroup.create_group("subsubsubgroup")
members_expected["subarray"] = group.create_array(
"subarray", shape=(100,), dtype="uint8", chunks=(10,), overwrite=True
)
# add an extra object to the domain of the group.
# the list of children should ignore this object.
sync(
store.set(
f"{path}/extra_object-1",
default_buffer_prototype().buffer.from_bytes(b"000000"),
)
)
# add an extra object under a directory-like prefix in the domain of the group.
# this creates a directory with a random key in it
# this should not show up as a member
sync(
store.set(
f"{path}/extra_directory/extra_object-2",
default_buffer_prototype().buffer.from_bytes(b"000000"),
)
)
# this warning shows up when extra objects show up in the hierarchy
warn_context = pytest.warns(
UserWarning, match=r"Object at .* is not recognized as a component of a Zarr hierarchy."
)
if consolidated_metadata:
with warn_context:
zarr.consolidate_metadata(store=store, zarr_format=zarr_format)
# now that we've consolidated the store, we shouldn't get the warnings from the unrecognized objects anymore
# we use a nullcontext to handle these cases
warn_context = contextlib.nullcontext()
group = zarr.open_consolidated(store=store, zarr_format=zarr_format)
with warn_context:
members_observed = group.members()
# members are not guaranteed to be ordered, so sort before comparing
assert sorted(dict(members_observed)) == sorted(members_expected)
# partial
with warn_context:
members_observed = group.members(max_depth=1)
members_expected["subgroup/subsubgroup"] = subsubgroup
# members are not guaranteed to be ordered, so sort before comparing
assert sorted(dict(members_observed)) == sorted(members_expected)
# total
with warn_context:
members_observed = group.members(max_depth=None)
members_expected["subgroup/subsubgroup/subsubsubgroup"] = subsubsubgroup
# members are not guaranteed to be ordered, so sort before comparing
assert sorted(dict(members_observed)) == sorted(members_expected)
with pytest.raises(ValueError, match="max_depth"):
members_observed = group.members(max_depth=-1)
def test_group(store: Store, zarr_format: ZarrFormat) -> None:
"""
Test basic Group routines.
"""
store_path = StorePath(store)
agroup = AsyncGroup(metadata=GroupMetadata(zarr_format=zarr_format), store_path=store_path)
group = Group(agroup)
assert agroup.metadata is group.metadata
assert agroup.store_path == group.store_path == store_path
# create two groups
foo = group.create_group("foo")
bar = foo.create_group("bar", attributes={"baz": "qux"})
# create an array from the "bar" group
data = np.arange(0, 4 * 4, dtype="uint16").reshape((4, 4))
arr = bar.create_array("baz", shape=data.shape, dtype=data.dtype, chunks=(2, 2), overwrite=True)
arr[:] = data
# check the array
assert arr == bar["baz"]
assert arr.shape == data.shape
assert arr.dtype == data.dtype
# TODO: update this once the array api settles down
assert arr.chunks == (2, 2)
bar2 = foo["bar"]
assert dict(bar2.attrs) == {"baz": "qux"}
# update a group's attributes
bar2.attrs.update({"name": "bar"})
# bar.attrs was modified in-place
assert dict(bar2.attrs) == {"baz": "qux", "name": "bar"}
# and the attrs were modified in the store
bar3 = foo["bar"]
assert dict(bar3.attrs) == {"baz": "qux", "name": "bar"}
def test_group_create(store: Store, overwrite: bool, zarr_format: ZarrFormat) -> None:
"""
Test that `Group.from_store` works as expected.
"""
attributes = {"foo": 100}
group = Group.from_store(
store, attributes=attributes, zarr_format=zarr_format, overwrite=overwrite
)
assert group.attrs == attributes
if not overwrite:
with pytest.raises(ContainsGroupError):
_ = Group.from_store(store, overwrite=overwrite, zarr_format=zarr_format)
def test_group_open(store: Store, zarr_format: ZarrFormat, overwrite: bool) -> None:
"""
Test the `Group.open` method.
"""
spath = StorePath(store)
# attempt to open a group that does not exist
with pytest.raises(FileNotFoundError):
Group.open(store)
# create the group
attrs = {"path": "foo"}
group_created = Group.from_store(
store, attributes=attrs, zarr_format=zarr_format, overwrite=overwrite
)
assert group_created.attrs == attrs
assert group_created.metadata.zarr_format == zarr_format
assert group_created.store_path == spath
# attempt to create a new group in place, to test overwrite
new_attrs = {"path": "bar"}
if not overwrite:
with pytest.raises(ContainsGroupError):
Group.from_store(store, attributes=attrs, zarr_format=zarr_format, overwrite=overwrite)
else:
if not store.supports_deletes:
pytest.skip(
"Store does not support deletes but `overwrite` is True, requiring deletes to override a group"
)
group_created_again = Group.from_store(
store, attributes=new_attrs, zarr_format=zarr_format, overwrite=overwrite
)
assert group_created_again.attrs == new_attrs
assert group_created_again.metadata.zarr_format == zarr_format
assert group_created_again.store_path == spath
@pytest.mark.parametrize("consolidated", [True, False])
def test_group_getitem(store: Store, zarr_format: ZarrFormat, consolidated: bool) -> None:
"""
Test the `Group.__getitem__` method.
"""
group = Group.from_store(store, zarr_format=zarr_format)
subgroup = group.create_group(name="subgroup")
subarray = group.create_array(name="subarray", shape=(10,), chunks=(10,), dtype="uint8")
subsubarray = subgroup.create_array(name="subarray", shape=(10,), chunks=(10,), dtype="uint8")
if consolidated:
group = zarr.api.synchronous.consolidate_metadata(store=store, zarr_format=zarr_format)
# we're going to assume that `group.metadata` is correct, and reuse that to focus
# on indexing in this test. Other tests verify the correctness of group.metadata
object.__setattr__(
subgroup.metadata,
"consolidated_metadata",
ConsolidatedMetadata(
metadata={"subarray": group.metadata.consolidated_metadata.metadata["subarray"]}
),
)
assert group["subgroup"] == subgroup
assert group["subarray"] == subarray
assert group["subgroup"]["subarray"] == subsubarray
assert group["subgroup/subarray"] == subsubarray
with pytest.raises(KeyError):
group["nope"]
with pytest.raises(KeyError, match="subarray/subsubarray"):
group["subarray/subsubarray"]
# Now test the mixed case
if consolidated:
object.__setattr__(
group.metadata.consolidated_metadata.metadata["subgroup"],
"consolidated_metadata",
None,
)
# test the implementation directly
with pytest.raises(KeyError):
group._async_group._getitem_consolidated(
group.store_path, "subgroup/subarray", prefix="/"
)
with pytest.raises(KeyError):
# We've chosen to trust the consolidated metadata, which doesn't
# contain this array
group["subgroup/subarray"]
with pytest.raises(KeyError, match="subarray/subsubarray"):
group["subarray/subsubarray"]
def test_group_get_with_default(store: Store, zarr_format: ZarrFormat) -> None:
group = Group.from_store(store, zarr_format=zarr_format)
# default behavior
result = group.get("subgroup")
assert result is None
# custom default
result = group.get("subgroup", 8)
assert result == 8
# now with a group
subgroup = group.require_group("subgroup")
subgroup.attrs["foo"] = "bar"
result = group.get("subgroup", 8)
assert result.attrs["foo"] == "bar"
@pytest.mark.parametrize("consolidated", [True, False])
def test_group_delitem(store: Store, zarr_format: ZarrFormat, consolidated: bool) -> None:
"""
Test the `Group.__delitem__` method.
"""
if not store.supports_deletes:
pytest.skip("store does not support deletes")
group = Group.from_store(store, zarr_format=zarr_format)
subgroup = group.create_group(name="subgroup")
subarray = group.create_array(name="subarray", shape=(10,), chunks=(10,), dtype="uint8")
if consolidated:
group = zarr.api.synchronous.consolidate_metadata(store=store, zarr_format=zarr_format)
object.__setattr__(
subgroup.metadata, "consolidated_metadata", ConsolidatedMetadata(metadata={})
)
assert group["subgroup"] == subgroup
assert group["subarray"] == subarray
del group["subgroup"]
with pytest.raises(KeyError):
group["subgroup"]
del group["subarray"]
with pytest.raises(KeyError):
group["subarray"]
def test_group_iter(store: Store, zarr_format: ZarrFormat) -> None:
"""
Test the `Group.__iter__` method.
"""
group = Group.from_store(store, zarr_format=zarr_format)
assert list(group) == []
def test_group_len(store: Store, zarr_format: ZarrFormat) -> None:
"""
Test the `Group.__len__` method.
"""
group = Group.from_store(store, zarr_format=zarr_format)
assert len(group) == 0
def test_group_with_context_manager(store: Store, zarr_format: ZarrFormat, overwrite: bool) -> None:
spath = StorePath(store)
# attempt to open a group that does not exist.
with pytest.raises(FileNotFoundError):
with zarr.open_group(store, mode="r") as group:
pass
attrs = {"path": "foo"}
with zarr.create_group(
store, attributes=attrs, zarr_format=zarr_format, overwrite=overwrite
) as group:
assert store._is_open
assert group.attrs == attrs
assert group.metadata.zarr_format == zarr_format
assert group.store_path == spath
# Check if store was closed after exit.
assert not store._is_open
def test_group_setitem(store: Store, zarr_format: ZarrFormat) -> None:
"""
Test the `Group.__setitem__` method.
"""
group = Group.from_store(store, zarr_format=zarr_format)
arr = np.ones((2, 4))
group["key"] = arr
assert list(group.array_keys()) == ["key"]
assert group["key"].shape == (2, 4)
np.testing.assert_array_equal(group["key"][:], arr)
if store.supports_deletes:
key = "key"
else:
# overwriting with another array requires deletes
# for stores that don't support this, we just use a new key
key = "key2"
# overwrite with another array
arr = np.zeros((3, 5))
group[key] = arr
assert key in list(group.array_keys())
assert group[key].shape == (3, 5)
np.testing.assert_array_equal(group[key], arr)
def test_group_contains(store: Store, zarr_format: ZarrFormat) -> None:
"""
Test the `Group.__contains__` method
"""
group = Group.from_store(store, zarr_format=zarr_format)
assert "foo" not in group
_ = group.create_group(name="foo")
assert "foo" in group
@pytest.mark.parametrize("consolidate", [True, False])
def test_group_child_iterators(store: Store, zarr_format: ZarrFormat, consolidate: bool):
group = Group.from_store(store, zarr_format=zarr_format)
expected_group_keys = ["g0", "g1"]
expected_group_values = [group.create_group(name=name) for name in expected_group_keys]
expected_groups = list(zip(expected_group_keys, expected_group_values, strict=False))
fill_value = 3
dtype = "uint8"
expected_group_values[0].create_group("subgroup")
expected_group_values[0].create_array(
"subarray", shape=(1,), dtype=dtype, fill_value=fill_value
)
expected_array_keys = ["a0", "a1"]
expected_array_values = [
group.create_array(name=name, shape=(1,), dtype=dtype, fill_value=fill_value)
for name in expected_array_keys
]
expected_arrays = list(zip(expected_array_keys, expected_array_values, strict=False))
if consolidate:
group = zarr.consolidate_metadata(store)
if zarr_format == 2:
metadata = {
"subarray": {
"attributes": {},
"dtype": dtype,
"fill_value": fill_value,
"shape": (1,),
"chunks": (1,),
"order": "C",
"filters": None,
"compressor": Blosc(),
"zarr_format": zarr_format,
},
"subgroup": {
"attributes": {},
"consolidated_metadata": {
"metadata": {},
"kind": "inline",
"must_understand": False,
},
"node_type": "group",
"zarr_format": zarr_format,
},
}
else:
metadata = {
"subarray": {
"attributes": {},
"chunk_grid": {
"configuration": {"chunk_shape": (1,)},
"name": "regular",
},
"chunk_key_encoding": {
"configuration": {"separator": "/"},
"name": "default",
},
"codecs": (
{"configuration": {"endian": "little"}, "name": "bytes"},
{"configuration": {}, "name": "zstd"},
),
"data_type": dtype,
"fill_value": fill_value,
"node_type": "array",
"shape": (1,),
"zarr_format": zarr_format,
},
"subgroup": {
"attributes": {},
"consolidated_metadata": {
"metadata": {},
"kind": "inline",
"must_understand": False,
},
"node_type": "group",
"zarr_format": zarr_format,
},
}
object.__setattr__(
expected_group_values[0].metadata,
"consolidated_metadata",
ConsolidatedMetadata.from_dict(
{
"kind": "inline",
"metadata": metadata,
"must_understand": False,
}
),
)
object.__setattr__(
expected_group_values[1].metadata,
"consolidated_metadata",
ConsolidatedMetadata(metadata={}),
)
result = sorted(group.groups(), key=operator.itemgetter(0))
assert result == expected_groups
assert sorted(group.groups(), key=operator.itemgetter(0)) == expected_groups
assert sorted(group.group_keys()) == expected_group_keys
assert sorted(group.group_values(), key=lambda x: x.name) == expected_group_values
assert sorted(group.arrays(), key=operator.itemgetter(0)) == expected_arrays
assert sorted(group.array_keys()) == expected_array_keys
assert sorted(group.array_values(), key=lambda x: x.name) == expected_array_values
def test_group_update_attributes(store: Store, zarr_format: ZarrFormat) -> None:
"""
Test the behavior of `Group.update_attributes`
"""
attrs = {"foo": 100}
group = Group.from_store(store, zarr_format=zarr_format, attributes=attrs)
assert group.attrs == attrs
new_attrs = {"bar": 100}
new_group = group.update_attributes(new_attrs)
updated_attrs = attrs.copy()
updated_attrs.update(new_attrs)
assert new_group.attrs == updated_attrs
async def test_group_update_attributes_async(store: Store, zarr_format: ZarrFormat) -> None:
"""
Test the behavior of `Group.update_attributes_async`
"""
attrs = {"foo": 100}
group = Group.from_store(store, zarr_format=zarr_format, attributes=attrs)
assert group.attrs == attrs
new_attrs = {"bar": 100}
new_group = await group.update_attributes_async(new_attrs)
assert new_group.attrs == new_attrs
@pytest.mark.parametrize("method", ["create_array", "array"])
@pytest.mark.parametrize("name", ["a", "/a"])
def test_group_create_array(
store: Store,
zarr_format: ZarrFormat,
overwrite: bool,
method: Literal["create_array", "array"],
name: str,
) -> None:
"""
Test `Group.from_store`
"""
group = Group.from_store(store, zarr_format=zarr_format)
shape = (10, 10)
dtype = "uint8"
data = np.arange(np.prod(shape)).reshape(shape).astype(dtype)
if method == "create_array":
array = group.create_array(name=name, shape=shape, dtype=dtype)
array[:] = data
elif method == "array":
with pytest.warns(DeprecationWarning):
array = group.array(name=name, data=data, shape=shape, dtype=dtype)
else:
raise AssertionError
if not overwrite:
if method == "create_array":
with pytest.raises(ContainsArrayError):
a = group.create_array(name=name, shape=shape, dtype=dtype)
a[:] = data
elif method == "array":
with pytest.raises(ContainsArrayError), pytest.warns(DeprecationWarning):
a = group.array(name=name, shape=shape, dtype=dtype)
a[:] = data
assert array.path == normalize_path(name)
assert array.name == "/" + array.path
assert array.shape == shape
assert array.dtype == np.dtype(dtype)
assert np.array_equal(array[:], data)
def test_group_array_creation(
store: Store,
zarr_format: ZarrFormat,
):
group = Group.from_store(store, zarr_format=zarr_format)
shape = (10, 10)
empty_array = group.empty(name="empty", shape=shape)
assert isinstance(empty_array, Array)
assert empty_array.fill_value == 0
assert empty_array.shape == shape
assert empty_array.store_path.store == store
assert empty_array.store_path.path == "empty"
empty_like_array = group.empty_like(name="empty_like", data=empty_array)
assert isinstance(empty_like_array, Array)
assert empty_like_array.fill_value == 0
assert empty_like_array.shape == shape
assert empty_like_array.store_path.store == store
empty_array_bool = group.empty(name="empty_bool", shape=shape, dtype=np.dtype("bool"))
assert isinstance(empty_array_bool, Array)
assert not empty_array_bool.fill_value
assert empty_array_bool.shape == shape
assert empty_array_bool.store_path.store == store
empty_like_array_bool = group.empty_like(name="empty_like_bool", data=empty_array_bool)
assert isinstance(empty_like_array_bool, Array)
assert not empty_like_array_bool.fill_value
assert empty_like_array_bool.shape == shape
assert empty_like_array_bool.store_path.store == store
zeros_array = group.zeros(name="zeros", shape=shape)
assert isinstance(zeros_array, Array)
assert zeros_array.fill_value == 0
assert zeros_array.shape == shape
assert zeros_array.store_path.store == store
zeros_like_array = group.zeros_like(name="zeros_like", data=zeros_array)
assert isinstance(zeros_like_array, Array)
assert zeros_like_array.fill_value == 0
assert zeros_like_array.shape == shape
assert zeros_like_array.store_path.store == store
ones_array = group.ones(name="ones", shape=shape)
assert isinstance(ones_array, Array)
assert ones_array.fill_value == 1
assert ones_array.shape == shape
assert ones_array.store_path.store == store
ones_like_array = group.ones_like(name="ones_like", data=ones_array)
assert isinstance(ones_like_array, Array)
assert ones_like_array.fill_value == 1
assert ones_like_array.shape == shape
assert ones_like_array.store_path.store == store
full_array = group.full(name="full", shape=shape, fill_value=42)
assert isinstance(full_array, Array)
assert full_array.fill_value == 42
assert full_array.shape == shape
assert full_array.store_path.store == store
full_like_array = group.full_like(name="full_like", data=full_array, fill_value=43)
assert isinstance(full_like_array, Array)
assert full_like_array.fill_value == 43
assert full_like_array.shape == shape
assert full_like_array.store_path.store == store
@pytest.mark.parametrize("store", ["local", "memory", "zip"], indirect=["store"])
@pytest.mark.parametrize("zarr_format", [2, 3])
@pytest.mark.parametrize("overwrite", [True, False])
@pytest.mark.parametrize("extant_node", ["array", "group"])
def test_group_creation_existing_node(
store: Store,
zarr_format: ZarrFormat,
overwrite: bool,
extant_node: Literal["array", "group"],
) -> None:
"""
Check that an existing array or group is handled as expected during group creation.
"""
spath = StorePath(store)
group = Group.from_store(spath, zarr_format=zarr_format)
expected_exception: type[ContainsArrayError | ContainsGroupError]
attributes: dict[str, JSON] = {"old": True}
if extant_node == "array":
expected_exception = ContainsArrayError
_ = group.create_array("extant", shape=(10,), dtype="uint8", attributes=attributes)
elif extant_node == "group":
expected_exception = ContainsGroupError
_ = group.create_group("extant", attributes=attributes)
else:
raise AssertionError
new_attributes = {"new": True}
if overwrite:
if not store.supports_deletes:
pytest.skip("store does not support deletes but overwrite is True")
node_new = Group.from_store(
spath / "extant",
attributes=new_attributes,
zarr_format=zarr_format,
overwrite=overwrite,
)
assert node_new.attrs == new_attributes
else:
with pytest.raises(expected_exception):
node_new = Group.from_store(
spath / "extant",
attributes=new_attributes,
zarr_format=zarr_format,
overwrite=overwrite,
)
async def test_asyncgroup_create(
store: Store,
overwrite: bool,
zarr_format: ZarrFormat,
) -> None:
"""
Test that `AsyncGroup.from_store` works as expected.
"""
spath = StorePath(store=store)
attributes = {"foo": 100}
agroup = await AsyncGroup.from_store(
store,
attributes=attributes,
overwrite=overwrite,
zarr_format=zarr_format,
)
assert agroup.metadata == GroupMetadata(zarr_format=zarr_format, attributes=attributes)
assert agroup.store_path == await make_store_path(store)
if not overwrite:
with pytest.raises(ContainsGroupError):
agroup = await AsyncGroup.from_store(
spath,
attributes=attributes,
overwrite=overwrite,
zarr_format=zarr_format,
)
# create an array at our target path
collision_name = "foo"
_ = await zarr.api.asynchronous.create_array(
spath / collision_name, shape=(10,), dtype="uint8", zarr_format=zarr_format
)
with pytest.raises(ContainsArrayError):
_ = await AsyncGroup.from_store(
StorePath(store=store) / collision_name,
attributes=attributes,
overwrite=overwrite,
zarr_format=zarr_format,
)
async def test_asyncgroup_attrs(store: Store, zarr_format: ZarrFormat) -> None:
attributes = {"foo": 100}
agroup = await AsyncGroup.from_store(store, zarr_format=zarr_format, attributes=attributes)
assert agroup.attrs == agroup.metadata.attributes == attributes
async def test_asyncgroup_open(
store: Store,
zarr_format: ZarrFormat,
) -> None:
"""
Create an `AsyncGroup`, then ensure that we can open it using `AsyncGroup.open`
"""
attributes = {"foo": 100}
group_w = await AsyncGroup.from_store(
store=store,
attributes=attributes,
overwrite=False,
zarr_format=zarr_format,
)
group_r = await AsyncGroup.open(store=store, zarr_format=zarr_format)
assert group_w.attrs == group_w.attrs == attributes
assert group_w == group_r
async def test_asyncgroup_open_wrong_format(
store: Store,
zarr_format: ZarrFormat,
) -> None:
_ = await AsyncGroup.from_store(store=store, overwrite=False, zarr_format=zarr_format)
zarr_format_wrong: ZarrFormat
# try opening with the wrong zarr format
if zarr_format == 3:
zarr_format_wrong = 2
elif zarr_format == 2:
zarr_format_wrong = 3
else:
raise AssertionError
with pytest.raises(FileNotFoundError):
await AsyncGroup.open(store=store, zarr_format=zarr_format_wrong)
# todo: replace the dict[str, Any] type with something a bit more specific
# should this be async?
@pytest.mark.parametrize(
"data",
[
{"zarr_format": 3, "node_type": "group", "attributes": {"foo": 100}},
{"zarr_format": 2, "attributes": {"foo": 100}},
],
)
def test_asyncgroup_from_dict(store: Store, data: dict[str, Any]) -> None:
"""
Test that we can create an AsyncGroup from a dict
"""
path = "test"
store_path = StorePath(store=store, path=path)
group = AsyncGroup.from_dict(store_path, data=data)
assert group.metadata.zarr_format == data["zarr_format"]
assert group.metadata.attributes == data["attributes"]
# todo: replace this with a declarative API where we model a full hierarchy
async def test_asyncgroup_getitem(store: Store, zarr_format: ZarrFormat) -> None:
"""
Create an `AsyncGroup`, then create members of that group, and ensure that we can access those
members via the `AsyncGroup.getitem` method.
"""
agroup = await AsyncGroup.from_store(store=store, zarr_format=zarr_format)
array_name = "sub_array"
sub_array = await agroup.create_array(name=array_name, shape=(10,), dtype="uint8", chunks=(2,))
assert await agroup.getitem(array_name) == sub_array
sub_group_path = "sub_group"
sub_group = await agroup.create_group(sub_group_path, attributes={"foo": 100})
assert await agroup.getitem(sub_group_path) == sub_group
# check that asking for a nonexistent key raises KeyError
with pytest.raises(KeyError):
await agroup.getitem("foo")
async def test_asyncgroup_delitem(store: Store, zarr_format: ZarrFormat) -> None:
if not store.supports_deletes:
pytest.skip("store does not support deletes")
agroup = await AsyncGroup.from_store(store=store, zarr_format=zarr_format)
array_name = "sub_array"
_ = await agroup.create_array(
name=array_name,
shape=(10,),
dtype="uint8",
chunks=(2,),
attributes={"foo": 100},
)
await agroup.delitem(array_name)
# todo: clean up the code duplication here
if zarr_format == 2:
assert not await agroup.store_path.store.exists(array_name + "/" + ".zarray")
assert not await agroup.store_path.store.exists(array_name + "/" + ".zattrs")
elif zarr_format == 3:
assert not await agroup.store_path.store.exists(array_name + "/" + "zarr.json")
else:
raise AssertionError
sub_group_path = "sub_group"
_ = await agroup.create_group(sub_group_path, attributes={"foo": 100})
await agroup.delitem(sub_group_path)
if zarr_format == 2:
assert not await agroup.store_path.store.exists(array_name + "/" + ".zgroup")
assert not await agroup.store_path.store.exists(array_name + "/" + ".zattrs")
elif zarr_format == 3:
assert not await agroup.store_path.store.exists(array_name + "/" + "zarr.json")
else:
raise AssertionError
@pytest.mark.parametrize("name", ["a", "/a"])
async def test_asyncgroup_create_group(
store: Store,
name: str,
zarr_format: ZarrFormat,
) -> None:
agroup = await AsyncGroup.from_store(store=store, zarr_format=zarr_format)
attributes = {"foo": 999}
subgroup = await agroup.create_group(name=name, attributes=attributes)
assert isinstance(subgroup, AsyncGroup)
assert subgroup.path == normalize_path(name)
assert subgroup.name == "/" + subgroup.path
assert subgroup.attrs == attributes
assert subgroup.store_path.path == subgroup.path
assert subgroup.store_path.store == store
assert subgroup.metadata.zarr_format == zarr_format
async def test_asyncgroup_create_array(
store: Store, zarr_format: ZarrFormat, overwrite: bool
) -> None:
"""