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 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469
|
#
# This document specifies messages expecations on tested fixtures (errors and warnings)
# Messages may be either a plain string (assert.Contains) or a simple regexp (assert.True(regexp.MatchString())
fixture-items-items.yaml:
comment: how to get through item.Items in simple schemas
todo:
expectedLoadError: false
expectedValid: true
expectedMessages: []
expectedWarnings:
- message: 'soSimple in path has a default value and is required as parameter'
withContinueOnErrors: false
isRegexp: false
valid-referenced.yml:
comment:
todo:
expectedLoadError: false
expectedValid: true
expectedMessages: []
expectedWarnings: []
valid-referenced-variants.yaml:
comment: additional scenarios with failures on additionalProperties and required properties
todo:
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: 'definitions.lotOfErrors.patternProperties in body is a forbidden property'
withContinueOnErrors: false
isRegexp: false
- message: '"definitions.lotOfErrors.additionalProperties" must validate at least one schema (anyOf)'
withContinueOnErrors: false
isRegexp: false
- message: 'definitions.lotOfErrors.additionalProperties.patternProperties in body is a forbidden property'
withContinueOnErrors: false
isRegexp: false
- message: 'definitions.lotOfErrors2.patternProperties in body is a forbidden property'
withContinueOnErrors: false
isRegexp: false
- message: 'pattern "^)b-InvalidRegexp1.(*$" is invalid in lotOfErrors'
withContinueOnErrors: true
isRegexp: false
- message: '"bug" is present in required but not defined as property in definition "lotOfErrors"'
withContinueOnErrors: true
isRegexp: false
- message: 'pattern "^)b-InvalidRegexp2.(*$" is invalid in lotOfErrors2'
withContinueOnErrors: true
isRegexp: false
expectedWarnings:
- message: 'Required property a in "lotOfErrors" should not be marked as both required and readOnly'
withContinueOnErrors: true
isRegexp: false
- message: 'Required property z-1 in "lotOfErrors" should not be marked as both required and readOnly'
withContinueOnErrors: true
isRegexp: false
- message: 'Required property b-8 in "lotOfErrors2" should not be marked as both required and readOnly'
withContinueOnErrors: true
isRegexp: false
fixture-additional-items.yaml:
comment:
todo: unsupported keyword such as additionnalItems should be better reported
expectedLoadError: false
expectedValid: true
expectedMessages: []
expectedWarnings: []
fixture-additional-items-2.yaml:
comment:
todo: unsupported keyword such as additionnalItems should be better reported
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: '"paths./servers/getGood.get.parameters" must validate one and only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./servers/getGood.get.parameters.schema.additionalItems in body is a forbidden property'
withContinueOnErrors: false
isRegexp: false
expectedWarnings: []
fixture-additional-items-3.yaml:
comment:
todo: unsupported keyword such as additionnalItems should be better reported
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: '"paths./servers/edgeCase.get.responses.200" must validate one and only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: '"paths./servers/edgeCase.get.responses.200.schema" must validate one and only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./servers/edgeCase.get.responses.200.schema.additionalItems in body is a forbidden property'
withContinueOnErrors: false
isRegexp: false
- message: '"paths./servers/edgeCase.get.responses.200.schema.items" must validate at least one schema (anyOf)'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./servers/edgeCase.get.responses.200.schema.items.additionalItems in body is a forbidden property'
withContinueOnErrors: false
isRegexp: false
- message: '"paths./servers/getGood.get.responses.200" must validate one and only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: '"paths./servers/getGood.get.responses.200.schema" must validate one and only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./servers/getGood.get.responses.200.schema.additionalItems in body is a forbidden property'
withContinueOnErrors: false
isRegexp: false
expectedWarnings:
- message: 'definition "#/definitions/itemsSchema0" is not used anywhere'
withContinueOnErrors: true
isRegexp: false
- message: 'definition "#/definitions/itemsSchema1" is not used anywhere'
withContinueOnErrors: true
isRegexp: false
- message: 'definition "#/definitions/itemsSchema2" is not used anywhere'
withContinueOnErrors: true
isRegexp: false
- message: 'definition "#/definitions/itemsSchema3" is not used anywhere'
withContinueOnErrors: true
isRegexp: false
fixture-no-json-example.yaml:
comment: a response example for a mime type other than application/json
todo: not supported. atm, this is just a warning
expectedLoadError: false
expectedValid: true
expectedMessages: []
expectedWarnings:
- message: 'No validation attempt for examples for media types other than application/json, in operation "getGoodOp", default response'
withContinueOnErrors: false
isRegexp: false
- message: 'Examples provided without schema in operation "getGoodOp", response 200'
withContinueOnErrors: false
isRegexp: false
fixture-additional-items-invalid-values.yaml:
comment: additional testing scenario for default and example values
todo:
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: '"paths./servers/getBad1.get.responses.default" must validate one and only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./servers/getBad1.get.responses.default.description in body is required'
withContinueOnErrors: false
isRegexp: false
- message: 'default value for addItems in body does not validate its schema'
withContinueOnErrors: true
isRegexp: false
- message: 'addItems.default.0.first in body must be of type string: "array"'
withContinueOnErrors: true
isRegexp: false
- message: 'addItems.default.2.c in body must be of type number: "string"'
withContinueOnErrors: true
isRegexp: false
- message: 'addItems.default.2.x in body must be of type string: "number"'
withContinueOnErrors: true
isRegexp: false
- message: 'addItems.default.2.x in body should be one of [a b c]'
withContinueOnErrors: true
isRegexp: false
- message: 'addItems.default.3.z in body must be of type number: "string"'
withContinueOnErrors: true
isRegexp: false
- message: 'in operation "getGoodOp", default value in default response does not validate its schema'
withContinueOnErrors: true
isRegexp: false
- message: 'default.default.0.first in body must be of type string: "array"'
withContinueOnErrors: true
isRegexp: false
- message: 'default.default.2.x in body must be of type string: "number"'
withContinueOnErrors: true
isRegexp: false
- message: 'default.default.2.x in body should be one of [a b c]'
withContinueOnErrors: true
isRegexp: false
- message: 'default.default.2.c in body must be of type number: "string"'
withContinueOnErrors: true
isRegexp: false
- message: 'default.default.3.z in body must be of type number: "string"'
withContinueOnErrors: true
isRegexp: false
- message: 'in operation "getGoodOp", default value in response 200 does not validate its schema'
withContinueOnErrors: true
isRegexp: false
- message: '200.default.0.first in body must be of type string: "array"'
withContinueOnErrors: true
isRegexp: false
- message: '200.default.2.c in body must be of type number: "string"'
withContinueOnErrors: true
isRegexp: false
- message: '200.default.2.x in body must be of type string: "number"'
withContinueOnErrors: true
isRegexp: false
- message: '200.default.2.x in body should be one of [a b c]'
withContinueOnErrors: true
isRegexp: false
- message: '200.default.3.z in body must be of type number: "string"'
withContinueOnErrors: true
isRegexp: false
expectedWarnings:
- message: 'in operation "getGoodOp", example value in response 200 does not validate its schema'
withContinueOnErrors: true
isRegexp: false
- message: '/servers/getBad1.examples.0.first in body must be of type string: "number"'
withContinueOnErrors: true
isRegexp: false
- message: '/servers/getBad1.examples.3.z in body must be of type number: "boolean"'
withContinueOnErrors: true
isRegexp: false
- message: '200.example.0.first in body must be of type string: "number"'
withContinueOnErrors: true
isRegexp: false
- message: '200.example.3.z in body must be of type number: "boolean"'
withContinueOnErrors: true
isRegexp: false
- message: 'example value for addItems in body does not validate its schema'
withContinueOnErrors: true
isRegexp: false
- message: 'addItems.example.0.first in body must be of type string: "number"'
withContinueOnErrors: true
isRegexp: false
- message: 'addItems.example.3.z in body must be of type number: "boolean"'
withContinueOnErrors: true
isRegexp: false
- message: 'in operation "getGoodOp", example value in default response does not validate its schema'
withContinueOnErrors: true
isRegexp: false
- message: 'default.example.0.first in body must be of type string: "number"'
withContinueOnErrors: true
isRegexp: false
- message: 'default.example.3.z in body must be of type number: "boolean"'
withContinueOnErrors: true
isRegexp: false
fixture-no-response.yaml:
comment:
todo:
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: 'operation "ListBackendSets" has no valid response'
withContinueOnErrors: true
isRegexp: false
- message: 'paths./loadBalancers/{loadBalancerId}/backendSets.get.responses in body must be of type object: "null"'
withContinueOnErrors: false
isRegexp: false
expectedWarnings: []
fixture-empty-paths.json:
comment:
todo:
expectedLoadError: false
expectedValid: true
expectedMessages: []
expectedWarnings:
- message: spec has no valid path defined
withContinueOnErrors: false
isRegexp: false
fixture-patternProperties.json:
comment: Exercise pattern properties (for default values), with an invalid pattern
todo:
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: definitions.Tag.patternProperties in body is a forbidden property
withContinueOnErrors: false
isRegexp: false
- message: definitions.TagInvalidDefault.patternProperties in body is a forbidden property
withContinueOnErrors: false
isRegexp: false
- message: definitions.TagWrong.patternProperties in body is a forbidden property
withContinueOnErrors: false
isRegeexp: false
- message: 'definitions.TagInvalidDefault.default.id in body must be of type integer: "string"'
withContinueOnErrors: true
isRegexp: false
- message: 'definitions.TagInvalidDefault.default.nb-1 in body must be of type integer: "string"'
withContinueOnErrors: true
isRegexp: false
- message: 'definitions.TagInvalidDefault.default.nb-2 in body must be of type integer: "string"'
withContinueOnErrors: true
isRegexp: false
# with systematic response expansion we get more messages
- message: '200.items.default.invalidDefault.default.id in body must be of type integer: "string"'
withContinueOnErrors: true
isRegexp: false
- message: '200.items.default.invalidDefault.default.nb-1 in body must be of type integer: "string"'
withContinueOnErrors: true
isRegexp: false
- message: '200.items.default.invalidDefault.default.nb-2 in body must be of type integer: "string"'
withContinueOnErrors: true
isRegexp: false
- message: 'in operation "getPets", default value in response 200 does not validate its schema'
withContinueOnErrors: true
isRegexp: false
expectedWarnings:
- message: 'definition "#/definitions/Parent" is not used anywhere'
withContinueOnErrors: true
isRegexp: false
bitbucket.json:
comment: Path differing by only a trailing "/" are not considered duplicates
todo:
expectedLoadError: false
expectedValid: true
expectedMessages: []
expectedWarnings: []
fixture-161-2.json:
comment: |
Variant of Issue#161: this is a partially fixed spec. In this version, the
name param type is fixed, but the default value remains wrongly typed'
todo:
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: default value for requestBody in body does not validate its schema
withContinueOnErrors: false
isRegexp: false
- message: 'requestBody.default in body must be of type object: "string"'
withContinueOnErrors: false
isRegexp: false
expectedWarnings:
- message: 'example value for requestBody in body does not validate its schema'
withContinueOnErrors: false
isRegexp: false
- message: 'requestBody.example.parent.id in body must be of type number: "string"'
withContinueOnErrors: false
isRegexp: false
fixture-161-good.json:
comment: 'Issue#161: this is the corresponding corrected spec which should be valid. Ah! But now examples are invalid...'
todo:
expectedLoadError: false
expectedValid: true
expectedMessages: []
expectedWarnings:
- message: 'example value for requestBody in body does not validate its schema'
withContinueOnErrors: false
isRegexp: false
- message: 'requestBody.example.parent.id in body must be of type number: "string"'
withContinueOnErrors: false
isRegexp: false
fixture-161.json:
comment: 'Issue#161: default value as object'
todo:
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: 'default value for requestBody in body does not validate its schema'
withContinueOnErrors: false
isRegexp: false
- message: 'requestBody.default in body must be of type object: "string"'
withContinueOnErrors: false
isRegexp: false
expectedWarnings:
- message: 'requestBody.example.name in body must be of type object: "string"'
withContinueOnErrors: false
isRegexp: false
- message: 'example value for requestBody in body does not validate its schema'
withContinueOnErrors: false
isRegexp: false
- message: 'requestBody.example.parent.id in body must be of type number: "string"'
withContinueOnErrors: false
isRegexp: false
fixture-342-2.yaml:
comment: Botched correction attempt for fixture-342
todo:
expectedLoadError: true
expectedValid: false
expectedMessages:
# This one is a regexp to avoid being too stringent on expectations from another package (loads or analysis)
- message: '.*cannot unmarshal.*'
withContinueOnErrors: false
isRegexp: true
expectedWarnings: []
fixture-342.yaml:
comment: 'Panic on interface conversion: early stop on error prevents the panic, but continuing it goes in, it goes down'
todo: $ref have no sibling should be more general
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: 'paths./get_main_object.get.parameters.$ref in body is a forbidden property'
withContinueOnErrors: false
isRegexp: false
- message: 'invalid definition for parameter sid in body in operation ""'
withContinueOnErrors: true
isRegexp: false
- message: 'paths./get_main_object.get.parameters.in in body should be one of [header]'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./get_main_object.get.parameters.type in body is required'
withContinueOnErrors: false
isRegexp: false
- message: '"paths./get_main_object.get.parameters" must validate one and only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: 'invalid ref "nowhere.yaml#/definitions/sample_info/properties/sid"'
withContinueOnErrors: true
isRegexp: false
- message: 'invalid definition as Schema for parameter in in operation ""'
withContinueOnErrors: true
isRegexp: false
- message: 'invalid definition for parameter in in operation ""'
withContinueOnErrors: true
isRegexp: false
- message: '"parameters.wrong" must validate one and only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: 'parameters.wrong.theName in body is a forbidden property'
withContinueOnErrors: false
isRegexp: false
- message: 'parameters.wrong.theType in body is a forbidden property'
withContinueOnErrors: false
isRegexp: false
- message: 'parameters.wrong.name in body is required'
withContinueOnErrors: false
isRegexp: false
- message: 'parameters.wrong.in in body is required'
withContinueOnErrors: false
isRegexp: false
- message: 'parameters.wrong.type in body is required'
withContinueOnErrors: false
isRegexp: false
- message: '"parameters.notbetter" must validate one and only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: 'parameters.notbetter.properties in body is a forbidden property'
withContinueOnErrors: false
isRegexp: false
- message: 'parameters.notbetter.type in body should be one of [string number boolean integer array]'
withContinueOnErrors: false
isRegexp: false
- message: 'parameters.notbetter.name in body is required'
withContinueOnErrors: false
isRegexp: false
- message: 'parameters.notbetter.in in body is required'
withContinueOnErrors: false
isRegexp: false
- message: '"parameters.stillnogood" must validate one and only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: 'parameters.stillnogood.name in body is required'
withContinueOnErrors: false
isRegexp: false
- message: 'parameters.stillnogood.in in body is required'
withContinueOnErrors: false
isRegexp: false
- message: 'could not resolve reference in "\/get_main_object"\.GET to \$ref nowhere\.yaml#\/definitions\/sample_info\/properties\/sid: open .+nowhere\.yaml:\s.*'
withContinueOnErrors: true
isRegexp: true
expectedWarnings:
- message: 'definition "#/definitions/sample_info" is not used anywhere'
withContinueOnErrors: true
isRegexp: false
- message: $ref property should have no sibling in "".sid
withContinueOnErrors: true
isRegexp: false
- message: $ref property should have no sibling in "".
withContinueOnErrors: true
isRegexp: false
fixture-581-good-numbers.yaml:
comment:
todo:
expectedLoadError: false
expectedValid: true
expectedMessages: []
expectedWarnings: []
fixture-581-good.yaml:
comment:
todo:
expectedLoadError: false
expectedValid: true
expectedMessages: []
expectedWarnings: []
fixture-581-inline-param-format.yaml:
comment: a collection of error messages raised by format validation
todo:
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: 'paths./fixture.get.parameters.in in body should be one of [body]'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./fixture.get.parameters.in in body should be one of [header]'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./fixture.get.parameters.multipleOf in body should be greater than 0'
withContinueOnErrors: false
isRegexp: false
- message: '"paths./fixture.get.parameters" must validate one and only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: default value for inlineInfiniteInt in query does not validate its schema
withContinueOnErrors: true
isRegexp: false
- message: default value for inlineInfiniteInt2 in query does not validate its schema
withContinueOnErrors: true
isRegexp: false
- message: default value for inlineMaxInt in query does not validate its schema
withContinueOnErrors: true
isRegexp: false
- message: default value for inlineMinInt in query does not validate its schema
withContinueOnErrors: true
isRegexp: false
- message: default value for negFactor in query does not validate its schema
withContinueOnErrors: true
isRegexp: false
- message: default value for negFactor2 in query does not validate its schema
withContinueOnErrors: true
isRegexp: false
- message: default value for negFactor3 in query does not validate its schema
withContinueOnErrors: true
isRegexp: false
- message: Checked value must be of type integer with format uint32 in inlineInfiniteInt
withContinueOnErrors: true
isRegexp: false
- message: inlineInfiniteInt in query should be greater than or equal to 0
withContinueOnErrors: true
isRegexp: false
- message: Checked value must be of type integer with format uint32 in negFactor3
withContinueOnErrors: true
isRegexp: false
- message: 'factor MultipleOf declared for negFactor must be positive: -300'
withContinueOnErrors: true
isRegexp: false
- message: negFactor2 in query should be a multiple of 3
withContinueOnErrors: true
isRegexp: false
- message: Minimum boundary value must be of type integer with format uint64 in inlineMaxInt
withContinueOnErrors: true
isRegexp: false
- message: Maximum boundary value must be of type integer with format uint64 in inlineMaxInt
withContinueOnErrors: true
isRegexp: false
- message: Minimum boundary value must be of type integer with format uint32 in inlineMinInt
withContinueOnErrors: true
isRegexp: false
- message: Maximum boundary value must be of type integer with format uint32 in inlineMinInt
withContinueOnErrors: true
isRegexp: false
- message: definitions.myId.uint64.default in body should be less than or equal to 0
withContinueOnErrors: true
isRegexp: false
- message: definitions.myId.uint8.default in body should be less than or equal to 255
withContinueOnErrors: true
isRegexp: false
- message: Checked value must be of type integer with format uint32 in inlineInfiniteInt2
withContinueOnErrors: true
isRegexp: false
- message: inlineInfiniteInt2 in query should be greater than or equal to 0
withContinueOnErrors: true
isRegexp: false
- message: 'default value for myid in query does not validate its schema'
withContinueOnErrors: true
isRegexp: false
- message: 'invalid definition as Schema for parameter myid in query in operation "op1"'
withContinueOnErrors: true
isRegexp: false
- message: myid.uint64.default in body should be less than or equal to 0
withContinueOnErrors: true
isRegexp: false
- message: myid.uint8.default in body should be less than or equal to 255
withContinueOnErrors: true
isRegexp: false
expectedWarnings:
- message: definition "#/definitions/myId" is not used anywhere
withContinueOnErrors: true
isRegexp: false
fixture-581-inline-param.yaml:
comment: A variation on the theme of number constraints, inspired by isssue#581.
Focuses on inline params.
todo: Still limited by support of default/examples values check
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: '"paths./fixture.get.parameters" must validate one and only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./fixture.get.parameters.in in body should be one of [body]'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./fixture.get.parameters.in in body should be one of [header]'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./fixture.get.parameters.multipleOf in body should be greater than 0'
withContinueOnErrors: false
isRegexp: false
- message: default value for inlineInfiniteInt in query does not validate its schema
withContinueOnErrors: true
isRegexp: false
- message: default value for inlineMaxInt in query does not validate its schema
withContinueOnErrors: true
isRegexp: false
- message: default value for inlineMinInt in query does not validate its schema
withContinueOnErrors: true
isRegexp: false
- message: default value for negFactor in query does not validate its schema
withContinueOnErrors: true
isRegexp: false
- message: Maximum boundary value must be of type integer (default format) in inlineMaxInt
withContinueOnErrors: true
isRegexp: false
- message: Minimum boundary value must be of type integer (default format) in inlineMinInt
withContinueOnErrors: true
isRegexp: false
- message: Minimum boundary value must be of type integer (default format) in inlineInfiniteInt
withContinueOnErrors: true
isRegexp: false
- message: Maximum boundary value must be of type integer (default format) in inlineInfiniteInt
withContinueOnErrors: true
isRegexp: false
- message: 'factor MultipleOf declared for negFactor must be positive: -300'
withContinueOnErrors: true
isRegexp: false
- message: inlineMinInt in query should be less than or equal to 1
withContinueOnErrors: true
isRegexp: false
- message: definitions.myId.uint64.default in body should be less than or equal to 0
withContinueOnErrors: true
isRegexp: false
- message: definitions.myId.uint8.default in body should be less than or equal to 255
withContinueOnErrors: true
isRegexp: false
- message: default value for myid in query does not validate its schema
withContinueOnErrors: true
isRegexp: false
- message: 'invalid definition as Schema for parameter myid in query in operation "op1"'
withContinueOnErrors: true
isRegexp: false
- message: myid.uint64.default in body should be less than or equal to 0
withContinueOnErrors: true
isRegexp: false
- message: myid.uint8.default in body should be less than or equal to 255
withContinueOnErrors: true
isRegexp: false
expectedWarnings:
- message: definition "#/definitions/myId" is not used anywhere
withContinueOnErrors: true
isRegexp: false
fixture-581.yaml:
comment: 'Issue#581 : value and type checking in constraints'
todo: 'issue#581 error reporting solved: not only inline params are subject to this validation'
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: 'paths./fixture.get.parameters.in in body should be one of [body]'
withContinueOnErrors: false
isRegexp: false
- message: '"paths./fixture.get.parameters" must validate one and only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: 'definitions.myId.uint8.default in body should be less than or equal to 255'
withContinueOnErrors: true
isRegexp: false
- message: 'default value for myid in query does not validate its schema'
withContinueOnErrors: true
isRegexp: false
- message: 'invalid definition as Schema for parameter myid in query in operation "op1"'
withContinueOnErrors: true
isRegexp: false
- message: 'myid.uint8.default in body should be less than or equal to 255'
withContinueOnErrors: true
isRegexp: false
expectedWarnings:
- message: 'definition "#/definitions/myId" is not used anywhere'
withContinueOnErrors: true
isRegexp: false
fixture-859-2.yaml:
comment: 'Issue#859: clear message on unresolved $ref. Additional scenario with items'
todo:
expectedLoadError: false
expectedValid: false
expectedMessages:
# This one is a regexp since we cannot predict which $ref will fail first
- message: 'some references could not be resolved in spec\. First found: object has no key ".*"'
withContinueOnErrors: false
isRegexp: true
- message: 'could not resolve reference in / to $ref : object has no key "myitem"'
withContinueOnErrors: true
isRegexp: false
expectedWarnings:
- message: definition "#/definitions/myoutput" is not used anywhere
withContinueOnErrors: true
isRegexp: false
fixture-859-good.yaml:
comment: 'Issue#859: clear message on unresolved $ref. Valid spec baseline for further scenarios'
todo: ""
expectedLoadError: false
expectedValid: true
expectedMessages: []
expectedWarnings:
- message: definition "#/definitions/myoutput" is not used anywhere
withContinueOnErrors: false
isRegexp: false
fixture-859.yaml:
comment: 'Issue#859: clear message on unresolved $ref. First scenario for messages
Supplement for items, arrays and other nested structures in fixture-859-2.yaml'
todo: would love to have all missing references in one shot.
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: 'paths./.get.parameters.in in body should be one of [body]'
withContinueOnErrors: false
isRegexp: false
- message: '"paths./.get.parameters" must validate one and only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: 'some references could not be resolved in spec\. First found: object has no key ".*"'
withContinueOnErrors: true
isRegexp: true
#- message: 'invalid reference: "#/parameters/rateLimit"'
#withContinueOnErrors: true
#isRegexp: true
- message: 'could not resolve reference in "/".GET to $ref #/parameters/rateLimit: object has no key "rateLimit"'
withContinueOnErrors: true
isRegexp: false
- message: 'could not resolve reference in / to $ref : object has no key "record"'
withContinueOnErrors: true
isRegexp: false
#- message: some parameters definitions are broken in "/".POST. Cannot carry on full checks on parameters for operation
#withContinueOnErrors: true
#isRegexp: false
#- message: some parameters definitions are broken in "/".GET. Cannot carry on full checks on parameters for operation
#withContinueOnErrors: true
#isRegexp: false
- message: 'could not resolve reference in "/".POST to $ref #/parameters/rateLimit: object has no key "rateLimit"'
withContinueOnErrors: true
isRegexp: false
- message: 'could not resolve reference in "/".GET to $ref : object has no key "myparam"'
withContinueOnErrors: true
isRegexp: false
expectedWarnings:
- message: definition "#/definitions/myoutputs" is not used anywhere
withContinueOnErrors: true
isRegexp: false
- message: parameter "#/parameters/rateLimits" is not used anywhere
withContinueOnErrors: true
isRegexp: false
- message: definition "#/definitions/records" is not used anywhere
withContinueOnErrors: true
isRegexp: false
- message: definition "#/definitions/myparams" is not used anywhere
withContinueOnErrors: true
isRegexp: false
fixture-1050.yaml:
comment: 'Valid spec: fix issue#1050 (dot separated path params)'
todo: ""
expectedLoadError: false
expectedValid: true
expectedMessages: []
expectedWarnings: []
fixture-1171.yaml:
comment: An invalid array definition
todo: Missing check on $ref sibling
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: 'invalid definition as Schema for parameter other_server_id in path in operation "listZones"'
withContinueOnErrors: true
isRegexp: false
- message: 'invalid definition for parameter in body in operation "getBody"'
withContinueOnErrors: true
isRegexp: false
- message: '"paths./servers/{server_id}/zones.get.parameters" must validate one
and only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: '"paths./server/getBody.get.parameters" must validate one and only one
schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: '"paths./server/getBody.get.responses.200" must validate one and only
one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: '"paths./server/getBody.get.responses.200.schema" must validate one and
only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./server/getBody.get.responses.200.schema.properties.name in body
must be of type object: "string"'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./server/getBody.get.responses.200.schema.properties.$ref in body
must be of type object: "string"'
withContinueOnErrors: false
isRegexp: false
- message: paths./server/getBody.get.responses.200.description in body is required
withContinueOnErrors: false
isRegexp: false
- message: items in definitions.Zones is required
withContinueOnErrors: false
isRegexp: false
- message: '"definitions.InvalidZone.items" must validate at least one schema (anyOf)'
withContinueOnErrors: false
isRegexp: false
- message: definitions.InvalidZone.items.name in body is a forbidden property
withContinueOnErrors: false
isRegexp: false
- message: path param "other_server_id" is not present in path "/servers/{server_id}/zones"
withContinueOnErrors: true
isRegexp: false
- message: 'operation "getBody" has more than 1 body param: ["" "yet_other_server_id"]'
withContinueOnErrors: true
isRegexp: false
- message: body param "yet_other_server_id" for "getBody" is a collection without
an element type (array requires items definition)
withContinueOnErrors: true
isRegexp: false
- message: in operation "listZones",path param "other_server_id" must be declared
as required
withContinueOnErrors: true
isRegexp: false
# TODO name missing in path
- message: 'items in paths./server/getBody.get.parameters.schema is required'
withContinueOnErrors: false
isRegexp: false
# TODO name missing in path
- message: 'items in paths./servers/{server_id}/zones.get.parameters.schema is required'
withContinueOnErrors: false
isRegexp: false
# TODO name missing in path
- message: 'paths./server/getBody.get.parameters.in in body should be one of [header]'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./server/getBody.get.parameters.name in body is required'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./server/getBody.get.parameters.thestreetwithnoname in body is a forbidden property'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./servers/{server_id}/zones.get.parameters.in in body should be one of [body]'
withContinueOnErrors: false
isRegexp: false
expectedWarnings: []
fixture-1231.yaml:
comment: ""
todo: ""
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: '"parameters.customerIdParam" must validate one and only one schema (oneOf).
Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: 'parameters.customerIdParam.example in body is a forbidden property'
withContinueOnErrors: false
isRegexp: false
- message: 'parameters.customerIdParam.in in body should be one of [header]'
withContinueOnErrors: false
isRegexp: false
expectedWarnings:
- message: 'definitions.customer.create_date.example in body must be of type date-time: "float64"'
withContinueOnErrors: true
isRegexp: false
- message: 'definitions.customer.email.example in body must be of type email: "float64"'
withContinueOnErrors: true
isRegexp: false
- message: 'definitions.customer.id.example in body must be of type uuid: "float64"'
withContinueOnErrors: true
isRegexp: false
- message: 'definitions.customer2.example.create_date in body must be of type date-time: "bad-date"'
withContinueOnErrors: true
isRegexp: false
- message: 'definitions.customer2.example.id in body must be of type uuid: "mycustomer"'
withContinueOnErrors: true
isRegexp: false
- message: 'example value for customer_id in path does not validate its schema'
withContinueOnErrors: true
isRegexp: false
- message: '/v1/broker/{customer_id}.examples.id in body must be of type uuid: "mycustomer"'
withContinueOnErrors: true
isRegexp: false
- message: '/v1/broker/{customer_id}.examples.create_date in body must be of type date-time: "bad-date"'
withContinueOnErrors: true
isRegexp: false
- message: 'customer_id in path must be of type uuid: "xyz"'
withContinueOnErrors: true
isRegexp: false
- message: '200.email.example in body must be of type email: "float64"'
withContinueOnErrors: true
isRegexp: false
- message: '200.example.create_date in body must be of type date-time: "bad-date"'
withContinueOnErrors: true
isRegexp: false
- message: '200.example.id in body must be of type uuid: "mycustomer"'
withContinueOnErrors: true
isRegexp: false
- message: '200.create_date.example in body must be of type date-time: "float64"'
withContinueOnErrors: true
isRegexp: false
- message: '200.id.example in body must be of type uuid: "float64"'
withContinueOnErrors: true
isRegexp: false
- message: 'in operation "", example value in response 200 does not validate its schema'
withContinueOnErrors: true
isRegexp: false
fixture-1238.yaml:
comment: ""
todo: ""
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: definitions.RRSets in body must be of type array
withContinueOnErrors: false
isRegexp: false
expectedWarnings: []
fixture-1243-2.yaml:
comment: ""
todo: ""
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: path param "{loadBalancerId}" has no parameter definition
withContinueOnErrors: false
isRegexp: false
expectedWarnings: []
fixture-1243-3.yaml:
comment: ""
todo: ""
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: '"paths./loadBalancers/{loadBalancerId}/backendSets.get.parameters" must
validate one and only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: 'in operation "ListBackendSets",path param "loadBalancerId" must be declared
as required'
withContinueOnErrors: true
isRegexp: false
- message: 'paths./loadBalancers/{loadBalancerId}/backendSets.get.parameters.in in body should be one of [header]'
withContinueOnErrors: false
isRegexp: false
expectedWarnings: []
fixture-1243-4.yaml:
comment: Check garbled path strings
todo: ""
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: '"paths./loadBalancers/{aLotOfLoadBalancerIds}/backendSets.get.parameters"
must validate one and only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./loadBalancers/{aLotOfLoadBalancerIds}/backendSets.get.parameters.in in body is required'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./loadBalancers/{aLotOfLoadBalancerIds}/backendSets.get.parameters.schema in body is required'
withContinueOnErrors: false
isRegexp: false
- message: 'paths./loadBalancers/{aLotOfLoadBalancerIds}/backendSets.get.parameters.type in body is a forbidden property'
withContinueOnErrors: false
isRegexp: false
- message: path param "{aLotOfLoadBalancerIds}" has no parameter definition
withContinueOnErrors: true
isRegexp: false
- message: path /loadBalancers/{aLotOfLoadBalancerIds}/backendSets overlaps with
/loadBalancers/{loadBalancerId}/backendSets
withContinueOnErrors: true
isRegexp: false
- message: path param "{sid }" has no parameter definition
withContinueOnErrors: true
isRegexp: false
- message: path param "sid" is not present in path "/othercheck/{si/d}warnMe"
withContinueOnErrors: true
isRegexp: false
- message: path param "sid" is not present in path "/othercheck/{sid }/warnMe"
withContinueOnErrors: true
isRegexp: false
expectedWarnings:
- message: in path "/othercheck/{sid }/warnMe", param "{sid }" contains {,} or white
space. Albeit not stricly illegal, this is probably no what you want
withContinueOnErrors: true
isRegexp: false
- message: path stripped from path parameters /othercheck/{X/warnMe contains {,}
or white space. This is probably no what you want.
withContinueOnErrors: true
isRegexp: false
- message: path stripped from path parameters /othercheck/{si/d}warnMe contains
{,} or white space. This is probably no what you want.
withContinueOnErrors: true
isRegexp: false
fixture-1243-5.json:
comment: ""
todo: ""
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: path param "{sid}" has no parameter definition
withContinueOnErrors: false
isRegexp: false
- message: path param "{sid" is not present in path "/othercheck/{{sid}/warnMe"
withContinueOnErrors: false
isRegexp: false
- message: path param "sid" is not present in path "/othercheck/{si/d}warnMe"
withContinueOnErrors: false
isRegexp: false
- message: path /loadBalancers/{aLotOfLoadBalancerIds}/backendSets overlaps with
/loadBalancers/{loadBalancerId}/backendSets
withContinueOnErrors: false
isRegexp: false
expectedWarnings:
- message: in path "/othercheck/{sid }/warnMe", param "{sid }" contains {,} or white
space. Albeit not stricly illegal, this is probably no what you want
withContinueOnErrors: false
isRegexp: false
- message: path stripped from path parameters /othercheck/{X/warnMe contains {,}
or white space. This is probably no what you want.
withContinueOnErrors: false
isRegexp: false
- message: path stripped from path parameters /othercheck/{si/d}warnMe contains
{,} or white space. This is probably no what you want.
withContinueOnErrors: false
isRegexp: false
fixture-1243-5.yaml:
comment: ""
todo: ""
expectedLoadError: false
expectedValid: false
expectedMessages:
#- message: '"paths./loadBalancers/{aLotOfLoadBalancerIds}/backendSets.get.parameters"
# must validate one and only one schema (oneOf). Found none valid'
# withContinueOnErrors: false
# isRegexp: false
#- message: '"paths./othercheck/{{sid}/warnMe.get.parameters" must validate one and
# only one schema (oneOf). Found none valid'
# withContinueOnErrors: false
# isRegexp: false
#- message: '"paths./othercheck/{sid }/warnMe.get.parameters" must validate one and
# only one schema (oneOf). Found none valid'
# withContinueOnErrors: false
# isRegexp: false
#- message: '"paths./othercheck/{si/d}warnMe.get.parameters" must validate one and
# only one schema (oneOf). Found none valid'
# withContinueOnErrors: false
# isRegexp: false
- message: 'path param "sid" is not present in path "/othercheck/{si/d}warnMe"'
withContinueOnErrors: false
isRegexp: false
- message: 'path param "{sid" is not present in path "/othercheck/{{sid}/warnMe"'
withContinueOnErrors: false
isRegexp: false
#- message: path param "{aLotOfLoadBalancerIds}" has no parameter definition
# withContinueOnErrors: true
# isRegexp: false
- message: path param "{sid}" has no parameter definition
withContinueOnErrors: false
isRegexp: false
#- message: path param "{sid }" has no parameter definition
# withContinueOnErrors: true
# isRegexp: false
- message: path /loadBalancers/{aLotOfLoadBalancerIds}/backendSets overlaps with
/loadBalancers/{loadBalancerId}/backendSets
withContinueOnErrors: false
isRegexp: false
expectedWarnings:
- message: in path "/othercheck/{sid }/warnMe", param "{sid }" contains {,} or white
space. Albeit not stricly illegal, this is probably no what you want
withContinueOnErrors: false
isRegexp: false
- message: path stripped from path parameters /othercheck/{X/warnMe contains {,}
or white space. This is probably no what you want.
withContinueOnErrors: false
isRegexp: false
- message: path stripped from path parameters /othercheck/{si/d}warnMe contains
{,} or white space. This is probably no what you want.
withContinueOnErrors: false
isRegexp: false
fixture-1243-good.yaml:
comment: ""
todo: ""
expectedLoadError: false
expectedValid: true
expectedMessages: []
expectedWarnings: []
fixture-1243.yaml:
comment: ""
todo: ""
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: '"paths./loadBalancers/{loadBalancerId}/backendSets.get.responses.200"
must validate one and only one schema (oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: paths./loadBalancers/{loadBalancerId}/backendSets.get.responses.200.headers.opc-response-id.$ref
in body is a forbidden property
withContinueOnErrors: false
isRegexp: false
- message: paths./loadBalancers/{loadBalancerId}/backendSets.get.responses.200.headers.opc-response-id.type
in body is required
withContinueOnErrors: false
isRegexp: false
- message: path param "{loadBalancerId}" has no parameter definition
withContinueOnErrors: true
isRegexp: false
- message: 'in "paths./loadBalancers/{loadBalancerId}/backendSets.get.responses.200":
$ref are not allowed in headers. In context for header "opc-response-id", one
may not use $ref=":#/x-descriptions/opc-response-id"'
withContinueOnErrors: false
isRegexp: false
expectedWarnings: []
fixture-1289-donotload.json:
comment: ""
todo: ""
expectedLoadError: true
expectedValid: false
expectedMessages:
- message: .*yaml:.+
withContinueOnErrors: false
isRegexp: true
expectedWarnings: []
fixture-1289-donotload.yaml:
comment: ""
todo: ""
expectedLoadError: true
expectedValid: false
expectedMessages:
- message: .*yaml:.+
withContinueOnErrors: false
isRegexp: true
expectedWarnings: []
fixture-1289-good.yaml:
comment: ""
todo: ""
expectedLoadError: false
expectedValid: true
expectedMessages: []
expectedWarnings: []
fixture-1289.yaml:
comment: ""
todo: ""
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: items in definitions.getSomeIds.properties.someIds is required
withContinueOnErrors: false
isRegexp: false
expectedWarnings: []
fixture-collisions.yaml:
comment: A supplement scenario for uniqueness tests in paths, operations, parameters
todo: ""
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: '"paths./bigbody/get.get.parameters" must validate one and only one schema
(oneOf). Found none valid'
withContinueOnErrors: false
isRegexp: false
- message: paths./dupparam/get.get.parameters in body shouldn't contain duplicates
withContinueOnErrors: false
isRegexp: false
- message: paths./bigbody/get.get.parameters.in in body should be one of [header]
withContinueOnErrors: false
isRegexp: false
- message: 'operation "ope2" has more than 1 body param: ["loadBalancerId2" "loadBalancerId3"]'
withContinueOnErrors: true
isRegexp: false
- message: '"ope6" is defined 2 times'
withContinueOnErrors: true
isRegexp: false
- message: '"ope5" is defined 2 times'
withContinueOnErrors: true
isRegexp: false
- message: path /duplpath/{id1}/get overlaps with /duplpath/{id2}/get
withContinueOnErrors: true
isRegexp: false
- message: duplicate parameter name "id2" for "query" in operation "ope7"
withContinueOnErrors: true
isRegexp: false
- message: 'params in path "/loadBalancers/{loadBalancerId}/backendSets/{loadBalancerId}/get"
must be unique: "{loadBalancerId}" conflicts with "{loadBalancerId}"'
withContinueOnErrors: true
isRegexp: false
# with systematic param resolution, we get more errors like this one (body and type: string)
- message: 'invalid definition for parameter loadBalancerId2 in body in operation "ope2"'
withContinueOnErrors: true
isRegexp: false
- message: 'invalid definition for parameter loadBalancerId3 in body in operation "ope2"'
withContinueOnErrors: true
isRegexp: false
expectedWarnings: []
fixture-constraints-on-numbers.yaml:
comment: A supplement scenario for native vs float-based constraint verifications
on integers (multipleOf,maximum, minimum).
todo: This scenario supports current checks, that is for constraints on schemas
with a default value only. It should be generalized (issue#581) and also for example
values (issue#1231)
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: default value for param1 in query does not validate its schema
withContinueOnErrors: false
isRegexp: false
- message: default value for param2 in query does not validate its schema
withContinueOnErrors: false
isRegexp: false
- message: default value for param3 in query does not validate its schema
withContinueOnErrors: false
isRegexp: false
- message: default value for param4 in query does not validate its schema
withContinueOnErrors: false
isRegexp: false
- message: default value for param5 in query does not validate its schema
withContinueOnErrors: false
isRegexp: false
- message: default value for param6 in query does not validate its schema
withContinueOnErrors: false
isRegexp: false
- message: default value for param7 in query does not validate its schema
withContinueOnErrors: false
isRegexp: false
- message: default value for param8 in query does not validate its schema
withContinueOnErrors: false
isRegexp: false
# Note how value has been implicitely converted to fload64
- message: param1 in query should be a multiple of 2.147483648e+09
withContinueOnErrors: false
isRegexp: false
- message: MultipleOf value must be of type integer with format int32 in param1
withContinueOnErrors: false
isRegexp: false
- message: MultipleOf value must be of type integer with format int32 in param2
withContinueOnErrors: false
isRegexp: false
- message: Checked value must be of type integer with format int32 in param2
withContinueOnErrors: false
isRegexp: false
- message: Checked value must be of type integer with format int32 in param3
withContinueOnErrors: false
isRegexp: false
- message: param3 in query should be a multiple of 10
withContinueOnErrors: false
isRegexp: false
- message: Checked value must be of type integer with format int32 in param4
withContinueOnErrors: false
isRegexp: false
- message: Checked value must be of type integer with format int32 in param5
withContinueOnErrors: false
isRegexp: false
# Note how value has been implicitely converted to fload64
- message: param5 in query should be less than or equal to 2.147483647e+09
withContinueOnErrors: false
isRegexp: false
- message: Checked value must be of type integer with format uint32 in param6
withContinueOnErrors: false
isRegexp: false
- message: Checked value must be of type integer with format int32 in param7
withContinueOnErrors: false
isRegexp: false
- message: Checked value must be of type integer with format uint32 in param8
withContinueOnErrors: false
isRegexp: false
# Note how value has been implicitely converted to fload64
- message: param8 in query should be greater than or equal to 2.147483647e+09
withContinueOnErrors: false
isRegexp: false
expectedWarnings:
#- message: param8 in query has a default but no valid schema
# withContinueOnErrors: false
# isRegexp: false
fixture-invalid-example-property.yaml:
comment:
todo:
expectedLoadError: false
expectedValid: true
expectedMessages: []
expectedWarnings:
- message: example value for getSomeIds in body does not validate its schema
withContinueOnErrors: false
isRegexp: false
- message: 'getSomeIds.id.example in body must be of type number: "string"'
withContinueOnErrors: false
isRegexp: false
fixture-valid-example-property.yaml:
comment:
todo:
expectedLoadError: false
expectedValid: true
expectedMessages: []
expectedWarnings: []
petstore-expanded.json:
comment: Fail Ref expansion in ContinueOnErrors mode panics
todo:
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: invalid ref "pet"
withContinueOnErrors: false
isRegexp: false
# this one is a regexp since the full absolute path of the ref is reported
- message: 'could not resolve reference in newPet to \$ref pet: open .*[\/\\]pet:\s.+'
withContinueOnErrors: true
isRegexp: true
# with systematic response expansion, get more errors
- message: 'could not resolve reference in "\/pets".POST to \$ref .*: open .*:\s.+'
withContinueOnErrors: true
isRegexp: true
expectedWarnings: []
gentest.yaml:
comment: many parameters situations
todo:
expectedLoadError: false
expectedValid: true
expectedMessages: []
expectedWarnings:
- message: deepNested1 in query has a default value and is required as parameter
withContinueOnErrors: false
isRegexp: false
- message: queryParam2 in query has a default value and is required as parameter
withContinueOnErrors: false
isRegexp: false
gentest2.yaml:
comment: many parameters situations with default values
todo:
expectedLoadError: false
expectedValid: true
expectedMessages: []
expectedWarnings:
- message: deepNested1 in query has a default value and is required as parameter
withContinueOnErrors: false
isRegexp: false
- message: queryParam2 in query has a default value and is required as parameter
withContinueOnErrors: false
isRegexp: false
gentest3.yaml:
comment: default format in headers
todo:
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: 'in operation "gimmeLottaHeaders", default value in header sanity-check-header-2 for response 201 does not validate its schema'
withContinueOnErrors: false
isRegexp: false
- message: 'sanity-check-header-2 in response must be of type date: "x1972-01-01"'
withContinueOnErrors: false
isRegexp: false
expectedWarnings: []
fixture-all-formats.yaml:
comment: all custom formats as default values
todo:
expectedLoadError: false
expectedValid: false
expectedMessages:
# On parameters:
- message: 'default value for n01 in query does not validate its schema'
- message: 'default value for n03 in query does not validate its schema'
- message: 'default value for n04 in query does not validate its schema'
- message: 'default value for n05 in query does not validate its schema'
- message: 'default value for n06 in query does not validate its schema'
- message: 'default value for p01 in query does not validate its schema'
- message: 'default value for p02 in query does not validate its schema'
- message: 'default value for p03 in query does not validate its schema'
- message: 'default value for p04 in query does not validate its schema'
- message: 'default value for p05 in query does not validate its schema'
- message: 'default value for p06 in query does not validate its schema'
- message: 'default value for p07 in query does not validate its schema'
- message: 'default value for p08 in query does not validate its schema'
- message: 'default value for p09 in query does not validate its schema'
- message: 'default value for p10 in query does not validate its schema'
- message: 'default value for p11 in query does not validate its schema'
- message: 'default value for p12 in query does not validate its schema'
- message: 'default value for p13 in query does not validate its schema'
- message: 'default value for p14 in query does not validate its schema'
- message: 'default value for p15 in query does not validate its schema'
- message: 'default value for p16 in query does not validate its schema'
- message: 'default value for p17 in query does not validate its schema'
- message: 'default value for p18 in query does not validate its schema'
- message: 'default value for p20 in query does not validate its schema'
- message: 'default value for p21 in query does not validate its schema'
- message: 'default value for p22 in query does not validate its schema'
- message: 'default value for p23 in query does not validate its schema'
- message: 'n01 in query must be of type number: "string"'
- message: 'n03 in query must be of type int32: "float64"'
- message: 'n04 in query must be of type int64: "float64"'
- message: 'Checked value must be of type integer with format uint32 in n05'
- message: 'Checked value must be of type integer with format uint64 in n06'
- message: 'p01 in query must be of type byte: "ZWxpemFiZXRocG9zZXk"'
- message: 'p02 in query must be of type creditcard: "4111-1X11-1111-1111"'
- message: 'p03 in query must be of type date: "1970-13-01"'
- message: 'p04 in query must be of type date-time: "1963-13-19T08:30:06.283185Z"'
- message: 'p05 in query must be of type duration: "three weeks"'
- message: 'p06 in query must be of type email: "joe.bloggs-example.com"'
- message: 'p07 in query must be of type hexcolor: "xFFFFFF"'
- message: 'p08 in query must be of type hostname: "not_a_valid_hostname"'
- message: 'p09 in query must be of type ipv4: "192.168.0.256"'
- message: 'p10 in query must be of type ipv6: "o::1"'
- message: 'p11 in query must be of type isbn: "abc-0321751043"'
- message: 'p12 in query must be of type isbn10: "abc-0321751043"'
- message: 'p13 in query must be of type isbn13: "978|3401013190"'
- message: 'p14 in query must be of type mac: "01:02:03:04:05:06:07"'
- message: 'p15 in query must be of type bsonobjectid: "x07f1f77bcf86cd799439011"'
- message: 'p16 in query must be of type password: "float64"'
- message: 'p17 in query must be of type rgbcolor: "rgb(100,100)"'
- message: 'p18 in query must be of type ssn: "111-11111"'
- message: 'p20 in query must be of type uuid: "a8098c1a+f86e+11da+bd1a+00112444be1e"'
- message: 'p21 in query must be of type uuid3: "bcd02e22+68f0+3046+a512+327cca9def8f"'
- message: 'p22 in query must be of type uuid4: "025b0d74+00a2+4048+bf57+227c5111bb34"'
- message: 'p23 in query must be of type uuid5: "886313e1+3b8a+5372+9b90+0c9aee199e5d"'
# On schema:
- message: 'definitions.allformats-bad.prop01.default in body must be of type byte: "ZWxpemFiZXRocG9zZXk"'
- message: 'definitions.allformats-bad.prop02.default in body must be of type creditcard: "4111-1111-1111-111K"'
- message: 'definitions.allformats-bad.prop03.default in body must be of type date: "1970-01-32"'
- message: 'definitions.allformats-bad.prop04.default in body must be of type date-time: "1963-06-19T99:30:06.283185Z"'
- message: 'definitions.allformats-bad.prop05.default in body must be of type duration: "weeks"'
- message: 'definitions.allformats-bad.prop06.default in body must be of type email: "joe.bloggs-example.com"'
- message: 'definitions.allformats-bad.prop07.default in body must be of type hexcolor: "float64"'
- message: 'definitions.allformats-bad.prop08.default in body must be of type hostname: "---invalid-hostname---"'
- message: 'definitions.allformats-bad.prop09.default in body must be of type ipv4: "192.2.0.1.45"'
- message: 'definitions.allformats-bad.prop10.default in body must be of type ipv6: "x::1"'
- message: 'definitions.allformats-bad.prop11.default in body must be of type isbn: "X0321751043"'
- message: 'definitions.allformats-bad.prop12.default in body must be of type isbn10: "X0321751043"'
- message: 'definitions.allformats-bad.prop13.default in body must be of type isbn13: "X978 3401013190"'
- message: 'definitions.allformats-bad.prop14.default in body must be of type mac: "X1:02:03:04:05:06"'
- message: 'definitions.allformats-bad.prop15.default in body must be of type bsonobjectid: "X507f1f77bcf86cd799439011"'
- message: 'definitions.allformats-bad.prop16.default in body must be of type password: "float64"'
- message: 'definitions.allformats-bad.prop17.default in body must be of type rgbcolor: "gb(100,100,100)"'
- message: 'definitions.allformats-bad.prop18.default in body must be of type ssn: "Z111-11-1111"'
- message: 'definitions.allformats-bad.prop20.default in body must be of type uuid: "a8098c1a+f86e+11da+bd1a+00112444be1e"'
- message: 'definitions.allformats-bad.prop21.default in body must be of type uuid3: "bcd02e22+68f0+3046+a512+327cca9def8f"'
- message: 'definitions.allformats-bad.prop22.default in body must be of type uuid4: "025b0d74+00a2+4048+bf57+227c5111bb34"'
- message: 'definitions.allformats-bad.prop23.default in body must be of type uuid5: "886313e1+3b8a+5372+9b90+0c9aee199e5d"'
- message: 'definitions.allformats-bad.propn01.default in body must be of type number: "string"'
- message: 'definitions.allformats-bad.propn02.default in body must be of type number: "string"'
- message: 'definitions.allformats-bad.propn03.default in body must be of type int32: "float64"'
- message: 'definitions.allformats-bad.propn04.default in body must be of type int64: "float64"'
- message: 'definitions.allformats-bad.propn05.default in body must be of type uint32: "float64"'
- message: 'definitions.allformats-bad.propn06.default in body must be of type uint64: "float64"'
# More messages with systematic response expansion
- message: '200.prop01.default in body must be of type byte: "ZWxpemFiZXRocG9zZXk"'
- message: '200.prop02.default in body must be of type creditcard: "4111-1111-1111-111K"'
- message: '200.prop03.default in body must be of type date: "1970-01-32"'
- message: '200.prop04.default in body must be of type date-time: "1963-06-19T99:30:06.283185Z"'
- message: '200.prop05.default in body must be of type duration: "weeks"'
- message: '200.prop06.default in body must be of type email: "joe.bloggs-example.com"'
- message: '200.prop07.default in body must be of type hexcolor: "float64"'
- message: '200.prop08.default in body must be of type hostname: "---invalid-hostname---"'
- message: '200.prop09.default in body must be of type ipv4: "192.2.0.1.45"'
- message: '200.prop10.default in body must be of type ipv6: "x::1"'
- message: '200.prop11.default in body must be of type isbn: "X0321751043"'
- message: '200.prop12.default in body must be of type isbn10: "X0321751043"'
- message: '200.prop13.default in body must be of type isbn13: "X978 3401013190"'
- message: '200.prop14.default in body must be of type mac: "X1:02:03:04:05:06"'
- message: '200.prop15.default in body must be of type bsonobjectid: "X507f1f77bcf86cd799439011"'
- message: '200.prop16.default in body must be of type password: "float64"'
- message: '200.prop17.default in body must be of type rgbcolor: "gb(100,100,100)"'
- message: '200.prop18.default in body must be of type ssn: "Z111-11-1111"'
- message: '200.prop20.default in body must be of type uuid: "a8098c1a+f86e+11da+bd1a+00112444be1e"'
- message: '200.prop21.default in body must be of type uuid3: "bcd02e22+68f0+3046+a512+327cca9def8f"'
- message: '200.prop22.default in body must be of type uuid4: "025b0d74+00a2+4048+bf57+227c5111bb34"'
- message: '200.prop23.default in body must be of type uuid5: "886313e1+3b8a+5372+9b90+0c9aee199e5d"'
- message: '200.propn01.default in body must be of type number: "string"'
- message: '200.propn02.default in body must be of type number: "string"'
- message: '200.propn03.default in body must be of type int32: "float64"'
- message: '200.propn04.default in body must be of type int64: "float64"'
- message: '200.propn05.default in body must be of type uint32: "float64"'
- message: '200.propn06.default in body must be of type uint64: "float64"'
- message: 'in operation "op2", default value in response 200 does not validate its schema'
expectedWarnings: []
fixture-bad-response.yaml:
comment: $ref sibling in response
todo:
expectedLoadError: false
expectedValid: false
expectedMessages:
- message: '"paths./fixture.get.responses.200" must validate one and only one schema (oneOf). Found none valid'
- message: 'paths./fixture.get.responses.200.$ref in body is a forbidden property'
expectedWarnings:
- message: 'definition "#/definitions/someIds" is not used anywhere'
withContinueOnErrors: true
|