Skip to content
Snippets Groups Projects
Commit eb9f1917 authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

New DEL and SUB (notification) test cases

parent 3ada3244
No related branches found
No related tags found
1 merge request!25Ae fixes
...@@ -1007,6 +1007,31 @@ module OneM2M_Templates { ...@@ -1007,6 +1007,31 @@ module OneM2M_Templates {
notificationContentType := p_notificationContentType, //TODO Set to omit once xsd is fixed,//O notificationContentType := p_notificationContentType, //TODO Set to omit once xsd is fixed,//O
subscriberURI := p_subscriberURI//O subscriberURI := p_subscriberURI//O
}; };
template (value) EventNotificationCriteria m_eventNotificationCriteria ( in NotificationEventType p_notificationEventType, in EventNotificationCriteria.attribute_list p_attribute_list := {}) := { //the parameter should be a list of NotificationEventTypeEventType
createdBefore := omit,
createdAfter := omit,
modifiedSince := omit,
unmodifiedSince := omit,
stateTagSmaller := omit,
stateTagBigger := omit,
expireBefore := omit,
expireAfter := omit,
sizeAbove := omit,
sizeBelow := omit,
operationMonitor_list := {},
attribute_list := p_attribute_list, // TODO this list should be able to be omited see 9.6.8
notificationEventType_list := {p_notificationEventType},// TODO this list should be able to be omited see 9.6.8 (TS0001)
missingData := omit
};
template (value) BatchNotify m_batchNotifyNumber3Duration1 (in XSD.NonNegativeInteger p_number) := {
number := p_number,
duration := "PT1S" //TODO duration has to be set to 1s and match to the Duration regex
};
//normaly duration can be omited
/** /**
...@@ -2069,35 +2094,5 @@ module OneM2M_Templates { ...@@ -2069,35 +2094,5 @@ module OneM2M_Templates {
return v_address; return v_address;
} }
group sylvain {
template (value) EventNotificationCriteria m_eventNotificationCriteria ( in NotificationEventType p_notificationEventType, in EventNotificationCriteria.attribute_list p_attribute_list := {}) := { //the parameter should be a list of NotificationEventTypeEventType
createdBefore := omit,
createdAfter := omit,
modifiedSince := omit,
unmodifiedSince := omit,
stateTagSmaller := omit,
stateTagBigger := omit,
expireBefore := omit,
expireAfter := omit,
sizeAbove := omit,
sizeBelow := omit,
operationMonitor_list := {},
attribute_list := p_attribute_list, // TODO this list should be able to be omited see 9.6.8
notificationEventType_list := {p_notificationEventType},// TODO this list should be able to be omited see 9.6.8 (TS0001)
missingData := omit
};
template (value) BatchNotify m_batchNotifyNumber3Duration1 (in XSD.NonNegativeInteger p_number) := {
number := p_number,
duration := "PT1S" //TODO duration has to be set to 1s and match to the Duration regex
};
//normaly duration can be omited
}
} // end of module } // end of module
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment