From fcab23afb42d2770a16cff7125930a77b21f6aa1 Mon Sep 17 00:00:00 2001 From: Miguel Angel Reina Ortega <miguelangel.reinaortega@etsi.org> Date: Tue, 1 Aug 2017 12:18:58 +0200 Subject: [PATCH] Reordering of test cases after name alignment to TS-0018 v0.4.0 Signed-off-by: Miguel Angel Reina Ortega <miguelangel.reinaortega@etsi.org> --- OneM2M_Testcases.ttcn | 6395 ++++++++++++++++++++--------------------- 1 file changed, 3134 insertions(+), 3261 deletions(-) diff --git a/OneM2M_Testcases.ttcn b/OneM2M_Testcases.ttcn index accbc19..00710ff 100644 --- a/OneM2M_Testcases.ttcn +++ b/OneM2M_Testcases.ttcn @@ -7,7 +7,7 @@ * * @author oneM2M * @version $URL: https://oldforge.etsi.org/svn/oneM2M/trunk/ttcn/OneM2M_Testcases.ttcn $ - * $Id: OneM2M_Testcases.ttcn 336 2017-07-31 09:46:16Z reinaortega $ + * $Id: OneM2M_Testcases.ttcn 337 2017-08-01 08:07:17Z reinaortega $ * @desc Module containing test cases for oneM2M * */ @@ -884,52 +884,6 @@ module OneM2M_Testcases { } - /** - * @desc Check that the IUT rejects an AE registration (not allowed App-ID) - * - */ - testcase TC_CSE_REG_CRE_018() runs on CseTester system CseSystem { - - var MsgIn v_response; - var RequestPrimitive v_request; - var integer v_cseBaseIndex := -1; - var ResourceType v_resourceType := int2; - - // Test component configuration - f_cf01Up(); - - //Preambule - v_cseBaseIndex := f_cse_preamble_createServiceSubscribedAppRule(-);//c_CRUDNDi); - - // Test Body - v_request := valueof(m_createAe(PX_APP_ID, omit, omit)); - - v_request := f_getCreateRequestPrimitive(v_resourceType, v_request, v_cseBaseIndex); - - mcaPort.send(m_request(v_request)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int4005))) { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": AE creation rejected."); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveInverse(int4005))) -> value v_response{ - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while creating AE with status code " & int2str(enum2int(v_response.primitive.responsePrimitive.responseStatusCode))); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while creating AE"); - } - } - - // Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - - } - /** * @desc Check that the IUT rejects an AE registration (allowed App-ID, not allowed C-AE-ID-STEM provided by AE) * @@ -1023,56 +977,6 @@ module OneM2M_Testcases { } - /** - * @desc Check that the IUT rejects registration of already registered AE (C-AE-ID-STEM provided by AE) - * - */ - testcase TC_CSE_REG_CRE_026() runs on CseTester system CseSystem { - - var MsgIn v_response; - var RequestPrimitive v_request; - var integer v_aeIndex := -1; - var ResourceType v_resourceType := int2; - - // Test control - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAeWithId("C-AE-ID-STEM");//c_CRUDNDi); - - //Test Body - v_request := valueof(m_createAe(PX_APP_ID, omit, "C-AE-ID-STEM")); - - v_request := f_getCreateRequestPrimitive(v_resourceType, v_request, v_aeIndex); - - mcaPort.send(m_request(v_request)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int4105))) { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": AE creation rejected."); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveInverse(int4105))) -> value v_response{ - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while creating AE with status code " & int2str(enum2int(v_response.primitive.responsePrimitive.responseStatusCode))); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while creating AE"); - } - } - - // Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - - } - /** * @desc Check that the IUT accepts an AE re-registration (allowed M2M-SP-assigned AE-ID, S-AE-ID-STEM provided by AE), transfer request to the IN-CSE * @@ -1217,56 +1121,155 @@ module OneM2M_Testcases { f_cf02Down(); } //end TC_CSE_REG_CRE_010 - + group g_CSE_REG_CRE_016{ + + /** + * @desc Check that the IUT accepts a create request of <remoteCSE> resource with OPTIONAL_ATTRIBUTE. + * + */ + testcase TC_CSE_REG_CRE_016_LBL() runs on CseTester system CseSystem { + // Local variables + var template RequestPrimitive v_createRequest := m_createRemoteCSEBase; + const AttributeAux c_optionalAttribute := {"labels", omit}; + + v_createRequest.primitiveContent.remoteCSE.labels := {"MyLabel"}; + + f_CSE_REG_CRE_016(v_createRequest, c_optionalAttribute); + + } + + testcase TC_CSE_REG_CRE_016_CST() runs on CseTester system CseSystem { + // Local variables + var template RequestPrimitive v_createRequest := m_createRemoteCSEBase; + const AttributeAux c_optionalAttribute := {"cseType", omit}; + + v_createRequest.primitiveContent.remoteCSE.cseType := int1; + + f_CSE_REG_CRE_016(v_createRequest, c_optionalAttribute); + + } + + testcase TC_CSE_REG_CRE_016_POA() runs on CseTester system CseSystem { + // Local variables + var template RequestPrimitive v_createRequest := m_createRemoteCSEBase; + const AttributeAux c_optionalAttribute := {"pointOfAccess", omit}; + + v_createRequest.primitiveContent.remoteCSE.pointOfAccess := {"http://" & PX_CSE1_ADDRESS & "/"}; + + f_CSE_REG_CRE_016(v_createRequest, c_optionalAttribute); + + } + + testcase TC_CSE_REG_CRE_016_NL() runs on CseTester system CseSystem { + // Local variables + var template RequestPrimitive v_createRequest := m_createRemoteCSEBase; + const AttributeAux c_optionalAttribute := {"nodeLink", omit}; + + v_createRequest.primitiveContent.remoteCSE.nodeLink := c_defaultNodeID; + + f_CSE_REG_CRE_016(v_createRequest, c_optionalAttribute); + + } + + function f_CSE_REG_CRE_016(template RequestPrimitive p_requestPrimitive, in AttributeAux p_optionalAttribute) runs on CseTester { + + // Local variables + var MsgIn v_response; + var RequestPrimitive v_request; + var ResourceType v_resourceType := int16; //remoteCSE + + // Test control + + // Test component configuration + f_cf04Up(); + + // Test adapter configuration + + // Preamble + + // Test Body + v_request := f_getCreateRequestPrimitive(v_resourceType, p_requestPrimitive, -1); + + mccPort.send(m_request(v_request)); + tc_ac.start; + alt { + [] mccPort.receive(mw_response(mw_responsePrimitive(int2001, f_getTemplateFromPrimitiveContent(v_request.primitiveContent)))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": Accepted creation for resource type remoteCSE containing attribute " & p_optionalAttribute.name); + } + [] mccPort.receive(mw_response(mw_responsePrimitiveOK(f_getTemplateFromPrimitiveContent(v_request.primitiveContent)))) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code in the response"); + } + [] mccPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Accepted creation for resource type remoteCSE without containing attribute " & p_optionalAttribute.name); + } + [] mccPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Rejected creation of resource type remoteCSE containing attribute" & p_optionalAttribute.name); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while creating resource type remoteCSE"); + } + } + + // Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf04Down(); + + }//end f_CSE_REG_CRE_BV_016 + + }// end group g_CSE_REG_CRE_BV_016 + /** - * @desc Check that the IUT rejects the create request of <CSEBase> resource. + * @desc Check that the IUT rejects an AE registration (not allowed App-ID) * */ - testcase TC_CSE_REG_CRE_024() runs on CseTester system CseSystem { - - // Local variables + testcase TC_CSE_REG_CRE_018() runs on CseTester system CseSystem { + var MsgIn v_response; var RequestPrimitive v_request; - var integer v_aeIndex := -1; - var ResourceType v_resourceType := int5; //CSEBase - - // Test control - + var integer v_cseBaseIndex := -1; + var ResourceType v_resourceType := int2; + // Test component configuration f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); - + + //Preambule + v_cseBaseIndex := f_cse_preamble_createServiceSubscribedAppRule(-);//c_CRUDNDi); + // Test Body - v_request := f_getCreateRequestPrimitive(v_resourceType, m_createCSEBaseBase, v_aeIndex); - + v_request := valueof(m_createAe(PX_APP_ID, omit, omit)); + + v_request := f_getCreateRequestPrimitive(v_resourceType, v_request, v_cseBaseIndex); + mcaPort.send(m_request(v_request)); tc_ac.start; alt { [] mcaPort.receive(mw_response(mw_responsePrimitive(int4005))) { tc_ac.stop; - setverdict(pass, __SCOPE__ & ": CSEBase creation rejected."); + setverdict(pass, __SCOPE__ & ": AE creation rejected."); } [] mcaPort.receive(mw_response(mw_responsePrimitiveInverse(int4005))) -> value v_response{ tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while creating CSEBase with status code " & int2str(enum2int(v_response.primitive.responsePrimitive.responseStatusCode))); + setverdict(fail, __SCOPE__ & ": Error while creating AE with status code " & int2str(enum2int(v_response.primitive.responsePrimitive.responseStatusCode))); } [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while creating CSEBase"); + setverdict(fail, __SCOPE__ & ": No answer while creating AE"); } } - + // Postamble f_cse_postamble_deleteResources(); - + // Tear down f_cf01Down(); - - }//end TC_CSE_REG_CRE_BI_001 + + } /** * @desc Check that the IUT accepts an create request of <remoteCSE> resource with attributes multiplicity equals to 1. @@ -1368,107 +1371,106 @@ module OneM2M_Testcases { }//end TC_CSE_REG_CRE_023 - group g_CSE_REG_CRE_016{ - - /** - * @desc Check that the IUT accepts a create request of <remoteCSE> resource with OPTIONAL_ATTRIBUTE. - * - */ - testcase TC_CSE_REG_CRE_016_LBL() runs on CseTester system CseSystem { - // Local variables - var template RequestPrimitive v_createRequest := m_createRemoteCSEBase; - const AttributeAux c_optionalAttribute := {"labels", omit}; - - v_createRequest.primitiveContent.remoteCSE.labels := {"MyLabel"}; - - f_CSE_REG_CRE_016(v_createRequest, c_optionalAttribute); - - } - - testcase TC_CSE_REG_CRE_016_CST() runs on CseTester system CseSystem { - // Local variables - var template RequestPrimitive v_createRequest := m_createRemoteCSEBase; - const AttributeAux c_optionalAttribute := {"cseType", omit}; - - v_createRequest.primitiveContent.remoteCSE.cseType := int1; - - f_CSE_REG_CRE_016(v_createRequest, c_optionalAttribute); - - } - - testcase TC_CSE_REG_CRE_016_POA() runs on CseTester system CseSystem { - // Local variables - var template RequestPrimitive v_createRequest := m_createRemoteCSEBase; - const AttributeAux c_optionalAttribute := {"pointOfAccess", omit}; - - v_createRequest.primitiveContent.remoteCSE.pointOfAccess := {"http://" & PX_CSE1_ADDRESS & "/"}; - - f_CSE_REG_CRE_016(v_createRequest, c_optionalAttribute); + /** + * @desc Check that the IUT rejects the create request of <CSEBase> resource. + * + */ + testcase TC_CSE_REG_CRE_024() runs on CseTester system CseSystem { + + // Local variables + var MsgIn v_response; + var RequestPrimitive v_request; + var integer v_aeIndex := -1; + var ResourceType v_resourceType := int5; //CSEBase + + // Test control - } - - testcase TC_CSE_REG_CRE_016_NL() runs on CseTester system CseSystem { - // Local variables - var template RequestPrimitive v_createRequest := m_createRemoteCSEBase; - const AttributeAux c_optionalAttribute := {"nodeLink", omit}; + // Test component configuration + f_cf01Up(); - v_createRequest.primitiveContent.remoteCSE.nodeLink := c_defaultNodeID; + // Test adapter configuration - f_CSE_REG_CRE_016(v_createRequest, c_optionalAttribute); + // Preamble + v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); - } - - function f_CSE_REG_CRE_016(template RequestPrimitive p_requestPrimitive, in AttributeAux p_optionalAttribute) runs on CseTester { - - // Local variables - var MsgIn v_response; - var RequestPrimitive v_request; - var ResourceType v_resourceType := int16; //remoteCSE - - // Test control - - // Test component configuration - f_cf04Up(); - - // Test adapter configuration + // Test Body + v_request := f_getCreateRequestPrimitive(v_resourceType, m_createCSEBaseBase, v_aeIndex); + + mcaPort.send(m_request(v_request)); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int4005))) { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": CSEBase creation rejected."); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveInverse(int4005))) -> value v_response{ + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while creating CSEBase with status code " & int2str(enum2int(v_response.primitive.responsePrimitive.responseStatusCode))); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while creating CSEBase"); + } + } + + // Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf01Down(); + + }//end TC_CSE_REG_CRE_024 + + /** + * @desc Check that the IUT rejects registration of already registered AE (C-AE-ID-STEM provided by AE) + * + */ + testcase TC_CSE_REG_CRE_026() runs on CseTester system CseSystem { + + var MsgIn v_response; + var RequestPrimitive v_request; + var integer v_aeIndex := -1; + var ResourceType v_resourceType := int2; - // Preamble + // Test control + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_aeIndex := f_cse_preamble_registerAeWithId("C-AE-ID-STEM");//c_CRUDNDi); - // Test Body - v_request := f_getCreateRequestPrimitive(v_resourceType, p_requestPrimitive, -1); + //Test Body + v_request := valueof(m_createAe(PX_APP_ID, omit, "C-AE-ID-STEM")); + + v_request := f_getCreateRequestPrimitive(v_resourceType, v_request, v_aeIndex); - mccPort.send(m_request(v_request)); - tc_ac.start; - alt { - [] mccPort.receive(mw_response(mw_responsePrimitive(int2001, f_getTemplateFromPrimitiveContent(v_request.primitiveContent)))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Accepted creation for resource type remoteCSE containing attribute " & p_optionalAttribute.name); - } - [] mccPort.receive(mw_response(mw_responsePrimitiveOK(f_getTemplateFromPrimitiveContent(v_request.primitiveContent)))) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code in the response"); - } - [] mccPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Accepted creation for resource type remoteCSE without containing attribute " & p_optionalAttribute.name); - } - [] mccPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Rejected creation of resource type remoteCSE containing attribute" & p_optionalAttribute.name); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while creating resource type remoteCSE"); - } - } - - // Postamble - f_cse_postamble_deleteResources(); + mcaPort.send(m_request(v_request)); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int4105))) { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": AE creation rejected."); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveInverse(int4105))) -> value v_response{ + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while creating AE with status code " & int2str(enum2int(v_response.primitive.responsePrimitive.responseStatusCode))); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while creating AE"); + } + } + + // Postamble + f_cse_postamble_deleteResources(); - // Tear down - f_cf04Down(); - - }//end f_CSE_REG_CRE_BV_015 - }// end group g_CSE_REG_CRE_BV_015 + // Tear down + f_cf01Down(); + + } + + } //end group Create @@ -13600,7 +13602,7 @@ module OneM2M_Testcases { group Group_Managment { - group g_CSE_GMG_CRE_001 { + group Create { /** * @desc Check that the IUT rejects the creation of the group resource when member ID exceed max number of members. @@ -13679,11 +13681,7 @@ module OneM2M_Testcases { } - } // end group g_CSE_GMG_CRE_001 - - group g_CSE_GMG_CRE_002 { - - /** + /** * @desc Check that the IUT rejects the creation of the group resource when the memberType cannot be retrieved due to lack of privilege. * */ @@ -13757,82 +13755,6 @@ module OneM2M_Testcases { f_cf01Down(); } - } // end group g_CSE_GMG_CRE_002 - - group g_CSE_GMG_UPD_001 { - - /** - * @desc Check that the IUT rejects the update of the group resource when the memberType cannot be retrieved due to lack of privilege. - * - */ - testcase TC_CSE_GMG_UPD_001() runs on CseTester system CseSystem { - // Local variables - var MsgIn v_response; - var integer v_aeIndex := -1; - var integer v_containerIndex_1 := -1; - var integer v_containerIndex_2 := -1; - var integer v_acpIndex := -1; - var integer v_groupIndex := -1; - var RequestPrimitive v_request; - var template RequestPrimitive v_containerCreateRequest := m_createContainer_noResourceName; - var template RequestPrimitive v_updateRequest := m_updateGroupBase; - var template RequestPrimitive v_createAcp := m_createAcp("NotInitialized", "MyAcp", -, int61); //c_CUDNDi - - // Test control - if(not(PICS_ACP_SUPPORT)) { - setverdict(inconc, __SCOPE__ & ": AccessControlPolicy support is required to run this test case"); - stop; - } - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe(-, -); //c_CRUDNDi - v_acpIndex := f_cse_createResource(int1, v_createAcp, v_aeIndex); // AE child resource - v_containerCreateRequest.primitiveContent.container.accessControlPolicyIDs := {f_getResourceId(vc_resourcesList[v_acpIndex].resource)}; - v_containerIndex_1 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource - v_containerIndex_2 := f_cse_createResource(int3, v_containerCreateRequest, v_aeIndex); // AE child resource - v_groupIndex := f_cse_createResource(int9, m_createGroup(2, {f_getResourceId(vc_resourcesList[v_containerIndex_1].resource)}, omit, int3, -, - , -), v_aeIndex); - - v_updateRequest.primitiveContent.group_.memberIDs := {f_getResourceId(vc_resourcesList[v_containerIndex_2].resource)}; - v_request := f_getUpdateRequestPrimitive(int9, v_groupIndex, v_updateRequest); // creating group - - // Test Body - - mcaPort.send(m_request(v_request)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int5105))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Update failed due to lack of privilege"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error update successful while doesn't have privileges for retrieving resource"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while updating resource"); - } - } - - // Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - } - - } // end group g_CSE_GMG_UPD_001 - - group g_CSE_GMG_CRE_003 { - /** * @desc Check that the IUT detects the presence of duplicate member IDs during the creation of the <group> resource and removes the duplicate member IDs prior to creation of the <group> resource. * @@ -13890,11 +13812,7 @@ module OneM2M_Testcases { f_cf01Down(); } - - } // end group g_CSE_GMG_CRE_003 - - group g_CSE_GMG_CRE_004 { - + /** * @desc Check that the IUT validates the resource type during the creation of the <group> resource when memberType attribute is not ‘mixed’. */ @@ -13950,10 +13868,6 @@ module OneM2M_Testcases { f_cf01Down(); } - } // end group g_CSE_GMG_CRE_004 - - - group g_CSE_GMG_CRE_005 { /** * @desc Check that the IUT handles unsuccessful validation of the resource type during the creation of the <group> resource when memberType attribute is not ‘mixed’ and the consistencyStrategy attribute is SET_MIXED. @@ -14022,71 +13936,7 @@ module OneM2M_Testcases { f_cf01Down(); } - } // end group g_CSE_GMG_CRE_005 - - group g_CSE_GMG_CRE_007 { - /** - * @desc Check that the IUT handles unsuccessful validation of the resource type during the creation of the group resource when memberType attribute is not ‘mixed’ and the consistencyStrategy attribute is ABANDON_GROUP. - * - */ - testcase TC_CSE_GMG_CRE_007() runs on CseTester system CseSystem { - //Local variables - var MsgIn v_response; - var RequestPrimitive v_createRequest; - var integer v_aeIndex := -1; - var integer v_containerIndex := -1; - var integer v_groupIndex := -1; - var ListOfURIs v_memberIDs; - - // Test control - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe(); //c_CRUDNDi - v_containerIndex := f_cse_createResource(int3, m_createContainer("NotInitialized", "MyContainer"), v_aeIndex); - v_groupIndex := f_cse_createResource(int9, m_createGroupBase, v_aeIndex); - v_memberIDs := {f_getResourceId(vc_resourcesList[v_groupIndex].resource), f_getResourceId(vc_resourcesList[v_containerIndex].resource)}; - v_createRequest := valueof(m_createGroup(2, v_memberIDs, omit, int3, int2, -, -)); //Member type is set to container and consistencyStrategy is set to ABANDON GROUP - v_createRequest := f_getCreateRequestPrimitive(int9, v_createRequest, v_aeIndex); - - // Test Body - mcaPort.send(m_request(v_createRequest)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int6011))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": unsuccessful validation of the resource type during the creation of the group"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error create succesfull while the operation should be aborted"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while creating resource"); - } - } - - // Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - - } - - } // end group g_CSE_GMG_CRE_007 - - group g_CSE_GMG_CRE_006 { - /** * @desc Check that the IUT handles unsuccessful validation of the resource type during the creation of the <group> resource when memberType attribute is not ‘mixed’ and the consistencyStrategy attribute is ABANDON_MEMBER,. * @@ -14157,418 +14007,418 @@ module OneM2M_Testcases { f_cf01Down(); } - - } // end group g_CSE_GMG_CRE_006 - group g_CSE_GMG_UPD_002 { - - /** - * @desc Check that the IUT detects the presence of duplicate member IDs during an update of the <group> resource and removes the duplicate member IDs prior to updating the <group> resource. - * - */ - testcase TC_CSE_GMG_UPD_002() runs on CseTester system CseSystem { - // Local variables + + /** + * @desc Check that the IUT handles unsuccessful validation of the resource type during the creation of the group resource when memberType attribute is not ‘mixed’ and the consistencyStrategy attribute is ABANDON_GROUP. + * + */ + testcase TC_CSE_GMG_CRE_007() runs on CseTester system CseSystem { + //Local variables var MsgIn v_response; + var RequestPrimitive v_createRequest; var integer v_aeIndex := -1; - var integer v_containerIndex_1 := -1; - var integer v_containerIndex_2 := -1; + var integer v_containerIndex := -1; var integer v_groupIndex := -1; - var RequestPrimitive v_updateRequest := valueof(m_updateGroupBase); - var XSD.AnyURI v_memberId_1; - var XSD.AnyURI v_memberId_2; - var PrimitiveContent v_primitiveContentRetrievedResource; - + var ListOfURIs v_memberIDs; + // Test control - + // Test component configuration f_cf01Up(); - + // Test adapter configuration - + // Preamble v_aeIndex := f_cse_preamble_registerAe(); //c_CRUDNDi - v_containerIndex_1 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource - v_containerIndex_2 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource - v_memberId_1 := f_getResourceId(vc_resourcesList[v_containerIndex_1].resource); - v_memberId_2 := f_getResourceId(vc_resourcesList[v_containerIndex_2].resource); - v_groupIndex := f_cse_createResource(int9, m_createGroup(2, {v_memberId_1, v_memberId_2}, omit, int3, -, -, -), v_aeIndex); // AE child resource - - v_updateRequest.primitiveContent.group_.memberIDs := {v_memberId_2, v_memberId_2}; - v_updateRequest := f_getUpdateRequestPrimitive(int9, v_groupIndex, v_updateRequest); - - //Test Body - mcaPort.send(m_request(v_updateRequest)); + v_containerIndex := f_cse_createResource(int3, m_createContainer("NotInitialized", "MyContainer"), v_aeIndex); + v_groupIndex := f_cse_createResource(int9, m_createGroupBase, v_aeIndex); + v_memberIDs := {f_getResourceId(vc_resourcesList[v_groupIndex].resource), f_getResourceId(vc_resourcesList[v_containerIndex].resource)}; + v_createRequest := valueof(m_createGroup(2, v_memberIDs, omit, int3, int2, -, -)); //Member type is set to container and consistencyStrategy is set to ABANDON GROUP + v_createRequest := f_getCreateRequestPrimitive(int9, v_createRequest, v_aeIndex); + + // Test Body + mcaPort.send(m_request(v_createRequest)); tc_ac.start; alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int2004))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": update successful"); - - // check for membersId - if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.group_.memberIDs)){ - setverdict(fail, __SCOPE__, ": Error, memberIDs attribute not provided"); - } - else { - if(lengthof(v_response.primitive.responsePrimitive.primitiveContent.group_.memberIDs) != 1) { - setverdict(fail, __SCOPE__ & ": Error, wrong number of memberIDs attribute"); - } - if(v_response.primitive.responsePrimitive.primitiveContent.group_.memberIDs[0] != v_memberId_2){ - setverdict(fail, __SCOPE__, ": Error, memberIDs attribute not correct"); - } - } - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int6011))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": unsuccessful validation of the resource type during the creation of the group"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { tc_ac.stop; setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while updating resource"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while updating resource"); - } - } - - v_primitiveContentRetrievedResource := f_cse_retrieveResource(v_groupIndex); - if(getverdict == pass){ - if(ischosen(v_primitiveContentRetrievedResource.group_)){ - if(v_primitiveContentRetrievedResource.group_.memberIDs[0] != v_memberId_2){ - setverdict(fail, __SCOPE__, ": Error, memberIDs attribute not updated"); - } - } - } + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error create succesfull while the operation should be aborted"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while creating resource"); + } + } - //Postamble + // Postamble f_cse_postamble_deleteResources(); - + // Tear down f_cf01Down(); + } - } // end group g_CSE_GMG_UPD_002 - - group g_CSE_GMG_UPD_003 { - - /** - * @desc Check that the IUT validates the resource type during an UPDATE of the <group> resource when memberType attribute is not ‘mixed’. - * - */ - testcase TC_CSE_GMG_UPD_003() runs on CseTester system CseSystem { - // Local variables + + group g_CSE_GMG_CRE_008 { + + /** + * @desc Check that IUT generates a request primitive for each resource in memberIDs with no relative address appended to it. + * + */ + testcase TC_CSE_GMG_CRE_008_CRE() runs on CseTester system CseSystem { //Create + var template PrimitiveContent v_contentResponse; + v_contentResponse.container := mw_contentContainer_rc1; + + f_CSE_GMG_CRE_008(m_createContainerBase, v_contentResponse, int2001); + }//end TC_CSE_GMG_CRE_008_CRE + + testcase TC_CSE_GMG_CRE_008_UPD() runs on CseTester system CseSystem { //Update + var template RequestPrimitive v_updateRequest := m_updateAeBase; + var template PrimitiveContent v_contentResponse; + var Labels v_labels_1:= {"VALUE_1"}; + v_contentResponse.aE := m_contentAe_allOmit; + v_contentResponse.aE.labels := ?; + v_updateRequest.primitiveContent.aE.labels := v_labels_1; + + f_CSE_GMG_CRE_008(v_updateRequest, v_contentResponse, int2004); + }//end TC_CSE_GMG_CRE_008_UPD + + testcase TC_CSE_GMG_CRE_008_RET() runs on CseTester system CseSystem { //Retrieve + var template PrimitiveContent v_contentResponse; + v_contentResponse.aE := mw_contentAeBase; + + f_CSE_GMG_CRE_008(m_retrieveResource("Temporary", "Temporary"), v_contentResponse, int2000); + }//end TC_CSE_GMG_CRE_008_RET + + testcase TC_CSE_GMG_CRE_008_DEL() runs on CseTester system CseSystem { //Delete + var template PrimitiveContent v_contentResponse; + v_contentResponse.aE := mw_contentAeBase;// TODO see with wath should it be matched + + f_CSE_GMG_CRE_008(m_deleteRequest("Temporary"), v_contentResponse, int2002); + }//end TC_CSE_GMG_CRE_008_DEL + + function f_CSE_GMG_CRE_008(template RequestPrimitive p_requestPrimitive, template PrimitiveContent p_contentResponse, in ResponseStatusCode p_responseStatusCode) runs on CseTester { + //Local constants + const integer c_numberOfResponsePrimitive := 2; + + // Local variables + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_containerIndex_1 := -1; + var integer v_containerIndex_2 := -1; + var integer v_groupIndex := -1; + var ListOfURIs v_memberIDs; + var integer i; + var RequestPrimitive v_createRequest := valueof(m_createContentInstance("NotInitialized", "Value1")); + + // Test control + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_aeIndex := f_cse_preamble_registerAe(-, -); //c_CRUDNDi + v_containerIndex_1 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource + v_containerIndex_2 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource + v_memberIDs := {f_getResourceId(vc_resourcesList[v_containerIndex_1].resource), f_getResourceId(vc_resourcesList[v_containerIndex_2].resource)}; + v_groupIndex := f_cse_createResource(int9, m_createGroup(2, v_memberIDs, omit, int3, -, -), v_aeIndex); // AE child resource + + p_requestPrimitive.to_ := f_getResourceAddress(v_groupIndex) & "/fopt"; + p_requestPrimitive.from_ := f_getOriginator(v_aeIndex); + + // Test Body + + mcaPort.send(m_request(valueof(p_requestPrimitive))); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(p_responseStatusCode))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": creation successfull by using fanOutPoint in group resource"); + + if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list)){ + setverdict(fail, __SCOPE__, ": Error, aggregatedResponse attribute not provided"); + } + else{ + if(lengthof(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list) != c_numberOfResponsePrimitive){ + setverdict(fail, __SCOPE__, ": Error, length of aggregatedResponse is not valid"); + } + else{ + for(i:=0; i<c_numberOfResponsePrimitive; i:=i+1){ + if(not match(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list[i].primitiveContent, p_contentResponse)){ + setverdict(fail, __SCOPE__, ": Error, aggregatedResponse doesn't match with template expected"); + } + } + } + } + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while creating resource"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while creating resource"); + } + } + + // Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf01Down(); + + } // end f_CSE_GMG_CRE_008 + + } // end group g_CSE_GMG_CRE_008 + + + /** + * @desc Check that IUT generates a request primitive for each resource in memberIDs with a relative address appended to it. + * + */ + testcase TC_CSE_GMG_CRE_009() runs on CseTester system CseSystem { + //Local constants + const integer c_numberOfResponsePrimitive := 2; + + // Local variables var MsgIn v_response; - var integer v_aeIndex := -1; - var integer v_containerIndex_1 := -1; - var integer v_containerIndex_2 := -1; - var integer v_groupIndex := -1; - var RequestPrimitive v_updateRequest := valueof(m_updateGroupBase); - var PrimitiveContent v_primitiveContentRetrievedResource; - - // Test control - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe(); //c_CRUDNDi - v_containerIndex_1 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource - v_containerIndex_2 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource - v_groupIndex := f_cse_createResource(int9, m_createGroup(2, {f_getResourceId(vc_resourcesList[v_containerIndex_1].resource)}, omit, int3, -, -, -), v_aeIndex); + var integer v_aeIndex_1, v_aeIndex_2, v_acpIndex, v_containerIndex_1, v_containerIndex_2, v_groupIndex := -1; + var integer i; + var ListOfURIs v_memberIDs; + var ListOfURIs v_membersAcpIds; + var RequestPrimitive v_createRequest := valueof(m_createContentInstance("NotInitialized", "Value1")); + var template RequestPrimitive v_createAcp := m_createAcp("NotInitialized", "MyACP", -, -); + var template PrimitiveContent v_contentResponse; - v_updateRequest.primitiveContent.group_.memberIDs := {f_getResourceId(vc_resourcesList[v_containerIndex_2].resource)}; - v_updateRequest := f_getUpdateRequestPrimitive(int9, v_groupIndex, v_updateRequest); + v_contentResponse.contentInstance := mw_contentContentInstanceBase; - // Test Body - mcaPort.send(m_request(v_updateRequest));// TODO see if the memberTypeValidated is present in the update response - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int2004))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": update successful"); - - if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.group_.memberTypeValidated)) { - setverdict(fail, __SCOPE__, ": Error, memberTypeValidated attribute not provided"); - } - else { - if(v_response.primitive.responsePrimitive.primitiveContent.group_.memberTypeValidated == false) { - setverdict(fail, __SCOPE__, ": Error, memberTypeValidated wrong value"); - } - } - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while updating resource"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while updating resource"); - } - } - - v_primitiveContentRetrievedResource := f_cse_retrieveResource(v_groupIndex); - if(getverdict == pass){ - if(ischosen(v_primitiveContentRetrievedResource.group_)){ - if(v_primitiveContentRetrievedResource.group_.memberTypeValidated == false){ - setverdict(fail, __SCOPE__, ": Error, memberTypeValidated attribute not updated"); - } - } - } - - //Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - } - } // end group g_CSE_GMG_UPD_003 - - group g_CSE_GMG_UPD_004 { - - /** - * @desc Check that the IUT handles unsuccessful validation of the resource type during an UPDATE of the <group> resource when memberType attribute is not ‘mixed’ and the consistencyStrategy attribute is SET_MIXED. - * - */ - testcase TC_CSE_GMG_UPD_004() runs on CseTester system CseSystem { - // Local variables - var MsgIn v_response; - var RequestPrimitive v_updateRequest := valueof(m_updateGroupBase); - var integer v_aeIndex := -1; - var integer v_containerIndex := -1; - var integer v_groupIndex := -1; - var integer v_subGroupIndex := -1; - var XSD.AnyURI v_memberId_1; - var XSD.AnyURI v_memberId_2; - var PrimitiveContent v_primitiveContentRetrievedResource; + // Test control + if(not(PICS_ACP_SUPPORT)) { + setverdict(inconc, __SCOPE__ & ": AccessControlPolicy support is required to run this test case"); + stop; + } + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_aeIndex_1 := f_cse_preamble_registerAe(-, -); //c_CRUDNDi + v_aeIndex_2 := f_cse_createResource(int2, m_createAe(PX_APP_ID, -, PX_AE2_ID_STEM, "MyAe2", omit), -1); // AE2 is registred + v_acpIndex := f_cse_createResource(int1, v_createAcp, -1); // AE child resource + v_containerIndex_1 := f_cse_createResource(int3, m_createContainerBase, v_aeIndex_1); // AE1 child resource + v_containerIndex_2 := f_cse_createResource(int3, m_createContainerBase, v_aeIndex_2); // AE2 child resource + v_memberIDs := {f_getResourceId(vc_resourcesList[v_aeIndex_1].resource), f_getResourceId(vc_resourcesList[v_aeIndex_2].resource)}; + v_membersAcpIds := {f_getResourceId(vc_resourcesList[v_acpIndex].resource)}; + v_groupIndex := f_cse_createResource(int9, m_createGroup(2, v_memberIDs, omit, int2, -, v_membersAcpIds, -), -); + + v_createRequest.to_ := f_getResourceAddress(v_groupIndex) & "/" & c_resourceShortNameFanOutPoint & "/" & c_defaultContainerResourceName; + v_createRequest.from_ := f_getOriginator(v_groupIndex); //TODO see if it is correct or if we have to use PX_SUPER_ADMIN + + // Test Body + + mcaPort.send(m_request(v_createRequest)); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int2001))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": creation successfull by using fanOutPoint in group resource"); - // Test control - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe(); //c_CRUDNDi - v_containerIndex := f_cse_createResource(int3, m_createContainer("NotInitialized", "MyContainer"), v_aeIndex); - v_subGroupIndex := f_cse_createResource(int9, m_createGroupBase, v_aeIndex); - v_memberId_1 := f_getResourceId(vc_resourcesList[v_containerIndex].resource); - v_memberId_2 := f_getResourceId(vc_resourcesList[v_subGroupIndex].resource); - v_groupIndex := f_cse_createResource(int9, m_createGroup(2, {v_memberId_1}, omit, int3, int3, -, -), v_aeIndex); //Member type is set to Container (int3) and consistencyStrategy is set to MIXED (int3) - - v_updateRequest.primitiveContent.group_.memberIDs := {v_memberId_1, v_memberId_2}; - v_updateRequest := f_getUpdateRequestPrimitive(int9, v_groupIndex, v_updateRequest); - - // Test Body - mcaPort.send(m_request(v_updateRequest));// TODO see if the memberTypeValidated is present in the update response - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int2004))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": update successful"); - - //memberTypeValidated attribute set to FALSE - if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.group_.memberTypeValidated)) { - setverdict(fail, __SCOPE__, ": Error, memberTypeValidated attribute not provided"); - } - else { - if(v_response.primitive.responsePrimitive.primitiveContent.group_.memberTypeValidated != false) { - setverdict(fail, __SCOPE__, ": Error, memberTypeValidated must be FALSE"); - } - } - - //memberType attribute set to MIXED - if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.group_.memberType)) { - setverdict(fail, __SCOPE__, ": Error, memberType attribute not provided"); + if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list)){ + setverdict(fail, __SCOPE__, ": Error, aggregatedResponse attribute not provided"); } - else { - if(v_response.primitive.responsePrimitive.primitiveContent.group_.memberType != int0) { //Mixed is int0 in release 2 and int24 in release 1 - setverdict(fail, __SCOPE__, ": Error, memberType was not set to MIXED"); + else{ + if(lengthof(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list) != c_numberOfResponsePrimitive){ + setverdict(fail, __SCOPE__, ": Error, length of aggregatedResponse is not valid"); } - } - + else{ + for(i:=0; i<c_numberOfResponsePrimitive; i:=i+1){ + if(not match(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list[i].primitiveContent, v_contentResponse)){ + setverdict(fail, __SCOPE__, ": Error, aggregatedResponse doesn't match with template expected"); + } + } + } + } } [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); } [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while retrieving resource"); + setverdict(fail, __SCOPE__ & ": Error while creating resource"); } [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while retrieving resource"); + setverdict(fail, __SCOPE__ & ": No answer while creating resource"); } } - - v_primitiveContentRetrievedResource := f_cse_retrieveResource(v_groupIndex); - if(getverdict == pass){ - if(ischosen(v_primitiveContentRetrievedResource.group_)){ - if(v_primitiveContentRetrievedResource.group_.memberTypeValidated == false){ - setverdict(fail, __SCOPE__, ": Error, memberTypeValidated attribute not updated"); - } - - if(v_primitiveContentRetrievedResource.group_.memberType != int0){ - setverdict(fail, __SCOPE__, ": Error, memberType attribute not set to MIXED"); - } - } - } - - //Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - } - } // end group g_CSE_GMG_UPD_004 - - group g_CSE_GMG_UPD_005 { - - /** - * @desc Check that the IUT handles unsuccessful validation of the resource type during an UPDATE of the group resource when memberType attribute is not ‘mixed’ and the consistencyStrategy attribute is ABANDON_MEMBER. - * - */ - testcase TC_CSE_GMG_UPD_005() runs on CseTester system CseSystem { + + // Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf01Down(); + + } // end TC_CSE_GMG_CRE_009 + + } // end group Create + + group Retrieve { + + /** + * @desc Check that the IUT generates a request primitive for each resource in memberIDs with a relative address appended to fanOutPoint that includes a virtual resource. + * + */ + testcase TC_CSE_GMG_RET_001() runs on CseTester system CseSystem { + //Local constants + const integer c_numberOfResponsePrimitive := 2; + // Local variables var MsgIn v_response; - var RequestPrimitive v_updateRequest := valueof(m_updateGroupBase); - var integer v_aeIndex := -1; - var integer v_containerIndex := -1; - var integer v_groupIndex := -1; - var integer v_subGroupIndex := -1; - var XSD.AnyURI v_memberId_1; - var XSD.AnyURI v_memberId_2; - var PrimitiveContent v_primitiveContentRetrievedResource; - + var integer v_aeIndex_1, v_aeIndex_2, v_acpIndex, v_containerIndex_1, v_containerIndex_2, v_groupIndex, v_contentInstanceIndex_1, v_contentInstanceIndex_2 := -1; + var integer i; + var ListOfURIs v_memberIDs; + var ListOfURIs v_membersAcpIds; + var template RequestPrimitive v_createAcp := m_createAcp("NotInitialized", "MyACP", -, -); + var template PrimitiveContent v_contentResponse; + var XSD.AnyURI v_fanoutPointAddress; + + v_contentResponse.container := mw_contentContainerBase; + // Test control - + if(not(PICS_ACP_SUPPORT)) { + setverdict(inconc, __SCOPE__ & ": AccessControlPolicy support is required to run this test case"); + stop; + } + // Test component configuration f_cf01Up(); - - // Test adapter configuration - + + // Test adapter configuration + // Preamble - v_aeIndex := f_cse_preamble_registerAe(); //c_CRUDNDi - v_containerIndex := f_cse_createResource(int3, m_createContainer("NotInitialized", "MyContainer"), v_aeIndex); - v_subGroupIndex := f_cse_createResource(int9, m_createGroupBase, v_aeIndex); - v_memberId_1 := f_getResourceId(vc_resourcesList[v_containerIndex].resource); - v_memberId_2 := f_getResourceId(vc_resourcesList[v_subGroupIndex].resource); - v_groupIndex := f_cse_createResource(int9, m_createGroup(2, {v_memberId_1}, omit, int3, omit), v_aeIndex); //Member type is set to Container (int3) and consistencyStrategy is set to ABANDON MEMBER (default value) - - v_updateRequest.primitiveContent.group_.memberIDs := {v_memberId_2, v_memberId_1}; - v_updateRequest := f_getUpdateRequestPrimitive(int9, v_groupIndex, v_updateRequest); + v_aeIndex_1 := f_cse_preamble_registerAe(-, -); //c_CRUDNDi + v_aeIndex_2 := f_cse_createResource(int2, m_createAe(PX_APP_ID, -, PX_AE2_ID_STEM, "MyAe2", omit), -1); // AE2 is registred + v_acpIndex := f_cse_createResource(int1, v_createAcp, -1); // AE child resource + v_containerIndex_1 := f_cse_createResource(int3, m_createContainerBase, v_aeIndex_1); // AE1 child resource + v_containerIndex_2 := f_cse_createResource(int3, m_createContainerBase, v_aeIndex_2); // AE2 child resource + v_contentInstanceIndex_1 := f_cse_createResource(int4, m_createContentInstanceBase, v_containerIndex_1); // Container_1 child resource + v_contentInstanceIndex_2 := f_cse_createResource(int4, m_createContentInstanceBase, v_containerIndex_2); // Container_2 child resource + v_memberIDs := {f_getResourceId(vc_resourcesList[v_aeIndex_1].resource), f_getResourceId(vc_resourcesList[v_aeIndex_2].resource)}; + v_membersAcpIds := {f_getResourceId(vc_resourcesList[v_acpIndex].resource)}; + v_groupIndex := f_cse_createResource(int9, m_createGroup(2, v_memberIDs, omit, int2, -, v_membersAcpIds), -1); + + v_fanoutPointAddress := f_getResourceAddress(v_groupIndex) & "/" & c_resourceShortNameFanOutPoint & "/" & c_defaultContainerResourceName & "/" & c_resourceShortNameLatest; - //Test Body - - mcaPort.send(m_request(v_updateRequest)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int2004))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": update successful"); - - //memberTypeValidated attribute set to TRUE - if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.group_.memberTypeValidated)) { - setverdict(fail, __SCOPE__, ": Error, memberTypeValidated attribute not provided"); - } - else { - if(v_response.primitive.responsePrimitive.primitiveContent.group_.memberTypeValidated != true) { - setverdict(fail, __SCOPE__, ": Error, memberTypeValidated must be TRUE"); - } - } - - //memberIDs attribute set to v_memberID1 - if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.group_.memberIDs)){ - setverdict(fail, __SCOPE__, ": Error, memberIDs attribute not provided"); + // Test Body + mcaPort.send(m_request(m_retrieveResource(v_fanoutPointAddress, f_getOriginator(v_aeIndex_1)))); //TODO see if it is correct or if we have to use PX_SUPER_ADMIN + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int2000))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": creation successfull by using fanOutPoint in group resource"); + + if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list)){ + setverdict(fail, __SCOPE__, ": Error, aggregatedResponse attribute not provided"); } - else { - if(lengthof(v_response.primitive.responsePrimitive.primitiveContent.group_.memberIDs) != 1) { - setverdict(fail, __SCOPE__ & ": Error, wrong number of memberIDs attribute"); - } - if(v_response.primitive.responsePrimitive.primitiveContent.group_.memberIDs[0] != v_memberId_1){ - setverdict(fail, __SCOPE__, ": Error, memberIDs attribute not correct"); + else{ + if(lengthof(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list) != c_numberOfResponsePrimitive){ + setverdict(fail, __SCOPE__, ": Error, length of aggregatedResponse is not valid"); } - } - } + else{ + for(i:=0; i<c_numberOfResponsePrimitive; i:=i+1){ + if(not match(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list[i].primitiveContent, v_contentResponse)){ + setverdict(fail, __SCOPE__, ": Error, aggregatedResponse doesn't match with template expected"); + } + } + } + } + } [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while updating resource"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while updating resource"); - } - } - - v_primitiveContentRetrievedResource := f_cse_retrieveResource(v_groupIndex); - if(getverdict == pass){ - if(ischosen(v_primitiveContentRetrievedResource.group_)){ - if(v_primitiveContentRetrievedResource.group_.memberTypeValidated == false){ - setverdict(fail, __SCOPE__, ": Error, memberTypeValidated attribute not updated"); - } - - if(v_primitiveContentRetrievedResource.group_.memberIDs[0] != v_memberId_1){ - setverdict(fail, __SCOPE__, ": Error, memberIDs attribute not correct"); - } - } - } - - //Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - } - } // end group g_CSE_GMG_UPD_005 - - group g_CSE_GMG_UPD_006 { - - /** - * @desc Check that the IUT handles unsuccessful validation of the resource type during the creation of the group resource when memberType attribute is not ‘mixed’ and the consistencyStrategy attribute is ABANDON_GROUP. - * - */ - testcase TC_CSE_GMG_UPD_006() runs on CseTester system CseSystem { + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while creating resource"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while creating resource"); + } + } + + // Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf01Down(); + + } // end TC_CSE_GMG_RET_001 + + } // end group Retrieve + + group Update { + + /** + * @desc Check that the IUT rejects the update of the group resource when the memberType cannot be retrieved due to lack of privilege. + * + */ + testcase TC_CSE_GMG_UPD_001() runs on CseTester system CseSystem { // Local variables - var MsgIn v_response; - var RequestPrimitive v_updateRequest := valueof(m_updateGroupBase); - var integer v_aeIndex := -1; - var integer v_containerIndex := -1; - var integer v_groupIndex := -1; - var integer v_subGroupIndex := -1; - var XSD.AnyURI v_memberId_1; - var XSD.AnyURI v_memberId_2; - - // Test control - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe(); //c_CRUDNDi - v_containerIndex := f_cse_createResource(int3, m_createContainer("NotInitialized", "MyContainer"), v_aeIndex); - v_subGroupIndex := f_cse_createResource(int9, m_createGroupBase, v_aeIndex); - v_memberId_1 := f_getResourceId(vc_resourcesList[v_containerIndex].resource); - v_memberId_2 := f_getResourceId(vc_resourcesList[v_subGroupIndex].resource); - v_groupIndex := f_cse_createResource(int9, m_createGroup(2, {v_memberId_1}, omit, int3, int2), v_aeIndex); //Member type is set to Container(int3) and consistencyStrategy is set to ABANDON GROUP (default value) - - v_updateRequest.primitiveContent.group_.memberIDs := {v_memberId_2, v_memberId_1}; - v_updateRequest := f_getUpdateRequestPrimitive(int9, v_groupIndex, v_updateRequest); - - //Test Body - mcaPort.send(m_request(v_updateRequest)); + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_containerIndex_1 := -1; + var integer v_containerIndex_2 := -1; + var integer v_acpIndex := -1; + var integer v_groupIndex := -1; + var RequestPrimitive v_request; + var template RequestPrimitive v_containerCreateRequest := m_createContainer_noResourceName; + var template RequestPrimitive v_updateRequest := m_updateGroupBase; + var template RequestPrimitive v_createAcp := m_createAcp("NotInitialized", "MyAcp", -, int61); //c_CUDNDi + + // Test control + if(not(PICS_ACP_SUPPORT)) { + setverdict(inconc, __SCOPE__ & ": AccessControlPolicy support is required to run this test case"); + stop; + } + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_aeIndex := f_cse_preamble_registerAe(-, -); //c_CRUDNDi + v_acpIndex := f_cse_createResource(int1, v_createAcp, v_aeIndex); // AE child resource + v_containerCreateRequest.primitiveContent.container.accessControlPolicyIDs := {f_getResourceId(vc_resourcesList[v_acpIndex].resource)}; + v_containerIndex_1 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource + v_containerIndex_2 := f_cse_createResource(int3, v_containerCreateRequest, v_aeIndex); // AE child resource + v_groupIndex := f_cse_createResource(int9, m_createGroup(2, {f_getResourceId(vc_resourcesList[v_containerIndex_1].resource)}, omit, int3, -, - , -), v_aeIndex); + + v_updateRequest.primitiveContent.group_.memberIDs := {f_getResourceId(vc_resourcesList[v_containerIndex_2].resource)}; + v_request := f_getUpdateRequestPrimitive(int9, v_groupIndex, v_updateRequest); // creating group + + // Test Body + + mcaPort.send(m_request(v_request)); tc_ac.start; alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int6011))) -> value v_response { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int5105))) -> value v_response { tc_ac.stop; - setverdict(pass, __SCOPE__ & ": unsuccessful validation of the resource type during the creation of the group"); + setverdict(pass, __SCOPE__ & ": Update failed due to lack of privilege"); } [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { tc_ac.stop; @@ -14576,173 +14426,173 @@ module OneM2M_Testcases { } [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error create succesfull while the operation should be aborted"); + setverdict(fail, __SCOPE__ & ": Error update successful while doesn't have privileges for retrieving resource"); } [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while creating resource"); + setverdict(fail, __SCOPE__ & ": No answer while updating resource"); } } - - //Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); + + // Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf01Down(); } - } // end group g_CSE_GMG_UPD_006 - - group g_CSE_GMG_UPD_007 { - - /** - * @desc Check that the IUT detects when the number of memberIDs exceeds the limitation of maxNrOfMembers. - * - */ - testcase TC_CSE_GMG_UPD_007() runs on CseTester system CseSystem - { - //Local constants - const integer c_maxNrOfMembers := 2; - - // Local variables - var MsgIn v_response; - var RequestPrimitive v_request; - var integer v_aeIndex := -1; - var integer v_groupIndex, v_containerIndex_1, v_containerIndex_2, v_containerIndex_3 := -1; - var ListOfURIs v_memberIDs; - var template RequestPrimitive v_createRequest; - var PrimitiveContent v_primitiveContentRetrievedResource; + + + /** + * @desc Check that the IUT detects the presence of duplicate member IDs during an update of the <group> resource and removes the duplicate member IDs prior to updating the <group> resource. + * + */ + testcase TC_CSE_GMG_UPD_002() runs on CseTester system CseSystem { + // Local variables + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_containerIndex_1 := -1; + var integer v_containerIndex_2 := -1; + var integer v_groupIndex := -1; + var RequestPrimitive v_updateRequest := valueof(m_updateGroupBase); + var XSD.AnyURI v_memberId_1; + var XSD.AnyURI v_memberId_2; + var PrimitiveContent v_primitiveContentRetrievedResource; + + // Test control - var template RequestPrimitive v_updateRequest := m_updateGroupBase; - var template RequestPrimitive v_createMember; - - // Test control - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + // Preamble + v_aeIndex := f_cse_preamble_registerAe(); //c_CRUDNDi v_containerIndex_1 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource v_containerIndex_2 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource - v_containerIndex_3 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource - - v_memberIDs := {f_getResourceId(vc_resourcesList[v_containerIndex_1].resource), f_getResourceId(vc_resourcesList[v_containerIndex_2].resource)}; + v_memberId_1 := f_getResourceId(vc_resourcesList[v_containerIndex_1].resource); + v_memberId_2 := f_getResourceId(vc_resourcesList[v_containerIndex_2].resource); + v_groupIndex := f_cse_createResource(int9, m_createGroup(2, {v_memberId_1, v_memberId_2}, omit, int3, -, -, -), v_aeIndex); // AE child resource - v_createRequest := valueof(m_createGroup(c_maxNrOfMembers, v_memberIDs, omit, int3)); + v_updateRequest.primitiveContent.group_.memberIDs := {v_memberId_2, v_memberId_2}; + v_updateRequest := f_getUpdateRequestPrimitive(int9, v_groupIndex, v_updateRequest); - v_groupIndex := f_cse_createResource(int9, v_createRequest, v_aeIndex); - - //Test Body - v_request := f_getUpdateRequestPrimitive(int9, v_groupIndex, v_updateRequest); - v_memberIDs := v_memberIDs & {f_getResourceId(vc_resourcesList[v_containerIndex_3].resource)}; - v_request.primitiveContent.group_.memberIDs := v_memberIDs; - - mcaPort.send(m_request(v_request)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int6010))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": operation is not allowed"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { + //Test Body + mcaPort.send(m_request(v_updateRequest)); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int2004))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": update successful"); + + // check for membersId + if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.group_.memberIDs)){ + setverdict(fail, __SCOPE__, ": Error, memberIDs attribute not provided"); + } + else { + if(lengthof(v_response.primitive.responsePrimitive.primitiveContent.group_.memberIDs) != 1) { + setverdict(fail, __SCOPE__ & ": Error, wrong number of memberIDs attribute"); + } + if(v_response.primitive.responsePrimitive.primitiveContent.group_.memberIDs[0] != v_memberId_2){ + setverdict(fail, __SCOPE__, ": Error, memberIDs attribute not correct"); + } + } + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error update successful while maxNrOfMembers has exceeded"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while retrieving resource"); - } - } - - v_primitiveContentRetrievedResource := f_cse_retrieveResource(v_groupIndex); - if(getverdict == pass){ - //Check that the resource has NOT been udpated - if(ischosen(v_primitiveContentRetrievedResource.group_)) { - if(v_primitiveContentRetrievedResource.group_.memberIDs == v_memberIDs){ - setverdict(fail, __SCOPE__ & ": Error: MemberIDs attribute updated") - } - } - } - - //Postamble - f_cse_postamble_deleteResources(); + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while updating resource"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while updating resource"); + } + } + + v_primitiveContentRetrievedResource := f_cse_retrieveResource(v_groupIndex); + if(getverdict == pass){ + if(ischosen(v_primitiveContentRetrievedResource.group_)){ + if(v_primitiveContentRetrievedResource.group_.memberIDs[0] != v_memberId_2){ + setverdict(fail, __SCOPE__, ": Error, memberIDs attribute not updated"); + } + } + } + + //Postamble + f_cse_postamble_deleteResources(); - // Tear down - f_cf01Down(); - } - } // end group g_CSE_GMG_UPD_007 - - group g_CSE_GMG_UPD_008 { - - /** - * @desc Check that the IUT detects when the value provided for maxNrOfMembers attribute is less than the value of the currentNrOfMembers attribute. - * - */ - testcase TC_CSE_GMG_UPD_008() runs on CseTester system CseSystem { + // Tear down + f_cf01Down(); + } + + /** + * @desc Check that the IUT validates the resource type during an UPDATE of the <group> resource when memberType attribute is not ‘mixed’. + * + */ + testcase TC_CSE_GMG_UPD_003() runs on CseTester system CseSystem { // Local variables var MsgIn v_response; - var RequestPrimitive v_updateRequest := valueof(m_updateGroupBase); var integer v_aeIndex := -1; var integer v_containerIndex_1 := -1; var integer v_containerIndex_2 := -1; var integer v_groupIndex := -1; - var ListOfURIs v_memberIDs; - var XSD.PositiveInteger v_maxNrOfMembers:= 1; + var RequestPrimitive v_updateRequest := valueof(m_updateGroupBase); var PrimitiveContent v_primitiveContentRetrievedResource; - v_updateRequest.primitiveContent.group_.maxNrOfMembers := v_maxNrOfMembers; - // Test control // Test component configuration f_cf01Up(); - + // Test adapter configuration - + // Preamble - v_aeIndex := f_cse_preamble_registerAe(-, -); //c_CRUDNDi + v_aeIndex := f_cse_preamble_registerAe(); //c_CRUDNDi v_containerIndex_1 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource v_containerIndex_2 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource - v_memberIDs := {f_getResourceId(vc_resourcesList[v_containerIndex_1].resource), f_getResourceId(vc_resourcesList[v_containerIndex_2].resource)}; - v_groupIndex := f_cse_createResource(int9, m_createGroup(2, v_memberIDs, omit, int3), v_aeIndex); + v_groupIndex := f_cse_createResource(int9, m_createGroup(2, {f_getResourceId(vc_resourcesList[v_containerIndex_1].resource)}, omit, int3, -, -, -), v_aeIndex); + v_updateRequest.primitiveContent.group_.memberIDs := {f_getResourceId(vc_resourcesList[v_containerIndex_2].resource)}; v_updateRequest := f_getUpdateRequestPrimitive(int9, v_groupIndex, v_updateRequest); - //Test Body - mcaPort.send(m_request(v_updateRequest)); + // Test Body + mcaPort.send(m_request(v_updateRequest));// TODO see if the memberTypeValidated is present in the update response tc_ac.start; alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int6010))) -> value v_response { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int2004))) -> value v_response { tc_ac.stop; - setverdict(pass, __SCOPE__ & ": max number of member exceeded"); + setverdict(pass, __SCOPE__ & ": update successful"); + + if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.group_.memberTypeValidated)) { + setverdict(fail, __SCOPE__, ": Error, memberTypeValidated attribute not provided"); + } + else { + if(v_response.primitive.responsePrimitive.primitiveContent.group_.memberTypeValidated == false) { + setverdict(fail, __SCOPE__, ": Error, memberTypeValidated wrong value"); + } + } } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error update successful while operation is not allowed"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while updating resource"); - } + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while updating resource"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while updating resource"); + } } v_primitiveContentRetrievedResource := f_cse_retrieveResource(v_groupIndex); if(getverdict == pass){ - //Check that the resource has NOT been udpated - if(ischosen(v_primitiveContentRetrievedResource.group_)) { - if(v_primitiveContentRetrievedResource.group_.maxNrOfMembers == v_maxNrOfMembers){ - setverdict(fail, __SCOPE__ & ": Error: maxNrOfMembers attribute updated") + if(ischosen(v_primitiveContentRetrievedResource.group_)){ + if(v_primitiveContentRetrievedResource.group_.memberTypeValidated == false){ + setverdict(fail, __SCOPE__, ": Error, memberTypeValidated attribute not updated"); + } } - } - } + } //Postamble f_cse_postamble_deleteResources(); @@ -14750,37 +14600,23 @@ module OneM2M_Testcases { // Tear down f_cf01Down(); } - } // end group g_CSE_GMG_UPD_008 - - group g_CSE_GMG_UPD_009 { /** - * @desc Check that the IUT handles validation of the resource type during an UPDATE of the <group> resource when memberIDs contains a sub-group on a temporarily unreachable Hosting CSE. - * - */ - testcase TC_CSE_GMG_UPD_009() runs on CseTester system CseSystem - { - //Local constants - const ResourceType c_ResourceTypeGroup := int9; - const ResourceType c_ResourceType1 := int4; - const MemberType c_memberType1 := int4; // should be set same type as c_ResourceType1 - const XSD.String c_primitiveContent := "primitive_contet"; - const ConsistencyStrategy c_consistentcyStrategy := int1; // ABANDOND_MEMBER -// const XSD.AnyURI c_targetResourceAddress := "TARGET_RESOURCE_ADDRESS"; - const XSD.AnyURI c_memberResourceAddress1 := "MEMBER_RESSOURCE_ADDRESS_1"; - const XSD.AnyURI c_memberResourceAddress2 := "MEMBER_RESSOURCE_ADDRESS_2"; - + * @desc Check that the IUT handles unsuccessful validation of the resource type during an UPDATE of the <group> resource when memberType attribute is not ‘mixed’ and the consistencyStrategy attribute is SET_MIXED. + * + */ + testcase TC_CSE_GMG_UPD_004() runs on CseTester system CseSystem { // Local variables var MsgIn v_response; - var RequestPrimitive v_request; - var integer v_aeIndex := -1; - var integer v_groupIndex := -1; - - var template RequestPrimitive v_createRequest := m_createGroupBase; - var template RequestPrimitive v_updateRequest := m_updateGroupBase; - var template RequestPrimitive v_createMember; + var RequestPrimitive v_updateRequest := valueof(m_updateGroupBase); + var integer v_aeIndex := -1; + var integer v_containerIndex := -1; + var integer v_groupIndex := -1; + var integer v_subGroupIndex := -1; + var XSD.AnyURI v_memberId_1; + var XSD.AnyURI v_memberId_2; var PrimitiveContent v_primitiveContentRetrievedResource; - + // Test control // Test component configuration @@ -14789,72 +14625,67 @@ module OneM2M_Testcases { // Test adapter configuration // Preamble - v_aeIndex := f_cse_preamble_registerAe(); //c_CRUDNDi -// TODO: -> register IUT to the remoteCSE - - v_createRequest := f_getCreateRequestPrimitive(c_ResourceTypeGroup, v_createRequest, v_aeIndex); - v_createRequest.primitiveContent.group_ := m_contentCreateGroup(1, {c_memberResourceAddress1}, omit); - v_createRequest.primitiveContent.group_.memberType := c_memberType1; - v_createRequest.primitiveContent.group_.memberTypeValidated := true; - v_createRequest.primitiveContent.group_.consistencyStrategy := c_consistentcyStrategy; - v_groupIndex := f_cse_createResource(c_ResourceTypeGroup, v_createRequest, v_aeIndex); - - // TODO: -> do the resources actually need to be created? - // TODO: choose the right template for member resource - v_createMember := m_createContentInstance(f_getResourceAddress(v_aeIndex), c_primitiveContent & "_1"); - f_cse_createResource(c_ResourceType1, v_createMember, v_aeIndex); - - // TODO: create resource of type <group> at c_memberResourceAddress2 on remoteCSE - // TODO: set onlineStatus to false on remoteCSE - - - //Test Body - v_request := f_getUpdateRequestPrimitive(c_ResourceTypeGroup, v_groupIndex, v_updateRequest); -// v_request.to_ := c_targetResourceAddress; - v_createRequest.primitiveContent.group_ := m_contentCreateGroup(2, {c_memberResourceAddress1, c_memberResourceAddress2}, omit); - - mcaPort.send(m_request(v_request)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int2004))) -> value v_response { - tc_ac.stop; - - if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.group_.memberTypeValidated)) { - setverdict(fail, __SCOPE__, ": Error, memberTypeValidated attribute not provided"); - } else { - if(v_response.primitive.responsePrimitive.primitiveContent.group_.memberTypeValidated == false) { - if(lengthof(v_response.primitive.responsePrimitive.primitiveContent.group_.memberIDs) != 2) { - setverdict(fail, __SCOPE__ & ": Error, wrong number of memberIDs attribute"); - } else { - if(v_response.primitive.responsePrimitive.primitiveContent.group_.memberIDs[0] == c_memberResourceAddress1 and v_response.primitive.responsePrimitive.primitiveContent.group_.memberIDs[1] == c_memberResourceAddress2) { - setverdict(pass, __SCOPE__ & ": update successful"); - } else { - setverdict(fail, __SCOPE__, ": Error, wrong memberIDs"); - } - } - } else { - setverdict(fail, __SCOPE__, ": Error, memberTypeValidated must be set to FALSE"); - } - } - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while retrieving resource"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while retrieving resource"); - } - } + v_aeIndex := f_cse_preamble_registerAe(); //c_CRUDNDi + v_containerIndex := f_cse_createResource(int3, m_createContainer("NotInitialized", "MyContainer"), v_aeIndex); + v_subGroupIndex := f_cse_createResource(int9, m_createGroupBase, v_aeIndex); + v_memberId_1 := f_getResourceId(vc_resourcesList[v_containerIndex].resource); + v_memberId_2 := f_getResourceId(vc_resourcesList[v_subGroupIndex].resource); + v_groupIndex := f_cse_createResource(int9, m_createGroup(2, {v_memberId_1}, omit, int3, int3, -, -), v_aeIndex); //Member type is set to Container (int3) and consistencyStrategy is set to MIXED (int3) + + v_updateRequest.primitiveContent.group_.memberIDs := {v_memberId_1, v_memberId_2}; + v_updateRequest := f_getUpdateRequestPrimitive(int9, v_groupIndex, v_updateRequest); + + // Test Body + mcaPort.send(m_request(v_updateRequest));// TODO see if the memberTypeValidated is present in the update response + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int2004))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": update successful"); + + //memberTypeValidated attribute set to FALSE + if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.group_.memberTypeValidated)) { + setverdict(fail, __SCOPE__, ": Error, memberTypeValidated attribute not provided"); + } + else { + if(v_response.primitive.responsePrimitive.primitiveContent.group_.memberTypeValidated != false) { + setverdict(fail, __SCOPE__, ": Error, memberTypeValidated must be FALSE"); + } + } + + //memberType attribute set to MIXED + if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.group_.memberType)) { + setverdict(fail, __SCOPE__, ": Error, memberType attribute not provided"); + } + else { + if(v_response.primitive.responsePrimitive.primitiveContent.group_.memberType != int0) { //Mixed is int0 in release 2 and int24 in release 1 + setverdict(fail, __SCOPE__, ": Error, memberType was not set to MIXED"); + } + } + + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while retrieving resource"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while retrieving resource"); + } + } v_primitiveContentRetrievedResource := f_cse_retrieveResource(v_groupIndex); if(getverdict == pass){ if(ischosen(v_primitiveContentRetrievedResource.group_)){ - if(v_primitiveContentRetrievedResource.group_.memberTypeValidated != false){ + if(v_primitiveContentRetrievedResource.group_.memberTypeValidated == false){ setverdict(fail, __SCOPE__, ": Error, memberTypeValidated attribute not updated"); } - - if((v_primitiveContentRetrievedResource.group_.memberIDs[0] != c_memberResourceAddress1) and (v_primitiveContentRetrievedResource.group_.memberIDs[1] != c_memberResourceAddress2)){ - setverdict(fail, __SCOPE__, ": Error, memberIDs attribute not correct"); + + if(v_primitiveContentRetrievedResource.group_.memberType != int0){ + setverdict(fail, __SCOPE__, ": Error, memberType attribute not set to MIXED"); } } } @@ -14865,1169 +14696,1273 @@ module OneM2M_Testcases { // Tear down f_cf01Down(); } - } // end group g_CSE_GMG_UPD_009 - - group g_CSE_GMG_UPD_010 { - - /** - * @desc Check that the IUT handles validation of the resource type during an UPDATE of the group resource when memberIDs contains a sub-group on a a previously unreachable Hosting CSE that has become reachable - * @verdict - */ - testcase TC_CSE_GMG_UPD_010() runs on CseTester system CseSystem - { - //Local constants - const ResourceType c_ResourceTypeGroup := int9; - const ResourceType c_ResourceType1 := int4; - const MemberType c_memberType1 := int4; // should be set same type as c_ResourceType1 - const XSD.String c_primitiveContent := "primitive_contet"; - const ConsistencyStrategy c_consistentcyStrategy := int1; // ABANDOND_MEMBER -// const XSD.AnyURI c_targetResourceAddress := "TARGET_RESOURCE_ADDRESS"; - const XSD.AnyURI c_memberResourceAddress1 := "MEMBER_RESSOURCE_ADDRESS_1"; - const XSD.AnyURI c_memberResourceAddress2 := "MEMBER_RESSOURCE_ADDRESS_2"; - - // Local variables - var MsgIn v_response; - var RequestPrimitive v_request; - var integer v_aeIndex := -1; - var integer v_remoteCSEIndex := -1; - var integer v_groupIndex := -1; - - var template RequestPrimitive v_createRequest := m_createGroupBase; - var template RequestPrimitive v_updateRequest := m_updateGroupBase; - var template RequestPrimitive v_createMember; - - // Test control + + /** + * @desc Check that the IUT handles unsuccessful validation of the resource type during an UPDATE of the group resource when memberType attribute is not ‘mixed’ and the consistencyStrategy attribute is ABANDON_MEMBER. + * + */ + testcase TC_CSE_GMG_UPD_005() runs on CseTester system CseSystem { + // Local variables + var MsgIn v_response; + var RequestPrimitive v_updateRequest := valueof(m_updateGroupBase); + var integer v_aeIndex := -1; + var integer v_containerIndex := -1; + var integer v_groupIndex := -1; + var integer v_subGroupIndex := -1; + var XSD.AnyURI v_memberId_1; + var XSD.AnyURI v_memberId_2; + var PrimitiveContent v_primitiveContentRetrievedResource; + + // Test control - // Test component configuration - f_cf01Up(); + // Test component configuration + f_cf01Up(); - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe(); //c_CRUDNDi -// TODO: -> register IUT to the remoteCSE - //v_remoteCSEIndex := ... - - v_createRequest := f_getCreateRequestPrimitive(c_ResourceTypeGroup, v_createRequest, v_aeIndex); - v_createRequest.primitiveContent.group_ := m_contentCreateGroup(2, {c_memberResourceAddress1, c_memberResourceAddress2}, omit); - v_createRequest.primitiveContent.group_.memberType := c_memberType1; - v_createRequest.primitiveContent.group_.memberTypeValidated := false; - v_createRequest.primitiveContent.group_.consistencyStrategy := c_consistentcyStrategy; - v_groupIndex := f_cse_createResource(c_ResourceTypeGroup, v_createRequest, v_aeIndex); - - // TODO: -> the AE having a subscription to c_targetResourceAddress - - // TODO: -> do the resources actually need to be created? - // TODO: choose the right template for member resource - v_createMember := m_createContentInstance(f_getResourceAddress(v_aeIndex), c_primitiveContent & "_1"); - f_cse_createResource(c_ResourceType1, v_createMember, v_aeIndex); - - // TODO: create resource of type <group> at c_memberResourceAddress2 on remoteCSE - // TODO: set onlineStatus to false on remoteCSE + // Test adapter configuration - + // Preamble + v_aeIndex := f_cse_preamble_registerAe(); //c_CRUDNDi + v_containerIndex := f_cse_createResource(int3, m_createContainer("NotInitialized", "MyContainer"), v_aeIndex); + v_subGroupIndex := f_cse_createResource(int9, m_createGroupBase, v_aeIndex); + v_memberId_1 := f_getResourceId(vc_resourcesList[v_containerIndex].resource); + v_memberId_2 := f_getResourceId(vc_resourcesList[v_subGroupIndex].resource); + v_groupIndex := f_cse_createResource(int9, m_createGroup(2, {v_memberId_1}, omit, int3, omit), v_aeIndex); //Member type is set to Container (int3) and consistencyStrategy is set to ABANDON MEMBER (default value) + + v_updateRequest.primitiveContent.group_.memberIDs := {v_memberId_2, v_memberId_1}; + v_updateRequest := f_getUpdateRequestPrimitive(int9, v_groupIndex, v_updateRequest); + //Test Body - v_request := f_getUpdateRequestPrimitive(c_ResourceTypeGroup, v_groupIndex, v_updateRequest); - //v_request.from_ := CSE-ID - v_request.to_ := f_getResourceAddress(v_remoteCSEIndex); - //Content set to <remoteCSE> resource containing onlineStatus := false; - - mcaPort.send(m_request(v_request)); + + mcaPort.send(m_request(v_updateRequest)); tc_ac.start; alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int2004))) -> value v_response { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int2004))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": update successful"); + + //memberTypeValidated attribute set to TRUE + if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.group_.memberTypeValidated)) { + setverdict(fail, __SCOPE__, ": Error, memberTypeValidated attribute not provided"); + } + else { + if(v_response.primitive.responsePrimitive.primitiveContent.group_.memberTypeValidated != true) { + setverdict(fail, __SCOPE__, ": Error, memberTypeValidated must be TRUE"); + } + } + + //memberIDs attribute set to v_memberID1 + if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.group_.memberIDs)){ + setverdict(fail, __SCOPE__, ": Error, memberIDs attribute not provided"); + } + else { + if(lengthof(v_response.primitive.responsePrimitive.primitiveContent.group_.memberIDs) != 1) { + setverdict(fail, __SCOPE__ & ": Error, wrong number of memberIDs attribute"); + } + if(v_response.primitive.responsePrimitive.primitiveContent.group_.memberIDs[0] != v_memberId_1){ + setverdict(fail, __SCOPE__, ": Error, memberIDs attribute not correct"); + } + } + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { tc_ac.stop; - - + setverdict(fail, __SCOPE__ & ": Error while updating resource"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while updating resource"); } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while retrieving resource"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while retrieving resource"); - } } + v_primitiveContentRetrievedResource := f_cse_retrieveResource(v_groupIndex); + if(getverdict == pass){ + if(ischosen(v_primitiveContentRetrievedResource.group_)){ + if(v_primitiveContentRetrievedResource.group_.memberTypeValidated == false){ + setverdict(fail, __SCOPE__, ": Error, memberTypeValidated attribute not updated"); + } + + if(v_primitiveContentRetrievedResource.group_.memberIDs[0] != v_memberId_1){ + setverdict(fail, __SCOPE__, ": Error, memberIDs attribute not correct"); + } + } + } + //Postamble f_cse_postamble_deleteResources(); // Tear down f_cf01Down(); } - } // end group g_CSE_GMG_UPD_010 - - - group g_CSE_GMG_003 { - - /** - * @desc Check that the IUT allows a <group>/fanoutPoint OPERATION when the Originator has OPERATION_PERMISSION specified in accessControlPolicyIDs and the membersAccessControlPolicyIDs is empty in the <group> resource. - * @verdict - */ - testcase TC_CSE_GMG_003_CRE() runs on CseTester system CseSystem { //Create - f_CSE_GMG_003(m_createContainerBase, int2001); - }//end TC_CSE_GMG_003_CRE - - testcase TC_CSE_GMG_003_UPD() runs on CseTester system CseSystem { //Update - var template RequestPrimitive v_updateRequest := m_updateContainerBase; - var Labels v_labels_1:= {"VALUE_1"}; - v_updateRequest.primitiveContent.container.labels := v_labels_1; - f_CSE_GMG_003(v_updateRequest, int2004); - }//end TC_CSE_GMG_003_UPD - - testcase TC_CSE_GMG_003_RET() runs on CseTester system CseSystem { //Retrieve - f_CSE_GMG_003(m_retrieveResource("Temporary", "Temporary"), int2000); - }//end TC_CSE_GMG_003_RET - - testcase TC_CSE_GMG_003_DEL() runs on CseTester system CseSystem { //Delete - f_CSE_GMG_003(m_deleteRequest("Temporary"), int2002); - }//end TC_CSE_GMG_003_DEL - - function f_CSE_GMG_003(template RequestPrimitive p_requestPrimitive, in ResponseStatusCode p_responseStatusCode) runs on CseTester { - // Local variables - var MsgIn v_response; - var integer v_aeIndex := -1; - var integer v_acpIndex := -1; - var integer v_containerIndex_1 := -1; - var integer v_containerIndex_2 := -1; - var integer v_groupIndex := -1; - var integer i; - var ListOfURIs v_memberIDs; - var ListOfURIs v_membersAcpIds; - var template RequestPrimitive v_createAcp := m_createAcp("NotInitialized", "MyACP", -, -); - - // Test control - if(not(PICS_ACP_SUPPORT)) { - setverdict(inconc, __SCOPE__ & ": AccessControlPolicy support is required to run this test case"); - stop; - } - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe(-, -); //c_CRUDNDi - v_acpIndex := f_cse_createResource(int1, v_createAcp, v_aeIndex); // AE child resource - v_containerIndex_1 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource - v_containerIndex_2 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource - v_memberIDs := {f_getResourceId(vc_resourcesList[v_containerIndex_1].resource), f_getResourceId(vc_resourcesList[v_containerIndex_2].resource)}; - v_membersAcpIds := {f_getResourceId(vc_resourcesList[v_acpIndex].resource)}; - v_groupIndex := f_cse_createResource(int9, m_createGroup(2, v_memberIDs, omit, int3, -, v_membersAcpIds), v_aeIndex); // AE child resource - - p_requestPrimitive.to_ := f_getResourceAddress(v_groupIndex) & "/fopt"; - p_requestPrimitive.from_ := f_getOriginator(v_groupIndex); - - // Test Body - - mcaPort.send(m_request(valueof(p_requestPrimitive))); + + /** + * @desc Check that the IUT handles unsuccessful validation of the resource type during the creation of the group resource when memberType attribute is not ‘mixed’ and the consistencyStrategy attribute is ABANDON_GROUP. + * + */ + testcase TC_CSE_GMG_UPD_006() runs on CseTester system CseSystem { + // Local variables + var MsgIn v_response; + var RequestPrimitive v_updateRequest := valueof(m_updateGroupBase); + var integer v_aeIndex := -1; + var integer v_containerIndex := -1; + var integer v_groupIndex := -1; + var integer v_subGroupIndex := -1; + var XSD.AnyURI v_memberId_1; + var XSD.AnyURI v_memberId_2; + + // Test control + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_aeIndex := f_cse_preamble_registerAe(); //c_CRUDNDi + v_containerIndex := f_cse_createResource(int3, m_createContainer("NotInitialized", "MyContainer"), v_aeIndex); + v_subGroupIndex := f_cse_createResource(int9, m_createGroupBase, v_aeIndex); + v_memberId_1 := f_getResourceId(vc_resourcesList[v_containerIndex].resource); + v_memberId_2 := f_getResourceId(vc_resourcesList[v_subGroupIndex].resource); + v_groupIndex := f_cse_createResource(int9, m_createGroup(2, {v_memberId_1}, omit, int3, int2), v_aeIndex); //Member type is set to Container(int3) and consistencyStrategy is set to ABANDON GROUP (default value) + + v_updateRequest.primitiveContent.group_.memberIDs := {v_memberId_2, v_memberId_1}; + v_updateRequest := f_getUpdateRequestPrimitive(int9, v_groupIndex, v_updateRequest); + + //Test Body + mcaPort.send(m_request(v_updateRequest)); tc_ac.start; alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(p_responseStatusCode))) -> value v_response { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int6011))) -> value v_response { tc_ac.stop; - setverdict(pass, __SCOPE__ & ": creation successfull by using fanOutPoint in group resource"); - - if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list)){ - setverdict(fail, __SCOPE__, ": Error, aggregatedResponse attribute not provided"); - } - else { - for(i:=0; i<lengthof(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list); i := i+1){ - if(not match(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list[i], mw_responsePrimitiveOK)){ - setverdict(fail, __SCOPE__, ": Error, one responsePrimitve of aggregatedResponse_list is not successful"); - } - } - } + setverdict(pass, __SCOPE__ & ": unsuccessful validation of the resource type during the creation of the group"); } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { tc_ac.stop; setverdict(fail, __SCOPE__ & ": Wrong response status code"); } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while creating resource"); + setverdict(fail, __SCOPE__ & ": Error create succesfull while the operation should be aborted"); } [] tc_ac.timeout { setverdict(fail, __SCOPE__ & ": No answer while creating resource"); } } - - // Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - - } // end f_CSE_GMG_003 - - } // end group g_CSE_GMG_003 - - group g_CSE_GMG_002 { - - /** - * @desc Check that IUT denies a <group>/fanOutPoint OPERATION when the Originator does not have OPERATION_PERMISSION specified in membersAccessControlPolicyIDs in the group resource. - * - */ - testcase TC_CSE_GMG_002_CRE() runs on CseTester system CseSystem { //Create - f_CSE_GMG_002(m_createContainerBase, int62); //c_RUDNDi - }//end TC_CSE_GMG_002_CRE - - testcase TC_CSE_GMG_002_UPD() runs on CseTester system CseSystem { //Update - var template RequestPrimitive v_updateRequest := m_updateContainerBase; - var Labels v_labels_1:= {"VALUE_1"}; - v_updateRequest.primitiveContent.container.labels := v_labels_1; - f_CSE_GMG_002(v_updateRequest, int59);//c_CRDNDi - }//end TC_CSE_GMG_002_UPD - - testcase TC_CSE_GMG_002_RET() runs on CseTester system CseSystem { //Retrieve - f_CSE_GMG_002(m_retrieveResource("Temporary", "Temporary"), int61);//c_CUDNDi - }//end TC_CSE_GMG_002_RET - - testcase TC_CSE_GMG_002_DEL() runs on CseTester system CseSystem { //Delete - f_CSE_GMG_002(m_deleteRequest("Temporary"), int55); //c_CRUNDi - }//end TC_CSE_GMG_002_DEL - - function f_CSE_GMG_002(template RequestPrimitive p_requestPrimitive, in AccessControlOperations p_accessControlOperations) runs on CseTester { - // Local variables - var MsgIn v_response; - var integer v_aeIndex := -1; - var integer v_acpIndex := -1; - var integer v_containerIndex_1 := -1; - var integer v_containerIndex_2 := -1; - var integer v_groupIndex := -1; - var ListOfURIs v_memberIDs; - var ListOfURIs v_membersAcpIds; - var template RequestPrimitive v_createAcp := m_createAcp("NotInitialized", "MyACP", -, p_accessControlOperations); - - // Test control - if(not(PICS_ACP_SUPPORT)) { - setverdict(inconc, __SCOPE__ & ": AccessControlPolicy support is required to run this test case"); - stop; - } - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe(-, -); //c_CRUDNDi - v_acpIndex := f_cse_createResource(int1, v_createAcp, v_aeIndex); // AE child resource + + //Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf01Down(); + } + + /** + * @desc Check that the IUT detects when the number of memberIDs exceeds the limitation of maxNrOfMembers. + * + */ + testcase TC_CSE_GMG_UPD_007() runs on CseTester system CseSystem + { + //Local constants + const integer c_maxNrOfMembers := 2; + + // Local variables + var MsgIn v_response; + var RequestPrimitive v_request; + var integer v_aeIndex := -1; + var integer v_groupIndex, v_containerIndex_1, v_containerIndex_2, v_containerIndex_3 := -1; + var ListOfURIs v_memberIDs; + var template RequestPrimitive v_createRequest; + var PrimitiveContent v_primitiveContentRetrievedResource; + + var template RequestPrimitive v_updateRequest := m_updateGroupBase; + var template RequestPrimitive v_createMember; + + // Test control + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); + v_containerIndex_1 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource - v_containerIndex_2 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource - v_memberIDs := {f_getResourceId(vc_resourcesList[v_containerIndex_1].resource), f_getResourceId(vc_resourcesList[v_containerIndex_2].resource)}; - v_membersAcpIds := {f_getResourceId(vc_resourcesList[v_acpIndex].resource)}; - v_groupIndex := f_cse_createResource(int9, m_createGroup(2, v_memberIDs, omit, int3, -, v_membersAcpIds), v_aeIndex); // AE child resource - - p_requestPrimitive.to_ := f_getResourceAddress(v_groupIndex) & "/fopt"; - p_requestPrimitive.from_ := f_getOriginator(v_groupIndex); - - // Test Body - - mcaPort.send(m_request(valueof(p_requestPrimitive))); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int4103))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Update failed due to lack of privilege"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { + v_containerIndex_2 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource + v_containerIndex_3 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource + + v_memberIDs := {f_getResourceId(vc_resourcesList[v_containerIndex_1].resource), f_getResourceId(vc_resourcesList[v_containerIndex_2].resource)}; + + v_createRequest := valueof(m_createGroup(c_maxNrOfMembers, v_memberIDs, omit, int3)); + + v_groupIndex := f_cse_createResource(int9, v_createRequest, v_aeIndex); + + //Test Body + v_request := f_getUpdateRequestPrimitive(int9, v_groupIndex, v_updateRequest); + v_memberIDs := v_memberIDs & {f_getResourceId(vc_resourcesList[v_containerIndex_3].resource)}; + v_request.primitiveContent.group_.memberIDs := v_memberIDs; + + mcaPort.send(m_request(v_request)); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int6010))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": operation is not allowed"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error operation successful while doesn't have privileges"); + setverdict(fail, __SCOPE__ & ": Error update successful while maxNrOfMembers has exceeded"); } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while executing operation"); + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while retrieving resource"); + } + } + + v_primitiveContentRetrievedResource := f_cse_retrieveResource(v_groupIndex); + if(getverdict == pass){ + //Check that the resource has NOT been udpated + if(ischosen(v_primitiveContentRetrievedResource.group_)) { + if(v_primitiveContentRetrievedResource.group_.memberIDs == v_memberIDs){ + setverdict(fail, __SCOPE__ & ": Error: MemberIDs attribute updated") + } } } - // Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - - } // end f_CSE_GMG_002 - - } // end group g_CSE_GMG_002 - - group g_CSE_GMG_001 { - + //Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf01Down(); + } + /** - * @desc Check that the IUT allows a <group>/fanoutPoint OPERATION when the Originator has OPERATION_PERMISSION specified in membersAccessControlPolicyIDs attribute in the group resource. - * - */ - testcase TC_CSE_GMG_001_CRE() runs on CseTester system CseSystem { //Create - f_CSE_GMG_001(m_createContainerBase, int2001); - }//end TC_CSE_GMG_001_CRE - - testcase TC_CSE_GMG_001_UPD() runs on CseTester system CseSystem { //Update - var template RequestPrimitive v_updateRequest := m_updateContainerBase; - var Labels v_labels_1:= {"VALUE_1"}; - v_updateRequest.primitiveContent.container.labels := v_labels_1; - f_CSE_GMG_001(v_updateRequest, int2004); - }//end TC_CSE_GMG_001_UPD - - testcase TC_CSE_GMG_001_RET() runs on CseTester system CseSystem { //Retrieve - f_CSE_GMG_001(m_retrieveResource("Temporary", "Temporary"), int2000); - }//end TC_CSE_GMG_001_RET - - testcase TC_CSE_GMG_001_DEL() runs on CseTester system CseSystem { //Delete - f_CSE_GMG_001(m_deleteRequest("Temporary"), int2002); - }//end TC_CSE_GMG_001_DEL - - function f_CSE_GMG_001(template RequestPrimitive p_requestPrimitive, in ResponseStatusCode p_responseStatusCode) runs on CseTester { - // Local variables + * @desc Check that the IUT detects when the value provided for maxNrOfMembers attribute is less than the value of the currentNrOfMembers attribute. + * + */ + testcase TC_CSE_GMG_UPD_008() runs on CseTester system CseSystem { + // Local variables var MsgIn v_response; + var RequestPrimitive v_updateRequest := valueof(m_updateGroupBase); var integer v_aeIndex := -1; - var integer v_acpIndex := -1; var integer v_containerIndex_1 := -1; var integer v_containerIndex_2 := -1; var integer v_groupIndex := -1; - var integer i; var ListOfURIs v_memberIDs; - var AcpType v_acpIDs; - var template RequestPrimitive v_createAcp := m_createAcp("NotInitialized", "MyACP", -, -); - + var XSD.PositiveInteger v_maxNrOfMembers:= 1; + var PrimitiveContent v_primitiveContentRetrievedResource; + + v_updateRequest.primitiveContent.group_.maxNrOfMembers := v_maxNrOfMembers; + // Test control - if(not(PICS_ACP_SUPPORT)) { - setverdict(inconc, __SCOPE__ & ": AccessControlPolicy support is required to run this test case"); - stop; - } - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe(-, -); //c_CRUDNDi - v_acpIndex := f_cse_createResource(int1, v_createAcp, v_aeIndex); // AE child resource - v_containerIndex_1 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource - v_containerIndex_2 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource - v_memberIDs := {f_getResourceId(vc_resourcesList[v_containerIndex_1].resource), f_getResourceId(vc_resourcesList[v_containerIndex_2].resource)}; - v_acpIDs := {f_getResourceId(vc_resourcesList[v_acpIndex].resource)}; - v_groupIndex := f_cse_createResource(int9, m_createGroup(2, v_memberIDs, v_acpIDs, int3), v_aeIndex); // AE child resource - - p_requestPrimitive.to_ := f_getResourceAddress(v_groupIndex) & "/fopt"; - p_requestPrimitive.from_ := f_getOriginator(v_groupIndex); - - // Test Body - - mcaPort.send(m_request(valueof(p_requestPrimitive))); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(p_responseStatusCode))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": creation successfull by using fanOutPoint in group resource"); - - if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list)){ - setverdict(fail, __SCOPE__, ": Error, aggregatedResponse attribute not provided"); - } - else { - for(i:=0; i<lengthof(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list); i := i+1){ - if(not match(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list[i], mw_responsePrimitiveOK)){ - setverdict(fail, __SCOPE__, ": Error, one responsePrimitve of aggregatedResponse_list is not successful"); - } - } - } - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while creating resource"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while creating resource"); - } - } - - // Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - - } // end f_CSE_GMG_001 - - } // end group g_CSE_GMG_001 - - group g_CSE_GMG_004 { - - /** - * @desc Check that IUT rejects a <group>/fanOutPoint OPERATION when the Originator does not have OPERATION_PERMISSION specified in accessControlPolicyIDs and the membersAccessControlPolicyIDs is empty in the group resource. - * - */ - testcase TC_CSE_GMG_004_CRE() runs on CseTester system CseSystem { //Create - f_CSE_GMG_004(m_createContainerBase, int62); //c_RUDNDi - }//end TC_CSE_GMG_004_CRE - - testcase TC_CSE_GMG_004_UPD() runs on CseTester system CseSystem { //Update - var template RequestPrimitive v_updateRequest := m_updateContainerBase; - var Labels v_labels_1:= {"VALUE_1"}; - v_updateRequest.primitiveContent.container.labels := v_labels_1; - f_CSE_GMG_004(v_updateRequest, int59);//c_CRDNDi - }//end TC_CSE_GMG_004_UPD - - testcase TC_CSE_GMG_004_RET() runs on CseTester system CseSystem { //Retrieve - f_CSE_GMG_004(m_retrieveResource("Temporary", "Temporary"), int61);//c_CUDNDi - }//end TC_CSE_GMG_004_RET - - testcase TC_CSE_GMG_004_DEL() runs on CseTester system CseSystem { //Delete - f_CSE_GMG_004(m_deleteRequest("Temporary"), int55); //c_CRUNDi - }//end TC_CSE_GMG_004_DEL - - function f_CSE_GMG_004(template RequestPrimitive p_requestPrimitive, in AccessControlOperations p_accessControlOperations) runs on CseTester { - // Local variables - var MsgIn v_response; - var integer v_aeIndex := -1; - var integer v_acpIndex := -1; - var integer v_containerIndex_1 := -1; - var integer v_containerIndex_2 := -1; - var integer v_groupIndex := -1; - var ListOfURIs v_memberIDs; - var AcpType v_acpIDs; - var template RequestPrimitive v_createAcp := m_createAcp("NotInitialized", "MyACP", -, p_accessControlOperations); - - // Test control - if(not(PICS_ACP_SUPPORT)) { - setverdict(inconc, __SCOPE__ & ": AccessControlPolicy support is required to run this test case"); - stop; - } - + // Test component configuration f_cf01Up(); - + // Test adapter configuration - + // Preamble v_aeIndex := f_cse_preamble_registerAe(-, -); //c_CRUDNDi - v_acpIndex := f_cse_createResource(int1, v_createAcp, v_aeIndex); // AE child resource v_containerIndex_1 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource v_containerIndex_2 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource v_memberIDs := {f_getResourceId(vc_resourcesList[v_containerIndex_1].resource), f_getResourceId(vc_resourcesList[v_containerIndex_2].resource)}; - v_acpIDs := {f_getResourceId(vc_resourcesList[v_acpIndex].resource)}; - v_groupIndex := f_cse_createResource(int9, m_createGroup(2, v_memberIDs, v_acpIDs, int3), v_aeIndex); // AE child resource - - p_requestPrimitive.to_ := f_getResourceAddress(v_groupIndex) & "/fopt"; - p_requestPrimitive.from_ := f_getOriginator(v_groupIndex); - - // Test Body - - mcaPort.send(m_request(valueof(p_requestPrimitive))); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int4103))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Update failed due to lack of privilege"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error operation successful while doesn't have privileges"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while executing operation"); - } - } - - // Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - - } // end f_CSE_GMG_004 - - } // end group g_CSE_GMG_004 - - group g_CSE_GMG_CRE_008 { - - /** - * @desc Check that IUT generates a request primitive for each resource in memberIDs with no relative address appended to it. - * - */ - testcase TC_CSE_GMG_CRE_008_CRE() runs on CseTester system CseSystem { //Create - var template PrimitiveContent v_contentResponse; - v_contentResponse.container := mw_contentContainer_rc1; - - f_CSE_GMG_CRE_008(m_createContainerBase, v_contentResponse, int2001); - }//end TC_CSE_GMG_CRE_008_CRE - - testcase TC_CSE_GMG_CRE_008_UPD() runs on CseTester system CseSystem { //Update - var template RequestPrimitive v_updateRequest := m_updateAeBase; - var template PrimitiveContent v_contentResponse; - var Labels v_labels_1:= {"VALUE_1"}; - v_contentResponse.aE := m_contentAe_allOmit; - v_contentResponse.aE.labels := ?; - v_updateRequest.primitiveContent.aE.labels := v_labels_1; - - f_CSE_GMG_CRE_008(v_updateRequest, v_contentResponse, int2004); - }//end TC_CSE_GMG_CRE_008_UPD - - testcase TC_CSE_GMG_CRE_008_RET() runs on CseTester system CseSystem { //Retrieve - var template PrimitiveContent v_contentResponse; - v_contentResponse.aE := mw_contentAeBase; - - f_CSE_GMG_CRE_008(m_retrieveResource("Temporary", "Temporary"), v_contentResponse, int2000); - }//end TC_CSE_GMG_CRE_008_RET - - testcase TC_CSE_GMG_CRE_008_DEL() runs on CseTester system CseSystem { //Delete - var template PrimitiveContent v_contentResponse; - v_contentResponse.aE := mw_contentAeBase;// TODO see with wath should it be matched - - f_CSE_GMG_CRE_008(m_deleteRequest("Temporary"), v_contentResponse, int2002); - }//end TC_CSE_GMG_CRE_008_DEL - - function f_CSE_GMG_CRE_008(template RequestPrimitive p_requestPrimitive, template PrimitiveContent p_contentResponse, in ResponseStatusCode p_responseStatusCode) runs on CseTester { - //Local constants - const integer c_numberOfResponsePrimitive := 2; + v_groupIndex := f_cse_createResource(int9, m_createGroup(2, v_memberIDs, omit, int3), v_aeIndex); - // Local variables - var MsgIn v_response; - var integer v_aeIndex := -1; - var integer v_containerIndex_1 := -1; - var integer v_containerIndex_2 := -1; - var integer v_groupIndex := -1; - var ListOfURIs v_memberIDs; - var integer i; - var RequestPrimitive v_createRequest := valueof(m_createContentInstance("NotInitialized", "Value1")); + v_updateRequest := f_getUpdateRequestPrimitive(int9, v_groupIndex, v_updateRequest); - // Test control - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe(-, -); //c_CRUDNDi - v_containerIndex_1 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource - v_containerIndex_2 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource - v_memberIDs := {f_getResourceId(vc_resourcesList[v_containerIndex_1].resource), f_getResourceId(vc_resourcesList[v_containerIndex_2].resource)}; - v_groupIndex := f_cse_createResource(int9, m_createGroup(2, v_memberIDs, omit, int3, -, -), v_aeIndex); // AE child resource - - p_requestPrimitive.to_ := f_getResourceAddress(v_groupIndex) & "/fopt"; - p_requestPrimitive.from_ := f_getOriginator(v_aeIndex); - - // Test Body - - mcaPort.send(m_request(valueof(p_requestPrimitive))); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(p_responseStatusCode))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": creation successfull by using fanOutPoint in group resource"); - - if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list)){ - setverdict(fail, __SCOPE__, ": Error, aggregatedResponse attribute not provided"); - } - else{ - if(lengthof(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list) != c_numberOfResponsePrimitive){ - setverdict(fail, __SCOPE__, ": Error, length of aggregatedResponse is not valid"); - } - else{ - for(i:=0; i<c_numberOfResponsePrimitive; i:=i+1){ - if(not match(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list[i].primitiveContent, p_contentResponse)){ - setverdict(fail, __SCOPE__, ": Error, aggregatedResponse doesn't match with template expected"); - } - } - } - } - } + //Test Body + mcaPort.send(m_request(v_updateRequest)); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int6010))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": max number of member exceeded"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while creating resource"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while creating resource"); + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error update successful while operation is not allowed"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while updating resource"); + } + } + + v_primitiveContentRetrievedResource := f_cse_retrieveResource(v_groupIndex); + if(getverdict == pass){ + //Check that the resource has NOT been udpated + if(ischosen(v_primitiveContentRetrievedResource.group_)) { + if(v_primitiveContentRetrievedResource.group_.maxNrOfMembers == v_maxNrOfMembers){ + setverdict(fail, __SCOPE__ & ": Error: maxNrOfMembers attribute updated") + } } } - - // Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - - } // end f_CSE_GMG_CRE_008 - - } // end group g_CSE_GMG_CRE_008 - - group g_CSE_GMG_CRE_009 { - - /** - * @desc Check that IUT generates a request primitive for each resource in memberIDs with a relative address appended to it. - * - */ - testcase TC_CSE_GMG_CRE_009() runs on CseTester system CseSystem { - //Local constants - const integer c_numberOfResponsePrimitive := 2; - - // Local variables - var MsgIn v_response; - var integer v_aeIndex_1, v_aeIndex_2, v_acpIndex, v_containerIndex_1, v_containerIndex_2, v_groupIndex := -1; - var integer i; - var ListOfURIs v_memberIDs; - var ListOfURIs v_membersAcpIds; - var RequestPrimitive v_createRequest := valueof(m_createContentInstance("NotInitialized", "Value1")); - var template RequestPrimitive v_createAcp := m_createAcp("NotInitialized", "MyACP", -, -); - var template PrimitiveContent v_contentResponse; - - v_contentResponse.contentInstance := mw_contentContentInstanceBase; - - // Test control - if(not(PICS_ACP_SUPPORT)) { - setverdict(inconc, __SCOPE__ & ": AccessControlPolicy support is required to run this test case"); - stop; - } - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex_1 := f_cse_preamble_registerAe(-, -); //c_CRUDNDi - v_aeIndex_2 := f_cse_createResource(int2, m_createAe(PX_APP_ID, -, PX_AE2_ID_STEM, "MyAe2", omit), -1); // AE2 is registred - v_acpIndex := f_cse_createResource(int1, v_createAcp, -1); // AE child resource - v_containerIndex_1 := f_cse_createResource(int3, m_createContainerBase, v_aeIndex_1); // AE1 child resource - v_containerIndex_2 := f_cse_createResource(int3, m_createContainerBase, v_aeIndex_2); // AE2 child resource - v_memberIDs := {f_getResourceId(vc_resourcesList[v_aeIndex_1].resource), f_getResourceId(vc_resourcesList[v_aeIndex_2].resource)}; - v_membersAcpIds := {f_getResourceId(vc_resourcesList[v_acpIndex].resource)}; - v_groupIndex := f_cse_createResource(int9, m_createGroup(2, v_memberIDs, omit, int2, -, v_membersAcpIds, -), -); - - v_createRequest.to_ := f_getResourceAddress(v_groupIndex) & "/" & c_resourceShortNameFanOutPoint & "/" & c_defaultContainerResourceName; - v_createRequest.from_ := f_getOriginator(v_groupIndex); //TODO see if it is correct or if we have to use PX_SUPER_ADMIN - - // Test Body - - mcaPort.send(m_request(v_createRequest)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int2001))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": creation successfull by using fanOutPoint in group resource"); - - if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list)){ - setverdict(fail, __SCOPE__, ": Error, aggregatedResponse attribute not provided"); - } - else{ - if(lengthof(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list) != c_numberOfResponsePrimitive){ - setverdict(fail, __SCOPE__, ": Error, length of aggregatedResponse is not valid"); - } - else{ - for(i:=0; i<c_numberOfResponsePrimitive; i:=i+1){ - if(not match(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list[i].primitiveContent, v_contentResponse)){ - setverdict(fail, __SCOPE__, ": Error, aggregatedResponse doesn't match with template expected"); - } - } - } - } - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while creating resource"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while creating resource"); - } - } - - // Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - - } // end f_CSE_GMG_CRE_009 - - } // end group g_CSE_GMG_CRE_009 - - group g_CSE_GMG_RET_001 { - - /** - * @desc Check that the IUT generates a request primitive for each resource in memberIDs with a relative address appended to fanOutPoint that includes a virtual resource. - * - */ - testcase TC_CSE_GMG_RET_001() runs on CseTester system CseSystem { - //Local constants - const integer c_numberOfResponsePrimitive := 2; - - // Local variables - var MsgIn v_response; - var integer v_aeIndex_1, v_aeIndex_2, v_acpIndex, v_containerIndex_1, v_containerIndex_2, v_groupIndex, v_contentInstanceIndex_1, v_contentInstanceIndex_2 := -1; - var integer i; - var ListOfURIs v_memberIDs; - var ListOfURIs v_membersAcpIds; - var template RequestPrimitive v_createAcp := m_createAcp("NotInitialized", "MyACP", -, -); - var template PrimitiveContent v_contentResponse; - var XSD.AnyURI v_fanoutPointAddress; - - v_contentResponse.container := mw_contentContainerBase; - - // Test control - if(not(PICS_ACP_SUPPORT)) { - setverdict(inconc, __SCOPE__ & ": AccessControlPolicy support is required to run this test case"); - stop; - } - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex_1 := f_cse_preamble_registerAe(-, -); //c_CRUDNDi - v_aeIndex_2 := f_cse_createResource(int2, m_createAe(PX_APP_ID, -, PX_AE2_ID_STEM, "MyAe2", omit), -1); // AE2 is registred - v_acpIndex := f_cse_createResource(int1, v_createAcp, -1); // AE child resource - v_containerIndex_1 := f_cse_createResource(int3, m_createContainerBase, v_aeIndex_1); // AE1 child resource - v_containerIndex_2 := f_cse_createResource(int3, m_createContainerBase, v_aeIndex_2); // AE2 child resource - v_contentInstanceIndex_1 := f_cse_createResource(int4, m_createContentInstanceBase, v_containerIndex_1); // Container_1 child resource - v_contentInstanceIndex_2 := f_cse_createResource(int4, m_createContentInstanceBase, v_containerIndex_2); // Container_2 child resource - v_memberIDs := {f_getResourceId(vc_resourcesList[v_aeIndex_1].resource), f_getResourceId(vc_resourcesList[v_aeIndex_2].resource)}; - v_membersAcpIds := {f_getResourceId(vc_resourcesList[v_acpIndex].resource)}; - v_groupIndex := f_cse_createResource(int9, m_createGroup(2, v_memberIDs, omit, int2, -, v_membersAcpIds), -1); - - v_fanoutPointAddress := f_getResourceAddress(v_groupIndex) & "/" & c_resourceShortNameFanOutPoint & "/" & c_defaultContainerResourceName & "/" & c_resourceShortNameLatest; - - // Test Body - mcaPort.send(m_request(m_retrieveResource(v_fanoutPointAddress, f_getOriginator(v_aeIndex_1)))); //TODO see if it is correct or if we have to use PX_SUPER_ADMIN - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int2000))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": creation successfull by using fanOutPoint in group resource"); + + //Postamble + f_cse_postamble_deleteResources(); - if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list)){ - setverdict(fail, __SCOPE__, ": Error, aggregatedResponse attribute not provided"); + // Tear down + f_cf01Down(); + } + + /** + * @desc Check that the IUT handles validation of the resource type during an UPDATE of the <group> resource when memberIDs contains a sub-group on a temporarily unreachable Hosting CSE. + * + */ + testcase TC_CSE_GMG_UPD_009() runs on CseTester system CseSystem + { + //Local constants + const ResourceType c_ResourceTypeGroup := int9; + const ResourceType c_ResourceType1 := int4; + const MemberType c_memberType1 := int4; // should be set same type as c_ResourceType1 + const XSD.String c_primitiveContent := "primitive_contet"; + const ConsistencyStrategy c_consistentcyStrategy := int1; // ABANDOND_MEMBER +// const XSD.AnyURI c_targetResourceAddress := "TARGET_RESOURCE_ADDRESS"; + const XSD.AnyURI c_memberResourceAddress1 := "MEMBER_RESSOURCE_ADDRESS_1"; + const XSD.AnyURI c_memberResourceAddress2 := "MEMBER_RESSOURCE_ADDRESS_2"; + + // Local variables + var MsgIn v_response; + var RequestPrimitive v_request; + var integer v_aeIndex := -1; + var integer v_groupIndex := -1; + + var template RequestPrimitive v_createRequest := m_createGroupBase; + var template RequestPrimitive v_updateRequest := m_updateGroupBase; + var template RequestPrimitive v_createMember; + var PrimitiveContent v_primitiveContentRetrievedResource; + + // Test control + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_aeIndex := f_cse_preamble_registerAe(); //c_CRUDNDi +// TODO: -> register IUT to the remoteCSE + + v_createRequest := f_getCreateRequestPrimitive(c_ResourceTypeGroup, v_createRequest, v_aeIndex); + v_createRequest.primitiveContent.group_ := m_contentCreateGroup(1, {c_memberResourceAddress1}, omit); + v_createRequest.primitiveContent.group_.memberType := c_memberType1; + v_createRequest.primitiveContent.group_.memberTypeValidated := true; + v_createRequest.primitiveContent.group_.consistencyStrategy := c_consistentcyStrategy; + v_groupIndex := f_cse_createResource(c_ResourceTypeGroup, v_createRequest, v_aeIndex); + + // TODO: -> do the resources actually need to be created? + // TODO: choose the right template for member resource + v_createMember := m_createContentInstance(f_getResourceAddress(v_aeIndex), c_primitiveContent & "_1"); + f_cse_createResource(c_ResourceType1, v_createMember, v_aeIndex); + + // TODO: create resource of type <group> at c_memberResourceAddress2 on remoteCSE + // TODO: set onlineStatus to false on remoteCSE + + + //Test Body + v_request := f_getUpdateRequestPrimitive(c_ResourceTypeGroup, v_groupIndex, v_updateRequest); +// v_request.to_ := c_targetResourceAddress; + v_createRequest.primitiveContent.group_ := m_contentCreateGroup(2, {c_memberResourceAddress1, c_memberResourceAddress2}, omit); + + mcaPort.send(m_request(v_request)); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int2004))) -> value v_response { + tc_ac.stop; + + if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.group_.memberTypeValidated)) { + setverdict(fail, __SCOPE__, ": Error, memberTypeValidated attribute not provided"); + } else { + if(v_response.primitive.responsePrimitive.primitiveContent.group_.memberTypeValidated == false) { + if(lengthof(v_response.primitive.responsePrimitive.primitiveContent.group_.memberIDs) != 2) { + setverdict(fail, __SCOPE__ & ": Error, wrong number of memberIDs attribute"); + } else { + if(v_response.primitive.responsePrimitive.primitiveContent.group_.memberIDs[0] == c_memberResourceAddress1 and v_response.primitive.responsePrimitive.primitiveContent.group_.memberIDs[1] == c_memberResourceAddress2) { + setverdict(pass, __SCOPE__ & ": update successful"); + } else { + setverdict(fail, __SCOPE__, ": Error, wrong memberIDs"); + } + } + } else { + setverdict(fail, __SCOPE__, ": Error, memberTypeValidated must be set to FALSE"); + } + } + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while retrieving resource"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while retrieving resource"); + } + } + + v_primitiveContentRetrievedResource := f_cse_retrieveResource(v_groupIndex); + if(getverdict == pass){ + if(ischosen(v_primitiveContentRetrievedResource.group_)){ + if(v_primitiveContentRetrievedResource.group_.memberTypeValidated != false){ + setverdict(fail, __SCOPE__, ": Error, memberTypeValidated attribute not updated"); } - else{ - if(lengthof(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list) != c_numberOfResponsePrimitive){ - setverdict(fail, __SCOPE__, ": Error, length of aggregatedResponse is not valid"); - } - else{ - for(i:=0; i<c_numberOfResponsePrimitive; i:=i+1){ - if(not match(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list[i].primitiveContent, v_contentResponse)){ - setverdict(fail, __SCOPE__, ": Error, aggregatedResponse doesn't match with template expected"); - } - } - } - } - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while creating resource"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while creating resource"); - } - } - // Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - - } // end f_CSE_GMG_RET_001 - - } // end group g_CSE_GMG_RET_001 + if((v_primitiveContentRetrievedResource.group_.memberIDs[0] != c_memberResourceAddress1) and (v_primitiveContentRetrievedResource.group_.memberIDs[1] != c_memberResourceAddress2)){ + setverdict(fail, __SCOPE__, ": Error, memberIDs attribute not correct"); + } + } + } + + //Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf01Down(); + } + + /** + * @desc Check that the IUT handles validation of the resource type during an UPDATE of the group resource when memberIDs contains a sub-group on a a previously unreachable Hosting CSE that has become reachable + * @verdict + */ + testcase TC_CSE_GMG_UPD_010() runs on CseTester system CseSystem + { + //Local constants + const ResourceType c_ResourceTypeGroup := int9; + const ResourceType c_ResourceType1 := int4; + const MemberType c_memberType1 := int4; // should be set same type as c_ResourceType1 + const XSD.String c_primitiveContent := "primitive_contet"; + const ConsistencyStrategy c_consistentcyStrategy := int1; // ABANDOND_MEMBER +// const XSD.AnyURI c_targetResourceAddress := "TARGET_RESOURCE_ADDRESS"; + const XSD.AnyURI c_memberResourceAddress1 := "MEMBER_RESSOURCE_ADDRESS_1"; + const XSD.AnyURI c_memberResourceAddress2 := "MEMBER_RESSOURCE_ADDRESS_2"; + + // Local variables + var MsgIn v_response; + var RequestPrimitive v_request; + var integer v_aeIndex := -1; + var integer v_remoteCSEIndex := -1; + var integer v_groupIndex := -1; + + var template RequestPrimitive v_createRequest := m_createGroupBase; + var template RequestPrimitive v_updateRequest := m_updateGroupBase; + var template RequestPrimitive v_createMember; + + // Test control + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_aeIndex := f_cse_preamble_registerAe(); //c_CRUDNDi +// TODO: -> register IUT to the remoteCSE + //v_remoteCSEIndex := ... + + v_createRequest := f_getCreateRequestPrimitive(c_ResourceTypeGroup, v_createRequest, v_aeIndex); + v_createRequest.primitiveContent.group_ := m_contentCreateGroup(2, {c_memberResourceAddress1, c_memberResourceAddress2}, omit); + v_createRequest.primitiveContent.group_.memberType := c_memberType1; + v_createRequest.primitiveContent.group_.memberTypeValidated := false; + v_createRequest.primitiveContent.group_.consistencyStrategy := c_consistentcyStrategy; + v_groupIndex := f_cse_createResource(c_ResourceTypeGroup, v_createRequest, v_aeIndex); + + // TODO: -> the AE having a subscription to c_targetResourceAddress + + // TODO: -> do the resources actually need to be created? + // TODO: choose the right template for member resource + v_createMember := m_createContentInstance(f_getResourceAddress(v_aeIndex), c_primitiveContent & "_1"); + f_cse_createResource(c_ResourceType1, v_createMember, v_aeIndex); + + // TODO: create resource of type <group> at c_memberResourceAddress2 on remoteCSE + // TODO: set onlineStatus to false on remoteCSE + + + //Test Body + v_request := f_getUpdateRequestPrimitive(c_ResourceTypeGroup, v_groupIndex, v_updateRequest); + //v_request.from_ := CSE-ID + v_request.to_ := f_getResourceAddress(v_remoteCSEIndex); + //Content set to <remoteCSE> resource containing onlineStatus := false; + + mcaPort.send(m_request(v_request)); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int2004))) -> value v_response { + tc_ac.stop; + + + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while retrieving resource"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while retrieving resource"); + } + } + + //Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf01Down(); + } + } // end group Update + - } // end group Group_Managment - - group Discovery { - - group g_CSE_DIS_001{ - /** - * @desc Check that the IUT returns successfully a list all discovered resource addresses - * - */ - testcase TC_CSE_DIS_001() runs on CseTester system CseSystem { - // Local variables - var MsgIn v_response; - var integer v_aeIndex := -1; - var integer v_resourceIndex := -1; - var RequestPrimitive v_request; - var integer v_childResourceIndex := -1; - const ResourceType c_containerResourceType := int3; - - // Test control - - // Test component configuration - f_cf01Up(); - // Test adapter configuration + - // Preamble - v_aeIndex := f_cse_preamble_registerAe();//AE1 is registred; - - v_resourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_aeIndex); - v_childResourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_resourceIndex); - v_request := valueof(m_retrieveResourceFilterUsageOption(f_getResourceAddress(v_resourceIndex), f_getOriginator(v_resourceIndex), int1)); - mcaPort.send(m_request(v_request)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responseDiscovery)){ - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": URI List Representation available"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while retrieving resource"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while retrieving resource"); + + group Basic_Operations { + + group g_CSE_GMG_001 { + + /** + * @desc Check that the IUT allows a <group>/fanoutPoint OPERATION when the Originator has OPERATION_PERMISSION specified in membersAccessControlPolicyIDs attribute in the group resource. + * + */ + testcase TC_CSE_GMG_001_CRE() runs on CseTester system CseSystem { //Create + f_CSE_GMG_001(m_createContainerBase, int2001); + }//end TC_CSE_GMG_001_CRE + + testcase TC_CSE_GMG_001_UPD() runs on CseTester system CseSystem { //Update + var template RequestPrimitive v_updateRequest := m_updateContainerBase; + var Labels v_labels_1:= {"VALUE_1"}; + v_updateRequest.primitiveContent.container.labels := v_labels_1; + f_CSE_GMG_001(v_updateRequest, int2004); + }//end TC_CSE_GMG_001_UPD + + testcase TC_CSE_GMG_001_RET() runs on CseTester system CseSystem { //Retrieve + f_CSE_GMG_001(m_retrieveResource("Temporary", "Temporary"), int2000); + }//end TC_CSE_GMG_001_RET + + testcase TC_CSE_GMG_001_DEL() runs on CseTester system CseSystem { //Delete + f_CSE_GMG_001(m_deleteRequest("Temporary"), int2002); + }//end TC_CSE_GMG_001_DEL + + function f_CSE_GMG_001(template RequestPrimitive p_requestPrimitive, in ResponseStatusCode p_responseStatusCode) runs on CseTester { + // Local variables + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_acpIndex := -1; + var integer v_containerIndex_1 := -1; + var integer v_containerIndex_2 := -1; + var integer v_groupIndex := -1; + var integer i; + var ListOfURIs v_memberIDs; + var AcpType v_acpIDs; + var template RequestPrimitive v_createAcp := m_createAcp("NotInitialized", "MyACP", -, -); + + // Test control + if(not(PICS_ACP_SUPPORT)) { + setverdict(inconc, __SCOPE__ & ": AccessControlPolicy support is required to run this test case"); + stop; } - } - - // Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - } // end TC_CSE_DIS_001 - - } //end group g_CSE_DIS_001 - - group g_CSE_DIS_003 - { - - /** - * @desc Check that the IUT returns the empty address list when no result matching with filter criteria is discovered - * - */ - testcase TC_CSE_DIS_003() runs on CseTester system CseSystem { - // Local variables - var MsgIn v_response; - var integer v_aeIndex := -1; - var integer v_resourceIndex := -1; - var RequestPrimitive v_request; - var integer v_childResourceIndex := -1; - const ResourceType c_containerResourceType := int3; - - // Test control - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe();//AE1 is registred; - - v_resourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_aeIndex); - v_childResourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_resourceIndex); - v_request := valueof(m_retrieveResourceFilterUsageOption(f_getResourceAddress(v_resourceIndex), f_getOriginator(v_resourceIndex), int1)); - mcaPort.send(m_request(v_request)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responseDiscovery)) -> value v_response { - tc_ac.stop; - if(sizeof(v_response.primitive.responsePrimitive.primitiveContent.uRIList) == 0){ - setverdict(pass, __SCOPE__ & ": No Content is present"); + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_aeIndex := f_cse_preamble_registerAe(-, -); //c_CRUDNDi + v_acpIndex := f_cse_createResource(int1, v_createAcp, v_aeIndex); // AE child resource + v_containerIndex_1 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource + v_containerIndex_2 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource + v_memberIDs := {f_getResourceId(vc_resourcesList[v_containerIndex_1].resource), f_getResourceId(vc_resourcesList[v_containerIndex_2].resource)}; + v_acpIDs := {f_getResourceId(vc_resourcesList[v_acpIndex].resource)}; + v_groupIndex := f_cse_createResource(int9, m_createGroup(2, v_memberIDs, v_acpIDs, int3), v_aeIndex); // AE child resource + + p_requestPrimitive.to_ := f_getResourceAddress(v_groupIndex) & "/fopt"; + p_requestPrimitive.from_ := f_getOriginator(v_groupIndex); + + // Test Body + + mcaPort.send(m_request(valueof(p_requestPrimitive))); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(p_responseStatusCode))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": creation successfull by using fanOutPoint in group resource"); + + if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list)){ + setverdict(fail, __SCOPE__, ": Error, aggregatedResponse attribute not provided"); + } + else { + for(i:=0; i<lengthof(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list); i := i+1){ + if(not match(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list[i], mw_responsePrimitiveOK)){ + setverdict(fail, __SCOPE__, ": Error, one responsePrimitve of aggregatedResponse_list is not successful"); + } + } + } } - else - { - setverdict(fail, __SCOPE__ & ": Wrong content available in URIList element"); + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); } - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while retrieving resource"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while retrieving resource"); - } - } - - // Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - } // end TC_CSE_DIS_003 - } //end group g_CSE_DIS_003 - - group g_CSE_DIS_004 - { - /** - * @desc Check that the IUT returns successfully a list of discovered resource addresses with Non-hierarchical addressing form when the Discovery Result Type is provided in the request - * - */ - testcase TC_CSE_DIS_004() runs on CseTester system CseSystem { - // Local variables - var MsgIn v_response; - var integer v_aeIndex := -1; - var integer v_resourceIndex := -1; - var RequestPrimitive v_request; - var integer v_childResourceIndex := -1; - const ResourceType c_containerResourceType := int3; - - // Test control - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe();//AE1 is registred; - - v_resourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_aeIndex); - v_childResourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_resourceIndex); - v_request := valueof(m_retrieveResourceDiscResTypeFilterUsageOption(f_getResourceAddress(v_resourceIndex), f_getOriginator(v_resourceIndex), int2, int1)); - mcaPort.send(m_request(v_request)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responseDiscovery)) -> value v_response { - tc_ac.stop; - if (f_isNonHierarchical(v_response.primitive.responsePrimitive.primitiveContent.uRIList[0])) { - setverdict(pass, __SCOPE__ & ": Non-hierarchical address form present in URIList element"); - } else { - setverdict(fail, __SCOPE__ & ": Non-hierarchical address form absent in URIList representation"); + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while creating resource"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while creating resource"); } } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while retrieving resource"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while retrieving resource"); - } - } - - // Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - } // end TC_CSE_DIS_004 - - } //end group g_CSE_DIS_004 - - group g_CSE_DIS_005{ - - /** - * @desc Check that the IUT rejects the discovery requests to the resource TARGET_RESOURCE_ADDRESS when AE has no privilege to perform the discovery request for the resource TARGET_RESOURCE_ADDRESS - * - */ - testcase TC_CSE_DIS_005() runs on CseTester system CseSystem { - // Local variables - var integer v_aeIndex := -1; - var integer v_resourceIndex := -1; - var RequestPrimitive v_request; - var integer v_childResourceIndex := -1; - var integer v_acpAuxIndex := -1; - const ResourceType c_containerResourceType := int3; - - // Test control - if(not(PICS_ACP_SUPPORT)) { - log(__SCOPE__ & ":INFO: AccessControlPolicy support is required for executing this test case"); - stop; - } - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_acpAuxIndex := f_cse_preamble_createAcpAux(-, int31);//c_CRUDN) - - v_aeIndex := f_cse_preamble_registerAe({f_getResourceId(vc_resourcesList[v_acpAuxIndex].resource)});//AE1 is registred; - - v_resourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_aeIndex); - v_childResourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_resourceIndex); - v_request := valueof(m_retrieveResourceFilterUsageOption(f_getResourceAddress(v_resourceIndex), f_getOriginator(v_resourceIndex), int1)); - mcaPort.send(m_request(v_request)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int4103))) { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Access denied to discovery operation for resource " & f_getResourceAddress(v_resourceIndex)); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Discovering " & f_getResourceAddress(v_resourceIndex) & " without having privileges"); + + // Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf01Down(); + + } // end f_CSE_GMG_001 + + } // end group g_CSE_GMG_001 + + group g_CSE_GMG_002 { + + /** + * @desc Check that IUT denies a <group>/fanOutPoint OPERATION when the Originator does not have OPERATION_PERMISSION specified in membersAccessControlPolicyIDs in the group resource. + * + */ + testcase TC_CSE_GMG_002_CRE() runs on CseTester system CseSystem { //Create + f_CSE_GMG_002(m_createContainerBase, int62); //c_RUDNDi + }//end TC_CSE_GMG_002_CRE + + testcase TC_CSE_GMG_002_UPD() runs on CseTester system CseSystem { //Update + var template RequestPrimitive v_updateRequest := m_updateContainerBase; + var Labels v_labels_1:= {"VALUE_1"}; + v_updateRequest.primitiveContent.container.labels := v_labels_1; + f_CSE_GMG_002(v_updateRequest, int59);//c_CRDNDi + }//end TC_CSE_GMG_002_UPD + + testcase TC_CSE_GMG_002_RET() runs on CseTester system CseSystem { //Retrieve + f_CSE_GMG_002(m_retrieveResource("Temporary", "Temporary"), int61);//c_CUDNDi + }//end TC_CSE_GMG_002_RET + + testcase TC_CSE_GMG_002_DEL() runs on CseTester system CseSystem { //Delete + f_CSE_GMG_002(m_deleteRequest("Temporary"), int55); //c_CRUNDi + }//end TC_CSE_GMG_002_DEL + + function f_CSE_GMG_002(template RequestPrimitive p_requestPrimitive, in AccessControlOperations p_accessControlOperations) runs on CseTester { + // Local variables + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_acpIndex := -1; + var integer v_containerIndex_1 := -1; + var integer v_containerIndex_2 := -1; + var integer v_groupIndex := -1; + var ListOfURIs v_memberIDs; + var ListOfURIs v_membersAcpIds; + var template RequestPrimitive v_createAcp := m_createAcp("NotInitialized", "MyACP", -, p_accessControlOperations); + + // Test control + if(not(PICS_ACP_SUPPORT)) { + setverdict(inconc, __SCOPE__ & ": AccessControlPolicy support is required to run this test case"); + stop; } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while discovering resource"); + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_aeIndex := f_cse_preamble_registerAe(-, -); //c_CRUDNDi + v_acpIndex := f_cse_createResource(int1, v_createAcp, v_aeIndex); // AE child resource + v_containerIndex_1 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource + v_containerIndex_2 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource + v_memberIDs := {f_getResourceId(vc_resourcesList[v_containerIndex_1].resource), f_getResourceId(vc_resourcesList[v_containerIndex_2].resource)}; + v_membersAcpIds := {f_getResourceId(vc_resourcesList[v_acpIndex].resource)}; + v_groupIndex := f_cse_createResource(int9, m_createGroup(2, v_memberIDs, omit, int3, -, v_membersAcpIds), v_aeIndex); // AE child resource + + p_requestPrimitive.to_ := f_getResourceAddress(v_groupIndex) & "/fopt"; + p_requestPrimitive.from_ := f_getOriginator(v_groupIndex); + + // Test Body + + mcaPort.send(m_request(valueof(p_requestPrimitive))); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int4103))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": Update failed due to lack of privilege"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error operation successful while doesn't have privileges"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while executing operation"); + } } - } - - // Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - } // end TC_CSE_DIS_005 - - } //end group g_CSE_DIS_005 - - group g_CSE_DIS_006 - { - + + // Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf01Down(); + + } // end f_CSE_GMG_002 + + } // end group g_CSE_GMG_002 + + group g_CSE_GMG_003 { + /** - * @desc Check that the IUT responds with an error when the AE sends requests to discover the resource TARGET_RESOURCE_ADDRESS which does not exist in the Hosting CSE - * + * @desc Check that the IUT allows a <group>/fanoutPoint OPERATION when the Originator has OPERATION_PERMISSION specified in accessControlPolicyIDs and the membersAccessControlPolicyIDs is empty in the <group> resource. + * @verdict */ - testcase TC_CSE_DIS_006() runs on CseTester system CseSystem { + testcase TC_CSE_GMG_003_CRE() runs on CseTester system CseSystem { //Create + f_CSE_GMG_003(m_createContainerBase, int2001); + }//end TC_CSE_GMG_003_CRE + + testcase TC_CSE_GMG_003_UPD() runs on CseTester system CseSystem { //Update + var template RequestPrimitive v_updateRequest := m_updateContainerBase; + var Labels v_labels_1:= {"VALUE_1"}; + v_updateRequest.primitiveContent.container.labels := v_labels_1; + f_CSE_GMG_003(v_updateRequest, int2004); + }//end TC_CSE_GMG_003_UPD + + testcase TC_CSE_GMG_003_RET() runs on CseTester system CseSystem { //Retrieve + f_CSE_GMG_003(m_retrieveResource("Temporary", "Temporary"), int2000); + }//end TC_CSE_GMG_003_RET + + testcase TC_CSE_GMG_003_DEL() runs on CseTester system CseSystem { //Delete + f_CSE_GMG_003(m_deleteRequest("Temporary"), int2002); + }//end TC_CSE_GMG_003_DEL + + function f_CSE_GMG_003(template RequestPrimitive p_requestPrimitive, in ResponseStatusCode p_responseStatusCode) runs on CseTester { // Local variables var MsgIn v_response; var integer v_aeIndex := -1; - var integer v_resourceIndex := -1; - var RequestPrimitive v_request; - const ResourceType c_containerResourceType := int3; - var XSD.ID v_resourceId := "nonexisting"; - + var integer v_acpIndex := -1; + var integer v_containerIndex_1 := -1; + var integer v_containerIndex_2 := -1; + var integer v_groupIndex := -1; + var integer i; + var ListOfURIs v_memberIDs; + var ListOfURIs v_membersAcpIds; + var template RequestPrimitive v_createAcp := m_createAcp("NotInitialized", "MyACP", -, -); + // Test control - + if(not(PICS_ACP_SUPPORT)) { + setverdict(inconc, __SCOPE__ & ": AccessControlPolicy support is required to run this test case"); + stop; + } + // Test component configuration f_cf01Up(); - + // Test adapter configuration - + // Preamble - v_aeIndex := f_cse_preamble_registerAe();//AE1 is registred; - - if(PX_ADDRESSING_METHOD == e_nonHierarchical and (PX_PRIMITIVE_SCOPE == e_cseRelative)) { - v_request := valueof(m_retrieveResourceFilterUsageOption(v_resourceId, f_getOriginator(v_aeIndex), int1)); - } else { - v_request := valueof(m_retrieveResourceFilterUsageOption(f_getResourceAddress(v_aeIndex) & "/" & v_resourceId, f_getOriginator(v_resourceIndex), int1)); - } - - mcaPort.send(m_request(v_request)); + v_aeIndex := f_cse_preamble_registerAe(-, -); //c_CRUDNDi + v_acpIndex := f_cse_createResource(int1, v_createAcp, v_aeIndex); // AE child resource + v_containerIndex_1 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource + v_containerIndex_2 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource + v_memberIDs := {f_getResourceId(vc_resourcesList[v_containerIndex_1].resource), f_getResourceId(vc_resourcesList[v_containerIndex_2].resource)}; + v_membersAcpIds := {f_getResourceId(vc_resourcesList[v_acpIndex].resource)}; + v_groupIndex := f_cse_createResource(int9, m_createGroup(2, v_memberIDs, omit, int3, -, v_membersAcpIds), v_aeIndex); // AE child resource + + p_requestPrimitive.to_ := f_getResourceAddress(v_groupIndex) & "/fopt"; + p_requestPrimitive.from_ := f_getOriginator(v_groupIndex); + + // Test Body + + mcaPort.send(m_request(valueof(p_requestPrimitive))); tc_ac.start; alt { - - [] mcaPort.receive(mw_response(mw_responsePrimitive(int4004))) -> value v_response { + [] mcaPort.receive(mw_response(mw_responsePrimitive(p_responseStatusCode))) -> value v_response { tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Resource not found"); + setverdict(pass, __SCOPE__ & ": creation successfull by using fanOutPoint in group resource"); + + if(not ispresent(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list)){ + setverdict(fail, __SCOPE__, ": Error, aggregatedResponse attribute not provided"); + } + else { + for(i:=0; i<lengthof(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list); i := i+1){ + if(not match(v_response.primitive.responsePrimitive.primitiveContent.aggregatedResponse.responsePrimitive_list[i], mw_responsePrimitiveOK)){ + setverdict(fail, __SCOPE__, ": Error, one responsePrimitve of aggregatedResponse_list is not successful"); + } + } + } } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { tc_ac.stop; setverdict(fail, __SCOPE__ & ": Wrong response status code"); } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response while retrieving resource"); + setverdict(fail, __SCOPE__ & ": Error while creating resource"); } [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while retrieving resource"); + setverdict(fail, __SCOPE__ & ": No answer while creating resource"); } - } - + } + // Postamble f_cse_postamble_deleteResources(); - + // Tear down - f_cf01Down(); - } // end TC_CSE_DIS_006 - - } //end group g_CSE_DIS_006 + f_cf01Down(); + + } // end f_CSE_GMG_003 + + } // end group g_CSE_GMG_003 - group g_CSE_DIS_007 - { + group g_CSE_GMG_004 { + /** - * @desc Check that the IUT responds the originator with an error when the originator sends a request including an invalid format of filter criteria to discover the resource TARGET_RESOURCE_ADDRESS + * @desc Check that IUT rejects a <group>/fanOutPoint OPERATION when the Originator does not have OPERATION_PERMISSION specified in accessControlPolicyIDs and the membersAccessControlPolicyIDs is empty in the group resource. * */ - testcase TC_CSE_DIS_007() runs on CseTester system CseSystem { - // Local variables + testcase TC_CSE_GMG_004_CRE() runs on CseTester system CseSystem { //Create + f_CSE_GMG_004(m_createContainerBase, int62); //c_RUDNDi + }//end TC_CSE_GMG_004_CRE + + testcase TC_CSE_GMG_004_UPD() runs on CseTester system CseSystem { //Update + var template RequestPrimitive v_updateRequest := m_updateContainerBase; + var Labels v_labels_1:= {"VALUE_1"}; + v_updateRequest.primitiveContent.container.labels := v_labels_1; + f_CSE_GMG_004(v_updateRequest, int59);//c_CRDNDi + }//end TC_CSE_GMG_004_UPD + + testcase TC_CSE_GMG_004_RET() runs on CseTester system CseSystem { //Retrieve + f_CSE_GMG_004(m_retrieveResource("Temporary", "Temporary"), int61);//c_CUDNDi + }//end TC_CSE_GMG_004_RET + + testcase TC_CSE_GMG_004_DEL() runs on CseTester system CseSystem { //Delete + f_CSE_GMG_004(m_deleteRequest("Temporary"), int55); //c_CRUNDi + }//end TC_CSE_GMG_004_DEL + + function f_CSE_GMG_004(template RequestPrimitive p_requestPrimitive, in AccessControlOperations p_accessControlOperations) runs on CseTester { + // Local variables var MsgIn v_response; var integer v_aeIndex := -1; - var integer v_resourceIndex := -1; - var RequestPrimitive v_request; - var CseTester v_notifyHandler; - var integer v_ae2Index := -1; - var integer v_childResourceIndex := -1; - const ResourceType c_containerResourceType := int3; - + var integer v_acpIndex := -1; + var integer v_containerIndex_1 := -1; + var integer v_containerIndex_2 := -1; + var integer v_groupIndex := -1; + var ListOfURIs v_memberIDs; + var AcpType v_acpIDs; + var template RequestPrimitive v_createAcp := m_createAcp("NotInitialized", "MyACP", -, p_accessControlOperations); + // Test control - + if(not(PICS_ACP_SUPPORT)) { + setverdict(inconc, __SCOPE__ & ": AccessControlPolicy support is required to run this test case"); + stop; + } + // Test component configuration f_cf01Up(); - + // Test adapter configuration - + // Preamble - v_aeIndex := f_cse_preamble_registerAe();//AE1 is registred; - - v_resourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_aeIndex); - v_childResourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_resourceIndex); - v_request := valueof(m_retrieveResourceInvalidFormatOption(f_getResourceAddress(v_resourceIndex), f_getOriginator(v_resourceIndex))); - mcaPort.send(m_request(v_request)); + v_aeIndex := f_cse_preamble_registerAe(-, -); //c_CRUDNDi + v_acpIndex := f_cse_createResource(int1, v_createAcp, v_aeIndex); // AE child resource + v_containerIndex_1 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource + v_containerIndex_2 := f_cse_createResource(int3, m_createContainer_noResourceName, v_aeIndex); // AE child resource + v_memberIDs := {f_getResourceId(vc_resourcesList[v_containerIndex_1].resource), f_getResourceId(vc_resourcesList[v_containerIndex_2].resource)}; + v_acpIDs := {f_getResourceId(vc_resourcesList[v_acpIndex].resource)}; + v_groupIndex := f_cse_createResource(int9, m_createGroup(2, v_memberIDs, v_acpIDs, int3), v_aeIndex); // AE child resource + + p_requestPrimitive.to_ := f_getResourceAddress(v_groupIndex) & "/fopt"; + p_requestPrimitive.from_ := f_getOriginator(v_groupIndex); + + // Test Body + + mcaPort.send(m_request(valueof(p_requestPrimitive))); tc_ac.start; alt { - - [] mcaPort.receive(mw_response(mw_responsePrimitive(int4102))) -> value v_response { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int4103))) -> value v_response { tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Contents Unacceptable"); + setverdict(pass, __SCOPE__ & ": Update failed due to lack of privilege"); } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code while retrieving resource"); + setverdict(fail, __SCOPE__ & ": Wrong response status code"); } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response while retrieving resource"); + setverdict(fail, __SCOPE__ & ": Error operation successful while doesn't have privileges"); } [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while retrieving resource"); + setverdict(fail, __SCOPE__ & ": No answer while executing operation"); } - } - + } + // Postamble f_cse_postamble_deleteResources(); - + // Tear down - f_cf01Down(); - } // end TC_CSE_DIS_007 - } //end group g_CSE_DIS_007 + f_cf01Down(); + + } // end f_CSE_GMG_004 + + } // end group g_CSE_GMG_004 + + }// End of Basic_Operations + + } // end group Group_Managment + + group Discovery { + + /** + * @desc Check that the IUT returns successfully a list all discovered resource addresses + * + */ + testcase TC_CSE_DIS_001() runs on CseTester system CseSystem { + // Local variables + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_resourceIndex := -1; + var RequestPrimitive v_request; + var integer v_childResourceIndex := -1; + const ResourceType c_containerResourceType := int3; + + // Test control + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_aeIndex := f_cse_preamble_registerAe();//AE1 is registred; + + v_resourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_aeIndex); + v_childResourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_resourceIndex); + v_request := valueof(m_retrieveResourceFilterUsageOption(f_getResourceAddress(v_resourceIndex), f_getOriginator(v_resourceIndex), int1)); + mcaPort.send(m_request(v_request)); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responseDiscovery)){ + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": URI List Representation available"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while retrieving resource"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while retrieving resource"); + } + } + + // Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf01Down(); + } // end TC_CSE_DIS_001 + + /** + * @desc Check that the IUT returns the empty address list when no result matching with filter criteria is discovered + * + */ + testcase TC_CSE_DIS_003() runs on CseTester system CseSystem { + // Local variables + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_resourceIndex := -1; + var RequestPrimitive v_request; + var integer v_childResourceIndex := -1; + const ResourceType c_containerResourceType := int3; + + // Test control + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_aeIndex := f_cse_preamble_registerAe();//AE1 is registred; + + v_resourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_aeIndex); + v_childResourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_resourceIndex); + v_request := valueof(m_retrieveResourceFilterUsageOption(f_getResourceAddress(v_resourceIndex), f_getOriginator(v_resourceIndex), int1)); + mcaPort.send(m_request(v_request)); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responseDiscovery)) -> value v_response { + tc_ac.stop; + if(sizeof(v_response.primitive.responsePrimitive.primitiveContent.uRIList) == 0){ + setverdict(pass, __SCOPE__ & ": No Content is present"); + } + else + { + setverdict(fail, __SCOPE__ & ": Wrong content available in URIList element"); + } + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while retrieving resource"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while retrieving resource"); + } + } + + // Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf01Down(); + } // end TC_CSE_DIS_003 + + /** + * @desc Check that the IUT returns successfully a list of discovered resource addresses with Non-hierarchical addressing form when the Discovery Result Type is provided in the request + * + */ + testcase TC_CSE_DIS_004() runs on CseTester system CseSystem { + // Local variables + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_resourceIndex := -1; + var RequestPrimitive v_request; + var integer v_childResourceIndex := -1; + const ResourceType c_containerResourceType := int3; + + // Test control + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_aeIndex := f_cse_preamble_registerAe();//AE1 is registred; + + v_resourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_aeIndex); + v_childResourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_resourceIndex); + v_request := valueof(m_retrieveResourceDiscResTypeFilterUsageOption(f_getResourceAddress(v_resourceIndex), f_getOriginator(v_resourceIndex), int2, int1)); + mcaPort.send(m_request(v_request)); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responseDiscovery)) -> value v_response { + tc_ac.stop; + if (f_isNonHierarchical(v_response.primitive.responsePrimitive.primitiveContent.uRIList[0])) { + setverdict(pass, __SCOPE__ & ": Non-hierarchical address form present in URIList element"); + } else { + setverdict(fail, __SCOPE__ & ": Non-hierarchical address form absent in URIList representation"); + } + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while retrieving resource"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while retrieving resource"); + } + } + + // Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf01Down(); + } // end TC_CSE_DIS_004 + + /** + * @desc Check that the IUT rejects the discovery requests to the resource TARGET_RESOURCE_ADDRESS when AE has no privilege to perform the discovery request for the resource TARGET_RESOURCE_ADDRESS + * + */ + testcase TC_CSE_DIS_005() runs on CseTester system CseSystem { + // Local variables + var integer v_aeIndex := -1; + var integer v_resourceIndex := -1; + var RequestPrimitive v_request; + var integer v_childResourceIndex := -1; + var integer v_acpAuxIndex := -1; + const ResourceType c_containerResourceType := int3; + + // Test control + if(not(PICS_ACP_SUPPORT)) { + log(__SCOPE__ & ":INFO: AccessControlPolicy support is required for executing this test case"); + stop; + } + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_acpAuxIndex := f_cse_preamble_createAcpAux(-, int31);//c_CRUDN) + + v_aeIndex := f_cse_preamble_registerAe({f_getResourceId(vc_resourcesList[v_acpAuxIndex].resource)});//AE1 is registred; + + v_resourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_aeIndex); + v_childResourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_resourceIndex); + v_request := valueof(m_retrieveResourceFilterUsageOption(f_getResourceAddress(v_resourceIndex), f_getOriginator(v_resourceIndex), int1)); + mcaPort.send(m_request(v_request)); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int4103))) { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": Access denied to discovery operation for resource " & f_getResourceAddress(v_resourceIndex)); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Discovering " & f_getResourceAddress(v_resourceIndex) & " without having privileges"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while discovering resource"); + } + } + + // Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf01Down(); + } // end TC_CSE_DIS_005 + + /** + * @desc Check that the IUT responds with an error when the AE sends requests to discover the resource TARGET_RESOURCE_ADDRESS which does not exist in the Hosting CSE + * + */ + testcase TC_CSE_DIS_006() runs on CseTester system CseSystem { + // Local variables + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_resourceIndex := -1; + var RequestPrimitive v_request; + const ResourceType c_containerResourceType := int3; + var XSD.ID v_resourceId := "nonexisting"; + + // Test control + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_aeIndex := f_cse_preamble_registerAe();//AE1 is registred; + + if(PX_ADDRESSING_METHOD == e_nonHierarchical and (PX_PRIMITIVE_SCOPE == e_cseRelative)) { + v_request := valueof(m_retrieveResourceFilterUsageOption(v_resourceId, f_getOriginator(v_aeIndex), int1)); + } else { + v_request := valueof(m_retrieveResourceFilterUsageOption(f_getResourceAddress(v_aeIndex) & "/" & v_resourceId, f_getOriginator(v_resourceIndex), int1)); + } + + mcaPort.send(m_request(v_request)); + tc_ac.start; + alt { + + [] mcaPort.receive(mw_response(mw_responsePrimitive(int4004))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": Resource not found"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response while retrieving resource"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while retrieving resource"); + } + } + + // Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf01Down(); + } // end TC_CSE_DIS_006 + + /** + * @desc Check that the IUT responds the originator with an error when the originator sends a request including an invalid format of filter criteria to discover the resource TARGET_RESOURCE_ADDRESS + * + */ + testcase TC_CSE_DIS_007() runs on CseTester system CseSystem { + // Local variables + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_resourceIndex := -1; + var RequestPrimitive v_request; + var CseTester v_notifyHandler; + var integer v_ae2Index := -1; + var integer v_childResourceIndex := -1; + const ResourceType c_containerResourceType := int3; + + // Test control + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_aeIndex := f_cse_preamble_registerAe();//AE1 is registred; + + v_resourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_aeIndex); + v_childResourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_resourceIndex); + v_request := valueof(m_retrieveResourceInvalidFormatOption(f_getResourceAddress(v_resourceIndex), f_getOriginator(v_resourceIndex))); + mcaPort.send(m_request(v_request)); + tc_ac.start; + alt { + + [] mcaPort.receive(mw_response(mw_responsePrimitive(int4102))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": Contents Unacceptable"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code while retrieving resource"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response while retrieving resource"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while retrieving resource"); + } + } + + // Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf01Down(); + } // end TC_CSE_DIS_007 } //end group Group Discovery group Subscription_And_Notification { - group g_CSE_SUB_CRE_001{ + group Create { /** * @desc Check that the IUT rejects the creation of the <subscription> resource when the target subscribed-to RESOURCE_TYPE resource is not subscribable. @@ -16160,11 +16095,7 @@ module OneM2M_Testcases { f_cf01Down(); } // end TC_CSE_SUB_CRE_001_CIN - - }//end group g_CSE_SUB_CRE_001 - - group g_CSE_SUB_CRE_002 { - + /** * @desc Check that the IUT rejects the creation of the <subscription> resource when the originator does not have privileges for retrieving the subscribed-to resource. * @@ -16232,11 +16163,7 @@ module OneM2M_Testcases { f_cf01Down(); } // end TC_CSE_SUB_CRE_002 - - }//end group g_CSE_SUB_CRE_002 - - group g_CSE_SUB_CRE_003 { - + /** * @desc Check that the IUT rejects the creation of the <subscription> resource when the notificationURI is not the originator and the IUT cannot send the Notify request to the notificationURI * @@ -16298,86 +16225,125 @@ module OneM2M_Testcases { f_cf01Down(); } // end TC_CSE_SUB_CRE_003 + + /** + * @desc Check that the IUT stores Originator ID in the notification creator attribute when a <SUBSCRIPTION> creation request which needs verification is received and the notificationURI is not the Originator. + * + */ + testcase TC_CSE_SUB_CRE_004() runs on CseTester system CseSystem { + //Local variables + var MsgIn v_response; + var template RequestPrimitive v_request := m_createSubscriptionBase; + var integer v_aeIndex := -1; + var CseTester v_notifyHandler; + var integer v_ae2Index := -1; + + // Test control - }//end group g_CSE_SUB_CRE_003 - - group g_CSE_SUB_NTF_001{ + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); + + f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_request, int23); + + // Test Body + v_request := f_getCreateRequestPrimitive(int23, m_createSubscriptionBase, v_aeIndex); + + mcaPort.send(m_request(valueof(v_request))); + + f_is_component_done(v_notifyHandler); + + // Postamble + f_cse_postamble_deleteResources(); + + // Tear down + f_cf01Down(); + + } // end TC_CSE_SUB_CRE_004 /** - * @desc Check that the IUT rejects the creation of the <subscription> resource when the notificationURI is not the originator and the IUT have received the Notify response containing Response Status Code indicating SUBSCRIPTION_CREATOR_HAS_NO_PRIVILEGE + * @desc Check that the IUT sends a Notify request to the subscriber resource when eventType attribute is set to "Create_of_Direct_Child_Resource" and an create operation has been performed on the subscribed-to resource * */ - testcase TC_CSE_SUB_NTF_001() runs on CseTester system CseSystem { + testcase TC_CSE_SUB_CRE_005() runs on CseTester system CseSystem { + // Local variables var MsgIn v_response; var integer v_aeIndex := -1; - var template RequestPrimitive v_createRequest := m_createSubscriptionBase; + var integer v_resourceIndex := -1; + var template RequestPrimitive v_createRequest := omit; + var template PrimitiveContent v_contentNotification := {container := mw_contentContainer_rc1};// all attributes expected var RequestPrimitive v_request; var CseTester v_notifyHandler; var integer v_ae2Index := -1; - + // Test control // Test component configuration f_cf01Up(); - + // Test adapter configuration // Preamble - v_aeIndex := f_cse_preamble_registerAe(omit,omit);//c_CUDNDi); + v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); - f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_createRequest, int23, int4101); - + v_createRequest := m_createSubscriptionAdvanced(f_getResourceAddress(v_aeIndex), -, {f_getResourceAddress(v_ae2Index)}, m_eventNotificationCriteria({int3}, -)); + + f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_createRequest, int23); + + v_resourceIndex := f_cse_createResource(int23, v_createRequest, v_aeIndex);//Subscription + + if(v_notifyHandler.running) { + v_notifyHandler.stop; + }; + // Test Body - v_request := f_getCreateRequestPrimitive(int23, v_createRequest, v_aeIndex);//Subscription + v_request:= f_getCreateRequestPrimitive(int3, m_createContainerBase, v_aeIndex); - mcaPort.send(m_request(v_request)); + v_notifyHandler.start(f_cse_notifyProcedure(v_contentNotification)); // check if the notification is well received and if its content matchs - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int4101))) -> value v_response { //SUBSCRIPTION_CREATOR_HAS_NO_PRIVILEGE - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": OK : Subscription creator has no privilege"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { - tc_ac.stop; + mcaPort.send(m_request(v_request)); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int2001))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": Resource type int3 (Container) created successfully"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { + tc_ac.stop; setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Subsciption successful whereas subsciption creator has no privilege"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while creating resource"); - } - } - - f_checkCseTesterStatus(); - - //Check to see if the resource is NOT present - if(f_isResourceNotPresent(v_aeIndex, f_getResourceName(v_request.primitiveContent))){ - setverdict(pass, __SCOPE__ & ":INFO: Resource not created"); - } else { - setverdict(fail, __SCOPE__ & ":ERROR: Resource created"); - } - + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while creating resource type int3 (Container)"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while creating resource type int3 (Container)"); + } + } + + f_is_component_done(v_notifyHandler); + //Postamble f_cse_postamble_deleteResources(); //Tear down f_cf01Down(); - - } // end TC_CSE_SUB_NTF_001 - - }//end group g_CSE_SUB_NTF_001 + } // end TC_CSE_SUB_CRE_005 + + }//end group Create - group g_CSE_SUB_NTF_002 { + group Notify{ /** - * @desc Check that the IUT rejects the creation of the <subscription> resource when the notificationURI is not the originator and the IUT have received the Notify response containing Response Status Code indicating SUBSCRIPTION_HOST_HAS_NO_PRIVILEGE + * @desc Check that the IUT rejects the creation of the <subscription> resource when the notificationURI is not the originator and the IUT have received the Notify response containing Response Status Code indicating SUBSCRIPTION_CREATOR_HAS_NO_PRIVILEGE * */ - testcase TC_CSE_SUB_NTF_002() runs on CseTester system CseSystem { + testcase TC_CSE_SUB_NTF_001() runs on CseTester system CseSystem { // Local variables var MsgIn v_response; var integer v_aeIndex := -1; @@ -16396,7 +16362,7 @@ module OneM2M_Testcases { // Preamble v_aeIndex := f_cse_preamble_registerAe(omit,omit);//c_CUDNDi); - f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_createRequest, int23, int5205); + f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_createRequest, int23, int4101); // Test Body v_request := f_getCreateRequestPrimitive(int23, v_createRequest, v_aeIndex);//Subscription @@ -16405,7 +16371,7 @@ module OneM2M_Testcases { tc_ac.start; alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int5205))) -> value v_response { //SUBSCRIPTION_CREATOR_HAS_NO_PRIVILEGE + [] mcaPort.receive(mw_response(mw_responsePrimitive(int4101))) -> value v_response { //SUBSCRIPTION_CREATOR_HAS_NO_PRIVILEGE tc_ac.stop; setverdict(pass, __SCOPE__ & ": OK : Subscription creator has no privilege"); } @@ -16437,178 +16403,95 @@ module OneM2M_Testcases { //Tear down f_cf01Down(); - } // end TC_CSE_SUB_NTF_002 - - }//end group g_CSE_SUB_NTF_002 - - group g_CSE_SUB_UPD_001 { - - /** - * @desc Check that the IUT sends Notify request to the subscriber resource when an update operation has been performed on the subscribed-to resource - * - */ - testcase TC_CSE_SUB_UPD_001() runs on CseTester system CseSystem { - // Local variables - var MsgIn v_response; - var Labels v_labels_1:= {"VALUE_1"}; - var integer v_aeIndex := -1; - var integer v_resourceIndex := -1; - var template RequestPrimitive v_createRequest := m_createSubscriptionBase; - var template PrimitiveContent v_contentResponse; - var template RequestPrimitive v_updateRequest := m_updateAeBase; - var RequestPrimitive v_request; - var CseTester v_notifyHandler; - var integer v_ae2Index := -1; - - // Test control - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); - - f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_createRequest, int23); - - v_resourceIndex := f_cse_createResource(int23, v_createRequest, v_aeIndex);//Subscription - - if(v_notifyHandler.running) { - v_notifyHandler.stop; - }; - - // Test Body - v_contentResponse.aE := mw_contentAeBase; // all attributes expected - - v_notifyHandler.start(f_cse_notifyProcedure(v_contentResponse)); // check if the notification is well received and if its content matchs - - v_request:= f_getUpdateRequestPrimitive(int2, v_aeIndex, v_updateRequest); // Update request - v_updateRequest.primitiveContent.aE.labels := v_labels_1; - - mcaPort.send(m_request(v_request)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int2004))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Attribute of resource type int2 (Ae) updated successfully"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while updating resource type int2 (Ae)"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while updating resource type int2 (Ae)"); - } - }; - - f_is_component_done(v_notifyHandler); - - //Postamble - f_cse_postamble_deleteResources(); - - //Tear down - f_cf01Down(); - - } // end TC_CSE_SUB_UPD_001 - - }//end group g_CSE_SUB_UPD_001 - - group g_CSE_SUB_CRE_005{ + } // end TC_CSE_SUB_NTF_001 /** - * @desc Check that the IUT sends a Notify request to the subscriber resource when eventType attribute is set to "Create_of_Direct_Child_Resource" and an create operation has been performed on the subscribed-to resource + * @desc Check that the IUT rejects the creation of the <subscription> resource when the notificationURI is not the originator and the IUT have received the Notify response containing Response Status Code indicating SUBSCRIPTION_HOST_HAS_NO_PRIVILEGE * */ - testcase TC_CSE_SUB_CRE_005() runs on CseTester system CseSystem { - + testcase TC_CSE_SUB_NTF_002() runs on CseTester system CseSystem { // Local variables var MsgIn v_response; var integer v_aeIndex := -1; - var integer v_resourceIndex := -1; - var template RequestPrimitive v_createRequest := omit; - var template PrimitiveContent v_contentNotification := {container := mw_contentContainer_rc1};// all attributes expected + var template RequestPrimitive v_createRequest := m_createSubscriptionBase; var RequestPrimitive v_request; var CseTester v_notifyHandler; var integer v_ae2Index := -1; - + // Test control // Test component configuration f_cf01Up(); - + // Test adapter configuration // Preamble - v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); - - v_createRequest := m_createSubscriptionAdvanced(f_getResourceAddress(v_aeIndex), -, {f_getResourceAddress(v_ae2Index)}, m_eventNotificationCriteria({int3}, -)); - - f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_createRequest, int23); - - v_resourceIndex := f_cse_createResource(int23, v_createRequest, v_aeIndex);//Subscription + v_aeIndex := f_cse_preamble_registerAe(omit,omit);//c_CUDNDi); - if(v_notifyHandler.running) { - v_notifyHandler.stop; - }; - + f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_createRequest, int23, int5205); + // Test Body - v_request:= f_getCreateRequestPrimitive(int3, m_createContainerBase, v_aeIndex); - - v_notifyHandler.start(f_cse_notifyProcedure(v_contentNotification)); // check if the notification is well received and if its content matchs + v_request := f_getCreateRequestPrimitive(int23, v_createRequest, v_aeIndex);//Subscription mcaPort.send(m_request(v_request)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int2001))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Resource type int3 (Container) created successfully"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { - tc_ac.stop; + + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int5205))) -> value v_response { //SUBSCRIPTION_CREATOR_HAS_NO_PRIVILEGE + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": OK : Subscription creator has no privilege"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { + tc_ac.stop; setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while creating resource type int3 (Container)"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while creating resource type int3 (Container)"); - } - } - - f_is_component_done(v_notifyHandler); - + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Subsciption successful whereas subsciption creator has no privilege"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while creating resource"); + } + } + + f_checkCseTesterStatus(); + + //Check to see if the resource is NOT present + if(f_isResourceNotPresent(v_aeIndex, f_getResourceName(v_request.primitiveContent))){ + setverdict(pass, __SCOPE__ & ":INFO: Resource not created"); + } else { + setverdict(fail, __SCOPE__ & ":ERROR: Resource created"); + } + //Postamble f_cse_postamble_deleteResources(); //Tear down f_cf01Down(); - } // end TC_CSE_SUB_CRE_005 - - }//end group g_CSE_SUB_CRE_005 - - group g_CSE_SUB_DEL_002 { + + } // end TC_CSE_SUB_NTF_002 - /** - * @desc Check that the IUT sends a Notify request to the subscriber resource when eventType attribute is set to "Delete_of_Resource" and an delete operation has been performed the subscribed-to resource - * - */ - testcase TC_CSE_SUB_DEL_002() runs on CseTester system CseSystem { + /** + * @desc Check that the IUT sends aggregated notification to the subscriber resource when the duration value of the batchNotify attribute is set to TIME_LIMIT and when this timer expires + * + */ + testcase TC_CSE_SUB_NTF_003() runs on CseTester system CseSystem { // Local variables + const integer numberOfAggregatedNotification := 3; var MsgIn v_response; + var Labels v_labels_1:= {"VALUE_1"}; + var Labels v_labels_2:= {"VALUE_2"}; var integer v_aeIndex := -1; - var integer v_subscriptionResourceIndex := -1; - var template RequestPrimitive v_createRequest := omit; - var template PrimitiveContent v_contentNotification := {aE:= mw_contentAeBase}; // all attributes expected; - var RequestPrimitive v_deleteRequest; + var integer v_resourceIndex := -1; + var template RequestPrimitive v_createRequest := omit; + var template PrimitiveContent v_contentResponse; + var template RequestPrimitive v_updateRequest := m_updateAeBase; + var RequestPrimitive v_request; var CseTester v_notifyHandler; var integer v_ae2Index := -1; - + + v_contentResponse.aE := mw_contentAeBase; // all attributes expected + // Test control // Test component configuration @@ -16619,43 +16502,27 @@ module OneM2M_Testcases { // Preamble v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); - v_createRequest := m_createSubscriptionAdvanced(f_getResourceAddress(v_aeIndex), -, {f_getResourceAddress(v_ae2Index)}, m_eventNotificationCriteria({int2}, -)); - f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_createRequest, int23); - - v_subscriptionResourceIndex := f_cse_createResource(int23, v_createRequest, v_aeIndex );//Subscription + + v_createRequest := m_createSubscriptionAdvanced(f_getResourceAddress(v_aeIndex), -, {f_getResourceAddress(v_ae2Index)},omit,omit,m_batchNotifyNumber3Duration1(numberOfAggregatedNotification));// TODO fix the duration + + v_resourceIndex := f_cse_createResource(int23, v_createRequest, v_aeIndex);//Subscription if(v_notifyHandler.running) { v_notifyHandler.stop; }; - //Test Body - v_notifyHandler.start(f_cse_notifyProcedure_subscriptionDeletion(v_contentNotification)); // check if the notification is well received and if its content matchs - - v_deleteRequest:= valueof(m_deleteRequest(f_getResourceAddress(v_aeIndex))); // Ae delete request - - mcaPort.send(m_request(v_deleteRequest)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int2002))) -> value v_response { - tc_ac.stop; - //Update vc_resourcesIndexToBeDeleted - f_removeElementFromList (vc_resourcesIndexToBeDeleted, v_aeIndex); - setverdict(pass, __SCOPE__ & ": resource type int2 (AE) deleted successfully"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while deleting resource type int2 (AE)"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while deleting resource type int2 (AE)"); - } - } + // Test Body + v_notifyHandler.start(f_CSE_SUB_UPD_007(v_contentResponse, 2)); // check that no notification is received + + v_updateRequest.primitiveContent.aE.labels := v_labels_1; + v_request:= f_getUpdateRequestPrimitive(int2, v_aeIndex, v_updateRequest); // Update request 1 + f_cse_updateResource(v_request); + v_updateRequest.primitiveContent.aE.labels := v_labels_2; + v_request:= f_getUpdateRequestPrimitive(int2, v_aeIndex, v_updateRequest); // Update request 2 + f_cse_updateResource(v_request); + f_is_component_done(v_notifyHandler); //Postamble @@ -16663,28 +16530,31 @@ module OneM2M_Testcases { //Tear down f_cf01Down(); + + } // end TC_CSE_SUB_NTF_003 - } // end TC_CSE_SUB_DEL_002 - - }//end group g_CSE_SUB_DEL_002 - - group g_CSE_SUB_DEL_003 { + }//end group Notify + + group Update { /** - * @desc Check that the IUT sends a Notify request to the subscriber resource when eventType attribute is set to "Delete_of_Direct_Child_Resource" and an delete operation has been performed on a child resource of the subscribed-to resource - * + * @desc Check that the IUT sends Notify request to the subscriber resource when an update operation has been performed on the subscribed-to resource + * */ - testcase TC_CSE_SUB_DEL_003() runs on CseTester system CseSystem { + testcase TC_CSE_SUB_UPD_001() runs on CseTester system CseSystem { // Local variables var MsgIn v_response; + var Labels v_labels_1:= {"VALUE_1"}; var integer v_aeIndex := -1; - var integer v_subscriptionResourceIndex := -1; - var integer v_containerResourceIndex := -1; - var template RequestPrimitive v_createRequest := omit; - var RequestPrimitive v_deleteRequest; - var template PrimitiveContent v_contentNotification := {container := mw_contentContainer_rc1}; // all attributes expected in notification; + var integer v_resourceIndex := -1; + var template RequestPrimitive v_createRequest := m_createSubscriptionBase; + var template PrimitiveContent v_contentResponse; + var template RequestPrimitive v_updateRequest := m_updateAeBase; + var RequestPrimitive v_request; var CseTester v_notifyHandler; - var integer v_ae2Index := -1; + var integer v_ae2Index := -1; + + // Test control // Test component configuration f_cf01Up(); @@ -16692,101 +16562,53 @@ module OneM2M_Testcases { // Test adapter configuration // Preamble - v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi; - - v_containerResourceIndex := f_cse_createResource(int3, m_createContainerBase, v_aeIndex);//Container - - v_createRequest := m_createSubscriptionAdvanced(f_getResourceAddress(v_aeIndex), -, {f_getResourceAddress(v_ae2Index)}, m_eventNotificationCriteria({int4}, -)); + v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_createRequest, int23); - v_subscriptionResourceIndex := f_cse_createResource(int23, v_createRequest, v_aeIndex);//Subscription (with name attribute omitted) - + v_resourceIndex := f_cse_createResource(int23, v_createRequest, v_aeIndex);//Subscription + if(v_notifyHandler.running) { v_notifyHandler.stop; }; - - //Test Body - v_notifyHandler.start(f_cse_notifyProcedure(v_contentNotification)); // check if the notification is well received and if its content matchs - v_deleteRequest := valueof(m_deleteRequest(f_getResourceAddress(v_containerResourceIndex)));// Container deletion request + // Test Body + v_contentResponse.aE := mw_contentAeBase; // all attributes expected - mcaPort.send(m_request(v_deleteRequest)); + v_notifyHandler.start(f_cse_notifyProcedure(v_contentResponse)); // check if the notification is well received and if its content matchs + + v_request:= f_getUpdateRequestPrimitive(int2, v_aeIndex, v_updateRequest); // Update request + v_updateRequest.primitiveContent.aE.labels := v_labels_1; + + mcaPort.send(m_request(v_request)); tc_ac.start; alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int2002))) -> value v_response { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int2004))) -> value v_response { tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Container resource deleted successfully"); + setverdict(pass, __SCOPE__ & ": Attribute of resource type int2 (Ae) updated successfully"); } [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while deleting resource type int3 (Container)"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while deleting resource type int3 (Container)"); - } - } - - f_is_component_done(v_notifyHandler); - - //Postamble - f_cse_postamble_deleteResources(); - - //Tear down - f_cf01Down(); - - } // end TC_CSE_SUB_DEL_003 - - }//end group g_CSE_SUB_DEL_003 - - group g_CSE_SUB_CRE_004 { - - /** - * @desc Check that the IUT stores Originator ID in the notification creator attribute when a <SUBSCRIPTION> creation request which needs verification is received and the notificationURI is not the Originator. - * - */ - testcase TC_CSE_SUB_CRE_004() runs on CseTester system CseSystem { - //Local variables - var MsgIn v_response; - var template RequestPrimitive v_request := m_createSubscriptionBase; - var integer v_aeIndex := -1; - var CseTester v_notifyHandler; - var integer v_ae2Index := -1; - - // Test control - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); - - f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_request, int23); - - // Test Body - v_request := f_getCreateRequestPrimitive(int23, m_createSubscriptionBase, v_aeIndex); - - mcaPort.send(m_request(valueof(v_request))); + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while updating resource type int2 (Ae)"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while updating resource type int2 (Ae)"); + } + }; - f_is_component_done(v_notifyHandler); - - // Postamble - f_cse_postamble_deleteResources(); - - // Tear down - f_cf01Down(); - - } // end TC_CSE_SUB_CRE_004 + f_is_component_done(v_notifyHandler); - }//end group g_CSE_SUB_CRE_004 - - group g_CSE_SUB_UPD_002 { + //Postamble + f_cse_postamble_deleteResources(); + + //Tear down + f_cf01Down(); + + } // end TC_CSE_SUB_UPD_001 /** * @desc Check that the IUT sends a Notify request to the subscriber resource when the notificationContentType attribute is set to “modified attributes†and an update operation has been performed on the subscribed-to resource @@ -16864,10 +16686,7 @@ module OneM2M_Testcases { f_cf01Down(); } // end TC_CSE_SUB_UPD_002 - }//end group g_CSE_SUB_UPD_002 - - group g_CSE_SUB_UPD_003 { - + /** * @desc Check that the IUT sends a Notify request to the subscriber resource when the notificationContentType attribute is set to “ResourceID†and an update operation has been performed on the subscribed-to resource * @@ -16939,10 +16758,7 @@ module OneM2M_Testcases { f_cf01Down(); } // end TC_CSE_SUB_UPD_003 - }//end group g_CSE_SUB_UPD_003 - - group g_CSE_SUB_UPD_004 { - + /** * @desc Check that the IUT decreases the expirationCounter attribute of a subscription resource when the Hosting CSE of the subscribed-to resource successfully sends the notification request to subscriber resource(s) * @@ -17029,11 +16845,7 @@ module OneM2M_Testcases { f_cf01Down(); } // end TC_CSE_SUB_UPD_004 - - }//end group g_CSE_SUB_UPD_004 - - group g_CSE_SUB_UPD_005 { - + /** * @desc Check that the IUT deletes the subscription resource when the the expirationCounter meets zero * @@ -17113,90 +16925,6 @@ module OneM2M_Testcases { } // end TC_CSE_SUB_UPD_005 - }//end of group g_CSE_SUB_UPD_005 - - group g_CSE_SUB_UPD_009 { - - /** - * @desc Check that the IUT sends a Notify request to the subscriber resource when the “attribute†condition tag of eventNotificationCriteria attribute is set to ATTRIBUTE_NAME and an update operation has been performed on the subscribed-to resource - * - */ - testcase TC_CSE_SUB_UPD_009() runs on CseTester system CseSystem { - // Local variables - var MsgIn v_response; - var Labels v_labels_1:= {"VALUE_1"}; - var AttributeList_1 v_attributeList := {"labels"}; - var integer v_aeIndex := -1; - var integer v_resourceIndex := -1; - var template RequestPrimitive v_createRequest := omit; - var template PrimitiveContent v_contentResponse; - var template RequestPrimitive v_updateRequest := m_updateAeBase; - var RequestPrimitive v_request; - var CseTester v_notifyHandler; - var integer v_ae2Index := -1; - - v_updateRequest.primitiveContent.aE.labels := v_labels_1; - v_contentResponse.aE := mw_contentAeBase; // all attributes expected - - // Test control - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); - - f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_createRequest, int23); - - v_createRequest := m_createSubscriptionAdvanced(f_getResourceAddress(v_aeIndex), -, {f_getResourceAddress(v_ae2Index)}, m_eventNotificationCriteria({int1}, v_attributeList)); - - v_resourceIndex := f_cse_createResource(int23, v_createRequest, v_aeIndex);//Subscription - - v_request:= f_getUpdateRequestPrimitive(int2, v_aeIndex, v_updateRequest); // Update request - - if(v_notifyHandler.running) { - v_notifyHandler.stop; - }; - - // Test Body - v_notifyHandler.start(f_cse_notifyProcedure(v_contentResponse)); // check if the notification is well received and if its content matchs - - mcaPort.send(m_request(v_request)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int2004))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Attribute of resource type int2 (Ae) updated successfully"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while updating resource type int2 (Ae)"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while updating resource type int2 (Ae) or None notification received"); - } - } - - f_is_component_done(v_notifyHandler); - - //Postamble - f_cse_postamble_deleteResources(); - - //Tear down - f_cf01Down(); - - } // end TC_CSE_SUB_UPD_009 - - }//end group g_CSE_SUB_UPD_009 - - group g_CSE_SUB_UPD_006 { - /** * @desc Check that the IUT doesn’t send a Notify request to the subscriber resource when the “attribute†condition tag of eventNotificationCriteria attribute is set to LIST_OF_ATTRIBUTE and doesn’t contain the ATTRIBUTE_NAME attribute updated. * @@ -17259,149 +16987,40 @@ module OneM2M_Testcases { [] tc_ac.timeout { setverdict(fail, __SCOPE__ & ": No answer while updating resource type int2 (Ae) or None notification received"); } - } - - f_is_component_done(v_notifyHandler); - - //Postamble - f_cse_postamble_deleteResources(); - - //Tear down - f_cf01Down(); - - } // end TC_CSE_SUB_UPD_006 - - function f_CSE_SUB_UPD_006() runs on CseTester { - // Local variables - var MsgIn v_response; - - map(self:mcaPort, system:mcaPort); - map(self:acPort, system:acPort); - - tc_ac.start(10.0); - alt { - [] mcaPort.receive{ - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error, Notification isn't expected "); - } - [] tc_ac.timeout { - setverdict(pass, __SCOPE__ & ": No notification received"); - } - } - - unmap(self:mcaPort, system:mcaPort); - unmap(self:acPort, system:acPort); - - } //end f_CSE_SUB_UPD_006 - - }//end group g_CSE_SUB_UPD_006 - - group g_CSE_SUB_DEL_001{ - - /** - * @desc Check that the IUT sends a Notify request to the AE2_RESOURCE_ADDRESS of the subscriberURI attribute when the SUBSCRIPTION_RESOURCE_ADDRESS <subscription> resource is deleted - * - */ - testcase TC_CSE_SUB_DEL_001() runs on CseTester system CseSystem { - // Local variables - var MsgIn v_response; - var integer v_aeIndex := -1; - var integer v_resourceIndex := -1; - var template RequestPrimitive v_createRequest := omit; - var RequestPrimitive v_request; - var CseTester v_notifyHandler; - var integer v_ae2Index := -1; - - // Test control - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); - - f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_createRequest, int23); - - v_createRequest := m_createSubscriptionAdvanced(f_getResourceAddress(v_aeIndex), -, {f_getResourceAddress(v_ae2Index)}, omit, omit, omit, omit,f_getResourceAddress(v_ae2Index)); // SubscriberURI ="ResourceID" - - v_resourceIndex := f_cse_createResource(int23, v_createRequest, v_aeIndex); // Subsciption - - v_request := valueof(m_deleteRequest(f_getResourceAddress(v_resourceIndex))); // Subscription resource deletion request - - if(v_notifyHandler.running) { - v_notifyHandler.stop; - }; - - // Test Body - v_notifyHandler.start(f_CSE_SUB_DEL_001(f_getResourceAddress(v_resourceIndex))); // check that no notification is received - - mcaPort.send(m_request(v_request)); - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int2002))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Subscription resource deleted successfully"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while deleting resource type int23 (Subscription)"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while deleting resource type int23 (Subscription)"); - } - } - - f_is_component_done(v_notifyHandler); - - //Postamble - f_cse_postamble_deleteResources(); - - //Tear down - f_cf01Down(); - - } // end TC_CSE_SUB_DEL_001 - - function f_CSE_SUB_DEL_001(in XSD.AnyURI p_subscriptionReference) runs on CseTester { - // Local variables - var MsgIn v_response; - var template Notification v_notificationRequest := mw_contentNotificationBase; - - v_notificationRequest.subscriptionDeletion := true; - v_notificationRequest.subscriptionReference := p_subscriptionReference; - - - map(self:mcaPort, system:mcaPort); - map(self:acPort, system:acPort); - - tc_ac.start; - alt { - [] mcaPort.receive(mw_request(mw_notify(v_notificationRequest))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Notification received"); - } - [] mcaPort.receive{ - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error, unexpected message received"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No notification received"); - } - } - - unmap(self:mcaPort, system:mcaPort); - unmap(self:acPort, system:acPort); - - } //end f_CSE_SUB_DEL_001 - + } + + f_is_component_done(v_notifyHandler); + + //Postamble + f_cse_postamble_deleteResources(); + + //Tear down + f_cf01Down(); + + } // end TC_CSE_SUB_UPD_006 - }//end group g_CSE_SUB_DEL_001 - - group g_CSE_SUB_UPD_007 { + function f_CSE_SUB_UPD_006() runs on CseTester { + // Local variables + var MsgIn v_response; + + map(self:mcaPort, system:mcaPort); + map(self:acPort, system:acPort); + + tc_ac.start(10.0); + alt { + [] mcaPort.receive{ + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error, Notification isn't expected "); + } + [] tc_ac.timeout { + setverdict(pass, __SCOPE__ & ": No notification received"); + } + } + + unmap(self:mcaPort, system:mcaPort); + unmap(self:acPort, system:acPort); + + } //end f_CSE_SUB_UPD_006 /** * @desc Check that the IUT sends aggregated notification to the subscriber resource when the number value of the batchNotify attribute is set to GROUP_LIMIT and when this number have been reached @@ -17506,77 +17125,7 @@ module OneM2M_Testcases { unmap(self:acPort, system:acPort); } //end f_CSE_SUB_UPD_007 - - }//end group g_CSE_SUB_UPD_007 - - group g_CSE_SUB_NTF_003 { - - /** - * @desc Check that the IUT sends aggregated notification to the subscriber resource when the duration value of the batchNotify attribute is set to TIME_LIMIT and when this timer expires - * - */ - testcase TC_CSE_SUB_NTF_003() runs on CseTester system CseSystem { - // Local variables - const integer numberOfAggregatedNotification := 3; - var MsgIn v_response; - var Labels v_labels_1:= {"VALUE_1"}; - var Labels v_labels_2:= {"VALUE_2"}; - var integer v_aeIndex := -1; - var integer v_resourceIndex := -1; - var template RequestPrimitive v_createRequest := omit; - var template PrimitiveContent v_contentResponse; - var template RequestPrimitive v_updateRequest := m_updateAeBase; - var RequestPrimitive v_request; - var CseTester v_notifyHandler; - var integer v_ae2Index := -1; - - v_contentResponse.aE := mw_contentAeBase; // all attributes expected - - // Test control - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); - - f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_createRequest, int23); - - v_createRequest := m_createSubscriptionAdvanced(f_getResourceAddress(v_aeIndex), -, {f_getResourceAddress(v_ae2Index)},omit,omit,m_batchNotifyNumber3Duration1(numberOfAggregatedNotification));// TODO fix the duration - - v_resourceIndex := f_cse_createResource(int23, v_createRequest, v_aeIndex);//Subscription - - if(v_notifyHandler.running) { - v_notifyHandler.stop; - }; - - // Test Body - v_notifyHandler.start(f_CSE_SUB_UPD_007(v_contentResponse, 2)); // check that no notification is received - - v_updateRequest.primitiveContent.aE.labels := v_labels_1; - v_request:= f_getUpdateRequestPrimitive(int2, v_aeIndex, v_updateRequest); // Update request 1 - f_cse_updateResource(v_request); - v_updateRequest.primitiveContent.aE.labels := v_labels_2; - v_request:= f_getUpdateRequestPrimitive(int2, v_aeIndex, v_updateRequest); // Update request 2 - f_cse_updateResource(v_request); - - f_is_component_done(v_notifyHandler); - - //Postamble - f_cse_postamble_deleteResources(); - - //Tear down - f_cf01Down(); - - } // end TC_CSE_SUB_NTF_003 - - }//end group g_CSE_SUB_NTF_003 - - group g_CSE_SUB_UPD_008 { - /** * @desc Check that the IUT sends the latest notification to the subscriber resource when latestNotify is set to TRUE, the number value of the batchNotify attribute is set to GROUP_LIMIT and when this number have been reached * @@ -17607,591 +17156,397 @@ module OneM2M_Testcases { // Test adapter configuration // Preamble - v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); - - f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_createRequest, int23); - - v_createRequest := m_createSubscriptionAdvanced(f_getResourceAddress(v_aeIndex), -, {f_getResourceAddress(v_ae2Index)},omit,omit,m_batchNotifyNumber3Duration1(numberOfAggregatedNotification), true);// TODO fix the duration - - //TODO We Need to check if the IUT send a notification only for the latest update operation - // like we match a Notification we have to verify if it is the first (unvalid behavior) or the last (valid behavior) - // maybe we need to synchronise our components - - v_resourceIndex := f_cse_createResource(int23, v_createRequest, v_aeIndex);//Subscription - - if(v_notifyHandler.running) { - v_notifyHandler.stop; - }; - - // Test Body - v_notifyHandler.start(f_cse_notifyProcedure(v_contentResponse)); // check if the notification is well received and if its content matchs - - v_updateRequest.primitiveContent.aE.labels := v_labels_1; - v_request:= f_getUpdateRequestPrimitive(int2, v_aeIndex, v_updateRequest); // Update request 1 - f_cse_updateResource(v_request); - - v_updateRequest.primitiveContent.aE.labels := v_labels_2; - v_request:= f_getUpdateRequestPrimitive(int2, v_aeIndex, v_updateRequest); // Update request 2 - f_cse_updateResource(v_request); - - v_updateRequest.primitiveContent.aE.labels := v_labels_3; - v_request:= f_getUpdateRequestPrimitive(int2, v_aeIndex, v_updateRequest); // Update request 3 - f_cse_updateResource(v_request); - - f_is_component_done(v_notifyHandler); - - //Postamble - f_cse_postamble_deleteResources(); - - //Tear down - f_cf01Down(); - - } // end TC_CSE_SUB_UPD_008 - - }//end group g_CSE_SUB_UPD_008 - - }//end group Subscription_And_Notification - - group Security { - - group Access_Control_Policy { - - group g_CSE_SEC_ACP_CRE_001 { - - /** - * @desc Check that the IUT accepts the creation of a accessControlPolicy resource with privileges attribute having multiple access control rules - * - */ - testcase TC_CSE_SEC_ACP_CRE_001() runs on CseTester system CseSystem { - // Local variables - var MsgIn v_response; - var integer v_aeIndex := -1; - var integer v_acpIndex := -1; - var template PrimitiveContent v_contentResponse; - var RequestPrimitive v_createRequest := valueof(m_createAcpBase); - var AccessControlRule v_accessControlRule_1 := valueof(m_createAcr({PX_SUPER_USER}, int63)); - var AccessControlRule v_accessControlRule_2 := valueof(m_createAcr({"wait"}, int55)); - const ResourceType c_accessControlPolicyType := int1; - - // Test control - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe(-, -); // Use for setting the ACR_2's accessControlOriginators attribute to AE_ID - - v_createRequest.primitiveContent.accessControlPolicy.privileges.accessControlRule_list := {v_accessControlRule_1,v_accessControlRule_2}; - v_createRequest.primitiveContent.accessControlPolicy.privileges.accessControlRule_list[1].accessControlOriginators := {f_getOriginator(v_aeIndex)}; - - v_contentResponse.accessControlPolicy := mw_contentAcp_rc1; - v_contentResponse.accessControlPolicy.privileges.accessControlRule_list := {v_accessControlRule_1,v_accessControlRule_2};// TODO To handle reverse order of acrs - v_contentResponse.accessControlPolicy.privileges.accessControlRule_list[1].accessControlOriginators := {f_getOriginator(v_aeIndex)}; - - // Test Body - v_createRequest := f_getCreateRequestPrimitive(c_accessControlPolicyType, v_createRequest, v_aeIndex); - - mcaPort.send(m_request(v_createRequest)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int2001))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Resource type " & int2str(enum2int(c_accessControlPolicyType)) & " created successfully"); - v_acpIndex := f_setResource(v_response.primitive.responsePrimitive.primitiveContent, int1); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while creating resource type " & int2str(enum2int(c_accessControlPolicyType))); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while creating resource type " & int2str(enum2int(c_accessControlPolicyType))); - } - } - - f_checkCseTesterStatus(); - - //Check to see if the resource is present or not - if(f_isResourcePresent(v_acpIndex)) { - setverdict(pass, __SCOPE__ & ":INFO: Resource created"); - } else { - setverdict(fail, __SCOPE__ & ":ERROR: Resource not created"); - } - - //Postamble - f_cse_postamble_deleteResources(); - - //Tear down - f_cf01Down(); - - }//end TC_CSE_SEC_ACP_CRE_001 - - }//end g_CSE_SEC_ACP_CRE_001 - - group g_CSE_SEC_ACP_CRE_002 { - - /** - * @desc Check that the IUT accepts the creation of a accessControlPolicy resource with selfPrivileges attribute having multiple access control rules - */ - testcase TC_CSE_SEC_ACP_CRE_002() runs on CseTester system CseSystem { - // Local variables - var MsgIn v_response; - var integer v_aeIndex := -1; - var integer v_acpIndex := -1; - var template PrimitiveContent v_contentResponse; - var RequestPrimitive v_createRequest := valueof(m_createAcpBase); - var AccessControlRule v_accessControlRule_1 := valueof(m_createAcr({PX_SUPER_USER}, int63)); - var AccessControlRule v_accessControlRule_2 := valueof(m_createAcr({"wait"}, int55)); - const ResourceType c_accessControlPolicyType := int1; - - // Test control - - // Test component configuration - f_cf01Up(); - - // Test adapter configuration - - // Preamble - v_aeIndex := f_cse_preamble_registerAe(-, -); // Only use for setting the ACR_2's accessControlOriginators attribute to AE_ID - - v_createRequest.primitiveContent.accessControlPolicy.selfPrivileges.accessControlRule_list := {v_accessControlRule_1,v_accessControlRule_2}; - v_createRequest.primitiveContent.accessControlPolicy.selfPrivileges.accessControlRule_list[1].accessControlOriginators := {f_getOriginator(v_aeIndex)}; - - v_contentResponse.accessControlPolicy := mw_contentAcp_rc1; - v_contentResponse.accessControlPolicy.selfPrivileges.accessControlRule_list := {v_accessControlRule_1,v_accessControlRule_2};//TODO To handle reverse order of acrs - v_contentResponse.accessControlPolicy.selfPrivileges.accessControlRule_list[1].accessControlOriginators := {f_getOriginator(v_aeIndex)}; - - // Test Body - v_createRequest := f_getCreateRequestPrimitive(c_accessControlPolicyType, v_createRequest, v_aeIndex);// CSE child resource + v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); + + f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_createRequest, int23); - mcaPort.send(m_request(v_createRequest)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int2001))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Resource type " & int2str(enum2int(c_accessControlPolicyType)) & " created successfully"); - v_acpIndex := f_setResource(v_response.primitive.responsePrimitive.primitiveContent, c_accessControlPolicyType); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while creating resource type " & int2str(enum2int(c_accessControlPolicyType))); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while creating resource type " & int2str(enum2int(c_accessControlPolicyType))); - } - } + v_createRequest := m_createSubscriptionAdvanced(f_getResourceAddress(v_aeIndex), -, {f_getResourceAddress(v_ae2Index)},omit,omit,m_batchNotifyNumber3Duration1(numberOfAggregatedNotification), true);// TODO fix the duration + + //TODO We Need to check if the IUT send a notification only for the latest update operation + // like we match a Notification we have to verify if it is the first (unvalid behavior) or the last (valid behavior) + // maybe we need to synchronise our components + + v_resourceIndex := f_cse_createResource(int23, v_createRequest, v_aeIndex);//Subscription + + if(v_notifyHandler.running) { + v_notifyHandler.stop; + }; + + // Test Body + v_notifyHandler.start(f_cse_notifyProcedure(v_contentResponse)); // check if the notification is well received and if its content matchs + + v_updateRequest.primitiveContent.aE.labels := v_labels_1; + v_request:= f_getUpdateRequestPrimitive(int2, v_aeIndex, v_updateRequest); // Update request 1 + f_cse_updateResource(v_request); + + v_updateRequest.primitiveContent.aE.labels := v_labels_2; + v_request:= f_getUpdateRequestPrimitive(int2, v_aeIndex, v_updateRequest); // Update request 2 + f_cse_updateResource(v_request); + + v_updateRequest.primitiveContent.aE.labels := v_labels_3; + v_request:= f_getUpdateRequestPrimitive(int2, v_aeIndex, v_updateRequest); // Update request 3 + f_cse_updateResource(v_request); + + f_is_component_done(v_notifyHandler); + + //Postamble + f_cse_postamble_deleteResources(); + + //Tear down + f_cf01Down(); + + } // end TC_CSE_SUB_UPD_008 - f_checkCseTesterStatus(); - - //Check to see if the resource is present or not - if(f_isResourcePresent(v_acpIndex)) { - setverdict(pass, __SCOPE__ & ":INFO: Resource created"); - } else { - setverdict(fail, __SCOPE__ & ":ERROR: Resource not created"); - } + /** + * @desc Check that the IUT sends a Notify request to the subscriber resource when the “attribute†condition tag of eventNotificationCriteria attribute is set to ATTRIBUTE_NAME and an update operation has been performed on the subscribed-to resource + * + */ + testcase TC_CSE_SUB_UPD_009() runs on CseTester system CseSystem { + // Local variables + var MsgIn v_response; + var Labels v_labels_1:= {"VALUE_1"}; + var AttributeList_1 v_attributeList := {"labels"}; + var integer v_aeIndex := -1; + var integer v_resourceIndex := -1; + var template RequestPrimitive v_createRequest := omit; + var template PrimitiveContent v_contentResponse; + var template RequestPrimitive v_updateRequest := m_updateAeBase; + var RequestPrimitive v_request; + var CseTester v_notifyHandler; + var integer v_ae2Index := -1; + + v_updateRequest.primitiveContent.aE.labels := v_labels_1; + v_contentResponse.aE := mw_contentAeBase; // all attributes expected - //Postamble - f_cse_postamble_deleteResources(); + // Test control - //Tear down - f_cf01Down(); + // Test component configuration + f_cf01Up(); - }//end TC_CSE_SEC_ACP_CRE_002 - - }//end g_CSE_SEC_ACP_CRE_002 - - group g_CSE_SEC_ACP_003 { - - /** - * @desc Check that the IUT responds successfully when an allowed DOMAIN tries an OPERATION on a AE_RESOURCE_TYPE resource. - * - */ - testcase TC_CSE_SEC_ACP_003_CRE() runs on CseTester system CseSystem { //Create - f_CSE_SEC_ACP_003(m_createContainerBase, int2001); - }//end TC_CSE_SEC_ACP_003_CRE - - testcase TC_CSE_SEC_ACP_003_UPD() runs on CseTester system CseSystem { //Update - var template RequestPrimitive v_updateRequest := m_updateAeBase; - var Labels v_labels_1:= {"VALUE_1"}; - v_updateRequest.primitiveContent.aE.labels := v_labels_1; - f_CSE_SEC_ACP_003(v_updateRequest, int2004); - }//end TC_CSE_SEC_ACP_003_02 + // Test adapter configuration + + // Preamble + v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); - testcase TC_CSE_SEC_ACP_003_RET() runs on CseTester system CseSystem { //Retrieve - f_CSE_SEC_ACP_003(m_retrieveResource("Temporary", "Temporary"), int2000); - }//end TC_CSE_SEC_ACP_003_03 + f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_createRequest, int23); - testcase TC_CSE_SEC_ACP_003_DEL() runs on CseTester system CseSystem { //Delete - f_CSE_SEC_ACP_003(m_deleteRequest("Temporary"), int2002); - }//end TC_CSE_SEC_ACP_003_04 - - function f_CSE_SEC_ACP_003(template RequestPrimitive p_requestPrimitive, in ResponseStatusCode p_responseStatusCode) runs on CseTester{ - // Local variables - var MsgIn v_response; - var integer v_aeIndex := -1; - var integer v_acpIndex := -1; - var RequestPrimitive v_createRequest; - var AccessControlRule v_accessControlRule_1; - var RequestPrimitive v_updateRequest; - var SetOfAcrs v_setOfArcs; - - // Test control - - // Test component configuration - f_cf01Up(); + v_createRequest := m_createSubscriptionAdvanced(f_getResourceAddress(v_aeIndex), -, {f_getResourceAddress(v_ae2Index)}, m_eventNotificationCriteria({int1}, v_attributeList)); - // Test adapter configuration + v_resourceIndex := f_cse_createResource(int23, v_createRequest, v_aeIndex);//Subscription - // Preamble - v_createRequest := valueof(m_createAcp(f_getResourceAddress(), -, {"testDomain"})); - v_acpIndex := f_cse_createResource(int1, v_createRequest); // CSE child resource - - v_aeIndex := f_cse_preamble_registerAe({f_getResourceId(vc_resourcesList[v_acpIndex].resource)}, -); - - // Test Body - p_requestPrimitive.to_ := f_getResourceAddress(v_aeIndex); - p_requestPrimitive.from_ := "testDomain"; - - mcaPort.send(m_request(valueof(p_requestPrimitive))); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(p_responseStatusCode))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Successful operation on resource type int2 (Ae)"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while operation on resource type int2 (Ae)"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while executing operation on resource type int2 (Ae)"); - } + v_request:= f_getUpdateRequestPrimitive(int2, v_aeIndex, v_updateRequest); // Update request + + if(v_notifyHandler.running) { + v_notifyHandler.stop; + }; + + // Test Body + v_notifyHandler.start(f_cse_notifyProcedure(v_contentResponse)); // check if the notification is well received and if its content matchs + + mcaPort.send(m_request(v_request)); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int2004))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": Attribute of resource type int2 (Ae) updated successfully"); } - - //Postamble - v_accessControlRule_1 := valueof(m_createAcr({"*"}, int63)); - v_setOfArcs.accessControlRule_list := {v_accessControlRule_1}; - v_updateRequest := valueof(m_updateAcpPrivileges(v_setOfArcs, v_setOfArcs)); - v_updateRequest := f_getUpdateRequestPrimitive(int1, v_acpIndex, v_updateRequest); - v_updateRequest.from_ := "testDomain"; - mcaPort.send(m_request(v_updateRequest)); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { - tc_ac.stop; - log(__SCOPE__ & ":INFO: Attribute of resource type ACP updated successfully"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { - tc_ac.stop; - log(__SCOPE__ & ":INFO: Error while updating resource type ACP"); - } - [] tc_ac.timeout { - log(__SCOPE__ & ":INFO: No answer while updating resource type ACP"); - } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); } - - f_cse_postamble_deleteResources(); - - //Tear down - f_cf01Down(); - - }//end f_CSE_SEC_ACP_003 - - }//end g_CSE_SEC_ACP_003 - - group g_CSE_SEC_ACP_004 { + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while updating resource type int2 (Ae)"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while updating resource type int2 (Ae) or None notification received"); + } + } - /** - * @desc Check that the IUT responds successfully when any ORIGINATOR tries an OPERATION on a AE_RESOURCE_TYPE resource for which all originators are allowed - * - */ - testcase TC_CSE_SEC_ACP_004_CRE() runs on CseTester system CseSystem { //Create - f_CSE_SEC_ACP_004(m_createContainerBase, int2001); - }//end TC_CSE_SEC_ACP_004_CRE - - testcase TC_CSE_SEC_ACP_004_UPD() runs on CseTester system CseSystem { //Update - var template RequestPrimitive v_updateRequest := m_updateAeBase; - var Labels v_labels_1:= {"VALUE_1"}; - v_updateRequest.primitiveContent.aE.labels := v_labels_1; - f_CSE_SEC_ACP_004(v_updateRequest, int2004); - }//end TC_CSE_SEC_ACP_004_UPD - - testcase TC_CSE_SEC_ACP_004_RET() runs on CseTester system CseSystem { //Retrieve - f_CSE_SEC_ACP_004(m_retrieveResource("Temporary", "Temporary"), int2000); - }//end TC_CSE_SEC_ACP_004_RET - - testcase TC_CSE_SEC_ACP_004_DEL() runs on CseTester system CseSystem { //Delete - f_CSE_SEC_ACP_004(m_deleteRequest("Temporary"), int2002); - }//end TC_CSE_SEC_ACP_004_DEL + f_is_component_done(v_notifyHandler); - function f_CSE_SEC_ACP_004(template RequestPrimitive p_requestPrimitive, in ResponseStatusCode p_responseStatusCode) runs on CseTester{ - // Local variables - var MsgIn v_response; - var integer v_aeIndex := -1; - var integer v_acpIndex := -1; - var RequestPrimitive v_createRequest; - - // Test control + //Postamble + f_cse_postamble_deleteResources(); - // Test component configuration - f_cf01Up(); + //Tear down + f_cf01Down(); - // Test adapter configuration + } // end TC_CSE_SUB_UPD_009 - // Preamble - v_createRequest := f_getCreateRequestPrimitive(int1, m_createAcpBase, -1); - v_acpIndex := f_cse_createResource(int1, v_createRequest); // CSE child resource - - v_aeIndex := f_cse_preamble_registerAe({f_getResourceId(vc_resourcesList[v_acpIndex].resource)}, -); - - // Test Body - p_requestPrimitive.to_ := f_getResourceAddress(v_aeIndex); - p_requestPrimitive.from_ := "UnknowOriginator"; - - mcaPort.send(m_request(valueof(p_requestPrimitive))); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(p_responseStatusCode))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Successful operation on resource type int2 (Ae)"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while operation on resource type int2 (Ae)"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while executing operation on resource type int2 (Ae)"); - } - } - //Postamble - f_cse_postamble_deleteResources(); + }//end group Update + + group Delete { + + /** + * @desc Check that the IUT sends a Notify request to the AE2_RESOURCE_ADDRESS of the subscriberURI attribute when the SUBSCRIPTION_RESOURCE_ADDRESS <subscription> resource is deleted + * + */ + testcase TC_CSE_SUB_DEL_001() runs on CseTester system CseSystem { + // Local variables + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_resourceIndex := -1; + var template RequestPrimitive v_createRequest := omit; + var RequestPrimitive v_request; + var CseTester v_notifyHandler; + var integer v_ae2Index := -1; + + // Test control - //Tear down - f_cf01Down(); + // Test component configuration + f_cf01Up(); - }//end f_CSE_SEC_ACP_004 + // Test adapter configuration - }//end g_CSE_SEC_ACP_004 - - group g_CSE_SEC_ACP_011 { + // Preamble + v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); - /** - * @desc Check that the IUT responds successfully when the AE tries an OPERATION on its child <container> resource whose accessControlPolicyID attribute is not set and AE has privileges for such OPERATION on its associated accessControlPolicy resource - * - */ - testcase TC_CSE_SEC_ACP_011_CRE() runs on CseTester system CseSystem { //Create - f_CSE_SEC_ACP_011(m_createContainerBase, int2001); - }//end TC_CSE_SEC_ACP_011_CRE + f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_createRequest, int23); + + v_createRequest := m_createSubscriptionAdvanced(f_getResourceAddress(v_aeIndex), -, {f_getResourceAddress(v_ae2Index)}, omit, omit, omit, omit,f_getResourceAddress(v_ae2Index)); // SubscriberURI ="ResourceID" + + v_resourceIndex := f_cse_createResource(int23, v_createRequest, v_aeIndex); // Subsciption + + v_request := valueof(m_deleteRequest(f_getResourceAddress(v_resourceIndex))); // Subscription resource deletion request + + if(v_notifyHandler.running) { + v_notifyHandler.stop; + }; - testcase TC_CSE_SEC_ACP_011_UPD() runs on CseTester system CseSystem { //Update - var template RequestPrimitive v_updateRequest := m_updateContainerBase; - var Labels v_labels_1:= {"VALUE_1"}; - v_updateRequest.primitiveContent.container.labels := v_labels_1; - f_CSE_SEC_ACP_011(v_updateRequest, int2004); - }//end TC_CSE_SEC_ACP_011_UPD + // Test Body + v_notifyHandler.start(f_CSE_SUB_DEL_001(f_getResourceAddress(v_resourceIndex))); // check that no notification is received + + mcaPort.send(m_request(v_request)); + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int2002))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": Subscription resource deleted successfully"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while deleting resource type int23 (Subscription)"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while deleting resource type int23 (Subscription)"); + } + } + + f_is_component_done(v_notifyHandler); - testcase TC_CSE_SEC_ACP_011_RET() runs on CseTester system CseSystem { //Retrieve - f_CSE_SEC_ACP_011(m_retrieveResource("Temporary", "Temporary"), int2000); - }//end TC_CSE_SEC_ACP_011_RET + //Postamble + f_cse_postamble_deleteResources(); - testcase TC_CSE_SEC_ACP_011_DEL() runs on CseTester system CseSystem { //Delete - f_CSE_SEC_ACP_011(m_deleteRequest("Temporary"), int2002); - }//end TC_CSE_SEC_ACP_011_DEL + //Tear down + f_cf01Down(); - function f_CSE_SEC_ACP_011(template RequestPrimitive p_requestPrimitive, in ResponseStatusCode p_responseStatusCode) runs on CseTester { - // Local variables - var MsgIn v_response; - var integer v_aeIndex := -1; - var integer v_containerIndex := -1; + } // end TC_CSE_SUB_DEL_001 + + function f_CSE_SUB_DEL_001(in XSD.AnyURI p_subscriptionReference) runs on CseTester { + // Local variables + var MsgIn v_response; + var template Notification v_notificationRequest := mw_contentNotificationBase; + + v_notificationRequest.subscriptionDeletion := true; + v_notificationRequest.subscriptionReference := p_subscriptionReference; + + + map(self:mcaPort, system:mcaPort); + map(self:acPort, system:acPort); + + tc_ac.start; + alt { + [] mcaPort.receive(mw_request(mw_notify(v_notificationRequest))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": Notification received"); + } + [] mcaPort.receive{ + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error, unexpected message received"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No notification received"); + } + } + + unmap(self:mcaPort, system:mcaPort); + unmap(self:acPort, system:acPort); + + } //end f_CSE_SUB_DEL_001 - // Test control + + /** + * @desc Check that the IUT sends a Notify request to the subscriber resource when eventType attribute is set to "Delete_of_Resource" and an delete operation has been performed the subscribed-to resource + * + */ + testcase TC_CSE_SUB_DEL_002() runs on CseTester system CseSystem { + // Local variables + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_subscriptionResourceIndex := -1; + var template RequestPrimitive v_createRequest := omit; + var template PrimitiveContent v_contentNotification := {aE:= mw_contentAeBase}; // all attributes expected; + var RequestPrimitive v_deleteRequest; + var CseTester v_notifyHandler; + var integer v_ae2Index := -1; + + // Test control - // Test component configuration - f_cf01Up(); + // Test component configuration + f_cf01Up(); - // Test adapter configuration + // Test adapter configuration - // Preamble - v_aeIndex := f_cse_preamble_registerAe(-, -); - v_containerIndex := f_cse_createResource(int3, m_createContainerBase, v_aeIndex); - - // Test Body - p_requestPrimitive.to_ := f_getResourceAddress(v_containerIndex); - p_requestPrimitive.from_ := f_getOriginator(v_aeIndex); + // Preamble + v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi); + + v_createRequest := m_createSubscriptionAdvanced(f_getResourceAddress(v_aeIndex), -, {f_getResourceAddress(v_ae2Index)}, m_eventNotificationCriteria({int2}, -)); + + f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_createRequest, int23); + + v_subscriptionResourceIndex := f_cse_createResource(int23, v_createRequest, v_aeIndex );//Subscription + + if(v_notifyHandler.running) { + v_notifyHandler.stop; + }; - mcaPort.send(m_request(valueof(p_requestPrimitive))); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(p_responseStatusCode))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Successful operation on resource type int3 (Container)"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while operation on resource type int3 (Container)"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while executing operation on resource type int3 (Container)"); - } + //Test Body + v_notifyHandler.start(f_cse_notifyProcedure_subscriptionDeletion(v_contentNotification)); // check if the notification is well received and if its content matchs + + v_deleteRequest:= valueof(m_deleteRequest(f_getResourceAddress(v_aeIndex))); // Ae delete request + + mcaPort.send(m_request(v_deleteRequest)); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int2002))) -> value v_response { + tc_ac.stop; + //Update vc_resourcesIndexToBeDeleted + f_removeElementFromList (vc_resourcesIndexToBeDeleted, v_aeIndex); + setverdict(pass, __SCOPE__ & ": resource type int2 (AE) deleted successfully"); } - - //Postamble - f_cse_postamble_deleteResources(); - - //Tear down - f_cf01Down(); - - } //end f_CSE_SEC_ACP_011 - - } //end g_CSE_SEC_ACP_011 - - group g_CSE_SEC_ACP_012 { + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while deleting resource type int2 (AE)"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while deleting resource type int2 (AE)"); + } + } - /** - * @desc Check that the IUT responds with an error when an ORIGINATOR tries an OPERATION on a <Container> resource with no accessControlPolicyID associated and such ORIGINATOR having no privileges for performing the OPERATION on the <Container> resource. - * - */ - testcase TC_CSE_SEC_ACP_012_CRE() runs on CseTester system CseSystem { //Create - f_CSE_SEC_ACP_012(m_createContainerBase, int62); - }//end TC_CSE_SEC_ACP_012_CRE - - testcase TC_CSE_SEC_ACP_012_UPD() runs on CseTester system CseSystem { //Update - var template RequestPrimitive v_updateRequest := m_updateContainerBase; - var Labels v_labels_1:= {"VALUE_1"}; - v_updateRequest.primitiveContent.container.labels := v_labels_1; - f_CSE_SEC_ACP_012(v_updateRequest, int62); //TODO Fix p_acor - }//end TC_CSE_SEC_ACP_012_UPD + f_is_component_done(v_notifyHandler); - testcase TC_CSE_SEC_ACP_012_RET() runs on CseTester system CseSystem { //Retrieve - f_CSE_SEC_ACP_012(m_retrieveResource("Temporary", "Temporary"), int62); //TODO Fix p_acor - }//end TC_CSE_SEC_ACP_012_RET + //Postamble + f_cse_postamble_deleteResources(); - testcase TC_CSE_SEC_ACP_012_DEL() runs on CseTester system CseSystem { //Delete - f_CSE_SEC_ACP_012(m_deleteRequest("Temporary"), int62); //TODO Fix p_acor - }//end TC_CSE_SEC_ACP_012_DEL + //Tear down + f_cf01Down(); - function f_CSE_SEC_ACP_012(template RequestPrimitive p_requestPrimitive, in AccessControlOperations p_acor) runs on CseTester { - // Local variables - var MsgIn v_response; - var integer v_aeIndex := -1; - var integer v_containerIndex := -1; - var integer v_resourceIndex := -1; - var integer v_acpIndex := -1; - var RequestPrimitive v_request; - var RequestPrimitive v_createRequest := valueof(m_createAcpBase); - var RequestPrimitive v_updateRequest; - var AccessControlRule v_accessControlRule_1, v_accessControlRule_2; - var SetOfAcrs v_setOfArcs; + } // end TC_CSE_SUB_DEL_002 + + /** + * @desc Check that the IUT sends a Notify request to the subscriber resource when eventType attribute is set to "Delete_of_Direct_Child_Resource" and an delete operation has been performed on a child resource of the subscribed-to resource + * + */ + testcase TC_CSE_SUB_DEL_003() runs on CseTester system CseSystem { + // Local variables + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_subscriptionResourceIndex := -1; + var integer v_containerResourceIndex := -1; + var template RequestPrimitive v_createRequest := omit; + var RequestPrimitive v_deleteRequest; + var template PrimitiveContent v_contentNotification := {container := mw_contentContainer_rc1}; // all attributes expected in notification; + var CseTester v_notifyHandler; + var integer v_ae2Index := -1; - // Test control + // Test component configuration + f_cf01Up(); - // Test component configuration - f_cf01Up(); + // Test adapter configuration - // Test adapter configuration + // Preamble + v_aeIndex := f_cse_preamble_registerAe();//c_CRUDNDi; - // Preamble - v_acpIndex := f_cse_createResource(int1, v_createRequest); // CSE child resource - v_aeIndex := f_cse_preamble_registerAe({f_getResourceId(vc_resourcesList[v_acpIndex].resource)}, -); - v_containerIndex := f_cse_createResource(int3, m_createContainerBase, v_aeIndex); - - v_accessControlRule_1 := valueof(m_createAcr({PX_SUPER_USER}, int63)); - v_accessControlRule_2 := valueof(m_createAcr({f_getOriginator(v_aeIndex)}, p_acor)); - v_setOfArcs.accessControlRule_list := {v_accessControlRule_1, v_accessControlRule_2}; - v_updateRequest := valueof(m_updateAcpPrivileges(v_setOfArcs, -)); - v_updateRequest := f_getUpdateRequestPrimitive(int1, v_acpIndex, v_updateRequest); - f_cse_updateResource(v_updateRequest); - - // Test Body - v_request := f_getCreateRequestPrimitive(int3, p_requestPrimitive, v_containerIndex); - - mcaPort.send(m_request(valueof(v_request))); - tc_ac.start; - alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int4103))) -> value v_response { - tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Operation denied because of lack of right on Container"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error operation have been accpeted without having privileges"); - } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while executing operation on resource type int3 (Container)"); - } + v_containerResourceIndex := f_cse_createResource(int3, m_createContainerBase, v_aeIndex);//Container + + v_createRequest := m_createSubscriptionAdvanced(f_getResourceAddress(v_aeIndex), -, {f_getResourceAddress(v_ae2Index)}, m_eventNotificationCriteria({int4}, -)); + + f_cse_preamble_subscriptionVerification(v_notifyHandler, v_aeIndex, v_ae2Index, v_createRequest, int23); + + v_subscriptionResourceIndex := f_cse_createResource(int23, v_createRequest, v_aeIndex);//Subscription (with name attribute omitted) + + if(v_notifyHandler.running) { + v_notifyHandler.stop; + }; + + //Test Body + v_notifyHandler.start(f_cse_notifyProcedure(v_contentNotification)); // check if the notification is well received and if its content matchs + + v_deleteRequest := valueof(m_deleteRequest(f_getResourceAddress(v_containerResourceIndex)));// Container deletion request + + mcaPort.send(m_request(v_deleteRequest)); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int2002))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": Container resource deleted successfully"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while deleting resource type int3 (Container)"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while deleting resource type int3 (Container)"); } + } - //Postamble - f_cse_postamble_deleteResources(); + f_is_component_done(v_notifyHandler); - //Tear down - f_cf01Down(); + //Postamble + f_cse_postamble_deleteResources(); - } //end f_CSE_SEC_ACP_012 + //Tear down + f_cf01Down(); - } //end g_CSE_SEC_ACP_012 + } // end TC_CSE_SUB_DEL_003 - group g_CSE_SEC_ACP_001{ - + }//end group Delete + + }//end group Subscription_And_Notification + + group Security { + + group Access_Control_Policy { + + group Create { + /** - * @desc Check that the IUT responds with an error when an ORIGINATOR tries an OPERATION without having privileges for performing the OPERATION on the TARGET_RESOURCE_TYPE resource. + * @desc Check that the IUT accepts the creation of a accessControlPolicy resource with privileges attribute having multiple access control rules * */ - testcase TC_CSE_SEC_ACP_001_CRE() runs on CseTester system CseSystem { //Create - f_CSE_SEC_ACP_001(m_createContainerBase); - }//end TC_CSE_SEC_ACP_001_CRE - - testcase TC_CSE_SEC_ACP_001_UPD() runs on CseTester system CseSystem { //Update - var template RequestPrimitive v_updateRequest := m_updateAeBase; - var Labels v_labels_1:= {"VALUE_1"}; - v_updateRequest.primitiveContent.aE.labels := v_labels_1; - f_CSE_SEC_ACP_001(v_updateRequest); - }//end TC_CSE_SEC_ACP_001_UPD - - testcase TC_CSE_SEC_ACP_001_RET() runs on CseTester system CseSystem { //Retrieve - f_CSE_SEC_ACP_001(m_retrieveResource("Temporary", "Temporary")); - }//end TC_CSE_SEC_ACP_001_RET - - testcase TC_CSE_SEC_ACP_001_DEL() runs on CseTester system CseSystem { //Delete - f_CSE_SEC_ACP_001(m_deleteRequest("Temporary")); - }//end TC_CSE_SEC_ACP_001_DEL - - function f_CSE_SEC_ACP_001(template RequestPrimitive p_requestPrimitive) runs on CseTester { + testcase TC_CSE_SEC_ACP_CRE_001() runs on CseTester system CseSystem { // Local variables var MsgIn v_response; var integer v_aeIndex := -1; var integer v_acpIndex := -1; + var template PrimitiveContent v_contentResponse; var RequestPrimitive v_createRequest := valueof(m_createAcpBase); - var RequestPrimitive v_updateRequest; - var AccessControlRule v_accessControlRule_1; - var SetOfAcrs v_setOfArcs; + var AccessControlRule v_accessControlRule_1 := valueof(m_createAcr({PX_SUPER_USER}, int63)); + var AccessControlRule v_accessControlRule_2 := valueof(m_createAcr({"wait"}, int55)); + const ResourceType c_accessControlPolicyType := int1; // Test control @@ -18201,84 +17556,69 @@ module OneM2M_Testcases { // Test adapter configuration // Preamble - v_acpIndex := f_cse_createResource(int1, v_createRequest); // CSE child resource - v_aeIndex := f_cse_preamble_registerAe({f_getResourceId(vc_resourcesList[v_acpIndex].resource)}, -); - - v_accessControlRule_1 := valueof(m_createAcr({ f_getOriginator(v_aeIndex), PX_SUPER_USER}, int63)); - v_setOfArcs.accessControlRule_list := {v_accessControlRule_1}; - v_updateRequest := valueof(m_updateAcpPrivileges(v_setOfArcs, v_setOfArcs)); - v_updateRequest := f_getUpdateRequestPrimitive(int1, v_acpIndex, v_updateRequest); - f_cse_updateResource(v_updateRequest); - - // Test Body - p_requestPrimitive.to_ := f_getResourceAddress(v_aeIndex); - p_requestPrimitive.from_ := "UnknowOriginator"; + v_aeIndex := f_cse_preamble_registerAe(-, -); // Use for setting the ACR_2's accessControlOriginators attribute to AE_ID - mcaPort.send(m_request(valueof(p_requestPrimitive))); + v_createRequest.primitiveContent.accessControlPolicy.privileges.accessControlRule_list := {v_accessControlRule_1,v_accessControlRule_2}; + v_createRequest.primitiveContent.accessControlPolicy.privileges.accessControlRule_list[1].accessControlOriginators := {f_getOriginator(v_aeIndex)}; + + v_contentResponse.accessControlPolicy := mw_contentAcp_rc1; + v_contentResponse.accessControlPolicy.privileges.accessControlRule_list := {v_accessControlRule_1,v_accessControlRule_2};// TODO To handle reverse order of acrs + v_contentResponse.accessControlPolicy.privileges.accessControlRule_list[1].accessControlOriginators := {f_getOriginator(v_aeIndex)}; + + // Test Body + v_createRequest := f_getCreateRequestPrimitive(c_accessControlPolicyType, v_createRequest, v_aeIndex); + + mcaPort.send(m_request(v_createRequest)); tc_ac.start; alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(int4103))) -> value v_response { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int2001))) -> value v_response { tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Operation denied because of lack of right on Container"); + setverdict(pass, __SCOPE__ & ": Resource type " & int2str(enum2int(c_accessControlPolicyType)) & " created successfully"); + v_acpIndex := f_setResource(v_response.primitive.responsePrimitive.primitiveContent, int1); } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { tc_ac.stop; setverdict(fail, __SCOPE__ & ": Wrong response status code"); - } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error operation have been accpeted without having privileges"); + setverdict(fail, __SCOPE__ & ": Error while creating resource type " & int2str(enum2int(c_accessControlPolicyType))); } [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while executing operation on resource type int3 (Container)"); + setverdict(fail, __SCOPE__ & ": No answer while creating resource type " & int2str(enum2int(c_accessControlPolicyType))); } } + f_checkCseTesterStatus(); + + //Check to see if the resource is present or not + if(f_isResourcePresent(v_acpIndex)) { + setverdict(pass, __SCOPE__ & ":INFO: Resource created"); + } else { + setverdict(fail, __SCOPE__ & ":ERROR: Resource not created"); + } + //Postamble f_cse_postamble_deleteResources(); //Tear down f_cf01Down(); - } //end f_CSE_SEC_ACP_001 - - } //end g_CSE_SEC_ACP_001 - - group g_CSE_SEC_ACP_002{ - + }//end TC_CSE_SEC_ACP_CRE_001 + /** - * @desc Check that the IUT responds successfully when the AE tries an OPERATION on its <AE> resource which has multiple accessControlPolicyID attribute - * - */ - testcase TC_CSE_SEC_ACP_002_CRE() runs on CseTester system CseSystem { //Create - f_CSE_SEC_ACP_002(m_createContainerBase, int2001); - }//end TC_CSE_SEC_ACP_002_CRE - - testcase TC_CSE_SEC_ACP_002_UPD() runs on CseTester system CseSystem { //Update - var template RequestPrimitive v_updateRequest := m_updateAeBase; - var Labels v_labels_1:= {"VALUE_1"}; - v_updateRequest.primitiveContent.aE.labels := v_labels_1; - f_CSE_SEC_ACP_002(v_updateRequest, int2004); - }//end TC_CSE_SEC_ACP_002_UPD - - testcase TC_CSE_SEC_ACP_002_RET() runs on CseTester system CseSystem { //Retrieve - f_CSE_SEC_ACP_002(m_retrieveResource("Temporary", "Temporary"), int2000); - }//end TC_CSE_SEC_ACP_002_RET - - testcase TC_CSE_SEC_ACP_002_DEL() runs on CseTester system CseSystem { //Delete - f_CSE_SEC_ACP_002(m_deleteRequest("Temporary"), int2002); - }//end TC_CSE_SEC_ACP_002_DEL - - function f_CSE_SEC_ACP_002(template RequestPrimitive p_requestPrimitive, in ResponseStatusCode p_responseStatusCode) runs on CseTester { + * @desc Check that the IUT accepts the creation of a accessControlPolicy resource with selfPrivileges attribute having multiple access control rules + */ + testcase TC_CSE_SEC_ACP_CRE_002() runs on CseTester system CseSystem { // Local variables var MsgIn v_response; var integer v_aeIndex := -1; - var integer v_acpIndex1 := -1; - var integer v_acpIndex2 := -1; - var RequestPrimitive v_createRequest := valueof(m_createAcp(f_getResourceAddress(-1), omit)); - var RequestPrimitive v_updateRequest; - var AccessControlRule v_accessControlRule_1; - var SetOfAcrs v_setOfArcs; + var integer v_acpIndex := -1; + var template PrimitiveContent v_contentResponse; + var RequestPrimitive v_createRequest := valueof(m_createAcpBase); + var AccessControlRule v_accessControlRule_1 := valueof(m_createAcr({PX_SUPER_USER}, int63)); + var AccessControlRule v_accessControlRule_2 := valueof(m_createAcr({"wait"}, int55)); + const ResourceType c_accessControlPolicyType := int1; // Test control @@ -18288,33 +17628,25 @@ module OneM2M_Testcases { // Test adapter configuration // Preamble - v_acpIndex1 := f_cse_createResource(int1, v_createRequest); // CSE child resource - v_acpIndex2 := f_cse_createResource(int1, v_createRequest); // CSE child resource - - v_aeIndex := f_cse_preamble_registerAe({f_getResourceId(vc_resourcesList[v_acpIndex1].resource), f_getResourceId(vc_resourcesList[v_acpIndex2].resource)}, -); - - v_accessControlRule_1 := valueof(m_createAcr({f_getOriginator(v_aeIndex)}, int3)); // c_CR - v_setOfArcs.accessControlRule_list := {v_accessControlRule_1}; - v_updateRequest := valueof(m_updateAcpPrivileges(v_setOfArcs, -)); - v_updateRequest := f_getUpdateRequestPrimitive(int1, v_acpIndex1, v_updateRequest); - f_cse_updateResource(v_updateRequest); - - v_accessControlRule_1 := valueof(m_createAcr({f_getOriginator(v_aeIndex)}, int60)); // c_UDNDi - v_setOfArcs.accessControlRule_list := {v_accessControlRule_1}; - v_updateRequest := valueof(m_updateAcpPrivileges(v_setOfArcs, -)); - v_updateRequest := f_getUpdateRequestPrimitive(int1, v_acpIndex2, v_updateRequest); - f_cse_updateResource(v_updateRequest); + v_aeIndex := f_cse_preamble_registerAe(-, -); // Only use for setting the ACR_2's accessControlOriginators attribute to AE_ID - // Test Body - p_requestPrimitive.to_ := f_getResourceAddress(v_aeIndex); - p_requestPrimitive.from_ := f_getOriginator(v_aeIndex); + v_createRequest.primitiveContent.accessControlPolicy.selfPrivileges.accessControlRule_list := {v_accessControlRule_1,v_accessControlRule_2}; + v_createRequest.primitiveContent.accessControlPolicy.selfPrivileges.accessControlRule_list[1].accessControlOriginators := {f_getOriginator(v_aeIndex)}; - mcaPort.send(m_request(valueof(p_requestPrimitive))); + v_contentResponse.accessControlPolicy := mw_contentAcp_rc1; + v_contentResponse.accessControlPolicy.selfPrivileges.accessControlRule_list := {v_accessControlRule_1,v_accessControlRule_2};//TODO To handle reverse order of acrs + v_contentResponse.accessControlPolicy.selfPrivileges.accessControlRule_list[1].accessControlOriginators := {f_getOriginator(v_aeIndex)}; + + // Test Body + v_createRequest := f_getCreateRequestPrimitive(c_accessControlPolicyType, v_createRequest, v_aeIndex);// CSE child resource + + mcaPort.send(m_request(v_createRequest)); tc_ac.start; alt { - [] mcaPort.receive(mw_response(mw_responsePrimitive(p_responseStatusCode))) -> value v_response { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int2001))) -> value v_response { tc_ac.stop; - setverdict(pass, __SCOPE__ & ": Successful operation on resource type int2 (Ae)"); + setverdict(pass, __SCOPE__ & ": Resource type " & int2str(enum2int(c_accessControlPolicyType)) & " created successfully"); + v_acpIndex := f_setResource(v_response.primitive.responsePrimitive.primitiveContent, c_accessControlPolicyType); } [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { tc_ac.stop; @@ -18322,24 +17654,33 @@ module OneM2M_Testcases { } [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error while operation on resource type int2 (Ae)"); + setverdict(fail, __SCOPE__ & ": Error while creating resource type " & int2str(enum2int(c_accessControlPolicyType))); } [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while executing operation on resource type int2 (Ae)"); + setverdict(fail, __SCOPE__ & ": No answer while creating resource type " & int2str(enum2int(c_accessControlPolicyType))); } } + f_checkCseTesterStatus(); + + //Check to see if the resource is present or not + if(f_isResourcePresent(v_acpIndex)) { + setverdict(pass, __SCOPE__ & ":INFO: Resource created"); + } else { + setverdict(fail, __SCOPE__ & ":ERROR: Resource not created"); + } + //Postamble f_cse_postamble_deleteResources(); //Tear down f_cf01Down(); - } //end f_CSE_SEC_ACP_002 - - } //end g_CSE_SEC_ACP_002 - - group g_CSE_SEC_ACP_UPD_001{ + }//end TC_CSE_SEC_ACP_CRE_002 + + }// end of group Create + + group Update { /** * @desc Check that the IUT updates successfully the accessControlPolicyIDs attribute of the <AE> resource when the AE has privileges for UPDATE operation in any selfPrivileges of the <accessControlPolicy> resources which this attribute originally indicates. @@ -18422,10 +17763,6 @@ module OneM2M_Testcases { }//end TC_CSE_SEC_ACP_UPD_001 - } //end g_CSE_SEC_ACP_UPD_001 - - group g_CSE_SEC_ACP_UPD_002{ - /** * @desc Check that the IUT responds with an error when the AE tries an UPDATE operation on the accessControlPolicyIDs attribute without having privileges for such operation in any selfPrivileges of the <accessControlPolicy> resources which this attribute originally indicates. * @@ -18477,38 +17814,574 @@ module OneM2M_Testcases { tc_ac.stop; setverdict(pass, __SCOPE__ & ": Operation denied because of lack of right on Container"); } - [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Wrong response status code"); + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error operation have been accpeted without having privileges"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while executing operation on resource type int3 (Container)"); + } + } + + v_primitiveContentRetrievedResource := f_cse_retrieveResource(v_aeIndex); + if(getverdict == pass){ + if(ischosen(v_primitiveContentRetrievedResource.aE)) { + if(match(v_primitiveContentRetrievedResource.aE.accessControlPolicyIDs, valueof(v_updateRequest.primitiveContent.aE.accessControlPolicyIDs))){ + setverdict(fail, __SCOPE__ & ": Error: Access Control policy ID attribute updated") + } + } + } + + //Postamble + f_cse_postamble_deleteResources(); + + //Tear down + f_cf01Down(); + + }//end TC_CSE_SEC_ACP_UPD_002 + + }// end of group Update + + group Basic_Operations { + + group g_CSE_SEC_ACP_001{ + + /** + * @desc Check that the IUT responds with an error when an ORIGINATOR tries an OPERATION without having privileges for performing the OPERATION on the TARGET_RESOURCE_TYPE resource. + * + */ + testcase TC_CSE_SEC_ACP_001_CRE() runs on CseTester system CseSystem { //Create + f_CSE_SEC_ACP_001(m_createContainerBase); + }//end TC_CSE_SEC_ACP_001_CRE + + testcase TC_CSE_SEC_ACP_001_UPD() runs on CseTester system CseSystem { //Update + var template RequestPrimitive v_updateRequest := m_updateAeBase; + var Labels v_labels_1:= {"VALUE_1"}; + v_updateRequest.primitiveContent.aE.labels := v_labels_1; + f_CSE_SEC_ACP_001(v_updateRequest); + }//end TC_CSE_SEC_ACP_001_UPD + + testcase TC_CSE_SEC_ACP_001_RET() runs on CseTester system CseSystem { //Retrieve + f_CSE_SEC_ACP_001(m_retrieveResource("Temporary", "Temporary")); + }//end TC_CSE_SEC_ACP_001_RET + + testcase TC_CSE_SEC_ACP_001_DEL() runs on CseTester system CseSystem { //Delete + f_CSE_SEC_ACP_001(m_deleteRequest("Temporary")); + }//end TC_CSE_SEC_ACP_001_DEL + + function f_CSE_SEC_ACP_001(template RequestPrimitive p_requestPrimitive) runs on CseTester { + // Local variables + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_acpIndex := -1; + var RequestPrimitive v_createRequest := valueof(m_createAcpBase); + var RequestPrimitive v_updateRequest; + var AccessControlRule v_accessControlRule_1; + var SetOfAcrs v_setOfArcs; + + // Test control + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_acpIndex := f_cse_createResource(int1, v_createRequest); // CSE child resource + v_aeIndex := f_cse_preamble_registerAe({f_getResourceId(vc_resourcesList[v_acpIndex].resource)}, -); + + v_accessControlRule_1 := valueof(m_createAcr({ f_getOriginator(v_aeIndex), PX_SUPER_USER}, int63)); + v_setOfArcs.accessControlRule_list := {v_accessControlRule_1}; + v_updateRequest := valueof(m_updateAcpPrivileges(v_setOfArcs, v_setOfArcs)); + v_updateRequest := f_getUpdateRequestPrimitive(int1, v_acpIndex, v_updateRequest); + f_cse_updateResource(v_updateRequest); + + // Test Body + p_requestPrimitive.to_ := f_getResourceAddress(v_aeIndex); + p_requestPrimitive.from_ := "UnknowOriginator"; + + mcaPort.send(m_request(valueof(p_requestPrimitive))); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int4103))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": Operation denied because of lack of right on Container"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error operation have been accpeted without having privileges"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while executing operation on resource type int3 (Container)"); + } + } + + //Postamble + f_cse_postamble_deleteResources(); + + //Tear down + f_cf01Down(); + + } //end f_CSE_SEC_ACP_001 + + } //end g_CSE_SEC_ACP_001 + + group g_CSE_SEC_ACP_002{ + + /** + * @desc Check that the IUT responds successfully when the AE tries an OPERATION on its <AE> resource which has multiple accessControlPolicyID attribute + * + */ + testcase TC_CSE_SEC_ACP_002_CRE() runs on CseTester system CseSystem { //Create + f_CSE_SEC_ACP_002(m_createContainerBase, int2001); + }//end TC_CSE_SEC_ACP_002_CRE + + testcase TC_CSE_SEC_ACP_002_UPD() runs on CseTester system CseSystem { //Update + var template RequestPrimitive v_updateRequest := m_updateAeBase; + var Labels v_labels_1:= {"VALUE_1"}; + v_updateRequest.primitiveContent.aE.labels := v_labels_1; + f_CSE_SEC_ACP_002(v_updateRequest, int2004); + }//end TC_CSE_SEC_ACP_002_UPD + + testcase TC_CSE_SEC_ACP_002_RET() runs on CseTester system CseSystem { //Retrieve + f_CSE_SEC_ACP_002(m_retrieveResource("Temporary", "Temporary"), int2000); + }//end TC_CSE_SEC_ACP_002_RET + + testcase TC_CSE_SEC_ACP_002_DEL() runs on CseTester system CseSystem { //Delete + f_CSE_SEC_ACP_002(m_deleteRequest("Temporary"), int2002); + }//end TC_CSE_SEC_ACP_002_DEL + + function f_CSE_SEC_ACP_002(template RequestPrimitive p_requestPrimitive, in ResponseStatusCode p_responseStatusCode) runs on CseTester { + // Local variables + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_acpIndex1 := -1; + var integer v_acpIndex2 := -1; + var RequestPrimitive v_createRequest := valueof(m_createAcp(f_getResourceAddress(-1), omit)); + var RequestPrimitive v_updateRequest; + var AccessControlRule v_accessControlRule_1; + var SetOfAcrs v_setOfArcs; + + // Test control + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_acpIndex1 := f_cse_createResource(int1, v_createRequest); // CSE child resource + v_acpIndex2 := f_cse_createResource(int1, v_createRequest); // CSE child resource + + v_aeIndex := f_cse_preamble_registerAe({f_getResourceId(vc_resourcesList[v_acpIndex1].resource), f_getResourceId(vc_resourcesList[v_acpIndex2].resource)}, -); + + v_accessControlRule_1 := valueof(m_createAcr({f_getOriginator(v_aeIndex)}, int3)); // c_CR + v_setOfArcs.accessControlRule_list := {v_accessControlRule_1}; + v_updateRequest := valueof(m_updateAcpPrivileges(v_setOfArcs, -)); + v_updateRequest := f_getUpdateRequestPrimitive(int1, v_acpIndex1, v_updateRequest); + f_cse_updateResource(v_updateRequest); + + v_accessControlRule_1 := valueof(m_createAcr({f_getOriginator(v_aeIndex)}, int60)); // c_UDNDi + v_setOfArcs.accessControlRule_list := {v_accessControlRule_1}; + v_updateRequest := valueof(m_updateAcpPrivileges(v_setOfArcs, -)); + v_updateRequest := f_getUpdateRequestPrimitive(int1, v_acpIndex2, v_updateRequest); + f_cse_updateResource(v_updateRequest); + + // Test Body + p_requestPrimitive.to_ := f_getResourceAddress(v_aeIndex); + p_requestPrimitive.from_ := f_getOriginator(v_aeIndex); + + mcaPort.send(m_request(valueof(p_requestPrimitive))); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(p_responseStatusCode))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": Successful operation on resource type int2 (Ae)"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while operation on resource type int2 (Ae)"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while executing operation on resource type int2 (Ae)"); + } + } + + //Postamble + f_cse_postamble_deleteResources(); + + //Tear down + f_cf01Down(); + + } //end f_CSE_SEC_ACP_002 + + } //end g_CSE_SEC_ACP_002 + + + + group g_CSE_SEC_ACP_003 { + + /** + * @desc Check that the IUT responds successfully when an allowed DOMAIN tries an OPERATION on a AE_RESOURCE_TYPE resource. + * + */ + testcase TC_CSE_SEC_ACP_003_CRE() runs on CseTester system CseSystem { //Create + f_CSE_SEC_ACP_003(m_createContainerBase, int2001); + }//end TC_CSE_SEC_ACP_003_CRE + + testcase TC_CSE_SEC_ACP_003_UPD() runs on CseTester system CseSystem { //Update + var template RequestPrimitive v_updateRequest := m_updateAeBase; + var Labels v_labels_1:= {"VALUE_1"}; + v_updateRequest.primitiveContent.aE.labels := v_labels_1; + f_CSE_SEC_ACP_003(v_updateRequest, int2004); + }//end TC_CSE_SEC_ACP_003_02 + + testcase TC_CSE_SEC_ACP_003_RET() runs on CseTester system CseSystem { //Retrieve + f_CSE_SEC_ACP_003(m_retrieveResource("Temporary", "Temporary"), int2000); + }//end TC_CSE_SEC_ACP_003_03 + + testcase TC_CSE_SEC_ACP_003_DEL() runs on CseTester system CseSystem { //Delete + f_CSE_SEC_ACP_003(m_deleteRequest("Temporary"), int2002); + }//end TC_CSE_SEC_ACP_003_04 + + function f_CSE_SEC_ACP_003(template RequestPrimitive p_requestPrimitive, in ResponseStatusCode p_responseStatusCode) runs on CseTester{ + // Local variables + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_acpIndex := -1; + var RequestPrimitive v_createRequest; + var AccessControlRule v_accessControlRule_1; + var RequestPrimitive v_updateRequest; + var SetOfAcrs v_setOfArcs; + + // Test control + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_createRequest := valueof(m_createAcp(f_getResourceAddress(), -, {"testDomain"})); + v_acpIndex := f_cse_createResource(int1, v_createRequest); // CSE child resource + + v_aeIndex := f_cse_preamble_registerAe({f_getResourceId(vc_resourcesList[v_acpIndex].resource)}, -); + + // Test Body + p_requestPrimitive.to_ := f_getResourceAddress(v_aeIndex); + p_requestPrimitive.from_ := "testDomain"; + + mcaPort.send(m_request(valueof(p_requestPrimitive))); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(p_responseStatusCode))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": Successful operation on resource type int2 (Ae)"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while operation on resource type int2 (Ae)"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while executing operation on resource type int2 (Ae)"); + } } - [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { - tc_ac.stop; - setverdict(fail, __SCOPE__ & ": Error operation have been accpeted without having privileges"); + + //Postamble + v_accessControlRule_1 := valueof(m_createAcr({"*"}, int63)); + v_setOfArcs.accessControlRule_list := {v_accessControlRule_1}; + v_updateRequest := valueof(m_updateAcpPrivileges(v_setOfArcs, v_setOfArcs)); + v_updateRequest := f_getUpdateRequestPrimitive(int1, v_acpIndex, v_updateRequest); + v_updateRequest.from_ := "testDomain"; + mcaPort.send(m_request(v_updateRequest)); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { + tc_ac.stop; + log(__SCOPE__ & ":INFO: Attribute of resource type ACP updated successfully"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { + tc_ac.stop; + log(__SCOPE__ & ":INFO: Error while updating resource type ACP"); + } + [] tc_ac.timeout { + log(__SCOPE__ & ":INFO: No answer while updating resource type ACP"); + } } - [] tc_ac.timeout { - setverdict(fail, __SCOPE__ & ": No answer while executing operation on resource type int3 (Container)"); + + f_cse_postamble_deleteResources(); + + //Tear down + f_cf01Down(); + + }//end f_CSE_SEC_ACP_003 + + }//end g_CSE_SEC_ACP_003 + + group g_CSE_SEC_ACP_004 { + + /** + * @desc Check that the IUT responds successfully when any ORIGINATOR tries an OPERATION on a AE_RESOURCE_TYPE resource for which all originators are allowed + * + */ + testcase TC_CSE_SEC_ACP_004_CRE() runs on CseTester system CseSystem { //Create + f_CSE_SEC_ACP_004(m_createContainerBase, int2001); + }//end TC_CSE_SEC_ACP_004_CRE + + testcase TC_CSE_SEC_ACP_004_UPD() runs on CseTester system CseSystem { //Update + var template RequestPrimitive v_updateRequest := m_updateAeBase; + var Labels v_labels_1:= {"VALUE_1"}; + v_updateRequest.primitiveContent.aE.labels := v_labels_1; + f_CSE_SEC_ACP_004(v_updateRequest, int2004); + }//end TC_CSE_SEC_ACP_004_UPD + + testcase TC_CSE_SEC_ACP_004_RET() runs on CseTester system CseSystem { //Retrieve + f_CSE_SEC_ACP_004(m_retrieveResource("Temporary", "Temporary"), int2000); + }//end TC_CSE_SEC_ACP_004_RET + + testcase TC_CSE_SEC_ACP_004_DEL() runs on CseTester system CseSystem { //Delete + f_CSE_SEC_ACP_004(m_deleteRequest("Temporary"), int2002); + }//end TC_CSE_SEC_ACP_004_DEL + + function f_CSE_SEC_ACP_004(template RequestPrimitive p_requestPrimitive, in ResponseStatusCode p_responseStatusCode) runs on CseTester{ + // Local variables + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_acpIndex := -1; + var RequestPrimitive v_createRequest; + + // Test control + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_createRequest := f_getCreateRequestPrimitive(int1, m_createAcpBase, -1); + v_acpIndex := f_cse_createResource(int1, v_createRequest); // CSE child resource + + v_aeIndex := f_cse_preamble_registerAe({f_getResourceId(vc_resourcesList[v_acpIndex].resource)}, -); + + // Test Body + p_requestPrimitive.to_ := f_getResourceAddress(v_aeIndex); + p_requestPrimitive.from_ := "UnknowOriginator"; + + mcaPort.send(m_request(valueof(p_requestPrimitive))); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(p_responseStatusCode))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": Successful operation on resource type int2 (Ae)"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while operation on resource type int2 (Ae)"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while executing operation on resource type int2 (Ae)"); + } } - } - - v_primitiveContentRetrievedResource := f_cse_retrieveResource(v_aeIndex); - if(getverdict == pass){ - if(ischosen(v_primitiveContentRetrievedResource.aE)) { - if(match(v_primitiveContentRetrievedResource.aE.accessControlPolicyIDs, valueof(v_updateRequest.primitiveContent.aE.accessControlPolicyIDs))){ - setverdict(fail, __SCOPE__ & ": Error: Access Control policy ID attribute updated") + + + //Postamble + f_cse_postamble_deleteResources(); + + //Tear down + f_cf01Down(); + + }//end f_CSE_SEC_ACP_004 + + }//end g_CSE_SEC_ACP_004 + + group g_CSE_SEC_ACP_011 { + + /** + * @desc Check that the IUT responds successfully when the AE tries an OPERATION on its child <container> resource whose accessControlPolicyID attribute is not set and AE has privileges for such OPERATION on its associated accessControlPolicy resource + * + */ + testcase TC_CSE_SEC_ACP_011_CRE() runs on CseTester system CseSystem { //Create + f_CSE_SEC_ACP_011(m_createContainerBase, int2001); + }//end TC_CSE_SEC_ACP_011_CRE + + testcase TC_CSE_SEC_ACP_011_UPD() runs on CseTester system CseSystem { //Update + var template RequestPrimitive v_updateRequest := m_updateContainerBase; + var Labels v_labels_1:= {"VALUE_1"}; + v_updateRequest.primitiveContent.container.labels := v_labels_1; + f_CSE_SEC_ACP_011(v_updateRequest, int2004); + }//end TC_CSE_SEC_ACP_011_UPD + + testcase TC_CSE_SEC_ACP_011_RET() runs on CseTester system CseSystem { //Retrieve + f_CSE_SEC_ACP_011(m_retrieveResource("Temporary", "Temporary"), int2000); + }//end TC_CSE_SEC_ACP_011_RET + + testcase TC_CSE_SEC_ACP_011_DEL() runs on CseTester system CseSystem { //Delete + f_CSE_SEC_ACP_011(m_deleteRequest("Temporary"), int2002); + }//end TC_CSE_SEC_ACP_011_DEL + + function f_CSE_SEC_ACP_011(template RequestPrimitive p_requestPrimitive, in ResponseStatusCode p_responseStatusCode) runs on CseTester { + // Local variables + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_containerIndex := -1; + + // Test control + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_aeIndex := f_cse_preamble_registerAe(-, -); + v_containerIndex := f_cse_createResource(int3, m_createContainerBase, v_aeIndex); + + // Test Body + p_requestPrimitive.to_ := f_getResourceAddress(v_containerIndex); + p_requestPrimitive.from_ := f_getOriginator(v_aeIndex); + + mcaPort.send(m_request(valueof(p_requestPrimitive))); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(p_responseStatusCode))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": Successful operation on resource type int3 (Container)"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error while operation on resource type int3 (Container)"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while executing operation on resource type int3 (Container)"); + } } - } - } - - //Postamble - f_cse_postamble_deleteResources(); - - //Tear down - f_cf01Down(); + + //Postamble + f_cse_postamble_deleteResources(); + + //Tear down + f_cf01Down(); + + } //end f_CSE_SEC_ACP_011 + + } //end g_CSE_SEC_ACP_011 + + group g_CSE_SEC_ACP_012 { - }//end TC_CSE_SEC_ACP_UPD_002 + /** + * @desc Check that the IUT responds with an error when an ORIGINATOR tries an OPERATION on a <Container> resource with no accessControlPolicyID associated and such ORIGINATOR having no privileges for performing the OPERATION on the <Container> resource. + * + */ + testcase TC_CSE_SEC_ACP_012_CRE() runs on CseTester system CseSystem { //Create + f_CSE_SEC_ACP_012(m_createContainerBase, int62); + }//end TC_CSE_SEC_ACP_012_CRE + + testcase TC_CSE_SEC_ACP_012_UPD() runs on CseTester system CseSystem { //Update + var template RequestPrimitive v_updateRequest := m_updateContainerBase; + var Labels v_labels_1:= {"VALUE_1"}; + v_updateRequest.primitiveContent.container.labels := v_labels_1; + f_CSE_SEC_ACP_012(v_updateRequest, int62); //TODO Fix p_acor + }//end TC_CSE_SEC_ACP_012_UPD + + testcase TC_CSE_SEC_ACP_012_RET() runs on CseTester system CseSystem { //Retrieve + f_CSE_SEC_ACP_012(m_retrieveResource("Temporary", "Temporary"), int62); //TODO Fix p_acor + }//end TC_CSE_SEC_ACP_012_RET + + testcase TC_CSE_SEC_ACP_012_DEL() runs on CseTester system CseSystem { //Delete + f_CSE_SEC_ACP_012(m_deleteRequest("Temporary"), int62); //TODO Fix p_acor + }//end TC_CSE_SEC_ACP_012_DEL + + function f_CSE_SEC_ACP_012(template RequestPrimitive p_requestPrimitive, in AccessControlOperations p_acor) runs on CseTester { + // Local variables + var MsgIn v_response; + var integer v_aeIndex := -1; + var integer v_containerIndex := -1; + var integer v_resourceIndex := -1; + var integer v_acpIndex := -1; + var RequestPrimitive v_request; + var RequestPrimitive v_createRequest := valueof(m_createAcpBase); + var RequestPrimitive v_updateRequest; + var AccessControlRule v_accessControlRule_1, v_accessControlRule_2; + var SetOfAcrs v_setOfArcs; + + // Test control + + // Test component configuration + f_cf01Up(); + + // Test adapter configuration + + // Preamble + v_acpIndex := f_cse_createResource(int1, v_createRequest); // CSE child resource + v_aeIndex := f_cse_preamble_registerAe({f_getResourceId(vc_resourcesList[v_acpIndex].resource)}, -); + v_containerIndex := f_cse_createResource(int3, m_createContainerBase, v_aeIndex); + + v_accessControlRule_1 := valueof(m_createAcr({PX_SUPER_USER}, int63)); + v_accessControlRule_2 := valueof(m_createAcr({f_getOriginator(v_aeIndex)}, p_acor)); + v_setOfArcs.accessControlRule_list := {v_accessControlRule_1, v_accessControlRule_2}; + v_updateRequest := valueof(m_updateAcpPrivileges(v_setOfArcs, -)); + v_updateRequest := f_getUpdateRequestPrimitive(int1, v_acpIndex, v_updateRequest); + f_cse_updateResource(v_updateRequest); + + // Test Body + v_request := f_getCreateRequestPrimitive(int3, p_requestPrimitive, v_containerIndex); + + mcaPort.send(m_request(valueof(v_request))); + tc_ac.start; + alt { + [] mcaPort.receive(mw_response(mw_responsePrimitive(int4103))) -> value v_response { + tc_ac.stop; + setverdict(pass, __SCOPE__ & ": Operation denied because of lack of right on Container"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveKO)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Wrong response status code"); + } + [] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) -> value v_response { + tc_ac.stop; + setverdict(fail, __SCOPE__ & ": Error operation have been accpeted without having privileges"); + } + [] tc_ac.timeout { + setverdict(fail, __SCOPE__ & ": No answer while executing operation on resource type int3 (Container)"); + } + } + + //Postamble + f_cse_postamble_deleteResources(); + + //Tear down + f_cf01Down(); + + } //end f_CSE_SEC_ACP_012 + + } //end g_CSE_SEC_ACP_012 - } //end g_CSE_SEC_ACP_UPD_002 - + }// end of Basic_Operations + }//end group AccessControlPolicy }//end group Security -- GitLab