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
|
/******************************************************************************
* Copyright (c) 2000-2021 Ericsson Telecom AB
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
*
* Contributors:
* Bence Janos Szabo
* Ujhelyi, Gergo
*
******************************************************************************/
module TemplatePatternRefTest {
type component EmptyCT {}
modulepar charstring m_r := "r";
type charstring MyCharRange ("a".."z");
type charstring MyCharList ("a", "z");
type MyCharList MyCharList2 ("a");
type MyCharList2 MyCharList3;
type MyCharRange MyCharRange2 ("b".."g");
type MyCharRange2 MyCharRange3;
type MyCharRange3 MyCharRange4;
type charstring MyCharRangeNormal;
type MyCharRangeNormal MyCharRangeNormal2;
const charstring c_myCharR := "r";
template charstring t_char_temp := "r";
template charstring mw_myTempPatt1 := pattern "\N{c_myCharR}";
template charstring mw_myTempPatt2 := pattern "\N{t_char_temp}";
template charstring mw_myTempPatt4 := pattern "\N{m_r}";
testcase tc_single_char() runs on EmptyCT {
if (not match("r", mw_myTempPatt1)) {
setverdict(fail);
}
if (match("s", mw_myTempPatt1)) {
setverdict(fail);
}
if (not match("r", mw_myTempPatt2)) {
setverdict(fail);
}
if (match("s", mw_myTempPatt2)) {
setverdict(fail);
}
if (not match("r", mw_myTempPatt4)) {
setverdict(fail);
}
if (match("s", mw_myTempPatt4)) {
setverdict(fail);
}
setverdict(pass);
}
template charstring mw_myTempPatt5 := pattern "v\N{c_myCharR}v";
template charstring mw_myTempPatt6 := pattern "v\N{t_char_temp}v";
template charstring mw_myTempPatt8 := pattern "v\N{m_r}v";
testcase tc_single_char_middle() runs on EmptyCT {
if (not match("vrv", mw_myTempPatt5)) {
setverdict(fail);
}
if (match("vsv", mw_myTempPatt5)) {
setverdict(fail);
}
if (not match("vrv", mw_myTempPatt6)) {
setverdict(fail);
}
if (match("vsv", mw_myTempPatt6)) {
setverdict(fail);
}
if (not match("vrv", mw_myTempPatt8)) {
setverdict(fail);
}
if (match("vsv", mw_myTempPatt8)) {
setverdict(fail);
}
setverdict(pass);
}
template charstring mw_myTempPatt10 := pattern "\N{MyCharRange}";
template charstring mw_myTempPatt11 := pattern "\N{MyCharRange2}";
template charstring mw_myTempPatt12 := pattern "\N{MyCharRange3}";
template charstring mw_myTempPatt13 := pattern "\N{MyCharRange4}";
template charstring mw_myTempPatt14 := pattern "\N{MyCharRangeNormal}";
template charstring mw_myTempPatt20 := pattern "\N{MyCharRangeNormal2}";
testcase tc_type_range() runs on EmptyCT {
if (not match("a", mw_myTempPatt10)) {
setverdict(fail);
}
if (not match("r", mw_myTempPatt10)) {
setverdict(fail);
}
if (not match("z", mw_myTempPatt10)) {
setverdict(fail);
}
if (match("aa", mw_myTempPatt10)) {
setverdict(fail);
}
if (not match("c", mw_myTempPatt11)) {
setverdict(fail);
}
if (match("aa", mw_myTempPatt11)) {
setverdict(fail);
}
if (not match("c", mw_myTempPatt12)) {
setverdict(fail);
}
if (match("y", mw_myTempPatt12)) {
setverdict(fail);
}
if (match("a", mw_myTempPatt12)) {
setverdict(fail);
}
if (not match("b", mw_myTempPatt12)) {
setverdict(fail);
}
if (not match("g", mw_myTempPatt12)) {
setverdict(fail);
}
if (match("h", mw_myTempPatt12)) {
setverdict(fail);
}
if (not match("c", mw_myTempPatt13)) {
setverdict(fail);
}
if (match("y", mw_myTempPatt13)) {
setverdict(fail);
}
if (not match("g", mw_myTempPatt14)) { // any char
setverdict(fail);
}
if (match("gg", mw_myTempPatt14)) {
setverdict(fail);
}
if (not match("g", mw_myTempPatt20)) { // any char
setverdict(fail);
}
if (match("gg", mw_myTempPatt20)) {
setverdict(fail);
}
setverdict(pass);
}
template charstring mw_myTempPatt15 := pattern "v\N{MyCharRange}v";
template charstring mw_myTempPatt16 := pattern "v\N{MyCharRange2}v";
template charstring mw_myTempPatt17 := pattern "v\N{MyCharRange3}v";
template charstring mw_myTempPatt18 := pattern "v\N{MyCharRange4}v";
template charstring mw_myTempPatt19 := pattern "v\N{MyCharRangeNormal}v";
template charstring mw_myTempPatt21 := pattern "v\N{MyCharRangeNormal2}v";
testcase tc_type_range_middle() runs on EmptyCT {
if (not match("vrv", mw_myTempPatt15)) {
setverdict(fail);
}
if (match("vaav", mw_myTempPatt15)) {
setverdict(fail);
}
if (not match("vcv", mw_myTempPatt16)) {
setverdict(fail);
}
if (match("vaav", mw_myTempPatt16)) {
setverdict(fail);
}
if (not match("vcv", mw_myTempPatt17)) {
setverdict(fail);
}
if (match("vyv", mw_myTempPatt17)) {
setverdict(fail);
}
if (not match("vcv", mw_myTempPatt18)) {
setverdict(fail);
}
if (match("vyv", mw_myTempPatt18)) {
setverdict(fail);
}
if (not match("vgv", mw_myTempPatt19)) { // any char
setverdict(fail);
}
if (match("vggv", mw_myTempPatt19)) {
setverdict(fail);
}
if (not match("vgv", mw_myTempPatt21)) { // any char
setverdict(fail);
}
if (match("vggv", mw_myTempPatt21)) {
setverdict(fail);
}
setverdict(pass);
}
template charstring mw_myTempPatt22 := pattern "\N{MyCharList}";
template charstring mw_myTempPatt23 := pattern "\N{MyCharList2}";
template charstring mw_myTempPatt24 := pattern "\N{MyCharList3}";
testcase tc_type_list() runs on EmptyCT {
if (not match("a", mw_myTempPatt22)) {
setverdict(fail);
}
if (not match("z", mw_myTempPatt22)) {
setverdict(fail);
}
if (match("g", mw_myTempPatt22)) {
setverdict(fail);
}
if (not match("a", mw_myTempPatt23)) {
setverdict(fail);
}
if (match("z", mw_myTempPatt23)) {
setverdict(fail);
}
if (not match("a", mw_myTempPatt24)) {
setverdict(fail);
}
if (match("z", mw_myTempPatt24)) {
setverdict(fail);
}
setverdict(pass);
}
template charstring mw_myTempPatt25 := pattern "v\N{MyCharList}v";
template charstring mw_myTempPatt26 := pattern "v\N{MyCharList2}v";
template charstring mw_myTempPatt27 := pattern "v\N{MyCharList3}v";
testcase tc_type_list_middle() runs on EmptyCT {
if (not match("vav", mw_myTempPatt25)) {
setverdict(fail);
}
if (not match("vzv", mw_myTempPatt25)) {
setverdict(fail);
}
if (match("vgv", mw_myTempPatt26)) {
setverdict(fail);
}
if (not match("vav", mw_myTempPatt26)) {
setverdict(fail);
}
if (match("vzv", mw_myTempPatt26)) {
setverdict(fail);
}
if (not match("vav", mw_myTempPatt27)) {
setverdict(fail);
}
if (match("vzv", mw_myTempPatt27)) {
setverdict(fail);
}
setverdict(pass);
}
//===========================================================================//
modulepar universal charstring m_Unir := "r";
type universal charstring MyUniCharRange ("a".."z");
type universal charstring MyUniCharList ("a", "z", char(1,2,3,4));
type MyUniCharList MyUniCharList2 ("a");
type MyUniCharList2 MyUniCharList3;
type MyUniCharRange MyUniCharRange2 ("b".."g");
type MyUniCharRange2 MyUniCharRange3;
type MyUniCharRange3 MyUniCharRange4;
type universal charstring MyUniCharRangeNormal;
type MyUniCharRangeNormal MyUniCharRangeNormal2;
const universal charstring c_myUniCharR := "r";
template universal charstring t_unichar_temp := "r";
template universal charstring unimw_myTempPatt1 := pattern "\N{c_myUniCharR}";
template universal charstring unimw_myTempPatt2 := pattern "\N{t_unichar_temp}";
template universal charstring unimw_myTempPatt4 := pattern "\N{m_Unir}";
testcase tc_single_unichar() runs on EmptyCT {
var universal charstring str := "r";
if (not match(str, unimw_myTempPatt1)) {
setverdict(fail);
}
str := "s";
if (match(str, unimw_myTempPatt1)) {
setverdict(fail);
}
str := "r";
if (not match(str, unimw_myTempPatt2)) {
setverdict(fail);
}
str := "s";
if (match(str, unimw_myTempPatt2)) {
setverdict(fail);
}
str := "r";
if (not match(str, unimw_myTempPatt4)) {
setverdict(fail);
}
str := "s";
if (match(str, unimw_myTempPatt4)) {
setverdict(fail);
}
setverdict(pass);
}
template universal charstring unimw_myTempPatt5 := pattern "v\N{c_myUniCharR}v";
template universal charstring unimw_myTempPatt6 := pattern "v\N{t_unichar_temp}v";
template universal charstring unimw_myTempPatt8 := pattern "v\N{m_Unir}v";
testcase tc_single_unichar_middle() runs on EmptyCT {
var universal charstring str := "vrv";
if (not match(str, unimw_myTempPatt5)) {
setverdict(fail);
}
str := "vsv";
if (match(str, unimw_myTempPatt5)) {
setverdict(fail);
}
str := "vrv";
if (not match(str, unimw_myTempPatt6)) {
setverdict(fail);
}
str := "vsv";
if (match(str, unimw_myTempPatt6)) {
setverdict(fail);
}
str := "vrv";
if (not match(str, unimw_myTempPatt8)) {
setverdict(fail);
}
str := "vsv";
if (match(str, unimw_myTempPatt8)) {
setverdict(fail);
}
setverdict(pass);
}
template universal charstring unimw_myTempPatt10 := pattern "\N{MyUniCharRange}";
template universal charstring unimw_myTempPatt11 := pattern "\N{MyUniCharRange2}";
template universal charstring unimw_myTempPatt12 := pattern "\N{MyUniCharRange3}";
template universal charstring unimw_myTempPatt13 := pattern "\N{MyUniCharRange4}";
template universal charstring unimw_myTempPatt14 := pattern "\N{MyUniCharRangeNormal}";
template universal charstring unimw_myTempPatt20 := pattern "\N{MyUniCharRangeNormal2}";
testcase tc_unitype_range() runs on EmptyCT {
var universal charstring str := "r";
if (not match(str, unimw_myTempPatt10)) {
setverdict(fail);
}
str := "aa";
if (match(str, unimw_myTempPatt10)) {
setverdict(fail);
}
str := "a";
if (not match(str, unimw_myTempPatt10)) {
setverdict(fail);
}
str := "z";
if (not match(str, unimw_myTempPatt10)) {
setverdict(fail);
}
str := "c";
if (not match(str, unimw_myTempPatt11)) {
setverdict(fail);
}
str := "aa";
if (match(str, unimw_myTempPatt11)) {
setverdict(fail);
}
str := "c";
if (not match(str, unimw_myTempPatt12)) {
setverdict(fail);
}
str := "y";
if (match(str, unimw_myTempPatt12)) {
setverdict(fail);
}
str := "a";
if (match(str, unimw_myTempPatt12)) {
setverdict(fail);
}
str := "b";
if (not match(str, unimw_myTempPatt12)) {
setverdict(fail);
}
str := "g";
if (not match(str, unimw_myTempPatt12)) {
setverdict(fail);
}
str := "h";
if (match(str, unimw_myTempPatt12)) {
setverdict(fail);
}
str := "c";
if (not match(str, unimw_myTempPatt13)) {
setverdict(fail);
}
str := "y";
if (match(str, unimw_myTempPatt13)) {
setverdict(fail);
}
str := "g";
if (not match(str, unimw_myTempPatt14)) { // any char
setverdict(fail);
}
str := "gg";
if (match(str, unimw_myTempPatt14)) {
setverdict(fail);
}
str := "g";
if (not match(str, unimw_myTempPatt20)) { // any char
setverdict(fail);
}
str := "gg";
if (match(str, unimw_myTempPatt20)) {
setverdict(fail);
}
setverdict(pass);
}
template universal charstring unimw_myTempPatt15 := pattern "v\N{MyUniCharRange}v";
template universal charstring unimw_myTempPatt16 := pattern "v\N{MyUniCharRange2}v";
template universal charstring unimw_myTempPatt17 := pattern "v\N{MyUniCharRange3}v";
template universal charstring unimw_myTempPatt18 := pattern "v\N{MyUniCharRange4}v";
template universal charstring unimw_myTempPatt19 := pattern "v\N{MyUniCharRangeNormal}v";
template universal charstring unimw_myTempPatt21 := pattern "v\N{MyUniCharRangeNormal2}v";
testcase tc_unitype_range_middle() runs on EmptyCT {
var universal charstring str := "vrv";
if (not match(str, unimw_myTempPatt15)) {
setverdict(fail);
}
str := "vaav";
if (match(str, unimw_myTempPatt15)) {
setverdict(fail);
}
str := "vcv";
if (not match(str, unimw_myTempPatt16)) {
setverdict(fail);
}
str := "vaav";
if (match(str, unimw_myTempPatt16)) {
setverdict(fail);
}
str := "vcv";
if (not match(str, unimw_myTempPatt17)) {
setverdict(fail);
}
str := "vyv";
if (match(str, unimw_myTempPatt17)) {
setverdict(fail);
}
str := "vcv";
if (not match(str, unimw_myTempPatt18)) {
setverdict(fail);
}
str := "vyv";
if (match(str, unimw_myTempPatt18)) {
setverdict(fail);
}
str := "vgv";
if (not match(str, unimw_myTempPatt19)) { // any char
setverdict(fail);
}
str := "vggv";
if (match(str, unimw_myTempPatt19)) {
setverdict(fail);
}
str := "vgv";
if (not match(str, unimw_myTempPatt21)) { // any char
setverdict(fail);
}
str := "vggv";
if (match(str, unimw_myTempPatt21)) {
setverdict(fail);
}
setverdict(pass);
}
template universal charstring unimw_myTempPatt22 := pattern "\N{MyUniCharList}";
template universal charstring unimw_myTempPatt23 := pattern "\N{MyUniCharList2}";
template universal charstring unimw_myTempPatt24 := pattern "\N{MyUniCharList3}";
testcase tc_unitype_list() runs on EmptyCT {
var universal charstring str := "a";
if (not match(str, unimw_myTempPatt22)) {
setverdict(fail);
}
str := "z";
if (not match(str, unimw_myTempPatt22)) {
setverdict(fail);
}
str := char(1,2,3,4);
if (not match(str, unimw_myTempPatt22)) {
setverdict(fail);
}
str := "g";
if (match(str, unimw_myTempPatt22)) {
setverdict(fail);
}
str := "a";
if (not match(str, unimw_myTempPatt23)) {
setverdict(fail);
}
str := "z";
if (match(str, unimw_myTempPatt23)) {
setverdict(fail);
}
str := "a";
if (not match(str, unimw_myTempPatt24)) {
setverdict(fail);
}
str := "z";
if (match(str, unimw_myTempPatt24)) {
setverdict(fail);
}
setverdict(pass);
}
template universal charstring unimw_myTempPatt25 := pattern "v\N{MyUniCharList}v";
template universal charstring unimw_myTempPatt26 := pattern "v\N{MyUniCharList2}v";
template universal charstring unimw_myTempPatt27 := pattern "v\N{MyUniCharList3}v";
testcase tc_unitype_list_middle() runs on EmptyCT {
var universal charstring str := "vav";
if (not match(str, unimw_myTempPatt25)) {
setverdict(fail);
}
str := "vzv";
if (not match(str, unimw_myTempPatt25)) {
setverdict(fail);
}
str := "vgv";
if (match(str, unimw_myTempPatt26)) {
setverdict(fail);
}
str := "vav";
if (not match(str, unimw_myTempPatt26)) {
setverdict(fail);
}
str := "vzv";
if (match(str, unimw_myTempPatt26)) {
setverdict(fail);
}
str := "vav";
if (not match(str, unimw_myTempPatt27)) {
setverdict(fail);
}
str := "vzv";
if (match(str, unimw_myTempPatt27)) {
setverdict(fail);
}
setverdict(pass);
}
//===========================================================================//
template charstring t_char := pattern "\N{charstring}";
template universal charstring t_unichar := pattern "\N{universal charstring}";
testcase tc_special() runs on EmptyCT {
if (not match("s", t_char)) {
setverdict(fail);
}
if (match("ss", t_char)) {
setverdict(fail);
}
var universal charstring str := "s";
if (not match(str, t_unichar)) {
setverdict(fail);
}
str := "ss";
if (match(str, t_unichar)) {
setverdict(fail);
}
setverdict(pass);
}
//===========================================================================//
modulepar charstring m_charstring;
modulepar universal charstring m_unicharstring;
modulepar template charstring m_charstring_template;
modulepar template universal charstring m_unicharstring_template;
testcase tc_modulepar() runs on EmptyCT {
var template charstring t_chartemp := pattern "\N{m_charstring}";
if (not match("r", t_chartemp)) {
setverdict(fail);
}
if (match("s", t_chartemp)) {
setverdict(fail);
}
t_chartemp := pattern "\N{m_charstring_template}";
if (not match("r", t_chartemp)) {
setverdict(fail);
}
if (match("s", t_chartemp)) {
setverdict(fail);
}
var template universal charstring t_unichartemp := pattern "\N{m_unicharstring}";
var universal charstring str := "r";
if (not match(str, t_unichartemp)) {
setverdict(fail);
}
str := "s";
if (match(str, t_unichartemp)) {
setverdict(fail);
}
t_unichartemp := pattern "\N{m_unicharstring_template}";
str := "r";
if (not match(str, t_unichartemp)) {
setverdict(fail);
}
str := "s";
if (match(str, t_unichartemp)) {
setverdict(fail);
}
setverdict(pass);
}
// Values not known at compile time
testcase tc_variable() runs on EmptyCT {
var charstring loc_char := "r";
var universal charstring loc_unichar := "r";
var template charstring loc_chartemp := "r";
var template universal charstring loc_unichartemp := "r";
var template charstring t_chartemp := pattern "\N{loc_char}";
if (not match("r", t_chartemp)) {
setverdict(fail);
}
if (match("s", t_chartemp)) {
setverdict(fail);
}
var universal charstring str := "r";
var template universal charstring t_unichartemp := pattern "\N{loc_unichar}";
if (not match(str, t_unichartemp)) {
setverdict(fail);
}
str := "s";
if (match(str, t_unichartemp)) {
setverdict(fail);
}
t_chartemp := pattern "\N{loc_chartemp}";
if (not match("r", t_chartemp)) {
setverdict(fail);
}
if (match("s", t_chartemp)) {
setverdict(fail);
}
str := "r";
t_unichartemp := pattern "\N{loc_unichartemp}";
if (not match(str, t_unichartemp)) {
setverdict(fail);
}
str := "s";
if (match(str, t_unichartemp)) {
setverdict(fail);
}
setverdict(pass);
}
//===========================================================================//
const charstring c_a := "a";
template charstring t_b := "b";
type charstring CtoD ("c" .. "d");
type charstring EorF ("e", "f");
// param1 is "i", param2 is "j"
testcase tc_complex(charstring param1, template charstring param2) runs on EmptyCT {
var charstring loc_g := "g";
var template charstring t_h := "h";
var template charstring loc_pattern := pattern "A\N{c_a}\N{c_a}B\N{t_b}\N{t_b}\N{CtoD}\N{CtoD}\N{EorF}\N{EorF}\N{charstring}\N{loc_g}\N{t_h}\N{param1}\N{param1}\N{param2}\N{param2}";
var charstring str := "AaaBbbcdefYghiijj";
if (not match(str, loc_pattern)) {
setverdict(fail);
}
setverdict(pass);
}
const universal charstring c_1 := char(1,2,3,4);
template universal charstring t_2 := char(1,2,3,5);
type universal charstring FromTo (char(1,1,1,1) .. char(2,2,2,2));
type universal charstring Either (char(3,3,3,3), char(4,4,4,4));
// param1 is char(7,7,7,7), param2 is char(8,8,8,8)
testcase tc_complex_unichar(universal charstring param1, template universal charstring param2) runs on EmptyCT {
var universal charstring loc_3 := char(5,5,5,5);
var template universal charstring loc_4 := char(6,6,6,6);
var template universal charstring loc_pattern := pattern "A\N{c_1}\N{c_1}B\N{t_2}\N{t_2}\N{FromTo}\N{FromTo}\N{Either}\N{Either}\N{universal charstring}\N{loc_3}\N{loc_4}\N{param1}\N{param1}\N{param2}\N{param2}";
var universal charstring str := "A"& char(1,2,3,4) & char(1,2,3,4) & "B" & char(1,2,3,5) & char(1,2,3,5) & char (1,1,1,1) & char(2,2,2,2) & char (3,3,3,3) & char(4,4,4,4) & char(9,9,9,9) & char(5,5,5,5) & char(6,6,6,6) & char(7,7,7,7) & char(7,7,7,7) & char(8,8,8,8) & char(8,8,8,8);
if (not match(str, loc_pattern)) {
setverdict(fail);
}
setverdict(pass);
}
//===========================================================================//
modulepar charstring m_charstring_bad;
modulepar charstring m_charstring_bad2;
modulepar template charstring m_charstring_templ_bad;
modulepar template charstring m_charstring_templ_bad2;
modulepar universal charstring m_unicharstring_bad;
modulepar universal charstring m_unicharstring_bad2;
modulepar template universal charstring m_unicharstring_templ_bad;
modulepar template universal charstring m_unicharstring_templ_bad2;
//A notation of the form "\N{reference}", where reference is denoting a one-character-length template, constant,
//variable, formal parameter or module parameter, matches the character in the referenced value or template.
//If the reference cannot be resolved or if the referenced symbol is anything else than a template, constant, variable,
//formal parameter or module parameter containing a character string of length 1, an error shall be generated.
testcase tc_pattern_DTE() runs on EmptyCT {
// DTE tests with variables
var charstring charstr := "aa";
var template charstring dte_message := pattern "*Dynamic test case error: The length of the charstring must be of length one, when it is being referenced in a pattern with *";
@try {
var template charstring templ := pattern "\N{charstr}";
setverdict(fail, "Expected dynamic test case error when referencing a long string in pattern with \\N{charstr}");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass,match(msg, dte_message) )
}
}
charstr := ""; //size=1 expected
@try {
var template charstring templ := pattern "\N{charstr}";
setverdict(fail, "Expected dynamic test case error when referencing a long string in pattern with \\N{charstr} ");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass);
}
}
dte_message := pattern "*Dynamic test case error: The length of the universal charstring must be of length one, when it is being referenced in a pattern with*";
var universal charstring unicharstr := "aa";
@try {
var template universal charstring templ := pattern "\N{unicharstr}";
setverdict(fail, "Expected dynamic test case error when referencing a long string in pattern with \\N{unicharstr} ");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass);
}
}
unicharstr := "";
@try {
var template universal charstring templ := pattern "\N{unicharstr}";
setverdict(fail, "Expected dynamic test case error when referencing a long string in pattern with \\N{unicharstr} ");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass)
}
}
unicharstr := char(1,2,3,4) & char(1,2,3,3);
@try {
var template universal charstring templ := pattern "\N{unicharstr}";
setverdict(fail, "Expected dynamic test case error when referencing a long string in pattern with \\N{unicharstr} ");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
}
}
// DTE tests with templates
var template charstring charstrtempl := "aa";
dte_message := pattern "*Dynamic test case error: The length of the charstring must be of length one, when it is being referenced in a pattern with *";
@try {
var template charstring templ := pattern "\N{charstrtempl}";
setverdict(fail, "Expected dynamic test case error when referencing a long string in pattern with \\N{ref} ");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass)
}
}
charstrtempl := "";
@try {
var template charstring templ := pattern "\N{charstrtempl}";
setverdict(fail, "Expected dynamic test case error when referencing a long string in pattern with \\N{ref} ");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass)
}
}
dte_message := pattern "*Dynamic test case error: The length of the universal charstring must be of length one, when it is being referenced in a pattern with *";
var template universal charstring unicharstrtempl := "aa";
@try {
var template universal charstring templ := pattern "\N{unicharstrtempl}";
setverdict(fail, "Expected dynamic test case error when referencing a long string in pattern with \\N{ref} ");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass)
}
}
unicharstrtempl := "";
@try {
var template universal charstring templ := pattern "\N{unicharstrtempl}";
setverdict(fail, "Expected dynamic test case error when referencing a long string in pattern with \\N{ref} ");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass)
}
}
unicharstrtempl := char(1,2,3,4) & char(1,2,3,3);
@try {
var template universal charstring templ := pattern "\N{unicharstrtempl}";
setverdict(fail, "Expected dynamic test case error when referencing a long string in pattern with \\N{ref} ");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass)
}
}
// DTE tests with modulepar variables
dte_message := pattern "*Dynamic test case error: The length of the charstring must be of length one, when it is being referenced in a pattern with *";
@try {
var template charstring templ := pattern "\N{m_charstring_bad}";
setverdict(fail, "Expected dynamic test case error when referencing a long string in pattern with \\N{ref} ");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass)
}
}
@try {
var template charstring templ := pattern "\N{m_charstring_bad2}";
setverdict(fail, "Expected dynamic test case error when referencing a long string in pattern with \\N{ref} ");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass)
}
}
dte_message := pattern "*Dynamic test case error: The length of the universal charstring must be of length one, when it is being referenced in a pattern with *";
@try {
var template universal charstring templ := pattern "\N{m_unicharstring_bad}";
setverdict(fail, "Expected dynamic test case error when referencing a long string in pattern with \\N{ref} ");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass)
}
}
@try {
var template universal charstring templ := pattern "\N{m_unicharstring_bad2}";
setverdict(fail, "Expected dynamic test case error when referencing a long string in pattern with \\N{ref} ");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass)
}
}
// DTE tests with modulepar templates
dte_message := pattern "*Dynamic test case error: The length of the charstring must be of length one, when it is being referenced in a pattern with *";
@try {
var template charstring templ := pattern "\N{m_charstring_templ_bad}";
setverdict(fail, "Expected dynamic test case error when referencing a long string in pattern with \\N{ref} ");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass)
}
}
@try {
var template charstring templ := pattern "\N{m_charstring_templ_bad2}";
setverdict(fail, "Expected dynamic test case error when referencing a long string in pattern with \\N{ref} ");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass)
}
}
dte_message := pattern "*Dynamic test case error: The length of the universal charstring must be of length one, when it is being referenced in a pattern with *";
@try {
var template universal charstring templ := pattern "\N{m_unicharstring_templ_bad}";
setverdict(fail, "Expected dynamic test case error when referencing a long string in pattern with \\N{ref} ");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass)
}
}
@try {
var template universal charstring templ := pattern "\N{m_unicharstring_templ_bad2}";
setverdict(fail, "Expected dynamic test case error when referencing a long string in pattern with \\N{ref} ");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass)
}
}
// DTE when non value template used
dte_message := pattern "*Dynamic test case error: Only specific value template allowed in pattern reference with *";
@try {
var template universal charstring s := pattern "sdf";
var template universal charstring templ := pattern "\N{s}";
setverdict(fail, "Expected dynamic test case error when referencing a non value template in pattern with \\N{ref}");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass)
}
}
@try {
var template universal charstring s := ("a", "b");
var template universal charstring templ := pattern "\N{s}";
setverdict(fail, "Expected dynamic test case error when referencing a non value template in pattern with \\N{ref}");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass)
}
}
@try {
var template universal charstring s := *;
var template universal charstring templ := pattern "\N{s}";
setverdict(fail, "Expected dynamic test case error when referencing a non value template in pattern with \\N{ref}");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass)
}
}
@try {
var template universal charstring s := ?;
var template universal charstring templ := pattern "\N{s}";
setverdict(fail, "Expected dynamic test case error when referencing a non value template in pattern with \\N{ref} ");
}
@catch (msg) {
if (not match(msg, dte_message)) {
setverdict(fail, "Expected error: ", dte_message, ", got: ", msg);
} else {
setverdict(pass)
}
}
}
//============================================
//Based on a TitanSim example; written by Ujhelyi, Gergo
type record rc_tc2 {
integer id,
charstring compl_type
};
type record rc_tc1 {
charstring valami1,
rc_tc2 valami2
};
type rc_tc1 Myarrays[2];
testcase tc_perN_charstring_value() runs on EmptyCT {
var rc_tc1 v_refernce1 := {
valami1 := "abc",
valami2 := {
id := 1,
compl_type := "values"
}
};
var rc_tc1 v_refernce2 := {
valami1 := "def",
valami2 := {
id := 2,
compl_type := "values2"
}
};
var Myarrays rc_array := {v_refernce1, v_refernce2};
var template charstring t_refs := pattern "{rc_array[0].valami2.compl_type}";
if (match("values", t_refs)) {
setverdict(pass)
} else {
setverdict(fail)
}
}
control {
execute(tc_single_char());
execute(tc_single_char_middle());
execute(tc_type_range());
execute(tc_type_range_middle());
execute(tc_type_list());
execute(tc_type_list_middle());
execute(tc_single_unichar());
execute(tc_single_unichar_middle());
execute(tc_unitype_range());
execute(tc_unitype_range_middle());
execute(tc_unitype_list());
execute(tc_unitype_list_middle());
execute(tc_special());
execute(tc_modulepar());
execute(tc_variable());
execute(tc_complex("i", "j"));
execute(tc_complex_unichar(char(7,7,7,7), char(8,8,8,8)));
execute(tc_pattern_DTE());
execute(tc_perN_charstring_value());
}
}
|