forked from HDFGroup/vol-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vol_attribute_test.c
9787 lines (8019 loc) · 361 KB
/
vol_attribute_test.c
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
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* All rights reserved. *
* *
* This file is part of HDF5. The full HDF5 copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the COPYING file, which can be found at the root of the source code *
* distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. *
* If you do not have access to either file, you may request a copy from *
* [email protected]. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "vol_attribute_test.h"
/*
* TODO: Additional tests to be written:
*
* - Test for creating a large attribute.
* - Test for checking that object's max. attr. creation
* order value gets reset when all attributes are removed.
*/
static int test_create_attribute_on_root(void);
static int test_create_attribute_on_dataset(void);
static int test_create_attribute_on_datatype(void);
static int test_create_attribute_with_null_space(void);
static int test_create_attribute_with_scalar_space(void);
static int test_create_attribute_with_space_in_name(void);
static int test_create_attribute_invalid_params(void);
static int test_open_attribute(void);
static int test_open_attribute_invalid_params(void);
static int test_write_attribute(void);
static int test_write_attribute_invalid_params(void);
static int test_read_attribute(void);
static int test_read_attribute_invalid_params(void);
static int test_read_empty_attribute(void);
static int test_close_attribute_invalid_id(void);
static int test_get_attribute_space_and_type(void);
static int test_get_attribute_space_and_type_invalid_params(void);
static int test_attribute_property_lists(void);
static int test_get_attribute_name(void);
static int test_get_attribute_name_invalid_params(void);
static int test_get_attribute_storage_size(void);
static int test_get_attribute_info(void);
static int test_get_attribute_info_invalid_params(void);
static int test_rename_attribute(void);
static int test_rename_attribute_invalid_params(void);
static int test_attribute_iterate_group(void);
static int test_attribute_iterate_dataset(void);
static int test_attribute_iterate_datatype(void);
static int test_attribute_iterate_index_saving(void);
static int test_attribute_iterate_invalid_params(void);
static int test_attribute_iterate_0_attributes(void);
static int test_delete_attribute(void);
static int test_delete_attribute_invalid_params(void);
static int test_attribute_exists(void);
static int test_attribute_exists_invalid_params(void);
static int test_attribute_many(void);
static int test_attribute_duplicate_id(void);
static int test_get_number_attributes(void);
static int test_attr_shared_dtype(void);
static herr_t attr_iter_callback1(hid_t location_id, const char *attr_name, const H5A_info_t *ainfo, void *op_data);
static herr_t attr_iter_callback2(hid_t location_id, const char *attr_name, const H5A_info_t *ainfo, void *op_data);
/*
* The array of attribute tests to be performed.
*/
static int (*attribute_tests[])(void) = {
test_create_attribute_on_root,
test_create_attribute_on_dataset,
test_create_attribute_on_datatype,
test_create_attribute_with_null_space,
test_create_attribute_with_scalar_space,
test_create_attribute_with_space_in_name,
test_create_attribute_invalid_params,
test_open_attribute,
test_open_attribute_invalid_params,
test_write_attribute,
test_write_attribute_invalid_params,
test_read_attribute,
test_read_attribute_invalid_params,
test_read_empty_attribute,
test_close_attribute_invalid_id,
test_get_attribute_space_and_type,
test_get_attribute_space_and_type_invalid_params,
test_attribute_property_lists,
test_get_attribute_name,
test_get_attribute_name_invalid_params,
test_get_attribute_storage_size,
test_get_attribute_info,
test_get_attribute_info_invalid_params,
test_rename_attribute,
test_rename_attribute_invalid_params,
test_attribute_iterate_group,
test_attribute_iterate_dataset,
test_attribute_iterate_datatype,
test_attribute_iterate_index_saving,
test_attribute_iterate_invalid_params,
test_attribute_iterate_0_attributes,
test_delete_attribute,
test_delete_attribute_invalid_params,
test_attribute_exists,
test_attribute_exists_invalid_params,
test_attribute_duplicate_id,
test_attribute_many,
test_get_number_attributes,
test_attr_shared_dtype
};
/*
* A test to check that an attribute can be created on
* the root group.
*/
static int
test_create_attribute_on_root(void)
{
htri_t attr_exists;
hid_t file_id = H5I_INVALID_HID;
hid_t attr_id = H5I_INVALID_HID, attr_id2 = H5I_INVALID_HID;
hid_t attr_dtype1 = H5I_INVALID_HID, attr_dtype2 = H5I_INVALID_HID;
hid_t space_id = H5I_INVALID_HID;
TESTING_MULTIPART("attribute creation on the root group");
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags & H5VL_CAP_FLAG_ATTR_BASIC)) {
SKIPPED();
HDprintf(" API functions for basic file or attribute aren't supported with this connector\n");
return 0;
}
TESTING_2("test setup")
if ((file_id = H5Fopen(vol_test_filename, H5F_ACC_RDWR, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't open file '%s'\n", vol_test_filename);
goto error;
}
if ((space_id = generate_random_dataspace(ATTRIBUTE_CREATE_ON_ROOT_SPACE_RANK, NULL, NULL, TRUE)) < 0)
TEST_ERROR
if ((attr_dtype1 = generate_random_datatype(H5T_NO_CLASS, TRUE)) < 0)
TEST_ERROR
if ((attr_dtype2 = generate_random_datatype(H5T_NO_CLASS, TRUE)) < 0)
TEST_ERROR
PASSED();
BEGIN_MULTIPART {
PART_BEGIN(H5Acreate2) {
TESTING_2("H5Acreate on the root group")
if ((attr_id = H5Acreate2(file_id, ATTRIBUTE_CREATE_ON_ROOT_ATTR_NAME, attr_dtype1, space_id, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't create attribute '%s' using H5Acreate\n", ATTRIBUTE_CREATE_ON_ROOT_ATTR_NAME);
PART_ERROR(H5Acreate2);
}
/* Verify the attribute has been created */
if ((attr_exists = H5Aexists(file_id, ATTRIBUTE_CREATE_ON_ROOT_ATTR_NAME)) < 0) {
H5_FAILED();
HDprintf(" couldn't determine if attribute '%s' exists\n", ATTRIBUTE_CREATE_ON_ROOT_ATTR_NAME);
PART_ERROR(H5Acreate2);
}
if (!attr_exists) {
H5_FAILED();
HDprintf(" attribute '%s' did not exist\n", ATTRIBUTE_CREATE_ON_ROOT_ATTR_NAME);
PART_ERROR(H5Acreate2);
}
PASSED();
} PART_END(H5Acreate2);
PART_BEGIN(H5Acreate_by_name) {
TESTING_2("H5Acreate_by_name on the root group")
if ((attr_id2 = H5Acreate_by_name(file_id, "/", ATTRIBUTE_CREATE_ON_ROOT_ATTR_NAME2, attr_dtype2, space_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't create attribute on root group using H5Acreate_by_name\n");
PART_ERROR(H5Acreate_by_name);
}
/* Verify the attribute has been created */
if ((attr_exists = H5Aexists(file_id, ATTRIBUTE_CREATE_ON_ROOT_ATTR_NAME2)) < 0) {
H5_FAILED();
HDprintf(" couldn't determine if attribute '%s' exists\n", ATTRIBUTE_CREATE_ON_ROOT_ATTR_NAME2);
PART_ERROR(H5Acreate_by_name);
}
if (!attr_exists) {
H5_FAILED();
HDprintf(" attribute '%s' did not exist\n", ATTRIBUTE_CREATE_ON_ROOT_ATTR_NAME2);
PART_ERROR(H5Acreate_by_name);
}
PASSED();
} PART_END(H5Acreate_by_name);
} END_MULTIPART;
TESTING_2("test cleanup")
if (H5Sclose(space_id) < 0)
TEST_ERROR
if (H5Tclose(attr_dtype1) < 0)
TEST_ERROR
if (H5Tclose(attr_dtype2) < 0)
TEST_ERROR
if (H5Aclose(attr_id) < 0)
TEST_ERROR
if (H5Aclose(attr_id2) < 0)
TEST_ERROR
if (H5Fclose(file_id) < 0)
TEST_ERROR
PASSED();
return 0;
error:
H5E_BEGIN_TRY {
H5Sclose(space_id);
H5Tclose(attr_dtype1);
H5Tclose(attr_dtype2);
H5Aclose(attr_id);
H5Aclose(attr_id2);
H5Fclose(file_id);
} H5E_END_TRY;
return 1;
}
/*
* A test to check that an attribute can be created on
* a dataset.
*/
static int
test_create_attribute_on_dataset(void)
{
htri_t attr_exists;
hid_t file_id = H5I_INVALID_HID;
hid_t container_group = H5I_INVALID_HID;
hid_t group_id = H5I_INVALID_HID;
hid_t dset_id = H5I_INVALID_HID;
hid_t attr_id = H5I_INVALID_HID, attr_id2 = H5I_INVALID_HID;
hid_t attr_dtype1 = H5I_INVALID_HID, attr_dtype2 = H5I_INVALID_HID;
hid_t dset_dtype = H5I_INVALID_HID;
hid_t dset_space_id = H5I_INVALID_HID;
hid_t attr_space_id = H5I_INVALID_HID;
TESTING_MULTIPART("attribute creation on a dataset");
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags & H5VL_CAP_FLAG_DATASET_BASIC) || !(vol_cap_flags & H5VL_CAP_FLAG_ATTR_BASIC)) {
SKIPPED();
HDprintf(" API functions for basic file, group, dataset, or attribute aren't supported with this connector\n");
return 0;
}
TESTING_2("test setup")
if ((file_id = H5Fopen(vol_test_filename, H5F_ACC_RDWR, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't open file '%s'\n", vol_test_filename);
goto error;
}
if ((container_group = H5Gopen2(file_id, ATTRIBUTE_TEST_GROUP_NAME, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't open container group '%s'\n", ATTRIBUTE_TEST_GROUP_NAME);
goto error;
}
if ((group_id = H5Gcreate2(container_group, ATTRIBUTE_CREATE_ON_DATASET_GROUP_NAME, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't create container group '%s'\n", ATTRIBUTE_CREATE_ON_DATASET_GROUP_NAME);
goto error;
}
if ((dset_space_id = generate_random_dataspace(ATTRIBUTE_CREATE_ON_DATASET_DSET_SPACE_RANK, NULL, NULL, FALSE)) < 0)
TEST_ERROR
if ((attr_space_id = generate_random_dataspace(ATTRIBUTE_CREATE_ON_DATASET_ATTR_SPACE_RANK, NULL, NULL, TRUE)) < 0)
TEST_ERROR
if ((dset_dtype = generate_random_datatype(H5T_NO_CLASS, FALSE)) < 0)
TEST_ERROR
if ((attr_dtype1 = generate_random_datatype(H5T_NO_CLASS, TRUE)) < 0)
TEST_ERROR
if ((attr_dtype2 = generate_random_datatype(H5T_NO_CLASS, TRUE)) < 0)
TEST_ERROR
if ((dset_id = H5Dcreate2(group_id, ATTRIBUTE_CREATE_ON_DATASET_DSET_NAME, dset_dtype,
dset_space_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't create dataset\n");
goto error;
}
PASSED();
BEGIN_MULTIPART {
PART_BEGIN(H5Acreate_on_dataset) {
TESTING_2("H5Acreate on a dataset")
if ((attr_id = H5Acreate2(dset_id, ATTRIBUTE_CREATE_ON_DATASET_ATTR_NAME, attr_dtype1,
attr_space_id, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't create attribute\n");
PART_ERROR(H5Acreate_on_dataset);
}
/* Verify the attribute has been created */
if ((attr_exists = H5Aexists(dset_id, ATTRIBUTE_CREATE_ON_DATASET_ATTR_NAME)) < 0) {
H5_FAILED();
HDprintf(" couldn't determine if attribute '%s' exists\n", ATTRIBUTE_CREATE_ON_DATASET_ATTR_NAME);
PART_ERROR(H5Acreate_on_dataset);
}
if (!attr_exists) {
H5_FAILED();
HDprintf(" attribute '%s' did not exist\n", ATTRIBUTE_CREATE_ON_DATASET_ATTR_NAME);
PART_ERROR(H5Acreate_on_dataset);
}
PASSED();
} PART_END(H5Acreate_on_dataset);
PART_BEGIN(H5Acreate_by_name_on_dataset) {
TESTING_2("H5Acreate_by_name on a dataset")
if ((attr_id2 = H5Acreate_by_name(group_id, ATTRIBUTE_CREATE_ON_DATASET_DSET_NAME, ATTRIBUTE_CREATE_ON_DATASET_ATTR_NAME2,
attr_dtype2, attr_space_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't create attribute on dataset by name\n");
PART_ERROR(H5Acreate_by_name_on_dataset);
}
/* Verify the attribute has been created */
if ((attr_exists = H5Aexists(dset_id, ATTRIBUTE_CREATE_ON_DATASET_ATTR_NAME2)) < 0) {
H5_FAILED();
HDprintf(" couldn't determine if attribute '%s' exists\n", ATTRIBUTE_CREATE_ON_DATASET_ATTR_NAME2);
PART_ERROR(H5Acreate_by_name_on_dataset);
}
if (!attr_exists) {
H5_FAILED();
HDprintf(" attribute '%s' did not exist\n", ATTRIBUTE_CREATE_ON_DATASET_ATTR_NAME2);
PART_ERROR(H5Acreate_by_name_on_dataset);
}
PASSED();
} PART_END(H5Acreate_by_name_on_dataset);
} END_MULTIPART;
TESTING_2("test cleanup")
if (H5Sclose(dset_space_id) < 0)
TEST_ERROR
if (H5Sclose(attr_space_id) < 0)
TEST_ERROR
if (H5Tclose(dset_dtype) < 0)
TEST_ERROR
if (H5Tclose(attr_dtype1) < 0)
TEST_ERROR
if (H5Tclose(attr_dtype2) < 0)
TEST_ERROR
if (H5Dclose(dset_id) < 0)
TEST_ERROR
if (H5Aclose(attr_id) < 0)
TEST_ERROR
if (H5Aclose(attr_id2) < 0)
TEST_ERROR
if (H5Gclose(group_id) < 0)
TEST_ERROR
if (H5Gclose(container_group) < 0)
TEST_ERROR
if (H5Fclose(file_id) < 0)
TEST_ERROR
PASSED();
return 0;
error:
H5E_BEGIN_TRY {
H5Sclose(dset_space_id);
H5Sclose(attr_space_id);
H5Tclose(dset_dtype);
H5Tclose(attr_dtype1);
H5Tclose(attr_dtype2);
H5Dclose(dset_id);
H5Aclose(attr_id);
H5Aclose(attr_id2);
H5Gclose(group_id);
H5Gclose(container_group);
H5Fclose(file_id);
} H5E_END_TRY;
return 1;
}
/*
* A test to check that an attribute can be created on
* a committed datatype.
*/
static int
test_create_attribute_on_datatype(void)
{
htri_t attr_exists;
hid_t file_id = H5I_INVALID_HID;
hid_t container_group = H5I_INVALID_HID;
hid_t group_id = H5I_INVALID_HID;
hid_t type_id = H5I_INVALID_HID;
hid_t attr_id = H5I_INVALID_HID, attr_id2 = H5I_INVALID_HID;
hid_t attr_dtype1 = H5I_INVALID_HID, attr_dtype2 = H5I_INVALID_HID;
hid_t space_id = H5I_INVALID_HID;
TESTING_MULTIPART("attribute creation on a committed datatype");
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags & H5VL_CAP_FLAG_STORED_DATATYPES) || !(vol_cap_flags & H5VL_CAP_FLAG_ATTR_BASIC)) {
SKIPPED();
HDprintf(" API functions for basic file, group, stored datatype, or attribute aren't supported with this connector\n");
return 0;
}
TESTING_2("test setup")
if ((file_id = H5Fopen(vol_test_filename, H5F_ACC_RDWR, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't open file '%s'\n", vol_test_filename);
goto error;
}
if ((container_group = H5Gopen2(file_id, ATTRIBUTE_TEST_GROUP_NAME, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't open container group '%s'\n", ATTRIBUTE_TEST_GROUP_NAME);
goto error;
}
if ((group_id = H5Gcreate2(container_group, ATTRIBUTE_CREATE_ON_DATATYPE_GROUP_NAME, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't create container group '%s'\n", ATTRIBUTE_CREATE_ON_DATATYPE_GROUP_NAME);
goto error;
}
if ((type_id = generate_random_datatype(H5T_NO_CLASS, FALSE)) < 0) {
H5_FAILED();
HDprintf(" couldn't create datatype\n");
goto error;
}
if (H5Tcommit2(group_id, ATTRIBUTE_CREATE_ON_DATATYPE_DTYPE_NAME, type_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT) < 0) {
H5_FAILED();
HDprintf(" couldn't commit datatype\n");
goto error;
}
if ((space_id = generate_random_dataspace(ATTRIBUTE_CREATE_ON_DATATYPE_SPACE_RANK, NULL, NULL, TRUE)) < 0)
TEST_ERROR
if ((attr_dtype1 = generate_random_datatype(H5T_NO_CLASS, TRUE)) < 0)
TEST_ERROR
if ((attr_dtype2 = generate_random_datatype(H5T_NO_CLASS, TRUE)) < 0)
TEST_ERROR
PASSED();
BEGIN_MULTIPART {
PART_BEGIN(H5Acreate_on_datatype) {
TESTING_2("H5Acreate on a committed datatype")
if ((attr_id = H5Acreate2(type_id, ATTRIBUTE_CREATE_ON_DATATYPE_ATTR_NAME, attr_dtype1,
space_id, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't create attribute on datatype using H5Acreate\n");
PART_ERROR(H5Acreate_on_datatype);
}
if ((attr_exists = H5Aexists(type_id, ATTRIBUTE_CREATE_ON_DATATYPE_ATTR_NAME)) < 0) {
H5_FAILED();
HDprintf(" couldn't determine if attribute exists\n");
PART_ERROR(H5Acreate_on_datatype);
}
if (!attr_exists) {
H5_FAILED();
HDprintf(" attribute did not exist\n");
PART_ERROR(H5Acreate_on_datatype);
}
PASSED();
} PART_END(H5Acreate_on_datatype);
PART_BEGIN(H5Acreate_by_name_on_datatype) {
TESTING_2("H5Acreate_by_name on a committed datatype")
if ((attr_id2 = H5Acreate_by_name(group_id, ATTRIBUTE_CREATE_ON_DATATYPE_DTYPE_NAME,
ATTRIBUTE_CREATE_ON_DATATYPE_ATTR_NAME2, attr_dtype2, space_id, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't create attribute on datatype using H5Acreate_by_name\n");
PART_ERROR(H5Acreate_by_name_on_datatype);
}
/* Verify the attribute has been created */
if ((attr_exists = H5Aexists(type_id, ATTRIBUTE_CREATE_ON_DATATYPE_ATTR_NAME2)) < 0) {
H5_FAILED();
HDprintf(" couldn't determine if attribute exists\n");
PART_ERROR(H5Acreate_by_name_on_datatype);
}
if (!attr_exists) {
H5_FAILED();
HDprintf(" attribute did not exist\n");
PART_ERROR(H5Acreate_by_name_on_datatype);
}
PASSED();
} PART_END(H5Acreate_by_name_on_datatype);
} END_MULTIPART;
TESTING_2("test cleanup")
if (H5Sclose(space_id) < 0)
TEST_ERROR
if (H5Tclose(attr_dtype1) < 0)
TEST_ERROR
if (H5Tclose(attr_dtype2) < 0)
TEST_ERROR
if (H5Aclose(attr_id) < 0)
TEST_ERROR
if (H5Aclose(attr_id2) < 0)
TEST_ERROR
if (H5Tclose(type_id) < 0)
TEST_ERROR
if (H5Gclose(group_id) < 0)
TEST_ERROR
if (H5Gclose(container_group) < 0)
TEST_ERROR
if (H5Fclose(file_id) < 0)
TEST_ERROR
PASSED();
return 0;
error:
H5E_BEGIN_TRY {
H5Sclose(space_id);
H5Tclose(attr_dtype1);
H5Tclose(attr_dtype2);
H5Aclose(attr_id);
H5Aclose(attr_id2);
H5Tclose(type_id);
H5Gclose(group_id);
H5Gclose(container_group);
H5Fclose(file_id);
} H5E_END_TRY;
return 1;
}
/*
* A test to check that creating an attribute with a
* NULL dataspace is not problematic.
*/
static int
test_create_attribute_with_null_space(void)
{
htri_t attr_exists;
hid_t file_id = H5I_INVALID_HID;
hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
hid_t attr_id = H5I_INVALID_HID;
hid_t attr_dtype = H5I_INVALID_HID;
hid_t space_id = H5I_INVALID_HID;
TESTING("attribute creation with a NULL dataspace")
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags & H5VL_CAP_FLAG_ATTR_BASIC)) {
SKIPPED();
HDprintf(" API functions for basic file, group, or attribute aren't supported with this connector\n");
return 0;
}
if ((file_id = H5Fopen(vol_test_filename, H5F_ACC_RDWR, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't open file\n");
goto error;
}
if ((container_group = H5Gopen2(file_id, ATTRIBUTE_TEST_GROUP_NAME, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't open container group\n");
goto error;
}
if ((group_id = H5Gcreate2(container_group, ATTRIBUTE_CREATE_NULL_DATASPACE_TEST_SUBGROUP_NAME, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't create container subgroup\n");
goto error;
}
if ((space_id = H5Screate(H5S_NULL)) < 0)
TEST_ERROR
if ((attr_dtype = generate_random_datatype(H5T_NO_CLASS, TRUE)) < 0)
TEST_ERROR
if ((attr_id = H5Acreate2(group_id, ATTRIBUTE_CREATE_NULL_DATASPACE_TEST_ATTR_NAME, attr_dtype, space_id, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't create attribute\n");
goto error;
}
/* Verify the attribute has been created */
if ((attr_exists = H5Aexists(group_id, ATTRIBUTE_CREATE_NULL_DATASPACE_TEST_ATTR_NAME)) < 0) {
H5_FAILED();
HDprintf(" couldn't determine if attribute exists\n");
goto error;
}
if (!attr_exists) {
H5_FAILED();
HDprintf(" attribute did not exist\n");
goto error;
}
if (H5Aclose(attr_id) < 0)
TEST_ERROR
if ((attr_id = H5Aopen(group_id, ATTRIBUTE_CREATE_NULL_DATASPACE_TEST_ATTR_NAME, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't open attribute\n");
goto error;
}
if (H5Sclose(space_id) < 0)
TEST_ERROR
if (H5Tclose(attr_dtype) < 0)
TEST_ERROR
if (H5Aclose(attr_id) < 0)
TEST_ERROR
if (H5Gclose(group_id) < 0)
TEST_ERROR
if (H5Gclose(container_group) < 0)
TEST_ERROR
if (H5Fclose(file_id) < 0)
TEST_ERROR
PASSED();
return 0;
error:
H5E_BEGIN_TRY {
H5Sclose(space_id);
H5Tclose(attr_dtype);
H5Aclose(attr_id);
H5Gclose(group_id);
H5Gclose(container_group);
H5Fclose(file_id);
} H5E_END_TRY;
return 1;
}
/*
* A test to check that creating an attribute with a
* scalar dataspace is not problematic.
*/
static int
test_create_attribute_with_scalar_space(void)
{
htri_t attr_exists;
hid_t file_id = H5I_INVALID_HID;
hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
hid_t attr_id = H5I_INVALID_HID;
hid_t attr_dtype = H5I_INVALID_HID;
hid_t space_id = H5I_INVALID_HID;
TESTING("attribute creation with a SCALAR dataspace")
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags & H5VL_CAP_FLAG_ATTR_BASIC)) {
SKIPPED();
HDprintf(" API functions for basic file, group, or attribute aren't supported with this connector\n");
return 0;
}
if ((file_id = H5Fopen(vol_test_filename, H5F_ACC_RDWR, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't open file\n");
goto error;
}
if ((container_group = H5Gopen2(file_id, ATTRIBUTE_TEST_GROUP_NAME, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't open container group\n");
goto error;
}
if ((group_id = H5Gcreate2(container_group, ATTRIBUTE_CREATE_SCALAR_DATASPACE_TEST_SUBGROUP_NAME, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't create container subgroup\n");
goto error;
}
if ((space_id = H5Screate(H5S_SCALAR)) < 0)
TEST_ERROR
if ((attr_dtype = generate_random_datatype(H5T_NO_CLASS, TRUE)) < 0)
TEST_ERROR
if ((attr_id = H5Acreate2(group_id, ATTRIBUTE_CREATE_SCALAR_DATASPACE_TEST_ATTR_NAME, attr_dtype, space_id, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't create attribute\n");
goto error;
}
/* Verify the attribute has been created */
if ((attr_exists = H5Aexists(group_id, ATTRIBUTE_CREATE_SCALAR_DATASPACE_TEST_ATTR_NAME)) < 0) {
H5_FAILED();
HDprintf(" couldn't determine if attribute exists\n");
goto error;
}
if (!attr_exists) {
H5_FAILED();
HDprintf(" attribute did not exist\n");
goto error;
}
if (H5Aclose(attr_id) < 0)
TEST_ERROR
if ((attr_id = H5Aopen(group_id, ATTRIBUTE_CREATE_SCALAR_DATASPACE_TEST_ATTR_NAME, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't open attribute\n");
goto error;
}
if (H5Sclose(space_id) < 0)
TEST_ERROR
if (H5Tclose(attr_dtype) < 0)
TEST_ERROR
if (H5Aclose(attr_id) < 0)
TEST_ERROR
if (H5Gclose(group_id) < 0)
TEST_ERROR
if (H5Gclose(container_group) < 0)
TEST_ERROR
if (H5Fclose(file_id) < 0)
TEST_ERROR
PASSED();
return 0;
error:
H5E_BEGIN_TRY {
H5Sclose(space_id);
H5Tclose(attr_dtype);
H5Aclose(attr_id);
H5Gclose(group_id);
H5Gclose(container_group);
H5Fclose(file_id);
} H5E_END_TRY;
return 1;
}
/*
* A test to check that a space in an attribute's name
* is not problematic.
*/
static int
test_create_attribute_with_space_in_name(void)
{
htri_t attr_exists;
hid_t file_id = H5I_INVALID_HID;
hid_t container_group = H5I_INVALID_HID;
hid_t group_id = H5I_INVALID_HID;
hid_t attr_id = H5I_INVALID_HID;
hid_t attr_id2 = H5I_INVALID_HID;
hid_t attr_dtype = H5I_INVALID_HID;
hid_t space_id = H5I_INVALID_HID;
TESTING("attribute creation with a space in attribute's name")
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags & H5VL_CAP_FLAG_ATTR_BASIC)) {
SKIPPED();
HDprintf(" API functions for basic file, group, or attribute aren't supported with this connector\n");
return 0;
}
if ((file_id = H5Fopen(vol_test_filename, H5F_ACC_RDWR, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't open file\n");
goto error;
}
if ((container_group = H5Gopen2(file_id, ATTRIBUTE_TEST_GROUP_NAME, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't open container group\n");
goto error;
}
if ((group_id = H5Gcreate2(container_group, ATTRIBUTE_CREATE_WITH_SPACE_IN_NAME_GROUP_NAME, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't create container group '%s'\n", ATTRIBUTE_CREATE_WITH_SPACE_IN_NAME_GROUP_NAME);
goto error;
}
if ((space_id = generate_random_dataspace(ATTRIBUTE_CREATE_WITH_SPACE_IN_NAME_SPACE_RANK, NULL, NULL, TRUE)) < 0)
TEST_ERROR
if ((attr_dtype = generate_random_datatype(H5T_NO_CLASS, TRUE)) < 0)
TEST_ERROR
if ((attr_id = H5Acreate2(group_id, ATTRIBUTE_CREATE_WITH_SPACE_IN_NAME_ATTR_NAME, attr_dtype,
space_id, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't create attribute\n");
goto error;
}
/* Verify the attribute has been created */
if ((attr_exists = H5Aexists(group_id, ATTRIBUTE_CREATE_WITH_SPACE_IN_NAME_ATTR_NAME)) < 0) {
H5_FAILED();
HDprintf(" couldn't determine if attribute exists\n");
goto error;
}
if (!attr_exists) {
H5_FAILED();
HDprintf(" attribute did not exist\n");
goto error;
}
if (H5Sclose(space_id) < 0)
TEST_ERROR
if (H5Tclose(attr_dtype) < 0)
TEST_ERROR
if (H5Aclose(attr_id) < 0)
TEST_ERROR
if (H5Gclose(group_id) < 0)
TEST_ERROR
if (H5Gclose(container_group) < 0)
TEST_ERROR
if (H5Fclose(file_id) < 0)
TEST_ERROR
PASSED();
return 0;
error:
H5E_BEGIN_TRY {
H5Sclose(space_id);
H5Tclose(attr_dtype);
H5Aclose(attr_id);
H5Aclose(attr_id2);
H5Gclose(group_id);
H5Gclose(container_group);
H5Fclose(file_id);
} H5E_END_TRY;
return 1;
}
/*
* A test to check that an attribute can't be created when
* H5Acreate is passed invalid parameters.
*/
static int
test_create_attribute_invalid_params(void)
{
hid_t file_id = H5I_INVALID_HID;
hid_t container_group = H5I_INVALID_HID, group_id = H5I_INVALID_HID;
hid_t attr_id = H5I_INVALID_HID;
hid_t attr_dtype = H5I_INVALID_HID;
hid_t space_id = H5I_INVALID_HID;
TESTING_MULTIPART("attribute creation with invalid parameters");
/* Make sure the connector supports the API functions being tested */
if (!(vol_cap_flags & H5VL_CAP_FLAG_FILE_BASIC) || !(vol_cap_flags & H5VL_CAP_FLAG_GROUP_BASIC) ||
!(vol_cap_flags & H5VL_CAP_FLAG_ATTR_BASIC)) {
SKIPPED();
HDprintf(" API functions for basic file, group, or attribute aren't supported with this connector\n");
return 0;
}
TESTING_2("test setup")
if ((file_id = H5Fopen(vol_test_filename, H5F_ACC_RDWR, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't open file '%s'\n", vol_test_filename);
goto error;
}
if ((container_group = H5Gopen2(file_id, ATTRIBUTE_TEST_GROUP_NAME, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't open container group '%s'\n", ATTRIBUTE_TEST_GROUP_NAME);
goto error;
}
if ((group_id = H5Gcreate2(container_group, ATTRIBUTE_CREATE_INVALID_PARAMS_GROUP_NAME, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT)) < 0) {
H5_FAILED();
HDprintf(" couldn't create container group\n");
goto error;
}
if ((space_id = generate_random_dataspace(ATTRIBUTE_CREATE_INVALID_PARAMS_SPACE_RANK, NULL, NULL, TRUE)) < 0)
TEST_ERROR
if ((attr_dtype = generate_random_datatype(H5T_NO_CLASS, TRUE)) < 0)
TEST_ERROR
PASSED();
BEGIN_MULTIPART {
PART_BEGIN(H5Acreate_invalid_loc_id) {
TESTING_2("H5Acreate with invalid loc_id")
H5E_BEGIN_TRY {
attr_id = H5Acreate2(H5I_INVALID_HID, ATTRIBUTE_CREATE_INVALID_PARAMS_ATTR_NAME, attr_dtype, space_id,
H5P_DEFAULT, H5P_DEFAULT);
} H5E_END_TRY;
if (attr_id >= 0) {
H5_FAILED();
HDprintf(" created attribute using H5Acreate with an invalid loc_id!\n");
H5Aclose(attr_id);
PART_ERROR(H5Acreate_invalid_loc_id);
}
PASSED();
} PART_END(H5Acreate_invalid_loc_id);
PART_BEGIN(H5Acreate_invalid_attr_name) {
TESTING_2("H5Acreate with invalid attribute name")
H5E_BEGIN_TRY {
attr_id = H5Acreate2(group_id, NULL, attr_dtype, space_id, H5P_DEFAULT, H5P_DEFAULT);
} H5E_END_TRY;
if (attr_id >= 0) {
H5_FAILED();
HDprintf(" created attribute using H5Acreate with a NULL name!\n");
H5Aclose(attr_id);
PART_ERROR(H5Acreate_invalid_attr_name);
}
H5E_BEGIN_TRY {
attr_id = H5Acreate2(group_id, "", attr_dtype, space_id, H5P_DEFAULT, H5P_DEFAULT);
} H5E_END_TRY;
if (attr_id >= 0) {
H5_FAILED();
HDprintf(" created attribute using H5Acreate with an invalid name of ''!\n");
H5Aclose(attr_id);
PART_ERROR(H5Acreate_invalid_attr_name);
}
PASSED();
} PART_END(H5Acreate_invalid_attr_name);
PART_BEGIN(H5Acreate_invalid_datatype) {
TESTING_2("H5Acreate with an invalid datatype")
H5E_BEGIN_TRY {
attr_id = H5Acreate2(group_id, ATTRIBUTE_CREATE_INVALID_PARAMS_ATTR_NAME, H5I_INVALID_HID,
space_id, H5P_DEFAULT, H5P_DEFAULT);
} H5E_END_TRY;
if (attr_id >= 0) {
H5_FAILED();
HDprintf(" created attribute using H5Acreate with an invalid datatype!\n");
H5Aclose(attr_id);
PART_ERROR(H5Acreate_invalid_datatype);
}
PASSED();
} PART_END(H5Acreate_invalid_datatype);
PART_BEGIN(H5Acreate_invalid_dataspace) {
TESTING_2("H5Acreate with an invalid dataspace")
H5E_BEGIN_TRY {