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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
|
from abc import ABCMeta, abstractmethod
from datetime import datetime, date
from unittest import mock, skip
import numpy as np
from dateutil.tz import tzlocal
from hdmf.build import GroupBuilder, DatasetBuilder, LinkBuilder, ReferenceBuilder, TypeMap, BuildManager
from hdmf.spec import (GroupSpec, AttributeSpec, DatasetSpec, SpecCatalog, SpecNamespace,
LinkSpec, RefSpec, NamespaceCatalog, DtypeSpec)
from hdmf.spec.spec import ONE_OR_MANY, ZERO_OR_MANY, ZERO_OR_ONE
from hdmf.testing import TestCase, remove_test_file
from hdmf.validate import ValidatorMap
from hdmf.validate.errors import (DtypeError, MissingError, ExpectedArrayError, MissingDataType,
IncorrectQuantityError, IllegalLinkError)
from hdmf.backends.hdf5 import HDF5IO
CORE_NAMESPACE = 'test_core'
class ValidatorTestBase(TestCase, metaclass=ABCMeta):
def setUp(self):
spec_catalog = SpecCatalog()
for spec in self.getSpecs():
spec_catalog.register_spec(spec, 'test.yaml')
self.namespace = SpecNamespace(
'a test namespace', CORE_NAMESPACE, [{'source': 'test.yaml'}], version='0.1.0', catalog=spec_catalog)
self.vmap = ValidatorMap(self.namespace)
@abstractmethod
def getSpecs(self):
pass
def assertValidationError(self, error, type_, name=None, reason=None):
"""Assert that a validation Error matches expectations"""
self.assertIsInstance(error, type_)
if name is not None:
self.assertEqual(error.name, name)
if reason is not None:
self.assertEqual(error.reason, reason)
class TestEmptySpec(ValidatorTestBase):
def getSpecs(self):
return (GroupSpec('A test group specification with a data type', data_type_def='Bar'),)
def test_valid(self):
builder = GroupBuilder('my_bar', attributes={'data_type': 'Bar'})
validator = self.vmap.get_validator('Bar')
result = validator.validate(builder)
self.assertEqual(len(result), 0)
def test_invalid_missing_req_type(self):
builder = GroupBuilder('my_bar')
err_msg = r"builder must have data type defined with attribute '[A-Za-z_]+'"
with self.assertRaisesRegex(ValueError, err_msg):
self.vmap.validate(builder)
class TestBasicSpec(ValidatorTestBase):
def getSpecs(self):
ret = GroupSpec('A test group specification with a data type',
data_type_def='Bar',
datasets=[DatasetSpec('an example dataset', 'int', name='data',
attributes=[AttributeSpec(
'attr2', 'an example integer attribute', 'int')])],
attributes=[AttributeSpec('attr1', 'an example string attribute', 'text')])
return (ret,)
def test_invalid_missing(self):
builder = GroupBuilder('my_bar', attributes={'data_type': 'Bar'})
validator = self.vmap.get_validator('Bar')
result = validator.validate(builder)
self.assertEqual(len(result), 2)
self.assertValidationError(result[0], MissingError, name='Bar/attr1')
self.assertValidationError(result[1], MissingError, name='Bar/data')
def test_invalid_incorrect_type_get_validator(self):
builder = GroupBuilder('my_bar', attributes={'data_type': 'Bar', 'attr1': 10})
validator = self.vmap.get_validator('Bar')
result = validator.validate(builder)
self.assertEqual(len(result), 2)
self.assertValidationError(result[0], DtypeError, name='Bar/attr1')
self.assertValidationError(result[1], MissingError, name='Bar/data')
def test_invalid_incorrect_type_validate(self):
builder = GroupBuilder('my_bar', attributes={'data_type': 'Bar', 'attr1': 10})
result = self.vmap.validate(builder)
self.assertEqual(len(result), 2)
self.assertValidationError(result[0], DtypeError, name='Bar/attr1')
self.assertValidationError(result[1], MissingError, name='Bar/data')
def test_valid(self):
builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': 'a string attribute'},
datasets=[DatasetBuilder('data', 100, attributes={'attr2': 10})])
validator = self.vmap.get_validator('Bar')
result = validator.validate(builder)
self.assertEqual(len(result), 0)
class TestDateTimeInSpec(ValidatorTestBase):
def getSpecs(self):
ret = GroupSpec(
'A test group specification with a data type',
data_type_def='Bar',
datasets=[
DatasetSpec(
'an example dataset',
'int',
name='data',
attributes=[AttributeSpec('attr2', 'an example integer attribute', 'int')]
),
DatasetSpec('an example time dataset', 'isodatetime', name='datetime'),
DatasetSpec('an example time dataset', 'isodatetime', name='date', quantity='?'),
DatasetSpec('an array of times', 'isodatetime', name='time_array', dims=('num_times',), shape=(None,)),
DatasetSpec(
doc='an array with compound dtype that includes an isodatetime',
dtype=[
DtypeSpec('x', doc='x', dtype='int'),
DtypeSpec('y', doc='y', dtype='isodatetime'),
],
name='cpd_array',
dims=('num_times',),
shape=(None,),
quantity="?",
),
],
attributes=[AttributeSpec('attr1', 'an example string attribute', 'text')])
return ret,
def test_valid_isodatetime(self):
builder = GroupBuilder(
'my_bar',
attributes={'data_type': 'Bar', 'attr1': 'a string attribute'},
datasets=[
DatasetBuilder('data', 100, attributes={'attr2': 10}),
DatasetBuilder('datetime', datetime(2017, 5, 1, 12, 0, 0)),
DatasetBuilder('date', date(2017, 5, 1)),
DatasetBuilder('time_array', [datetime(2017, 5, 1, 12, 0, 0, tzinfo=tzlocal())]),
DatasetBuilder(
name='cpd_array',
data=[(1, datetime(2017, 5, 1, 12, 0, 0, tzinfo=tzlocal()))],
dtype=[
DtypeSpec('x', doc='x', dtype='int'),
DtypeSpec('y', doc='y', dtype='isodatetime'),
],
),
]
)
validator = self.vmap.get_validator('Bar')
result = validator.validate(builder)
self.assertEqual(len(result), 0)
def test_invalid_isodatetime(self):
builder = GroupBuilder(
'my_bar',
attributes={'data_type': 'Bar', 'attr1': 'a string attribute'},
datasets=[
DatasetBuilder('data', 100, attributes={'attr2': 10}),
DatasetBuilder('datetime', 100),
DatasetBuilder('time_array', [datetime(2017, 5, 1, 12, 0, 0, tzinfo=tzlocal())]),
]
)
validator = self.vmap.get_validator('Bar')
result = validator.validate(builder)
self.assertEqual(len(result), 1)
self.assertValidationError(result[0], DtypeError, name='Bar/datetime')
def test_invalid_isodatetime_array(self):
builder = GroupBuilder(
'my_bar',
attributes={'data_type': 'Bar', 'attr1': 'a string attribute'},
datasets=[
DatasetBuilder('data', 100, attributes={'attr2': 10}),
DatasetBuilder('datetime', datetime(2017, 5, 1, 12, 0, 0, tzinfo=tzlocal())),
DatasetBuilder('time_array', datetime(2017, 5, 1, 12, 0, 0, tzinfo=tzlocal())),
],
)
validator = self.vmap.get_validator('Bar')
result = validator.validate(builder)
self.assertEqual(len(result), 1)
self.assertValidationError(result[0], ExpectedArrayError, name='Bar/time_array')
def test_invalid_cpd_isodatetime_array(self):
builder = GroupBuilder(
'my_bar',
attributes={'data_type': 'Bar', 'attr1': 'a string attribute'},
datasets=[
DatasetBuilder('data', 100, attributes={'attr2': 10}),
DatasetBuilder('datetime', datetime(2017, 5, 1, 12, 0, 0)),
DatasetBuilder('date', date(2017, 5, 1)),
DatasetBuilder('time_array', [datetime(2017, 5, 1, 12, 0, 0, tzinfo=tzlocal())]),
DatasetBuilder(
name='cpd_array',
data=[(1, "wrong")],
dtype=[
DtypeSpec('x', doc='x', dtype='int'),
DtypeSpec('y', doc='y', dtype='isodatetime'),
],
),
],
)
validator = self.vmap.get_validator('Bar')
result = validator.validate(builder)
self.assertEqual(len(result), 1)
self.assertValidationError(result[0], DtypeError, name='Bar/cpd_array')
class TestNestedTypes(ValidatorTestBase):
def getSpecs(self):
baz = DatasetSpec('A dataset with a data type', 'int', data_type_def='Baz',
attributes=[AttributeSpec('attr2', 'an example integer attribute', 'int')])
bar = GroupSpec('A test group specification with a data type',
data_type_def='Bar',
datasets=[DatasetSpec('an example dataset', data_type_inc='Baz')],
attributes=[AttributeSpec('attr1', 'an example string attribute', 'text')])
foo = GroupSpec('A test group that contains a data type',
data_type_def='Foo',
groups=[GroupSpec('A Bar group for Foos', name='my_bar', data_type_inc='Bar')],
attributes=[AttributeSpec('foo_attr', 'a string attribute specified as text', 'text',
required=False)])
return (bar, foo, baz)
def test_invalid_missing_named_req_group(self):
"""Test that a MissingDataType is returned when a required named nested data type is missing."""
foo_builder = GroupBuilder('my_foo', attributes={'data_type': 'Foo',
'foo_attr': 'example Foo object'})
results = self.vmap.validate(foo_builder)
self.assertEqual(len(results), 1)
self.assertValidationError(results[0], MissingDataType, name='Foo',
reason='missing data type Bar (my_bar)')
def test_invalid_wrong_name_req_type(self):
"""Test that a MissingDataType is returned when a required nested data type is given the wrong name."""
bar_builder = GroupBuilder('bad_bar_name',
attributes={'data_type': 'Bar', 'attr1': 'a string attribute'},
datasets=[DatasetBuilder('data', 100, attributes={'attr2': 10})])
foo_builder = GroupBuilder('my_foo',
attributes={'data_type': 'Foo', 'foo_attr': 'example Foo object'},
groups=[bar_builder])
results = self.vmap.validate(foo_builder)
self.assertEqual(len(results), 1)
self.assertValidationError(results[0], MissingDataType, name='Foo')
self.assertEqual(results[0].data_type, 'Bar')
def test_invalid_missing_unnamed_req_group(self):
"""Test that a MissingDataType is returned when a required unnamed nested data type is missing."""
bar_builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': 'a string attribute'})
foo_builder = GroupBuilder('my_foo',
attributes={'data_type': 'Foo', 'foo_attr': 'example Foo object'},
groups=[bar_builder])
results = self.vmap.validate(foo_builder)
self.assertEqual(len(results), 1)
self.assertValidationError(results[0], MissingDataType, name='Bar',
reason='missing data type Baz')
def test_valid(self):
"""Test that no errors are returned when nested data types are correctly built."""
bar_builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': 'a string attribute'},
datasets=[DatasetBuilder('data', 100, attributes={'data_type': 'Baz', 'attr2': 10})])
foo_builder = GroupBuilder('my_foo',
attributes={'data_type': 'Foo', 'foo_attr': 'example Foo object'},
groups=[bar_builder])
results = self.vmap.validate(foo_builder)
self.assertEqual(len(results), 0)
def test_valid_wo_opt_attr(self):
""""Test that no errors are returned when an optional attribute is omitted from a group."""
bar_builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': 'a string attribute'},
datasets=[DatasetBuilder('data', 100, attributes={'data_type': 'Baz', 'attr2': 10})])
foo_builder = GroupBuilder('my_foo',
attributes={'data_type': 'Foo'},
groups=[bar_builder])
results = self.vmap.validate(foo_builder)
self.assertEqual(len(results), 0)
class TestQuantityValidation(TestCase):
def create_test_specs(self, q_groups, q_datasets, q_links):
bar = GroupSpec('A test group', data_type_def='Bar')
baz = DatasetSpec('A test dataset', 'int', data_type_def='Baz')
qux = GroupSpec('A group to link', data_type_def='Qux')
foo = GroupSpec('A group containing a quantity of tests and datasets',
data_type_def='Foo',
groups=[GroupSpec('A bar', data_type_inc='Bar', quantity=q_groups)],
datasets=[DatasetSpec('A baz', data_type_inc='Baz', quantity=q_datasets)],
links=[LinkSpec('A qux', target_type='Qux', quantity=q_links)],)
return (bar, foo, baz, qux)
def configure_specs(self, specs):
spec_catalog = SpecCatalog()
for spec in specs:
spec_catalog.register_spec(spec, 'test.yaml')
self.namespace = SpecNamespace(
'a test namespace', CORE_NAMESPACE, [{'source': 'test.yaml'}], version='0.1.0', catalog=spec_catalog)
self.vmap = ValidatorMap(self.namespace)
def get_test_builder(self, n_groups, n_datasets, n_links):
child_groups = [GroupBuilder(f'bar_{n}', attributes={'data_type': 'Bar'}) for n in range(n_groups)]
child_datasets = [DatasetBuilder(f'baz_{n}', n, attributes={'data_type': 'Baz'}) for n in range(n_datasets)]
child_links = [LinkBuilder(GroupBuilder(f'qux_{n}', attributes={'data_type': 'Qux'}), f'qux_{n}_link')
for n in range(n_links)]
return GroupBuilder('my_foo', attributes={'data_type': 'Foo'},
groups=child_groups, datasets=child_datasets, links=child_links)
def test_valid_zero_or_many(self):
""""Verify that groups/datasets/links with ZERO_OR_MANY and a valid quantity correctly pass validation"""
specs = self.create_test_specs(q_groups=ZERO_OR_MANY, q_datasets=ZERO_OR_MANY, q_links=ZERO_OR_MANY)
self.configure_specs(specs)
for n in [0, 1, 2, 5]:
with self.subTest(quantity=n):
builder = self.get_test_builder(n_groups=n, n_datasets=n, n_links=n)
results = self.vmap.validate(builder)
self.assertEqual(len(results), 0)
def test_valid_one_or_many(self):
""""Verify that groups/datasets/links with ONE_OR_MANY and a valid quantity correctly pass validation"""
specs = self.create_test_specs(q_groups=ONE_OR_MANY, q_datasets=ONE_OR_MANY, q_links=ONE_OR_MANY)
self.configure_specs(specs)
for n in [1, 2, 5]:
with self.subTest(quantity=n):
builder = self.get_test_builder(n_groups=n, n_datasets=n, n_links=n)
results = self.vmap.validate(builder)
self.assertEqual(len(results), 0)
def test_valid_zero_or_one(self):
""""Verify that groups/datasets/links with ZERO_OR_ONE and a valid quantity correctly pass validation"""
specs = self.create_test_specs(q_groups=ZERO_OR_ONE, q_datasets=ZERO_OR_ONE, q_links=ZERO_OR_ONE)
self.configure_specs(specs)
for n in [0, 1]:
with self.subTest(quantity=n):
builder = self.get_test_builder(n_groups=n, n_datasets=n, n_links=n)
results = self.vmap.validate(builder)
self.assertEqual(len(results), 0)
def test_valid_fixed_quantity(self):
""""Verify that groups/datasets/links with a correct fixed quantity correctly pass validation"""
self.configure_specs(self.create_test_specs(q_groups=2, q_datasets=3, q_links=5))
builder = self.get_test_builder(n_groups=2, n_datasets=3, n_links=5)
results = self.vmap.validate(builder)
self.assertEqual(len(results), 0)
def test_missing_one_or_many_should_not_return_incorrect_quantity_error(self):
"""Verify that missing ONE_OR_MANY groups/datasets/links should not return an IncorrectQuantityError
NOTE: a MissingDataType error should be returned instead
"""
specs = self.create_test_specs(q_groups=ONE_OR_MANY, q_datasets=ONE_OR_MANY, q_links=ONE_OR_MANY)
self.configure_specs(specs)
builder = self.get_test_builder(n_groups=0, n_datasets=0, n_links=0)
results = self.vmap.validate(builder)
self.assertFalse(any(isinstance(e, IncorrectQuantityError) for e in results))
def test_missing_fixed_quantity_should_not_return_incorrect_quantity_error(self):
"""Verify that missing groups/datasets/links should not return an IncorrectQuantityError"""
self.configure_specs(self.create_test_specs(q_groups=5, q_datasets=3, q_links=2))
builder = self.get_test_builder(0, 0, 0)
results = self.vmap.validate(builder)
self.assertFalse(any(isinstance(e, IncorrectQuantityError) for e in results))
def test_incorrect_fixed_quantity_should_return_incorrect_quantity_error(self):
"""Verify that an incorrect quantity of groups/datasets/links should return an IncorrectQuantityError"""
self.configure_specs(self.create_test_specs(q_groups=5, q_datasets=5, q_links=5))
for n in [1, 2, 10]:
with self.subTest(quantity=n):
builder = self.get_test_builder(n_groups=n, n_datasets=n, n_links=n)
results = self.vmap.validate(builder)
self.assertEqual(len(results), 3)
self.assertTrue(all(isinstance(e, IncorrectQuantityError) for e in results))
def test_incorrect_zero_or_one_quantity_should_return_incorrect_quantity_error(self):
"""Verify that an incorrect ZERO_OR_ONE quantity of groups/datasets/links should return
an IncorrectQuantityError
"""
specs = self.create_test_specs(q_groups=ZERO_OR_ONE, q_datasets=ZERO_OR_ONE, q_links=ZERO_OR_ONE)
self.configure_specs(specs)
builder = self.get_test_builder(n_groups=2, n_datasets=2, n_links=2)
results = self.vmap.validate(builder)
self.assertEqual(len(results), 3)
self.assertTrue(all(isinstance(e, IncorrectQuantityError) for e in results))
def test_incorrect_quantity_error_message(self):
"""Verify that an IncorrectQuantityError includes the expected information in the message"""
specs = self.create_test_specs(q_groups=2, q_datasets=ZERO_OR_MANY, q_links=ZERO_OR_MANY)
self.configure_specs(specs)
builder = self.get_test_builder(n_groups=7, n_datasets=0, n_links=0)
results = self.vmap.validate(builder)
self.assertEqual(len(results), 1)
self.assertIsInstance(results[0], IncorrectQuantityError)
message = str(results[0])
self.assertTrue('expected a quantity of 2' in message)
self.assertTrue('received 7' in message)
class TestDtypeValidation(TestCase):
def set_up_spec(self, dtype):
spec_catalog = SpecCatalog()
spec = GroupSpec('A test group specification with a data type',
data_type_def='Bar',
datasets=[DatasetSpec('an example dataset', dtype, name='data')],
attributes=[AttributeSpec('attr1', 'an example attribute', dtype)])
spec_catalog.register_spec(spec, 'test.yaml')
self.namespace = SpecNamespace(
'a test namespace', CORE_NAMESPACE, [{'source': 'test.yaml'}], version='0.1.0', catalog=spec_catalog)
self.vmap = ValidatorMap(self.namespace)
def test_ascii_for_utf8(self):
"""Test that validator allows ASCII data where UTF8 is specified."""
self.set_up_spec('text')
value = b'an ascii string'
bar_builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': value},
datasets=[DatasetBuilder('data', value)])
results = self.vmap.validate(bar_builder)
self.assertEqual(len(results), 0)
def test_utf8_for_ascii(self):
"""Test that validator does not allow UTF8 where ASCII is specified."""
self.set_up_spec('bytes')
value = 'a utf8 string'
bar_builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': value},
datasets=[DatasetBuilder('data', value)])
results = self.vmap.validate(bar_builder)
result_strings = set([str(s) for s in results])
expected_errors = {"Bar/attr1 (my_bar.attr1): incorrect type - expected 'bytes', got 'utf'",
"Bar/data (my_bar/data): incorrect type - expected 'bytes', got 'utf'"}
self.assertEqual(result_strings, expected_errors)
def test_int64_for_int8(self):
"""Test that validator allows int64 data where int8 is specified."""
self.set_up_spec('int8')
value = np.int64(1)
bar_builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': value},
datasets=[DatasetBuilder('data', value)])
results = self.vmap.validate(bar_builder)
self.assertEqual(len(results), 0)
def test_int8_for_int64(self):
"""Test that validator does not allow int8 data where int64 is specified."""
self.set_up_spec('int64')
value = np.int8(1)
bar_builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': value},
datasets=[DatasetBuilder('data', value)])
results = self.vmap.validate(bar_builder)
result_strings = set([str(s) for s in results])
expected_errors = {"Bar/attr1 (my_bar.attr1): incorrect type - expected 'int64', got 'int8'",
"Bar/data (my_bar/data): incorrect type - expected 'int64', got 'int8'"}
self.assertEqual(result_strings, expected_errors)
def test_int64_for_numeric(self):
"""Test that validator allows int64 data where numeric is specified."""
self.set_up_spec('numeric')
value = np.int64(1)
bar_builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': value},
datasets=[DatasetBuilder('data', value)])
results = self.vmap.validate(bar_builder)
self.assertEqual(len(results), 0)
def test_bool_for_numeric(self):
"""Test that validator does not allow bool data where numeric is specified."""
self.set_up_spec('numeric')
value = True
bar_builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': value},
datasets=[DatasetBuilder('data', value)])
results = self.vmap.validate(bar_builder)
result_strings = set([str(s) for s in results])
expected_errors = {"Bar/attr1 (my_bar.attr1): incorrect type - expected 'numeric', got 'bool'",
"Bar/data (my_bar/data): incorrect type - expected 'numeric', got 'bool'"}
self.assertEqual(result_strings, expected_errors)
def test_np_bool_for_bool(self):
"""Test that validator allows np.bool_ data where bool is specified."""
self.set_up_spec('bool')
value = np.bool_(True)
bar_builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': value},
datasets=[DatasetBuilder('data', value)])
results = self.vmap.validate(bar_builder)
self.assertEqual(len(results), 0)
def test_scalar_compound_dtype(self):
"""Test that validator allows scalar compound dtype data where a compound dtype is specified."""
spec_catalog = SpecCatalog()
dtype = [DtypeSpec('x', doc='x', dtype='int'), DtypeSpec('y', doc='y', dtype='float')]
spec = GroupSpec('A test group specification with a data type',
data_type_def='Bar',
datasets=[DatasetSpec('an example dataset', dtype, name='data',)],
attributes=[AttributeSpec('attr1', 'an example attribute', 'text',)])
spec_catalog.register_spec(spec, 'test2.yaml')
self.namespace = SpecNamespace(
'a test namespace', CORE_NAMESPACE, [{'source': 'test2.yaml'}], version='0.1.0', catalog=spec_catalog)
self.vmap = ValidatorMap(self.namespace)
value = np.array((1, 2.2), dtype=[('x', 'int'), ('y', 'float')])
bar_builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': 'test'},
datasets=[DatasetBuilder(name='data',
data=value,
dtype=[DtypeSpec('x', doc='x', dtype='int'),
DtypeSpec('y', doc='y', dtype='float'),],),])
results = self.vmap.validate(bar_builder)
self.assertEqual(len(results), 0)
class Test1DArrayValidation(TestCase):
def set_up_spec(self, dtype):
spec_catalog = SpecCatalog()
spec = GroupSpec('A test group specification with a data type',
data_type_def='Bar',
datasets=[DatasetSpec('an example dataset', dtype, name='data', shape=(None, ))],
attributes=[AttributeSpec('attr1', 'an example attribute', dtype, shape=(None, ))])
spec_catalog.register_spec(spec, 'test.yaml')
self.namespace = SpecNamespace(
'a test namespace', CORE_NAMESPACE, [{'source': 'test.yaml'}], version='0.1.0', catalog=spec_catalog)
self.vmap = ValidatorMap(self.namespace)
def test_scalar(self):
"""Test that validator does not allow a scalar where an array is specified."""
self.set_up_spec('text')
value = 'a string'
bar_builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': value},
datasets=[DatasetBuilder('data', value)])
results = self.vmap.validate(bar_builder)
result_strings = set([str(s) for s in results])
expected_errors = {("Bar/attr1 (my_bar.attr1): incorrect shape - expected an array of shape '(None,)', "
"got non-array data 'a string'"),
("Bar/data (my_bar/data): incorrect shape - expected an array of shape '(None,)', "
"got non-array data 'a string'")}
self.assertEqual(result_strings, expected_errors)
def test_empty_list(self):
"""Test that validator allows an empty list where an array is specified."""
self.set_up_spec('text')
value = []
bar_builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': value},
datasets=[DatasetBuilder('data', value)])
results = self.vmap.validate(bar_builder)
self.assertEqual(len(results), 0)
def test_empty_nparray(self):
"""Test that validator allows an empty numpy array where an array is specified."""
self.set_up_spec('text')
value = np.array([]) # note: dtype is float64
bar_builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': value},
datasets=[DatasetBuilder('data', value)])
results = self.vmap.validate(bar_builder)
self.assertEqual(len(results), 0)
# TODO test shape validation more completely
class TestStringDatetime(TestCase):
def test_str_coincidental_isodatetime(self):
"""Test validation of a text spec allows a string that coincidentally matches the isodatetime format."""
spec_catalog = SpecCatalog()
spec = GroupSpec(
doc='A test group specification with a data type',
data_type_def='Bar',
datasets=[
DatasetSpec(doc='an example scalar dataset', dtype="text", name='data1'),
DatasetSpec(doc='an example 1D dataset', dtype="text", name='data2', shape=(None, )),
DatasetSpec(
doc='an example 1D compound dtype dataset',
dtype=[
DtypeSpec('x', doc='x', dtype='int'),
DtypeSpec('y', doc='y', dtype='text'),
],
name='data3',
shape=(None, ),
),
],
attributes=[
AttributeSpec(name='attr1', doc='an example scalar attribute', dtype="text"),
AttributeSpec(name='attr2', doc='an example 1D attribute', dtype="text", shape=(None, )),
]
)
spec_catalog.register_spec(spec, 'test.yaml')
namespace = SpecNamespace(
'a test namespace', CORE_NAMESPACE, [{'source': 'test.yaml'}], version='0.1.0', catalog=spec_catalog
)
vmap = ValidatorMap(namespace)
bar_builder = GroupBuilder(
name='my_bar',
attributes={'data_type': 'Bar', 'attr1': "2023-01-01", 'attr2': ["2023-01-01"]},
datasets=[
DatasetBuilder(name='data1', data="2023-01-01"),
DatasetBuilder(name='data2', data=["2023-01-01"]),
DatasetBuilder(
name='data3',
data=[(1, "2023-01-01")],
dtype=[
DtypeSpec('x', doc='x', dtype='int'),
DtypeSpec('y', doc='y', dtype='text'),
],
),
],
)
results = vmap.validate(bar_builder)
self.assertEqual(len(results), 0)
class TestLinkable(TestCase):
def set_up_spec(self):
spec_catalog = SpecCatalog()
typed_dataset_spec = DatasetSpec('A typed dataset', data_type_def='Foo')
typed_group_spec = GroupSpec('A typed group', data_type_def='Bar')
spec = GroupSpec('A test group specification with a data type',
data_type_def='Baz',
datasets=[
DatasetSpec('A linkable child dataset', name='untyped_linkable_ds',
linkable=True, quantity=ZERO_OR_ONE),
DatasetSpec('A non-linkable child dataset', name='untyped_nonlinkable_ds',
linkable=False, quantity=ZERO_OR_ONE),
DatasetSpec('A linkable child dataset', data_type_inc='Foo',
name='typed_linkable_ds', linkable=True, quantity=ZERO_OR_ONE),
DatasetSpec('A non-linkable child dataset', data_type_inc='Foo',
name='typed_nonlinkable_ds', linkable=False, quantity=ZERO_OR_ONE),
],
groups=[
GroupSpec('A linkable child group', name='untyped_linkable_group',
linkable=True, quantity=ZERO_OR_ONE),
GroupSpec('A non-linkable child group', name='untyped_nonlinkable_group',
linkable=False, quantity=ZERO_OR_ONE),
GroupSpec('A linkable child group', data_type_inc='Bar',
name='typed_linkable_group', linkable=True, quantity=ZERO_OR_ONE),
GroupSpec('A non-linkable child group', data_type_inc='Bar',
name='typed_nonlinkable_group', linkable=False, quantity=ZERO_OR_ONE),
])
spec_catalog.register_spec(spec, 'test.yaml')
spec_catalog.register_spec(typed_dataset_spec, 'test.yaml')
spec_catalog.register_spec(typed_group_spec, 'test.yaml')
self.namespace = SpecNamespace(
'a test namespace', CORE_NAMESPACE, [{'source': 'test.yaml'}], version='0.1.0', catalog=spec_catalog)
self.vmap = ValidatorMap(self.namespace)
def validate_linkability(self, link, expect_error):
"""Execute a linkability test and assert whether or not an IllegalLinkError is returned"""
self.set_up_spec()
builder = GroupBuilder('my_baz', attributes={'data_type': 'Baz'}, links=[link])
result = self.vmap.validate(builder)
if expect_error:
self.assertEqual(len(result), 1)
self.assertIsInstance(result[0], IllegalLinkError)
else:
self.assertEqual(len(result), 0)
def test_untyped_linkable_dataset_accepts_link(self):
"""Test that the validator accepts a link when the spec has an untyped linkable dataset"""
link = LinkBuilder(name='untyped_linkable_ds', builder=DatasetBuilder('foo'))
self.validate_linkability(link, expect_error=False)
def test_untyped_nonlinkable_dataset_does_not_accept_link(self):
"""Test that the validator returns an IllegalLinkError when the spec has an untyped non-linkable dataset"""
link = LinkBuilder(name='untyped_nonlinkable_ds', builder=DatasetBuilder('foo'))
self.validate_linkability(link, expect_error=True)
def test_typed_linkable_dataset_accepts_link(self):
"""Test that the validator accepts a link when the spec has a typed linkable dataset"""
link = LinkBuilder(name='typed_linkable_ds',
builder=DatasetBuilder('foo', attributes={'data_type': 'Foo'}))
self.validate_linkability(link, expect_error=False)
def test_typed_nonlinkable_dataset_does_not_accept_link(self):
"""Test that the validator returns an IllegalLinkError when the spec has a typed non-linkable dataset"""
link = LinkBuilder(name='typed_nonlinkable_ds',
builder=DatasetBuilder('foo', attributes={'data_type': 'Foo'}))
self.validate_linkability(link, expect_error=True)
def test_untyped_linkable_group_accepts_link(self):
"""Test that the validator accepts a link when the spec has an untyped linkable group"""
link = LinkBuilder(name='untyped_linkable_group', builder=GroupBuilder('foo'))
self.validate_linkability(link, expect_error=False)
def test_untyped_nonlinkable_group_does_not_accept_link(self):
"""Test that the validator returns an IllegalLinkError when the spec has an untyped non-linkable group"""
link = LinkBuilder(name='untyped_nonlinkable_group', builder=GroupBuilder('foo'))
self.validate_linkability(link, expect_error=True)
def test_typed_linkable_group_accepts_link(self):
"""Test that the validator accepts a link when the spec has a typed linkable group"""
link = LinkBuilder(name='typed_linkable_group',
builder=GroupBuilder('foo', attributes={'data_type': 'Bar'}))
self.validate_linkability(link, expect_error=False)
def test_typed_nonlinkable_group_does_not_accept_link(self):
"""Test that the validator returns an IllegalLinkError when the spec has a typed non-linkable group"""
link = LinkBuilder(name='typed_nonlinkable_group',
builder=GroupBuilder('foo', attributes={'data_type': 'Bar'}))
self.validate_linkability(link, expect_error=True)
@mock.patch("hdmf.validate.validator.DatasetValidator.validate")
def test_should_not_validate_illegally_linked_objects(self, mock_validator):
"""Test that an illegally linked child dataset is not validated
Note: this behavior is expected to change in the future:
https://github.com/hdmf-dev/hdmf/issues/516
"""
self.set_up_spec()
typed_link = LinkBuilder(name='typed_nonlinkable_ds',
builder=DatasetBuilder('foo', attributes={'data_type': 'Foo'}))
untyped_link = LinkBuilder(name='untyped_nonlinkable_ds', builder=DatasetBuilder('foo'))
builder = GroupBuilder('my_baz', attributes={'data_type': 'Baz'}, links=[typed_link, untyped_link])
_ = self.vmap.validate(builder)
assert not mock_validator.called
class TestMultipleNamedChildrenOfSameType(TestCase):
"""When a group has multiple named children of the same type (such as X, Y,
and Z VectorData), they all need to be validated.
"""
def set_up_spec(self):
spec_catalog = SpecCatalog()
dataset_spec = DatasetSpec('A dataset', data_type_def='Foo')
group_spec = GroupSpec('A group', data_type_def='Bar')
spec = GroupSpec('A test group specification with a data type',
data_type_def='Baz',
datasets=[
DatasetSpec('Child Dataset A', name='a', data_type_inc='Foo'),
DatasetSpec('Child Dataset B', name='b', data_type_inc='Foo'),
],
groups=[
GroupSpec('Child Group X', name='x', data_type_inc='Bar'),
GroupSpec('Child Group Y', name='y', data_type_inc='Bar'),
])
spec_catalog.register_spec(spec, 'test.yaml')
spec_catalog.register_spec(dataset_spec, 'test.yaml')
spec_catalog.register_spec(group_spec, 'test.yaml')
self.namespace = SpecNamespace(
'a test namespace', CORE_NAMESPACE, [{'source': 'test.yaml'}], version='0.1.0', catalog=spec_catalog)
self.vmap = ValidatorMap(self.namespace)
def validate_multiple_children(self, dataset_names, group_names):
"""Utility function to validate a builder with the specified named dataset and group children"""
self.set_up_spec()
datasets = [DatasetBuilder(ds, attributes={'data_type': 'Foo'}) for ds in dataset_names]
groups = [GroupBuilder(gr, attributes={'data_type': 'Bar'}) for gr in group_names]
builder = GroupBuilder('my_baz', attributes={'data_type': 'Baz'},
datasets=datasets, groups=groups)
return self.vmap.validate(builder)
def test_missing_first_dataset_should_return_error(self):
"""Test that the validator returns a MissingDataType error if the first dataset is missing"""
result = self.validate_multiple_children(['b'], ['x', 'y'])
self.assertEqual(len(result), 1)
self.assertIsInstance(result[0], MissingDataType)
def test_missing_last_dataset_should_return_error(self):
"""Test that the validator returns a MissingDataType error if the last dataset is missing"""
result = self.validate_multiple_children(['a'], ['x', 'y'])
self.assertEqual(len(result), 1)
self.assertIsInstance(result[0], MissingDataType)
def test_missing_first_group_should_return_error(self):
"""Test that the validator returns a MissingDataType error if the first group is missing"""
result = self.validate_multiple_children(['a', 'b'], ['y'])
self.assertEqual(len(result), 1)
self.assertIsInstance(result[0], MissingDataType)
def test_missing_last_group_should_return_error(self):
"""Test that the validator returns a MissingDataType error if the last group is missing"""
result = self.validate_multiple_children(['a', 'b'], ['x'])
self.assertEqual(len(result), 1)
self.assertIsInstance(result[0], MissingDataType)
def test_no_errors_when_all_children_satisfied(self):
"""Test that the validator does not return an error if all child specs are satisfied"""
result = self.validate_multiple_children(['a', 'b'], ['x', 'y'])
self.assertEqual(len(result), 0)
class TestLinkAndChildMatchingDataType(TestCase):
"""If a link and a child dataset/group have the same specified data type,
both the link and the child need to be validated
"""
def set_up_spec(self):
spec_catalog = SpecCatalog()
dataset_spec = DatasetSpec('A dataset', data_type_def='Foo')
group_spec = GroupSpec('A group', data_type_def='Bar')
spec = GroupSpec('A test group specification with a data type',
data_type_def='Baz',
datasets=[
DatasetSpec('Child Dataset', name='dataset', data_type_inc='Foo'),
],
groups=[
GroupSpec('Child Group', name='group', data_type_inc='Bar'),
],
links=[
LinkSpec('Linked Dataset', name='dataset_link', target_type='Foo'),
LinkSpec('Linked Dataset', name='group_link', target_type='Bar')
])
spec_catalog.register_spec(spec, 'test.yaml')
spec_catalog.register_spec(dataset_spec, 'test.yaml')
spec_catalog.register_spec(group_spec, 'test.yaml')
self.namespace = SpecNamespace(
'a test namespace', CORE_NAMESPACE, [{'source': 'test.yaml'}], version='0.1.0', catalog=spec_catalog)
self.vmap = ValidatorMap(self.namespace)
def validate_matching_link_data_type_case(self, datasets, groups, links):
"""Execute validation against a group builder using the provided group
children and verify that a MissingDataType error is returned
"""
self.set_up_spec()
builder = GroupBuilder('my_baz', attributes={'data_type': 'Baz'},
datasets=datasets, groups=groups, links=links)
result = self.vmap.validate(builder)
self.assertEqual(len(result), 1)
self.assertIsInstance(result[0], MissingDataType)
def test_error_on_missing_child_dataset(self):
"""Test that a MissingDataType is returned when the child dataset is missing"""
datasets = []
groups = [GroupBuilder('group', attributes={'data_type': 'Bar'})]
links = [
LinkBuilder(name='dataset_link', builder=DatasetBuilder('foo', attributes={'data_type': 'Foo'})),
LinkBuilder(name='group_link', builder=GroupBuilder('bar', attributes={'data_type': 'Bar'}))
]
self.validate_matching_link_data_type_case(datasets, groups, links)
def test_error_on_missing_linked_dataset(self):
"""Test that a MissingDataType is returned when the linked dataset is missing"""
datasets = [DatasetBuilder('dataset', attributes={'data_type': 'Foo'})]
groups = [GroupBuilder('group', attributes={'data_type': 'Bar'})]
links = [
LinkBuilder(name='group_link', builder=GroupBuilder('bar', attributes={'data_type': 'Bar'}))
]
self.validate_matching_link_data_type_case(datasets, groups, links)
def test_error_on_missing_group(self):
"""Test that a MissingDataType is returned when the child group is missing"""
self.set_up_spec()
datasets = [DatasetBuilder('dataset', attributes={'data_type': 'Foo'})]
groups = []
links = [
LinkBuilder(name='dataset_link', builder=DatasetBuilder('foo', attributes={'data_type': 'Foo'})),
LinkBuilder(name='group_link', builder=GroupBuilder('bar', attributes={'data_type': 'Bar'}))
]
self.validate_matching_link_data_type_case(datasets, groups, links)
def test_error_on_missing_linked_group(self):
"""Test that a MissingDataType is returned when the linked group is missing"""
self.set_up_spec()
datasets = [DatasetBuilder('dataset', attributes={'data_type': 'Foo'})]
groups = [GroupBuilder('group', attributes={'data_type': 'Bar'})]
links = [
LinkBuilder(name='dataset_link', builder=DatasetBuilder('foo', attributes={'data_type': 'Foo'}))
]
self.validate_matching_link_data_type_case(datasets, groups, links)
class TestMultipleChildrenAtDifferentLevelsOfInheritance(TestCase):
"""When multiple children can satisfy multiple specs due to data_type
inheritance, the validation needs to carefully match builders against specs
"""
def set_up_spec(self):
spec_catalog = SpecCatalog()
dataset_spec = DatasetSpec('A dataset', data_type_def='Foo')
sub_dataset_spec = DatasetSpec('An Inheriting Dataset',
data_type_def='Bar', data_type_inc='Foo')
spec = GroupSpec('A test group specification with a data type',
data_type_def='Baz',
datasets=[
DatasetSpec('Child Dataset', data_type_inc='Foo'),
DatasetSpec('Child Dataset', data_type_inc='Bar'),
])
spec_catalog.register_spec(spec, 'test.yaml')
spec_catalog.register_spec(dataset_spec, 'test.yaml')
spec_catalog.register_spec(sub_dataset_spec, 'test.yaml')
self.namespace = SpecNamespace(
'a test namespace', CORE_NAMESPACE, [{'source': 'test.yaml'}], version='0.1.0', catalog=spec_catalog)
self.vmap = ValidatorMap(self.namespace)
def test_error_returned_when_child_at_highest_level_missing(self):
"""Test that a MissingDataType error is returned when the dataset at
the highest level of the inheritance hierarchy is missing
"""
self.set_up_spec()
datasets = [
DatasetBuilder('bar', attributes={'data_type': 'Bar'})
]
builder = GroupBuilder('my_baz', attributes={'data_type': 'Baz'}, datasets=datasets)
result = self.vmap.validate(builder)
self.assertEqual(len(result), 1)
self.assertIsInstance(result[0], MissingDataType)
def test_error_returned_when_child_at_lowest_level_missing(self):
"""Test that a MissingDataType error is returned when the dataset at
the lowest level of the inheritance hierarchy is missing
"""
self.set_up_spec()
datasets = [
DatasetBuilder('foo', attributes={'data_type': 'Foo'})
]
builder = GroupBuilder('my_baz', attributes={'data_type': 'Baz'}, datasets=datasets)
result = self.vmap.validate(builder)
self.assertEqual(len(result), 1)
self.assertIsInstance(result[0], MissingDataType)
def test_both_levels_of_hierarchy_validated(self):
"""Test that when both required children at separate levels of
inheritance hierarchy are present, both child specs are satisfied
"""
self.set_up_spec()
datasets = [
DatasetBuilder('foo', attributes={'data_type': 'Foo'}),
DatasetBuilder('bar', attributes={'data_type': 'Bar'})
]
builder = GroupBuilder('my_baz', attributes={'data_type': 'Baz'}, datasets=datasets)
result = self.vmap.validate(builder)
self.assertEqual(len(result), 0)
@skip("Functionality not yet supported")
def test_both_levels_of_hierarchy_validated_inverted_order(self):
"""Test that when both required children at separate levels of
inheritance hierarchy are present, both child specs are satisfied.
This should work no matter what the order of the builders.
"""
self.set_up_spec()
datasets = [
DatasetBuilder('bar', attributes={'data_type': 'Bar'}),
DatasetBuilder('foo', attributes={'data_type': 'Foo'})
]
builder = GroupBuilder('my_baz', attributes={'data_type': 'Baz'}, datasets=datasets)
result = self.vmap.validate(builder)
self.assertEqual(len(result), 0)
class TestExtendedIncDataTypes(TestCase):
"""Test validation against specs where a data type is included via data_type_inc
and modified by adding new fields or constraining existing fields but is not
defined as a new type via data_type_inc.
For the purpose of this test class: we are calling a data type which is nested
inside a group an "inner" data type. When an inner data type inherits from a data type
via data_type_inc and has fields that are either added or modified from the base
data type, we are labeling that data type as an "extension". When the inner data
type extension does not define a new data type via data_type_def we say that it is
an "anonymous extension".
Anonymous data type extensions should be avoided in for new specs, but
it does occur in existing nwb
specs, so we need to allow and validate against it.
One example is the `Units.spike_times` dataset attached to Units in the `core`
nwb namespace, which extends `VectorData` via neurodata_type_inc but adds a new
attribute named `resolution` without defining a new data type via neurodata_type_def.
"""
def setup_spec(self):
"""Prepare a set of specs for tests which includes an anonymous data type extension"""
spec_catalog = SpecCatalog()
attr_foo = AttributeSpec(name='foo', doc='an attribute', dtype='text')
attr_bar = AttributeSpec(name='bar', doc='an attribute', dtype='numeric')
d1_spec = DatasetSpec(doc='type D1', data_type_def='D1', dtype='numeric',
attributes=[attr_foo])
d2_spec = DatasetSpec(doc='type D2', data_type_def='D2', data_type_inc=d1_spec)
g1_spec = GroupSpec(doc='type G1', data_type_def='G1',
datasets=[DatasetSpec(doc='D1 extension', data_type_inc=d1_spec,
attributes=[attr_foo, attr_bar])])
for spec in [d1_spec, d2_spec, g1_spec]:
spec_catalog.register_spec(spec, 'test.yaml')
self.namespace = SpecNamespace('a test namespace', CORE_NAMESPACE,
[{'source': 'test.yaml'}], version='0.1.0', catalog=spec_catalog)
self.vmap = ValidatorMap(self.namespace)
def test_missing_additional_attribute_on_anonymous_data_type_extension(self):
"""Verify that a MissingError is returned when a required attribute from an
anonymous extension is not present
"""
self.setup_spec()
dataset = DatasetBuilder('test_d1', 42.0, attributes={'data_type': 'D1', 'foo': 'xyz'})
builder = GroupBuilder('test_g1', attributes={'data_type': 'G1'}, datasets=[dataset])
result = self.vmap.validate(builder)
self.assertEqual(len(result), 1)
error = result[0]
self.assertIsInstance(error, MissingError)
self.assertTrue('G1/D1/bar' in str(error))
def test_validate_child_type_against_anonymous_data_type_extension(self):
"""Verify that a MissingError is returned when a required attribute from an
anonymous extension is not present on a data type which inherits from the data
type included in the anonymous extension.
"""
self.setup_spec()
dataset = DatasetBuilder('test_d2', 42.0, attributes={'data_type': 'D2', 'foo': 'xyz'})
builder = GroupBuilder('test_g1', attributes={'data_type': 'G1'}, datasets=[dataset])
result = self.vmap.validate(builder)
self.assertEqual(len(result), 1)
error = result[0]
self.assertIsInstance(error, MissingError)
self.assertTrue('G1/D1/bar' in str(error))
def test_redundant_attribute_in_spec(self):
"""Test that only one MissingError is returned when an attribute is missing
which is redundantly defined in both a base data type and an inner data type
"""
self.setup_spec()
dataset = DatasetBuilder('test_d2', 42.0, attributes={'data_type': 'D2', 'bar': 5})
builder = GroupBuilder('test_g1', attributes={'data_type': 'G1'}, datasets=[dataset])
result = self.vmap.validate(builder)
self.assertEqual(len(result), 1)
class TestReferenceDatasetsRoundTrip(ValidatorTestBase):
"""Test that no errors occur when when datasets containing references either in an
array or as part of a compound type are written out to file, read back in, and
then validated.
In order to support lazy reading on loading, datasets containing references are
wrapped in lazy-loading ReferenceResolver objects. These tests verify that the
validator can work with these ReferenceResolver objects.
"""
def setUp(self):
self.filename = 'test_ref_dataset.h5'
super().setUp()
def tearDown(self):
remove_test_file(self.filename)
super().tearDown()
def getSpecs(self):
qux_spec = DatasetSpec(
doc='a simple scalar dataset',
data_type_def='Qux',
dtype='int',
shape=None
)
baz_spec = DatasetSpec(
doc='a dataset with a compound datatype that includes a reference',
data_type_def='Baz',
dtype=[
DtypeSpec('x', doc='x-value', dtype='int'),
DtypeSpec('y', doc='y-ref', dtype=RefSpec('Qux', reftype='object'))
],
shape=None
)
bar_spec = DatasetSpec(
doc='a dataset of an array of references',
dtype=RefSpec('Qux', reftype='object'),
data_type_def='Bar',
shape=(None,)
)
foo_spec = GroupSpec(
doc='a base group for containing test datasets',
data_type_def='Foo',
datasets=[
DatasetSpec(doc='optional Bar', data_type_inc=bar_spec, quantity=ZERO_OR_ONE),
DatasetSpec(doc='optional Baz', data_type_inc=baz_spec, quantity=ZERO_OR_ONE),
DatasetSpec(doc='multiple qux', data_type_inc=qux_spec, quantity=ONE_OR_MANY)
]
)
return (foo_spec, bar_spec, baz_spec, qux_spec)
def runBuilderRoundTrip(self, builder):
"""Executes a round-trip test for a builder
1. First writes the builder to file,
2. next reads a new builder from disk
3. and finally runs the builder through the validator.
The test is successful if there are no validation errors."""
ns_catalog = NamespaceCatalog()
ns_catalog.add_namespace(self.namespace.name, self.namespace)
typemap = TypeMap(ns_catalog)
self.manager = BuildManager(typemap)
with HDF5IO(self.filename, manager=self.manager, mode='w') as write_io:
write_io.write_builder(builder)
with HDF5IO(self.filename, manager=self.manager, mode='r') as read_io:
read_builder = read_io.read_builder()
errors = self.vmap.validate(read_builder)
self.assertEqual(len(errors), 0, errors)
def test_round_trip_validation_of_reference_dataset_array(self):
"""Verify that a dataset builder containing an array of references passes
validation after a round trip"""
qux1 = DatasetBuilder('q1', 5, attributes={'data_type': 'Qux'})
qux2 = DatasetBuilder('q2', 10, attributes={'data_type': 'Qux'})
bar = DatasetBuilder(
name='bar',
data=[ReferenceBuilder(qux1), ReferenceBuilder(qux2)],
attributes={'data_type': 'Bar'},
dtype='object'
)
foo = GroupBuilder(
name='foo',
datasets=[bar, qux1, qux2],
attributes={'data_type': 'Foo'}
)
self.runBuilderRoundTrip(foo)
def test_round_trip_validation_of_compound_dtype_with_reference(self):
"""Verify that a dataset builder containing data with a compound dtype
containing a reference passes validation after a round trip"""
qux1 = DatasetBuilder('q1', 5, attributes={'data_type': 'Qux'})
qux2 = DatasetBuilder('q2', 10, attributes={'data_type': 'Qux'})
baz = DatasetBuilder(
name='baz',
data=[(10, ReferenceBuilder(qux1))],
dtype=[
DtypeSpec('x', doc='x-value', dtype='int'),
DtypeSpec('y', doc='y-ref', dtype=RefSpec('Qux', reftype='object'))
],
attributes={'data_type': 'Baz'}
)
foo = GroupBuilder(
name='foo',
datasets=[baz, qux1, qux2],
attributes={'data_type': 'Foo'}
)
self.runBuilderRoundTrip(foo)
class TestEmptyDataRoundTrip(ValidatorTestBase):
"""
Test the special case of empty string datasets and attributes during validation
"""
def setUp(self):
self.filename = 'test_ref_dataset.h5'
super().setUp()
def tearDown(self):
remove_test_file(self.filename)
super().tearDown()
def getSpecs(self):
ret = GroupSpec('A test group specification with a data type',
data_type_def='Bar',
datasets=[DatasetSpec(name='data',
doc='an example dataset',
dtype='text',
attributes=[AttributeSpec(
name='attr2',
doc='an example integer attribute',
dtype='int',
shape=(None,))]),
DatasetSpec(name='dataInt',
doc='an example int dataset',
dtype='int',
attributes=[])
],
attributes=[AttributeSpec(name='attr1',
doc='an example string attribute',
dtype='text',
shape=(None,))])
return (ret,)
def runBuilderRoundTrip(self, builder):
"""Executes a round-trip test for a builder
1. First writes the builder to file,
2. next reads a new builder from disk
3. and finally runs the builder through the validator.
The test is successful if there are no validation errors."""
ns_catalog = NamespaceCatalog()
ns_catalog.add_namespace(self.namespace.name, self.namespace)
typemap = TypeMap(ns_catalog)
self.manager = BuildManager(typemap)
with HDF5IO(self.filename, manager=self.manager, mode='w') as write_io:
write_io.write_builder(builder)
with HDF5IO(self.filename, manager=self.manager, mode='r') as read_io:
read_builder = read_io.read_builder()
errors = self.vmap.validate(read_builder)
self.assertEqual(len(errors), 0, errors)
def test_empty_string_attribute(self):
"""Verify that we can determine dtype for empty string attribute during validation"""
builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': []}, # <-- Empty string attribute
datasets=[DatasetBuilder(name='data', data=['text1', 'text2'],
attributes={'attr2': [10, ]}),
DatasetBuilder(name='dataInt', data=[5, ])
])
self.runBuilderRoundTrip(builder)
def test_empty_string_dataset(self):
"""Verify that we can determine dtype for empty string dataset during validation"""
builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': ['text1', 'text2']},
datasets=[DatasetBuilder(name='data', # <-- Empty string dataset
data=[],
dtype='text',
attributes={'attr2': [10, ]}),
DatasetBuilder(name='dataInt', data=[5, ])
])
self.runBuilderRoundTrip(builder)
def test_empty_int_attribute(self):
"""Verify that we can determine dtype for empty integer attribute during validation"""
builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': ['text1', 'text2']},
datasets=[DatasetBuilder(name='data', data=['text1', 'text2'],
attributes={'attr2': []} # <-- Empty integer attribute
),
DatasetBuilder(name='dataInt', data=[5, ])
])
self.runBuilderRoundTrip(builder)
def test_empty_int_dataset(self):
"""Verify that a dataset builder containing an array of references passes
validation after a round trip"""
builder = GroupBuilder('my_bar',
attributes={'data_type': 'Bar', 'attr1': ['text1', 'text2']},
datasets=[DatasetBuilder(name='data', data=['text1', 'text2'],
attributes={'attr2': [10, ]}),
DatasetBuilder(name='dataInt', data=[], dtype='int') # <-- Empty int dataset
])
self.runBuilderRoundTrip(builder)
class TestValidateSubspec(ValidatorTestBase):
"""When a subtype satisfies a subspec, the validator should also validate
that the subtype satisfies its spec.
"""
def getSpecs(self):
dataset_spec = DatasetSpec('A dataset', data_type_def='Foo')
sub_dataset_spec = DatasetSpec(
doc='A subtype of Foo',
data_type_def='Bar',
data_type_inc='Foo',
attributes=[
AttributeSpec(name='attr1', doc='an example attribute', dtype='text')
],
)
spec = GroupSpec(
doc='A group that contains a Foo',
data_type_def='Baz',
datasets=[
DatasetSpec(doc='Child Dataset', data_type_inc='Foo'),
])
return (spec, dataset_spec, sub_dataset_spec)
def test_validate_subtype(self):
"""Test that when spec A contains dataset B, and C is a subtype of B, using a C builder is valid.
"""
builder = GroupBuilder(
name='my_baz',
attributes={'data_type': 'Baz'},
datasets=[
DatasetBuilder(name='bar', attributes={'data_type': 'Bar', 'attr1': 'value'})
],
)
result = self.vmap.validate(builder)
self.assertEqual(len(result), 0)
def test_validate_subtype_error(self):
"""Test that when spec A contains dataset B, and C is a subtype of B, using a C builder validates
against spec C.
"""
builder = GroupBuilder(
name='my_baz',
attributes={'data_type': 'Baz'},
datasets=[
DatasetBuilder(name='bar', attributes={'data_type': 'Bar'})
],
)
result = self.vmap.validate(builder)
self.assertEqual(len(result), 1)
self.assertValidationError(result[0], MissingError, name='Bar/attr1')
|