Commit eb11c30a authored by YannGarcia's avatar YannGarcia
Browse files

Update BWA test cases

parent d1466572
Loading
Loading
Loading
Loading
+1 −2
Original line number Original line Diff line number Diff line
@@ -1246,8 +1246,7 @@
      alt {
      alt {
        [] httpPort.receive(
        [] httpPort.receive(
          mw_http_response(
          mw_http_response(
            mw_http_response_204_no_content(
            mw_http_response_204_no_content
            )
          )
          )
        ) 
        ) 
        {
        {
+1 −1
Original line number Original line Diff line number Diff line
@@ -1626,7 +1626,7 @@ module AtsMec_AppEnablementAPI_TestCases {
      alt {
      alt {
        [] httpPort.receive(
        [] httpPort.receive(
                            mw_http_response(
                            mw_http_response(
                                             mw_http_response_412_precondition_failed()
                                             mw_http_response_412_precondition_failed
                                             )) {
                                             )) {
          tc_ac.stop;
          tc_ac.stop;


+3 −3
Original line number Original line Diff line number Diff line
@@ -361,8 +361,8 @@ module AtsMec_AppLCM_TestCases {
        alt {
        alt {
            [] httpPort.receive(
            [] httpPort.receive(
                mw_http_response(
                mw_http_response(
                    mw_http_response_204_no_content(
                    mw_http_response_204_no_content
		    ))) -> value v_response {
          )) -> value v_response {
          tc_ac.stop;
          tc_ac.stop;
            log("*** " & testcasename() & ": PASS: IUT successfully responds with a 204 no content status code ***");
            log("*** " & testcasename() & ": PASS: IUT successfully responds with a 204 no content status code ***");
            f_selfOrClientSyncAndVerdict(c_tbDone, e_success);
            f_selfOrClientSyncAndVerdict(c_tbDone, e_success);
@@ -1471,7 +1471,7 @@ group app_lcm_subscriptions {
        alt {
        alt {
            [] httpPort.receive(
            [] httpPort.receive(
                mw_http_response(
                mw_http_response(
                    mw_http_response_204_no_content()
                    mw_http_response_204_no_content
          )) -> value v_response {
          )) -> value v_response {
          tc_ac.stop;
          tc_ac.stop;
          
          
+930 −5

File changed.

Preview size limit exceeded, changes collapsed.

+15 −1
Original line number Original line Diff line number Diff line
@@ -116,7 +116,21 @@ module AtsMec_TestControl {
    }
    }


    if (PICS_BWMANAGEMENT_API_SUPPORTED) {
    if (PICS_BWMANAGEMENT_API_SUPPORTED) {
      execute(TC_MEC_PLAT_MP1_BWA_BV_001());
      execute(TC_MEC_SRV_BWA_001_OK());
      execute(TC_MEC_SRV_BWA_001_BR());
      execute(TC_MEC_SRV_BWA_002_OK());
      execute(TC_MEC_SRV_BWA_002_BR());
      execute(TC_MEC_SRV_BWA_003_OK());
      execute(TC_MEC_SRV_BWA_003_NF());
      execute(TC_MEC_SRV_BWA_004_OK());
      execute(TC_MEC_SRV_BWA_004_BR());
      execute(TC_MEC_SRV_BWA_004_NF());
      execute(TC_MEC_SRV_BWA_005_OK());
      execute(TC_MEC_SRV_BWA_005_BR());
      execute(TC_MEC_SRV_BWA_005_NF());
      execute(TC_MEC_SRV_BWA_005_PF());
      execute(TC_MEC_SRV_BWA_006_OK());
      execute(TC_MEC_SRV_BWA_006_NF());
    }
    }
  } // End of 'control' statement
  } // End of 'control' statement


Loading