File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,12 +30,15 @@ public class TestZarrIosp {
3030
3131 // file names
3232 private static final String ZARR_FILENAME = "zarr_test_data.zarr/" ;
33+ private static final String ZARR_ZIP_NAME = "zarr_test_data.zip" ;
3334 private static final String INVALID_ZARR_FILENAME = "zarr_invalid_data.zarr" ;
3435
3536 // test store paths
3637 private static final String OBJECT_STORE_ZARR_URI = ZarrTestsCommon .S3_PREFIX + ZarrTestsCommon .AWS_BUCKET_NAME + "?"
3738 + ZARR_FILENAME + "#" + ZarrTestsCommon .S3_FRAGMENT ;
3839 private static final String DIRECTORY_STORE_URI = ZarrTestsCommon .LOCAL_TEST_DATA_PATH + ZARR_FILENAME ;
40+ private static final String ZIP_STORE_URI = ZarrTestsCommon .LOCAL_TEST_DATA_PATH + ZARR_ZIP_NAME ;
41+
3942 // invalid zarr file
4043 private static final String INVALID_ZARR_DATA = ZarrTestsCommon .LOCAL_TEST_DATA_PATH + INVALID_ZARR_FILENAME ;
4144
@@ -45,6 +48,7 @@ public class TestZarrIosp {
4548 public static void setUpTests () {
4649 stores = new ArrayList <>();
4750 stores .add (DIRECTORY_STORE_URI );
51+ stores .add (ZIP_STORE_URI );
4852 stores .add (OBJECT_STORE_ZARR_URI );
4953 }
5054
You can’t perform that action at this time.
0 commit comments