Skip to content
Snippets Groups Projects

Stf531 dmr testcases

Merged Miguel Angel Reina Ortega requested to merge STF531-DMR-TESTCASES into master
+ 88
4
Compare changes
  • Side-by-side
  • Inline
Files
@@ -7,7 +7,7 @@
*
* @author oneM2M
* @version $URL: https://oldforge.etsi.org/svn/oneM2M/trunk/ttcn/LibOneM2M/OneM2M_Templates.ttcn $
* $Id: OneM2M_Templates.ttcn 334 2017-07-31 08:11:48Z reinaortega $
* $Id: OneM2M_Templates.ttcn 335 2017-07-31 09:04:53Z reinaortega $
* @desc Module containing templates for oneM2M
*
*/
@@ -405,6 +405,20 @@ module OneM2M_Templates {
primitiveContent := {locationPolicy := m_contentUpdateLocationPolicy(p_accessControlPolicyIds, p_locationUpdatePeriod)}
};
template (value) RequestPrimitive m_updateNodeBase modifies m_update := {
requestIdentifier := "m_updateNode" & f_rnd(1, 1000000),
primitiveContent:= {node := m_contentUpdateNode}
}
template (value) RequestPrimitive m_updateRemoteCSEBase modifies m_update := {
requestIdentifier := "m_updateRemoteCSEBase" & f_rnd(1, 1000000),
primitiveContent := {remoteCSE := m_contentUpdateRemoteCSE}
}
template (value) RequestPrimitive m_updateAE modifies m_update := {
requestIdentifier := "m_updateAE" & f_rnd(1, 1000000),
primitiveContent := {aE := m_contentUpdateAE}
}
}//end group Update
group Create {
@@ -2206,6 +2220,76 @@ module OneM2M_Templates {
locationStatus := omit, //NP
choice := omit //NP
};
template (value) Node_optional m_contentUpdateNode := {
resourceName := omit,
resourceType := omit,
resourceID := omit,
parentID := omit,
creationTime := omit,
lastModifiedTime := omit,
labels := omit,
accessControlPolicyIDs := omit,
expirationTime := omit,
dynamicAuthorizationConsultationIDs := omit,
announceTo := omit,
announcedAttribute := omit,
nodeID := omit,
hostedCSELink := omit,
mgmtClientAddress := omit,
choice := omit
}
template (value) RemoteCSE_optional m_contentUpdateRemoteCSE := {
resourceName := omit,
resourceType := omit,
resourceID := omit,
parentID := omit,
creationTime := omit,
lastModifiedTime := omit,
labels := omit,
accessControlPolicyIDs := omit,
expirationTime := omit,
dynamicAuthorizationConsultationIDs := omit,
announceTo := omit,
announcedAttribute := omit,
cseType := omit,
pointOfAccess := omit,
cSEBase := omit,
cSE_ID := omit,
m2M_Ext_ID := omit,
trigger_Recipient_ID := omit,
requestReachability := omit,
nodeLink := omit,
e2eSecInfo := omit,
triggerReferenceNumber := omit,
choice := omit
}
template (value) AE_optional m_contentUpdateAE := {
resourceName := omit,
resourceType := omit,
resourceID := omit,
parentID := omit,
creationTime := omit,
lastModifiedTime := omit,
labels := omit,
accessControlPolicyIDs := omit,
expirationTime := omit,
dynamicAuthorizationConsultationIDs := omit,
announceTo := omit,
announcedAttribute := omit,
appName := omit,
app_ID := omit,
aE_ID := omit,
pointOfAccess := omit,
ontologyRef := omit,
nodeLink := omit,
requestReachability := omit,
contentSerialization := omit,
e2eSecInfo := omit,
choice := omit
}
}//end group ContentUpdate
Loading