AtsMec_TrafficManagementAPI_TestCases.ttcn 72.9 KB
Newer Older
YannGarcia's avatar
YannGarcia committed
            log("*** " & testcasename() & ": INCONC: Expected message not received ***");
            f_selfOrClientSyncAndVerdict(c_tbDone, e_timeout);
          }
        } // End of 'alt' statement
        
        // Postamble
        f_cf_01_http_down();
    } // End of testcase TC_MEC_MEC015_SRV_TM_005_NF
    
    /**
     * @desc Check that the IUT when provided with just the changes (deltas) updates the requested bandwidth requirements when commanded by a MEC Application
     * @see https://forge.etsi.org/gitlab/mec/MEC-tests/blob/master/Test%20Purposes/Plat/Mp1/Bandwidth/TrafficManagement.tplan2
     * @see hhttps://forge.etsi.org/swagger/ui/?url=https://forge.etsi.org/gitlab/mec/gs015-bandwith-mgmt-api/raw/master/BwManagementApi.yaml
     */
    testcase TC_MEC_MEC015_SRV_TM_006_OK() runs on HttpComponent system HttpTestAdapter {
        // Local variables
        var Headers v_headers;
        var HttpMessage v_response;
        var charstring v_bw_allocation_id;
        var BwInfo v_bw_info;
        var JSON.String v_app_instance_id := PX_APP_INSTANCE_ID & oct2unichar(char2oct("004"));
        
        // Test control
        if (not(PICS_MEC_PLAT) or not(PICS_BWMANAGEMENT_API_SUPPORTED)) {
            log("*** " & testcasename() & ": PICS_MEC_PLAT and PICS_BWMANAGEMENT_API_SUPPORTED required for executing the TC ***");
            setverdict(inconc);
            stop;
        }
        
        // Test component configuration
        f_cf_01_http_up();
        
        // Test adapter configuration
        
        // Preamble
        f_init_default_headers_list(-, -, v_headers);
        f_create_bw_allocation_resource(v_app_instance_id, v_bw_allocation_id, v_bw_info);
        if (v_bw_allocation_id == "") {
          f_selfOrClientSyncAndVerdict(c_prDone, e_timeout);
        } else {
          f_selfOrClientSyncAndVerdict(c_prDone, e_success);
        }
        
        // Test Body
        httpPort.send(
                      m_http_request(
                                     m_http_request_patch(
                                                          PX_ME_BWM_URI & "/" & v_bw_allocation_id,
                                                          v_headers,
                                                          m_http_message_body_json(
                                                                                   m_body_json_bw_info_deltas(
                                                                                                              m_bw_info_deltas(
                                                                                                                               v_app_instance_id,
                                                                                                                               APPLICATION_SPECIFIC_BW_ALLOCATION, // Request type
                                                                                                                               -,
                                                                                                                               "5096"
                                                                                                                               )
                                                                                                              )
                                                                                   )
                                                          )
                                     )
                      );
        tc_ac.start;
        alt {
          [] httpPort.receive(
                              mw_http_response(
                                               mw_http_response_ok(
                                                                   mw_http_message_body_json(
                                                                                             mw_body_json_bw_info(
                                                                                                                  mw_bw_info(
                                                                                                                             v_app_instance_id,
                                                                                                                             APPLICATION_SPECIFIC_BW_ALLOCATION, // Request type
                                                                                                                             "5096", // FixedAllocation
                                                                                                                             Downlink // AllocationDirection
                                                                                                                             )))))) -> value v_response {
            tc_ac.stop;
            
            log("*** " & testcasename() & ": PASS: IUT successfully responds with a patched BwInfo ***");
            f_delete_bw_allocation_resource(v_app_instance_id, v_bw_allocation_id);
            f_selfOrClientSyncAndVerdict(c_tbDone, e_success);
          }
          [] tc_ac.timeout {
            log("*** " & testcasename() & ": INCONC: Expected message not received ***");
            f_selfOrClientSyncAndVerdict(c_tbDone, e_timeout);
          }
        } // End of 'alt' statement
        
        // Postamble
        f_cf_01_http_down();
    } // End of testcase TC_MEC_MEC015_SRV_TM_006_OK
    
    /**
     * @desc Check that the IUT responds with an error when a request with incorrect parameters is sent by a MEC Application
     * @see https://forge.etsi.org/gitlab/mec/MEC-tests/blob/master/Test%20Purposes/Plat/Mp1/Bandwidth/TrafficManagement.tplan2
     * @see hhttps://forge.etsi.org/swagger/ui/?url=https://forge.etsi.org/gitlab/mec/gs015-bandwith-mgmt-api/raw/master/BwManagementApi.yaml
     */
    testcase TC_MEC_MEC015_SRV_TM_006_BR() runs on HttpComponent system HttpTestAdapter {
        // Local variables
        var Headers v_headers;
        var charstring v_bw_allocation_id;
        var BwInfo v_bw_info;
        var JSON.String v_app_instance_id := PX_APP_INSTANCE_ID & oct2unichar(char2oct("004"));
        
        // Test control
        if (not(PICS_MEC_PLAT) or not(PICS_BWMANAGEMENT_API_SUPPORTED)) {
            log("*** " & testcasename() & ": PICS_MEC_PLAT and PICS_BWMANAGEMENT_API_SUPPORTED required for executing the TC ***");
            setverdict(inconc);
            stop;
        }
        
        // Test component configuration
        f_cf_01_http_up();
        
        // Test adapter configuration
        
        // Preamble
        f_init_default_headers_list(-, -, v_headers);
        f_create_bw_allocation_resource(v_app_instance_id, v_bw_allocation_id, v_bw_info);
        if (v_bw_allocation_id == "") {
          f_selfOrClientSyncAndVerdict(c_prDone, e_timeout);
        } else {
          f_selfOrClientSyncAndVerdict(c_prDone, e_success);
        }
        
        // Test Body
        httpPort.send(
                      m_http_request(
                                     m_http_request_patch(
                                                          PX_ME_BWM_URI & "/" & v_bw_allocation_id,
                                                          v_headers,
                                                          m_http_message_body_json(
                                                                                   m_body_json_bw_info_deltas(
                                                                                                              m_bw_info_deltas(
                                                                                                                               v_app_instance_id,
                                                                                                                               APPLICATION_SPECIFIC_BW_ALLOCATION, // Request type
                                                                                                                               -,
                                                                                                                               "Invalid"
                                                                                                                               )
                                                                                                              )
                                                                                   )
                                                          )
                                     )
                      );
        tc_ac.start;
        alt {
          [] httpPort.receive(
                              mw_http_response(
                                               mw_http_response_400_bad_request(
                                                                                mw_http_message_body_json(
                                                                                                          mw_body_json_problem_details(
                                                                                                                                       mw_problem_details(
                                                                                                                                                          -, -, 400
                                                                                                                                                          )))))) {
            tc_ac.stop;
            
            log("*** " & testcasename() & ": PASS: IUT successfully responds with a correct error message ***");
            f_delete_bw_allocation_resource(v_app_instance_id, v_bw_allocation_id);
            f_selfOrClientSyncAndVerdict(c_tbDone, e_success);
          }
          [] tc_ac.timeout {
            log("*** " & testcasename() & ": INCONC: Expected message not received ***");
            f_selfOrClientSyncAndVerdict(c_tbDone, e_timeout);
          }
        } // End of 'alt' statement
        
        // Postamble
        f_cf_01_http_down();
    } // End of testcase TC_MEC_MEC015_SRV_TM_006_BR
    
    /**
     * @desc Check that the IUT responds with an error when a request for an unknown URI is sent by a MEC Application
     * @see https://forge.etsi.org/gitlab/mec/MEC-tests/blob/master/Test%20Purposes/Plat/Mp1/Bandwidth/TrafficManagement.tplan2
     * @see hhttps://forge.etsi.org/swagger/ui/?url=https://forge.etsi.org/gitlab/mec/gs015-bandwith-mgmt-api/raw/master/BwManagementApi.yaml
     */
    testcase TC_MEC_MEC015_SRV_TM_006_NF() runs on HttpComponent system HttpTestAdapter {
        // Local variables
        var Headers v_headers;
        var charstring v_bw_allocation_id;
        var BwInfo v_bw_info;
        var JSON.String v_app_instance_id := PX_APP_INSTANCE_ID & oct2unichar(char2oct("004"));
        
        // Test control
        if (not(PICS_MEC_PLAT) or not(PICS_BWMANAGEMENT_API_SUPPORTED)) {
            log("*** " & testcasename() & ": PICS_MEC_PLAT and PICS_BWMANAGEMENT_API_SUPPORTED required for executing the TC ***");
            setverdict(inconc);
            stop;
        }
        
        // Test component configuration
        f_cf_01_http_up();
        
        // Test adapter configuration
        
        // Preamble
        f_init_default_headers_list(-, -, v_headers);
        f_selfOrClientSyncAndVerdict(c_prDone, e_success);
        
        // Test Body
        httpPort.send(
                      m_http_request(
                                     m_http_request_patch(
                                                          PX_ME_BWM_URI & "/" & v_bw_allocation_id,
                                                          v_headers,
                                                          m_http_message_body_json(
                                                                                   m_body_json_bw_info_deltas(
                                                                                                              m_bw_info_deltas(
                                                                                                                               v_app_instance_id,
                                                                                                                               APPLICATION_SPECIFIC_BW_ALLOCATION, // Request type
                                                                                                                               -,
                                                                                                                               "5096"
                                                                                                                               )
                                                                                                              )
                                                                                   )
                                                          )
                                     )
                      );
        tc_ac.start;
        alt {
          [] httpPort.receive(
                              mw_http_response(
                                               mw_http_response_404_not_found(
                                                                              mw_http_message_body_json(
                                                                                                        mw_body_json_problem_details(
                                                                                                                                     mw_problem_details(
                                                                                                                                                          -, -, 404
                                                                                                                                                          )))))) {
            tc_ac.stop;
            
            log("*** " & testcasename() & ": PASS: IUT successfully responds with a correct error message ***");
            f_selfOrClientSyncAndVerdict(c_tbDone, e_success);
          }
          [] tc_ac.timeout {
            log("*** " & testcasename() & ": INCONC: Expected message not received ***");
            f_selfOrClientSyncAndVerdict(c_tbDone, e_timeout);
          }
        } // End of 'alt' statement
        
        // Postamble
        f_cf_01_http_down();
    } // End of testcase TC_MEC_MEC015_SRV_TM_006_NF
    
    /**
     * @desc Check that the IUT unregisters from the Bandwidth Management Service when commanded by a MEC Application
     * @see https://forge.etsi.org/gitlab/mec/MEC-tests/blob/master/Test%20Purposes/Plat/Mp1/Bandwidth/TrafficManagement.tplan2
     * @see hhttps://forge.etsi.org/swagger/ui/?url=https://forge.etsi.org/gitlab/mec/gs015-bandwith-mgmt-api/raw/master/BwManagementApi.yaml
     */
    testcase TC_MEC_MEC015_SRV_TM_007_OK() runs on HttpComponent system HttpTestAdapter {
        // Local variables
        var Headers v_headers;
        var charstring v_bw_allocation_id;
        var BwInfo v_bw_info;
        var JSON.String v_app_instance_id := PX_APP_INSTANCE_ID & oct2unichar(char2oct("005"));
        
        // Test control
        if (not(PICS_MEC_PLAT) or not(PICS_BWMANAGEMENT_API_SUPPORTED)) {
            log("*** " & testcasename() & ": PICS_MEC_PLAT and PICS_BWMANAGEMENT_API_SUPPORTED required for executing the TC ***");
            setverdict(inconc);
            stop;
        }
        
        // Test component configuration
        f_cf_01_http_up();
        
        // Test adapter configuration
        
        // Preamble
        f_init_default_headers_list(-, -, v_headers);
        f_create_bw_allocation_resource(v_app_instance_id, v_bw_allocation_id, v_bw_info);
        if (v_bw_allocation_id == "") {
          f_selfOrClientSyncAndVerdict(c_prDone, e_timeout);
        } else {
          f_selfOrClientSyncAndVerdict(c_prDone, e_success);
        }
        
        // Test Body
        httpPort.send(
                      m_http_request(
                                     m_http_request_delete(
                                                           PX_ME_BWM_URI & "/" & v_bw_allocation_id,
                                                           v_headers
                                                           )
                                     )
                      );
        tc_ac.start;
        alt {
          [] httpPort.receive(
                              mw_http_response(
                                               mw_http_response_204_no_content
                                               )) {
            tc_ac.stop;
            
            log("*** " & testcasename() & ": PASS: IUT successfully responds to deletion ***");
            f_selfOrClientSyncAndVerdict(c_tbDone, e_success);
          }
          [] tc_ac.timeout {
            log("*** " & testcasename() & ": INCONC: Expected message not received ***");
            f_selfOrClientSyncAndVerdict(c_tbDone, e_timeout);
          }
        } // End of 'alt' statement
        
        // Postamble
        f_cf_01_http_down();
YannGarcia's avatar
YannGarcia committed
    } // End of testcase TC_MEC_MEC015_SRV_TM_007_OK
YannGarcia's avatar
YannGarcia committed
  } // End of group me_app_role 
  
} // End of module AtsMec_TrafficManagementAPI_TestCases