Commit 4a87e025 authored by YannGarcia's avatar YannGarcia
Browse files

Add Security tests for AtsPSAP

parent 2a99277f
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -2445,13 +2445,14 @@ module AtsPSAP_TestCases {
                                                  ));
        tc_resp.start;
        alt {
          [] a_awaitingResponse(p_Response) {
            f_selfOrClientSyncAndVerdictPreamble(c_prDone, e_error);
          }
          [] timeout {
            f_selfOrClientSyncAndVerdictPreamble(c_prDone, e_success);
          [] SIPP.receive {
            tc_resp.stop;
            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_error);
          }
          [] tc_resp.timeout {
            f_selfOrClientSyncAndVerdictTestBody(c_tbDone, e_success);
          }
        } // End of 'alt' statement
        
        // Postamble
        f_clientSyncAndVerdictPostamble(c_poDone, e_success);
+7 −2
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ module AtsPSAP_TestControl {
  
  // AtsPSAP
  import from AtsPSAP_TestCases all;
  import from AtsPSAP_Pics all;
  
  // Test Execution
  control {
@@ -39,6 +40,10 @@ module AtsPSAP_TestControl {
      execute(TC_PSAP_SIP_NOTIFY_BV_01(v_cSeq));
      }*/

    if (not PICS_PSAP_USE_TLS) {
      execute(TC_PSAP_TLS_BI_01(v_cSeq));
    }

  } // End of 'control' statement

} // End of module AtsPSAP_TestControl