ItsFsap_TestCases.ttcn3 194 KB
Newer Older
filatov's avatar
filatov committed
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
/**
 *  @author     ETSI / STF422_EETS
 *  @version    $URL:$
 *              $Id:$
 *  @desc       Fast service advertisement protocol (ISO 24102-5) test cases
 */
module ItsFsap_TestCases {
    
    // Libcommon
    import from LibCommon_Time all;
    import from LibCommon_VerdictControl all;
    import from LibCommon_Sync all;
    
    // LibIts
    import from CALMiitsscu language "ASN.1:1997" all;
    import from CALMmsap language "ASN.1:1997" {
        type 
            CommandRef, 
            MF_Request 
    };
    import from LibItsFntp_TypesAndValues {
        const c_portSam;
    };
    import from LibItsFntp_Templates {
        template 
            m_llServiceAddr, m_linkId;
    };
    import from LibItsFsap_TypesAndValues all;
    import from LibItsFsap_Templates all; 
    import from LibItsFsap_Functions all; 
    import from LibItsFsap_Pixits all; 
    import from LibItsFsap_Pics all; 
    import from LibItsMgt_Templates all; 
    import from LibItsMgt_Functions { 
        function 
            f_getNextCommandRef, f_getNextPduCounter, 
            f_getIutSourceItsScuId, f_getIutDestItsScuId, f_getIutMedType, f_getIutCiAccessClass, f_getIutCiClass 
    }; 
    //import from LibItsIicp_Templates all;
    import from LibItsIicp_Functions {
        function f_iicpTriggerRequest
    };
    import from LibItsIicp_Templates {
        template 
            m_iicRequest, // TODO To be removed 
            mw_iicpRequest, mw_iicpResponse, // TODO To be removed 
            mdw_iicRequest_notify, // TODO To be removed 
            mdw_iicpResponse_success, // TODO To be removed 
            mdw_mfCommandRequest_iicRequestTx, mdw_mfCommandRequest_iicResponseTx, 
            mdw_iicRequestTx_mfCommandRequest, mdw_iicRequestTx_mfRequestRequest, 
            mdw_iicResponseTx_mfRequestRequest, 
            m_pduRequest_mfRequestRequest, mw_pduRequest_mfRequestRequest, 
            mw_pduRequest_mfCommandReq 
    }; 
    import from LibItsCalm_TestSystem all;
    import from LibItsCalm_Interface all;
    
    // 9.1 Service provider
    group serviceProvider {
        
        // 9.1.1 Combined ITS-S host and ITS-S router
        group combinedITS_S_Host_ITS_S_Router {
            
            group validBehavior {
                
                /**
                 * @desc    Registration of ITS-S application for message distribution only (no session phase) with request of specific access technology
                 * <pre>
                 * Pics Selection: PICS_FSAP_ROLE_SP AND PICS_ROLE_RH
                 * Config Id: CF01
                 * Initial conditions: 
                 *  with {
                 *      the IUT having not registered any ITS-S application for service announcement,
                 *      the IUT knows the requested access technology
                 *  }
                 * Expected behaviour:
                 *  evaluate whether {
                 *      when { 
                 *          the IUT having received a GCregServer registration request for an ITS-S application including a required access technology and non-IP communications
                 *      }
                 *      then {
                 *          the IUT periodically sends out SAM via the requested access technology with the requested repetition rate, not inviting for a reply
                 *      }
                 *  }
                 * </pre>
                 * 
                 * @version 0.0.8
                 * @see     ETSI TS 102 797-2 v0.0.8 TP/FSAP/SP/HR/BV/01
                 */
                testcase TC_FSAP_SP_HR_BV_01() runs on ItsMgt system ItsCalmSystem { 
                    // Local variables
					timer t_minRetransTimer := f_getIutSamRetransmitTimer();
					timer t_maxRetransTimer := f_getIutSamRetransmitTimer() + f_getIutSamMaxJitter();
                    var CommandRef v_commandRef;
                    var boolean v_samNotificationReceived := false;
                    
                    // Test control
                    if (not(PICS_FSAP_ROLE_SP and PICS_ROLE_RH)) {
                        log("*** TC_FSAP_SP_HR_BV_01: ERROR: 'PICS_FSAP_ROLE_SP AND PICS_ROLE_RH' required for executing the TC ***");
                        stop;
                    }
                    
                    // Test component configuration
                    f_cf01Up();
                    
                    // Test adapter configuration
                    
                    // Preamble
                    // Clause 'Initial conditions'
                    // Assume that 'Initial conditions' are achieved
                    f_selfOrClientSyncAndVerdictPreamble(c_prDone, e_success);
                    log("*** TC_FSAP_SP_HR_BV_01: INFO: Preamble: IUT was setup properly ***");
                    
                    // Test Body
                    // Clause 'when'
                    v_commandRef := f_getNextCommandRef();
                    f_utCommandRequestWithoutConfirm(
                        m_generateMfRequestReq(
                            m_mfRequestRequest(
                                v_commandRef, 
                                m_mfRequestGcregServer( 
                                    f_getIutApplicationId(), 
                                    f_getIutGcScheduleWithAccessTechAndNonIp(),
                                    f_getIutServiceDataRegWithNoSession()
                                )
                            )
                        )
                    );
                    log("*** TC_FSAP_SP_HR_BV_01: INFO: GCregServer registration request done ***");
                    // Clause 'then'
                    tc_ac.start;
                    t_maxRetransTimer.start;
                    alt {
                        [] fsapPort.receive( 
                                mw_fsapReq_mfCommandRequest( 
                                    mw_mfCommandRequest( 
                                        v_commandRef, 
                                        mdw_mfCommand_gcSam(
                                            f_getIutApplicationId(), 
                                            ?,
                                            mw_samDataServerciceWithAccessTechAndNonIp(
                                                ?,
                                                ?,
                                                { portLong := c_portSam }
                                            )
                        )))) {
                            tc_ac.stop;
                            if (v_samNotificationReceived == false) {
                                v_samNotificationReceived := true;
                                t_minRetransTimer.start;
                                t_maxRetransTimer.start;
                                // After the SAM received, check the retransmission
                                tc_ac.start;
                                repeat;
                            }
                            if(t_minRetransTimer.running) {
                                f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_error);
                                log("*** TC_FSAP_SP_HR_BV_01: FAIL: SAM not transmitted at prescribed periodicity (too early) ***");
                            } else {
                                f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_success);
                                log("*** TC_FSAP_SP_HR_BV_01: PASS: SAM transmitted at prescribed periodicity ***");
                            }
                        }
                        [] t_minRetransTimer.timeout {
                            log("*** TC_FSAP_SP_HR_BV_01: INFO: Ready for retransmission ***");
                            repeat;
                        }
                        [] t_maxRetransTimer.timeout {
                            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_timeout);
                            log("*** TC_FSAP_SP_HR_BV_01: INCONC: SAM not transmitted at prescribed periodicity (too late) ***");
                        }
                        [] tc_ac.timeout {
                            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_timeout);
                            log("*** TC_FSAP_SP_HR_BV_01: INCONC: Expected management message not received ***");
                        }
                    } // End of 'alt' statement
                    log("*** TC_FSAP_SP_HR_BV_01: INFO: Test body done ***");
                    
                    // Postamble
                    f_poDefault();
                    f_cf01Down();
                    
                } // End of testcase TC_FSAP_SP_HR_BV_01
                
                /**
                 * @desc    Registration of ITS-S application for message distribution only (no session phase) with no request of specific access technology
                 * <pre>
                 * Pics Selection: PICS_FSAP_ROLE_SP AND PICS_ROLE_RH
                 * Config Id: CF01
                 * Initial conditions: 
                 *  with {
                 *      the IUT having not registered any ITS-S application for service announcement,
                 *      the IUT knows a suitable access technology
                 *  }
                 * Expected behaviour:
                 *  evaluate whether {
                 *      when { 
                 *          the IUT having received a GCregServer registration request for an ITS-S application requiring non-IP communications
                 *      }
                 *      then {
                 *          the IUT periodically sends out SAM via a suited access technology selected by the CI selection manager with the requested repetition rate, not inviting for a reply
                 *      }
                 *  }
                 * </pre>
                 * 
                 * @version 0.0.8
                 * @see     ETSI TS 102 797-2 v0.0.8 TP/FSAP/SP/HR/BV/02
                 */
                testcase TC_FSAP_SP_HR_BV_02() runs on ItsMgt system ItsCalmSystem {
                    // Local variables
					timer t_minRetransTimer := f_getIutSamRetransmitTimer();
				    timer t_maxRetransTimer := f_getIutSamRetransmitTimer() + f_getIutSamMaxJitter();
                    var CommandRef v_commandRef;
                    var boolean v_samNotificationReceived := false;
                   
                    // Test control
                    if (not(PICS_FSAP_ROLE_SP and PICS_ROLE_RH)) {
                        log("*** TC_FSAP_SP_HR_BV_02: ERROR: 'PICS_FSAP_ROLE_SP AND PICS_ROLE_RH' required for executing the TC ***");
                        stop;
                    }
                    
                    // Test component configuration
                    f_cf01Up();
                    
                    // Test adapter configuration
                    
                    // Preamble
                    // Clause 'Initial conditions'
                    // Assume that 'Initial conditions' are achieved
                    f_selfOrClientSyncAndVerdictPreamble(c_prDone, e_success);
                    log("*** TC_FSAP_SP_HR_BV_02: INFO: Preamble: IUT was setup properly ***");
                    
                    // Test Body
                    // Clause 'when'
                    v_commandRef := f_getNextCommandRef();
                    f_utCommandRequestWithoutConfirm(
                        m_generateMfRequestReq(
                            m_mfRequestRequest(
                                v_commandRef, 
                                m_mfRequestGcregServer( 
                                    f_getIutApplicationId(), 
                                    f_getIutGCscheduleWithNonIp(),
                                    f_getIutServiceDataRegWithNoSession()
                                )
                            )
                        )
                    );
                    log("*** TC_FSAP_SP_HR_BV_02: INFO: GCregServer registration request done ***");
                    // Clause 'then'
                    tc_ac.start;
                    t_maxRetransTimer.start;
                    alt {
                        [] fsapPort.receive( 
                                mw_fsapReq_mfCommandRequest( 
                                    mw_mfCommandRequest( 
                                        v_commandRef, 
                                        mdw_mfCommand_gcSam(
                                            f_getIutApplicationId(), 
                                            ?,
                                            mw_samDataServerciceWithAccessTechAndNonIp(
                                                ?,
                                                ?,
                                                { portLong := c_portSam }
                                            )
                        )))) {
                            tc_ac.stop;
                            if (v_samNotificationReceived == false) {
                                v_samNotificationReceived := true;
                                t_minRetransTimer.start;
                                t_maxRetransTimer.start;
                                // After the SAM received, check the retransmission
                                tc_ac.start;
                                repeat;
                            }
                            if(t_minRetransTimer.running) {
                                f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_error);
                                log("*** TC_FSAP_SP_HR_BV_02: FAIL: SAM not transmitted at prescribed periodicity (too early) ***");
                            } else {
                                f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_success);
                                log("*** TC_FSAP_SP_HR_BV_02: PASS: SAM transmitted at prescribed periodicity ***");
                            }
                        }
                        [] t_minRetransTimer.timeout {
                            log("*** TC_FSAP_SP_HR_BV_02: INFO: Ready for retransmission ***");
                            repeat;
                        }
                        [] t_maxRetransTimer.timeout {
                            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_timeout);
                            log("*** TC_FSAP_SP_HR_BV_02: INCONC: SAM not transmitted at prescribed periodicity (too late) ***");
                        }
                        [] tc_ac.timeout {
                            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_timeout);
                            log("*** TC_FSAP_SP_HR_BV_02: INCONC: Expected management message not received ***");
                        }
                    } // End of 'alt' statement
                    log("*** TC_FSAP_SP_HR_BV_02: INFO: Test body done ***");
                    
                    // Postamble
                    f_poDefault();
                    f_cf01Down();
                    
                } // End of testcase TC_FSAP_SP_HR_BV_02
                
                /**
                 * @desc    Registration of ITS-S application with need for a session, with no request of specific access technology, and without request to change communication channel for session phase
                 * <pre>
                 * Pics Selection: PICS_FSAP_ROLE_SP AND PICS_ROLE_RH
                 * Config Id: CF01
                 * Initial conditions: 
                 *  with {
                 *      the IUT having not registered any ITS-S application for service announcement,
                 *      the IUT knows a suitable access technology
                 *  }
                 * Expected behaviour:
                 *  evaluate whether {
                 *      when { 
                 *          the IUT having received a GCregServer registration request for an ITS-S application requiring non-IP communications in the session phase, but no change of communication channel
                 *      }
                 *      then {
                 *          the IUT periodically sends out SAM via a suited access technology selected by the CI selection manager with the requested repetition rate, inviting for a reply
                 *      }
                 *  }
                 * </pre>
                 * 
                 * @version 0.0.8
                 * @see     ETSI TS 102 797-2 v0.0.8 TP/FSAP/SP/HR/BV/03
                 */
                testcase TC_FSAP_SP_HR_BV_03() runs on ItsMgt system ItsCalmSystem {
                    // Local variables
					timer t_minRetransTimer := f_getIutSamRetransmitTimer();
					timer t_maxRetransTimer := f_getIutSamRetransmitTimer() + f_getIutSamMaxJitter();
                    var CommandRef v_commandRef;
                    var boolean v_samNotificationReceived := false;
                    
                    // Test control
                    if (not(PICS_FSAP_ROLE_SP and PICS_ROLE_RH)) {
                        log("*** TC_FSAP_SP_HR_BV_03: ERROR: 'PICS_FSAP_ROLE_SP AND PICS_ROLE_RH' required for executing the TC ***");
                        stop;
                    }
                    
                    // Test component configuration
                    f_cf01Up();
                    
                    // Test adapter configuration
                    
                    // Preamble
                    // Clause 'Initial conditions'
                    // Assume that 'Initial conditions' are achieved
                    f_selfOrClientSyncAndVerdictPreamble(c_prDone, e_success);
                    log("*** TC_FSAP_SP_HR_BV_03: INFO: Preamble: IUT was setup properly ***");
                    
                    // Test Body
                    // Clause 'when'
                    v_commandRef := f_getNextCommandRef();
                    f_utCommandRequestWithoutConfirm(
                        m_generateMfRequestReq(
                            m_mfRequestRequest(
                                v_commandRef, 
                                m_mfRequestGcregServer( 
                                    f_getIutApplicationId(), 
                                    f_getIutGCscheduleWithNonIp(),
                                    f_getIutServiceDataRegWithSession()
                                )
                            )
                        )
                    );
                    log("*** TC_FSAP_SP_HR_BV_03: INFO: GCregServer registration request done ***");
                    // Clause 'then'
                    tc_ac.start;
                    t_maxRetransTimer.start;
                    alt {
                        [] fsapPort.receive( 
                                 mw_fsapReq_mfCommandRequest( 
                                    mw_mfCommandRequest( 
                                        v_commandRef, 
                                        mdw_mfCommand_gcSam(
                                            f_getIutApplicationId(), 
                                            ?,
                                            mw_samDataServerciceWithAccessTechAndNonIp(
                                                ?,
                                                ?,
                                                { portLong := c_portSam }
                                            )
                        )))) {
                            tc_ac.stop;
                            if (v_samNotificationReceived == false) {
                                v_samNotificationReceived := true;
                                t_minRetransTimer.start;
                                t_maxRetransTimer.start;
                                // After the SAM received, check the retransmission
                                tc_ac.start;
                                repeat;
                            }
                            if(t_minRetransTimer.running) {
                                f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_error);
                                log("*** TC_FSAP_SP_HR_BV_03: FAIL: SAM not transmitted at prescribed periodicity (too early) ***");
                            } else {
                                f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_success);
                                log("*** TC_FSAP_SP_HR_BV_03: PASS: SAM transmitted at prescribed periodicity ***");
                            }
                        }
                        [] t_minRetransTimer.timeout {
                            log("*** TC_FSAP_SP_HR_BV_03: INFO: Ready for retransmission ***");
                            repeat;
                        }
                        [] t_maxRetransTimer.timeout {
                            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_timeout);
                            log("*** TC_FSAP_SP_HR_BV_03: INCONC: SAM not transmitted at prescribed periodicity (too late) ***");
                        }
                        [] tc_ac.timeout {
                            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_timeout);
                            log("*** TC_FSAP_SP_HR_BV_03: INCONC: Expected management message not received ***");
                        }
                    } // End of 'alt' statement
                    log("*** TC_FSAP_SP_HR_BV_03: INFO: Test body done ***");
                    
                    // Postamble
                    f_poDefault();
                    f_cf01Down();
                    
                } // End of testcase TC_FSAP_SP_HR_BV_03
                
                /**
                 * @desc    Registration of ITS-S application with need for a session, with no request of specific access technology, and with request to change communication channel for session phase
                 * <pre>
                 * Pics Selection: PICS_FSAP_ROLE_SP AND PICS_ROLE_RH
                 * Config Id: CF01
                 * Initial conditions: 
                 *  with {
                 *      the IUT having not registered any ITS-S application for service announcement,
                 *      the IUT knows a suitable access technology
                 *  }
                 * Expected behaviour:
                 *  evaluate whether {
                 *      when { 
                 *          the IUT having received a GCregServer registration request for an ITS-S application requiring non-IP communications, and requiring change of communication channel in the session phase
                 *      }
                 *      then {
                 *          the IUT periodically sends out SAM via a suited access technology selected by the CI selection manager with the requested repetition rate, inviting for a reply, requesting a change of channel
                 *      }
                 *  }
                 * </pre>
                 * 
                 * @version 0.0.8
                 * @see     ETSI TS 102 797-2 v0.0.8 TP/FSAP/SP/HR/BV/04
                 */
                testcase TC_FSAP_SP_HR_BV_04() runs on ItsMgt system ItsCalmSystem {
                    // Local variables
					timer t_minRetransTimer := f_getIutSamRetransmitTimer();
					timer t_maxRetransTimer := f_getIutSamRetransmitTimer() + f_getIutSamMaxJitter();
                    var CommandRef v_commandRef;
                    var boolean v_samNotificationReceived := false;
                    
                    // Test control
                    if (not(PICS_FSAP_ROLE_SP and PICS_ROLE_RH)) {
                        log("*** TC_FSAP_SP_HR_BV_04: ERROR: 'PICS_FSAP_ROLE_SP AND PICS_ROLE_RH' required for executing the TC ***");
                        stop;
                    }
                    
                    // Test component configuration
                    f_cf01Up();
                    
                    // Test adapter configuration
                    
                    // Preamble
                    // Clause 'Initial conditions'
                    // Assume that 'Initial conditions' are achieved
                    f_selfOrClientSyncAndVerdictPreamble(c_prDone, e_success);
                    log("*** TC_FSAP_SP_HR_BV_04: INFO: Preamble: IUT was setup properly ***");
                    
                    // Test Body
                    // Clause 'when'
                    v_commandRef := f_getNextCommandRef();
                    f_utCommandRequestWithoutConfirm(
                        m_generateMfRequestReq(
                            m_mfRequestRequest(
                                v_commandRef, 
                                m_mfRequestGcregServer( 
                                    f_getIutApplicationId(), 
                                    f_getIutGcScheduleWithAccessTechAndNonIp(),
                                    f_getIutServiceDataRegWithNoSessionAndChannelChange()
                                )
                            )
                        )
                    );
                    log("*** TC_FSAP_SP_HR_BV_04: INFO: GCregServer registration request done ***");
                    // Clause 'then'
                    tc_ac.start;
                    t_maxRetransTimer.start;
                    alt {
                        [] fsapPort.receive( 
                                mw_fsapReq_mfCommandRequest( 
                                    mw_mfCommandRequest( 
                                        v_commandRef, 
                                        mdw_mfCommand_gcSam(
                                            f_getIutApplicationId(), 
                                            ?,
                                            mw_samDataServerciceWithAccessTechAndNonIp(
                                                ?,
                                                ?,
                                                { portLong := c_portSam }
                                            )
                        )))) {
                            tc_ac.stop;
                            if (v_samNotificationReceived == false) {
                                v_samNotificationReceived := true;
                                t_minRetransTimer.start;
                                t_maxRetransTimer.start;
                                // After the SAM received, check the retransmission
                                tc_ac.start;
                                repeat;
                            }
                            if(t_minRetransTimer.running) {
                                f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_error);
                                log("*** TC_FSAP_SP_HR_BV_04: FAIL: SAM not transmitted at prescribed periodicity (too early) ***");
                            } else {
                                f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_success);
                                log("*** TC_FSAP_SP_HR_BV_04: PASS: SAM transmitted at prescribed periodicity ***");
                            }
                        }
                        [] t_minRetransTimer.timeout {
                            log("*** TC_FSAP_SP_HR_BV_04: INFO: Ready for retransmission ***");
                            repeat;
                        }
                        [] t_maxRetransTimer.timeout {
                            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_timeout);
                            log("*** TC_FSAP_SP_HR_BV_04: INCONC: SAM not transmitted at prescribed periodicity (too late) ***");
                        }
                        [] tc_ac.timeout {
                            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_timeout);
                            log("*** TC_FSAP_SP_HR_BV_04: INCONC: Expected management message not received ***");
                        }
                    } // End of 'alt' statement
                    log("*** TC_FSAP_SP_HR_BV_04: INFO: Test body done ***");
                    
                    // Postamble
                    f_poDefault();
                    f_cf01Down();
                    
                } // End of testcase TC_FSAP_SP_HR_BV_04
                
                /**
                 * @desc    Finalization of SIP upon reception of CTX for non-IP session
                 * <pre>
                 * Pics Selection: PICS_FSAP_ROLE_SP AND PICS_ROLE_RH AND PICS_SIP_W_CTX
                 * Config Id: CF01
                 * Initial conditions: 
                 *  with {
                 *      the IUT sending out periodically SAMs for one ITS-S application with non-IP based sessions
                 *  }
                 * Expected behaviour:
                 *  evaluate whether {
                 *      when { 
                 *          the IUT having received a CTX as proper reply to a SAM
                 *      }
                 *      then {
                 *          the IUT generates a GCctx message to notify of reception of CTX
                 *      }
                 *  }
                 * </pre>
                 * 
                 * @version 0.0.8
                 * @see     ETSI TS 102 797-2 v0.0.8 TP/FSAP/SP/HR/BV/05
                 */
                testcase TC_FSAP_SP_HR_BV_05() runs on ItsMgt system ItsCalmSystem {
                    // Local variables
					timer t_minRetransTimer := f_getIutSamRetransmitTimer();
					timer t_maxRetransTimer := f_getIutSamRetransmitTimer() + f_getIutSamMaxJitter();
                    var CommandRef v_commandRef;
                    var boolean v_samNotificationReceived := false;
                    
                    // Test control
                    if (not(PICS_FSAP_ROLE_SP and PICS_ROLE_RH and PICS_SIP_W_CTX)) {
                        log("*** TC_FSAP_SP_HR_BV_05: ERROR: 'PICS_FSAP_ROLE_SP AND PICS_ROLE_RH AND PICS_SIP_W_CTX' required for executing the TC ***");
                        stop;
                    }
                    
                    // Test component configuration
                    f_cf01Up();
                    
                    // Test adapter configuration
                    
                    // Preamble
                    // Clause 'Initial conditions'
                    v_commandRef := f_getNextCommandRef();
                    f_utCommandRequestWithoutConfirm(
                        m_generateMfRequestReq(
                            m_mfRequestRequest(
                                v_commandRef, 
                                m_mfRequestGcregServer( 
                                    f_getIutApplicationId(), 
                                    f_getIutGcScheduleWithAccessTechAndNonIp(),
                                    f_getIutServiceDataRegWithNoSession()
                                )
                            )
                        )
                    );
                    tc_ac.start;
                    t_maxRetransTimer.start;
                    alt {
                        [] fsapPort.receive( 
                                mw_fsapReq_mfCommandRequest( 
                                    mw_mfCommandRequest( 
                                        v_commandRef, 
                                        mdw_mfCommand_gcSam(
                                            f_getIutApplicationId(), 
                                            ?,
                                            mw_samDataServerciceWithAccessTechAndNonIp(
                                                ?,
                                                ?,
                                                { portLong := c_portSam }
                                            )
                        )))) {
                            tc_ac.stop;
                            if (v_samNotificationReceived == false) {
                                v_samNotificationReceived := true;
                                t_minRetransTimer.start;
                                t_maxRetransTimer.start;
                                // After the SAM received, check the retransmission
                                tc_ac.start;
                                repeat;
                            }
                            if(t_minRetransTimer.running) {
                                f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_error);
                                log("*** TC_FSAP_SP_HR_BV_05: FAIL: SAM not transmitted at prescribed periodicity (too early) ***");
                            } else {
                                f_selfOrClientSyncAndVerdictPreamble(c_prDone, e_success);
                                log("*** TC_FSAP_SP_HR_BV_05: INFO: Preamble: IUT was setup properly ***");
                            }
                        }
                        [] t_minRetransTimer.timeout {
                            log("*** TC_FSAP_SP_HR_BV_05: INFO: Ready for retransmission ***");
                            repeat;
                        }
                        [] t_maxRetransTimer.timeout {
                            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_timeout);
                            log("*** TC_FSAP_SP_HR_BV_05: INCONC: SAM not transmitted at prescribed periodicity (too late) ***");
                        }
                        [] tc_ac.timeout {
                            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_timeout);
                            log("*** TC_FSAP_SP_HR_BV_05: INCONC: Expected management message not received ***");
                        }
                    } // End of 'alt' statement
                    
                    // Test Body
                    // Clause 'when'
                    v_commandRef := f_getNextCommandRef();
                    f_utCommandRequestWithoutConfirm(
                        m_generateMfRequestReq(
                            m_mfRequestRequest(
                                v_commandRef, 
                                m_mfRequest_ctx( 
                                    m_llServiceAddr(
                                        m_linkId(
                                            f_getIutSrcRemoteCiId(), 
                                            f_getIutSrcLocalCiId())), 
                                    m_ctx(f_getIutClientId())
                                )
                            )
                        )
                    );
                    log("*** TC_FSAP_SP_HR_BV_05: INFO: CTX registration request done ***");
                    // Clause 'then'
                    tc_ac.start;
                    alt { 
                        [] fsapPort.receive(
                                mw_fsapReq_mfCommandRequest( 
                                    mw_mfCommandRequest( 
                                        ?, 
                                        mdw_mfCommand_gCctx( 
                                            f_getIutApplicationId(), 
                                            f_getIutClientId(), 
                                            mdw_ctxServiceDataNonIp( 
                                                ?, // TODO Parameters shall be reviewed during ATS validation
                                                ?, 
                                                ? 
                        ))))) {
                            tc_ac.stop;
                            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_success);
                            log("*** TC_FSAP_SP_HR_BV_05: PASS: GCtx notification sent as expected ***");
                        }
                        [] tc_ac.timeout {
                            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_timeout);
                            log("*** TC_FSAP_SP_HR_BV_05: INCONC: Expected management message not received ***");
                        }
                    } // End of 'alt' statement
                    log("*** TC_FSAP_SP_HR_BV_05: INFO: Test body done ***");
                    
                    // Postamble
                    f_poDefault();
                    f_cf01Down();
                    
                } // End of testcase TC_FSAP_SP_HR_BV_05
                
            } // End of group validBehavior
            
            group invalidBehavior {
                
                /**
                 * @desc    Registration of ITS-S application for message distribution only (no session phase) with request of specific but not available access technology
                 * <pre>
                 * Pics Selection: PICS_FSAP_ROLE_SP AND PICS_ROLE_RH
                 * Config Id: CF01
                 * Initial conditions: 
                 *  with {
                 *      the IUT having not registered any ITS-S application for service announcement,
                 *      the IUT does not know the requested access technology,
                 *      the IUT knows another access technology  suited for FSAP
                 *  }
                 * Expected behaviour:
                 *  evaluate whether {
                 *      when { 
                 *          the IUT having received a GCregServer registration request for an ITS-S application for the purpose of message distribution
                 *      }
                 *      then {
                 *          the IUT does not send out periodically SAMs via the existent access technology
                 *      }
                 *  }
                 * </pre>
                 * 
                 * @version 0.0.8
                 * @see     ETSI TS 102 797-2 v0.0.8 TP/FSAP/SP/HR/BI/01
                 */
                testcase TC_FSAP_SP_HR_BI_01() runs on ItsMgt system ItsCalmSystem {
                    // Local variables
                    var CommandRef v_commandRef;
                    
                    // Test control
                    if (not(PICS_FSAP_ROLE_SP and PICS_ROLE_RH)) {
                        log("*** TC_FSAP_SP_HR_BI_01: ERROR: 'PICS_FSAP_ROLE_SP AND PICS_ROLE_RH' required for executing the TC ***");
                        stop;
                    }
                    
                    // Test component configuration
                    f_cf01Up();
                    
                    // Test adapter configuration
                    
                    // Preamble
                    // Clause 'Initial conditions'
                    f_selfOrClientSyncAndVerdictPreamble(c_prDone, e_success);
                    log("*** TC_FSAP_SP_HR_BI_01: INFO: Preamble done ***");
                    
                    // Test Body
                    // Clause 'when'
                    v_commandRef := f_getNextCommandRef();
                    f_utCommandRequestWithoutConfirm(
                        m_generateMfRequestReq(
                            m_mfRequestRequest(
                                v_commandRef, 
                                m_mfRequestGcregServer( 
                                    f_getIutApplicationId(), 
                                    f_getIutGCscheduleWithUnknownAccessTechAndNonIp(),
                                    f_getIutServiceDataRegWithNoSession()
                                )
                            )
                        )
                    );
                    log("*** TC_FSAP_SP_HR_BI_01: INFO: GCregServer registration request sent ***");
                    // Clause 'then'
                    tc_noac.start; // No message expected
                    alt {
                        [] fsapPort.receive {
                            tc_noac.stop;
                            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_error); 
                            log("*** TC_FSAP_SP_HR_BI_01: FAIL: No message was expected ***");
                        }
                        [] tc_noac.timeout {
                            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_success); 
                            log("*** TC_FSAP_SP_HR_BI_01: PASS: No message received as expected ***");
                        }
                    } // End of 'alt' statement
                    log("*** TC_FSAP_SP_HR_BI_01: INFO: test body done ***");
                    
                    // Postamble
                    f_poDefault();
                    f_cf01Down();
                    
                } // End of testcase TC_FSAP_SP_HR_BI_01
                
                /**
                 * @desc    Registration of ITS-S application with need for a session, with no request of specific access technology which is not available, and without request to change communication channel for session phase
                 * <pre>
                 * Pics Selection: PICS_FSAP_ROLE_SP AND PICS_ROLE_RH
                 * Config Id: CF01
                 * Initial conditions: 
                 *  with {
                 *      the IUT having not registered any ITS-S application for service announcement,
                 *      the IUT does not know a suitable access technology
                 *  }
                 * Expected behaviour:
                 *  evaluate whether {
                 *      when { 
                 *          the IUT having received a GCregServer registration request for an ITS-S application offering a session phase
                 *      }
                 *      then {
                 *          the IUT does not send out periodically SAMs
                 *      }
                 *  }
                 * </pre>
                 * 
                 * @version 0.0.8
                 * @see     ETSI TS 102 797-2 v0.0.8 TP/FSAP/SP/HR/BI/02
                 */
                testcase TC_FSAP_SP_HR_BI_02() runs on ItsMgt system ItsCalmSystem {
                    // Local variables
                    var CommandRef v_commandRef;
                    
                    // Test control
                    if (not(PICS_FSAP_ROLE_SP and PICS_ROLE_RH)) {
                        log("*** TC_FSAP_SP_HR_BI_02: ERROR: 'PICS_FSAP_ROLE_SP AND PICS_ROLE_RH' required for executing the TC ***");
                        stop;
                    }
                    
                    // Test component configuration
                    f_cf01Up();
                    
                    // Test adapter configuration
                    
                    // Preamble
                    // Clause 'Initial conditions'
                    f_selfOrClientSyncAndVerdictPreamble(c_prDone, e_success);
                    log("*** TC_FSAP_SP_HR_BI_02: INFO: Preamble done ***");
                    
                    // Test Body
                    // Clause 'when'
                    v_commandRef := f_getNextCommandRef();
                    f_utCommandRequestWithoutConfirm(
                        m_generateMfRequestReq(
                            m_mfRequestRequest(
                                v_commandRef, 
                                m_mfRequestGcregServer( 
                                    f_getIutApplicationId(), 
                                    f_getIutGCscheduleWithUnknownAccessTechAndNonIp(),
                                    f_getIutServiceDataRegWithSession()
                                )
                            )
                        )
                    );
                    log("*** TC_FSAP_SP_HR_BI_02: INFO: GCregServer registration request sent ***");
                    // Clause 'then'
                    tc_noac.start; // No message expected
                    alt {
                        [] fsapPort.receive {
                            tc_noac.stop;
                            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_error); 
                            log("*** TC_FSAP_SP_HR_BI_02: FAIL: No message was expected ***");
                        }
                        [] tc_noac.timeout {
                            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_success); 
                            log("*** TC_FSAP_SP_HR_BI_02: PASS: No message received as expected ***");
                        }
                    } // End of 'alt' statement
                    log("*** TC_FSAP_SP_HR_BI_02: INFO: test body done ***");
                    
                    // Postamble
                    f_poDefault();
                    f_cf01Down();
                    
                } // End of testcase TC_FSAP_SP_HR_BI_02
                
            } // End of group invalidBehavior
            
        } // End of group combinedITS_S_Host_ITS_S_Router
        
        // 9.1.2 ITS-S host only
        group its_S_HostOnly {
            
            group validBehavior {
                
                /**
                 * @desc    Registration of ITS-S application for message distribution only (no session phase) with request of specific access technology available in an ITS-S router unit
                 * <pre>
                 * Pics Selection: PICS_FSAP_ROLE_SP AND (PICS_ROLE_HONLY OR (PICS_ROLE_RH AND PICS_ITS_S_INW))
                 * Config Id: CF01
                 * Initial conditions: 
                 *  with {
                 *      the IUT having not registered any ITS-S application for service announcement,
                 *      the IUT knows about availability of the requested access technology in an ITS-S router
                 *  }
                 * Expected behaviour:
                 *  evaluate whether {
                 *      when { 
                 *          the IUT having received a GCregServer registration request for an ITS-S application including a required access technology
                 *      }
                 *      then {
                 *          the IUT forwards this request to the proper ITS-S router ITS-SCU applying Inter-ITS-SCU communications
                 *      }
                 *  }
                 * </pre>
                 * 
                 * @version 0.0.8
                 * @see     ETSI TS 102 797-2 v0.0.8 TP/FSAP/SP/HO/BV/01
                 */
                testcase TC_FSAP_SP_HO_BV_01() runs on ItsMgt system ItsCalmSystem {
                    // Local variables
                    var CommandRef v_commandRef;
                    var template MF_Request v_mfReq;
                    
                    // Test control
                    if (not(PICS_FSAP_ROLE_SP and (PICS_ROLE_HONLY or (PICS_ROLE_RH and PICS_ITS_S_INW)))) {
                        log("*** TC_FSAP_SP_HO_BV_01: ERROR: 'PICS_FSAP_ROLE_SP and (PICS_ROLE_HONLY or (PICS_ROLE_RH and PICS_ITS_S_INW))' required for executing the TC ***");
                        stop;
                    }
                    
                    // Test component configuration
                    f_cf02Up();
                    
                    // Test adapter configuration
                    
                    // Preamble
                    // Clause 'Initial conditions'
                    f_selfOrClientSyncAndVerdictPreamble(c_prDone, e_success);
                    log("*** TC_FSAP_SP_HO_BV_01: INFO: Preamble: IUT was setup properly ***");
                    
                    // Test Body
                    // Clause 'when'
                    v_commandRef := f_getNextCommandRef();
                    v_mfReq := m_mfRequestGcregServer( 
                        f_getIutApplicationId(), 
                        f_getIutGcScheduleWithAccessTechAndNonIp(),
                        f_getIutServiceDataRegWithNoSession()
                    );
                    f_utCommandRequestWithoutConfirm(
                        m_generateMfRequestReq(
                            m_mfRequestRequest(
                                v_commandRef, 
                                valueof(v_mfReq)
                            )
                        )
                    );
                    log("*** TC_FSAP_SP_HO_BV_01: INFO: GCregServer registration request done ***");
                    // Clause 'then'
                    tc_ac.start;
                    alt { 
                        [] fsapPort.receive( // See ISO/CD 24102-5 Clause 8.5 ITS station-internal management communications 
                                mw_fsapReq_mfCommandRequest( 
                                    mdw_mfCommandRequest_iicRequestTx( 
                                        mdw_iicRequestTx_mfRequestRequest( 
                                            f_getIutSourceItsScuId(),
                                            f_getIutDestItsScuId(), 
                                            mw_mfRequestRequest(
                                                v_commandRef, 
                                                v_mfReq // Reuse the value template previously sent
                        ))))) {
                            tc_ac.stop;
                            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_success);
                            log("*** TC_FSAP_SP_HO_BV_01: PASS: GCtx notification sent as expected ***");
                        }
                        [] tc_ac.timeout {
                            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_timeout);
                            log("*** TC_FSAP_SP_HO_BV_01: INCONC: Expected management message not received ***");
                        }
                    } // End of 'alt' statement
                    log("*** TC_FSAP_SP_HO_BV_01: INFO: Test body done ***");
                    
                    // Postamble
                    f_poDefault();
                    f_cf02Down();
                    
                } // End of testcase TC_FSAP_SP_HO_BV_01
                
                /**
                 * @desc    Registration of ITS-S application for message distribution only (no session phase) with no request of specific access technology
                 * <pre>
                 * Pics Selection: PICS_FSAP_ROLE_SP AND (PICS_ROLE_HONLY OR (PICS_ROLE_RH AND PICS_ITS_S_INW))
                 * Config Id: CF01
                 * Initial conditions: 
                 *  with {
                 *      the IUT having not registered any ITS-S application for service announcement,
                 *      the IUT knows about availability of a suitable access technology in an ITS-S router
                 *  }
                 * Expected behaviour:
                 *  evaluate whether {
                 *      when { 
                 *          the IUT having received a GCregServer registration request for an ITS-S application
                 *      }
                 *      then {
                 *          the IUT forwards this request to the proper ITS-S router ITS-SCU applying Inter-ITS-SCU communications
                 *      }
                 *  }
                 * </pre>
                 * 
                 * @version 0.0.8
                 * @see     ETSI TS 102 797-2 v0.0.8 TP/FSAP/SP/HO/BV/02
                 */
                testcase TC_FSAP_SP_HO_BV_02() runs on ItsMgt system ItsCalmSystem {
                    // Local variables
                    var CommandRef v_commandRef;
                    var template MF_Request v_mfReq;
                    
                    // Test control
                    if (not(PICS_FSAP_ROLE_SP and (PICS_ROLE_HONLY or (PICS_ROLE_RH and PICS_ITS_S_INW)))) {
                        log("*** TC_FSAP_SP_HO_BV_02: ERROR: 'PICS_FSAP_ROLE_SP and (PICS_ROLE_HONLY or (PICS_ROLE_RH and PICS_ITS_S_INW))' required for executing the TC ***");
                        stop;
                    }
                    
                    // Test component configuration
                    f_cf02Up();