Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
ATS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TST
ATS
Commits
e9fe7f3d
Commit
e9fe7f3d
authored
7 years ago
by
Pramod Kulkarni
Browse files
Options
Downloads
Patches
Plain Diff
Discovery fixes
parent
e47f0720
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!25
Ae fixes
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
LibOneM2M/OneM2M_Templates.ttcn
+30
-2
30 additions, 2 deletions
LibOneM2M/OneM2M_Templates.ttcn
OneM2M_Testcases.ttcn
+16
-8
16 additions, 8 deletions
OneM2M_Testcases.ttcn
with
46 additions
and
10 deletions
LibOneM2M/OneM2M_Templates.ttcn
+
30
−
2
View file @
e9fe7f3d
...
@@ -222,6 +222,34 @@ module OneM2M_Templates {
...
@@ -222,6 +222,34 @@ module OneM2M_Templates {
}
}
};
};
/**
* @desc RETRIEVE request primtive containing the Filter Criteria in the filterCriteria field
* @param p_targetResourceAddress Target resource address
* @param p_originator Originator (from)
* @param p_filterUsage FilterUsage
* @param p_labels Labels
*/
template
(
value
)
RequestPrimitive
m_retrieveResourceFilterUsageOptionLabel
(
XSD
.
ID
p_targetResourceAddress
,
in
XSD
.
ID
p_originator
,
in
template
(
value
)
FilterUsage
p_filterUsage
,
in
Labels
p_labels
)
modifies
m_retrieveResource
:=
{
requestIdentifier
:=
"m_retrieveResourceFilterUsageOptionLabel"
&
f_rnd
(
1
,
1000000
),
filterCriteria
:=
{
createdBefore
:=
omit
,
createdAfter
:=
omit
,
modifiedSince
:=
omit
,
unmodifiedSince
:=
omit
,
stateTagSmaller
:=
omit
,
stateTagBigger
:=
omit
,
expireBefore
:=
omit
,
expireAfter
:=
omit
,
labels
:=
p_labels
,
resourceType
:=
omit
,
sizeAbove
:=
omit
,
sizeBelow
:=
omit
,
contentType_list
:=
{},
attribute_list
:=
{},
filterUsage
:=
p_filterUsage
,
limit
:=
omit
}
};
/**
/**
* @desc RETRIEVE request primtive containing the Discovery Type in the discoveryResultType field and Filter Criteria in the filterCriteria field
* @desc RETRIEVE request primtive containing the Discovery Type in the discoveryResultType field and Filter Criteria in the filterCriteria field
* @param p_targetResourceAddress Target resource address
* @param p_targetResourceAddress Target resource address
...
@@ -3545,10 +3573,10 @@ module OneM2M_Templates {
...
@@ -3545,10 +3573,10 @@ module OneM2M_Templates {
tokenRequestInformation
:=
*
tokenRequestInformation
:=
*
};
};
template
ResponsePrimitive
mw_responseDiscovery
:=
{
template
ResponsePrimitive
mw_responseDiscovery
(
template
URIList
p_uriList
:=
?
)
:=
{
responseStatusCode
:=
int2000
,
responseStatusCode
:=
int2000
,
requestIdentifier
:=
?
,
requestIdentifier
:=
?
,
primitiveContent
:=
{
uRIList
:=
?
},
primitiveContent
:=
{
uRIList
:=
p_uriList
},
to_
:=
*
,
to_
:=
*
,
from_
:=
*
,
from_
:=
*
,
originatingTimestamp
:=
*
,
originatingTimestamp
:=
*
,
...
...
This diff is collapsed.
Click to expand it.
OneM2M_Testcases.ttcn
+
16
−
8
View file @
e9fe7f3d
...
@@ -15770,7 +15770,8 @@ module OneM2M_Testcases {
...
@@ -15770,7 +15770,8 @@ module OneM2M_Testcases {
var integer v_resourceIndex := -1;
var integer v_resourceIndex := -1;
var RequestPrimitive v_request;
var RequestPrimitive v_request;
var integer v_childResourceIndex := -1;
var integer v_childResourceIndex := -1;
const ResourceType c_containerResourceType := int3;
const ResourceType c_containerResourceType := int3;
var Labels v_labels := {"NotFoundLabel"};
// Test control
// Test control
...
@@ -15784,7 +15785,8 @@ module OneM2M_Testcases {
...
@@ -15784,7 +15785,8 @@ module OneM2M_Testcases {
v_resourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_aeIndex);
v_resourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_aeIndex);
v_childResourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_resourceIndex);
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));
//v_request := valueof(m_retrieveResourceFilterUsageOption(f_getResourceAddress(v_resourceIndex), f_getOriginator(v_resourceIndex), int1));
v_request := valueof(m_retrieveResourceFilterUsageOptionLabel(f_getResourceAddress(v_resourceIndex), f_getOriginator(v_resourceIndex), int1, v_labels));
mcaPort.send(m_request(v_request));
mcaPort.send(m_request(v_request));
tc_ac.start;
tc_ac.start;
alt {
alt {
...
@@ -15829,7 +15831,8 @@ module OneM2M_Testcases {
...
@@ -15829,7 +15831,8 @@ module OneM2M_Testcases {
var integer v_resourceIndex := -1;
var integer v_resourceIndex := -1;
var RequestPrimitive v_request;
var RequestPrimitive v_request;
var integer v_childResourceIndex := -1;
var integer v_childResourceIndex := -1;
const ResourceType c_containerResourceType := int3;
const ResourceType c_containerResourceType := int3;
var integer v_i_cont := 0;
// Test control
// Test control
...
@@ -15849,10 +15852,13 @@ module OneM2M_Testcases {
...
@@ -15849,10 +15852,13 @@ module OneM2M_Testcases {
alt {
alt {
[] mcaPort.receive(mw_response(mw_responseDiscovery)) -> value v_response {
[] mcaPort.receive(mw_response(mw_responseDiscovery)) -> value v_response {
tc_ac.stop;
tc_ac.stop;
if (f_isNonHierarchical(v_response.primitive.responsePrimitive.primitiveContent.uRIList[0])) {
while (v_i_cont<sizeof(v_response.primitive.responsePrimitive.primitiveContent.uRIList)){
setverdict(pass, __SCOPE__ & ": Non-hierarchical address form present in URIList element");
if (f_isNonHierarchical(v_response.primitive.responsePrimitive.primitiveContent.uRIList[v_i_cont])) {
} else {
setverdict(pass, __SCOPE__ & ": Non-hierarchical address form present in URIList[" & int2str(v_i_cont) & "] element");
setverdict(fail, __SCOPE__ & ": Non-hierarchical address form absent in URIList representation");
} else {
setverdict(fail, __SCOPE__ & ": Non-hierarchical address form absent in URIList[" & int2str(v_i_cont) & "] element");
}
v_i_cont := v_i_cont + 1;
}
}
}
}
[] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) {
[] mcaPort.receive(mw_response(mw_responsePrimitiveOK)) {
...
@@ -16015,7 +16021,9 @@ module OneM2M_Testcases {
...
@@ -16015,7 +16021,9 @@ module OneM2M_Testcases {
v_resourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_aeIndex);
v_resourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_aeIndex);
v_childResourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_resourceIndex);
v_childResourceIndex := f_cse_createResource(c_containerResourceType, m_createContainerBase, v_resourceIndex);
v_request := valueof(m_retrieveResourceInvalidFormatOption(f_getResourceAddress(v_resourceIndex), f_getOriginator(v_resourceIndex)));
v_request := valueof(m_retrieveResourceFilterUsageOption(f_getResourceAddress(v_resourceIndex), f_getOriginator(v_resourceIndex), int1));
v_request.filterCriteria.expireBefore := "20171231T012345";
v_request.filterCriteria.expireAfter := "20181231T012345";
mcaPort.send(m_request(v_request));
mcaPort.send(m_request(v_request));
tc_ac.start;
tc_ac.start;
alt {
alt {
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment