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
1f56801f
Commit
1f56801f
authored
9 years ago
by
Miguel Angel Reina Ortega
Browse files
Options
Downloads
Patches
Plain Diff
Output from oneM2M Plugtests#2 (part 2)
parent
f864ecc4
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
OneM2M_Functions.ttcn
+4
-4
4 additions, 4 deletions
OneM2M_Functions.ttcn
OneM2M_Testcases.ttcn
+65
-65
65 additions, 65 deletions
OneM2M_Testcases.ttcn
OneM2M_Types.ttcn
+2
-2
2 additions, 2 deletions
OneM2M_Types.ttcn
with
71 additions
and
71 deletions
OneM2M_Functions.ttcn
+
4
−
4
View file @
1f56801f
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
* @author ETSI
* @author ETSI
* @version $URL: https://forge.etsi.org/svn/oneM2M/trunk/ttcn/OneM2M_Functions.ttcn $
* @version $URL: https://forge.etsi.org/svn/oneM2M/trunk/ttcn/OneM2M_Functions.ttcn $
* $Id: OneM2M_Functions.ttcn 9
7
2016-06-0
1 15:38:10
Z reinaortega $
* $Id: OneM2M_Functions.ttcn 9
8
2016-06-0
2 07:34:39
Z reinaortega $
* @desc Module containing functions for oneM2M
* @desc Module containing functions for oneM2M
*
*
*/
*/
...
@@ -70,7 +70,7 @@ module OneM2M_Functions {
...
@@ -70,7 +70,7 @@ module OneM2M_Functions {
if
(
ischosen
(
v_response
.
responsePrimitive_
.
primitiveContent
.
any_1
[
0
].
AE
))
{
if
(
ischosen
(
v_response
.
responsePrimitive_
.
primitiveContent
.
any_1
[
0
].
AE
))
{
vc_aeAux
:=
v_response
.
responsePrimitive_
.
primitiveContent
.
any_1
[
0
].
AE
;
vc_aeAux
:=
v_response
.
responsePrimitive_
.
primitiveContent
.
any_1
[
0
].
AE
;
if
(
ispresent
(
vc_aeAux
.
aE_ID
)){
if
(
ispresent
(
vc_aeAux
.
aE_ID
)){
f_sendAcPrimitive
(
"AE-ID_changed"
,
vc_aeAux
.
aE_ID
);
f_sendAcPrimitive
(
"AE-ID_changed"
,
oct2char
(
unichar2oct
(
vc_aeAux
.
aE_ID
)
))
;
}
else
{
}
else
{
f_sendAcPrimitive
(
"AE-ID_changed"
,
"0"
);
f_sendAcPrimitive
(
"AE-ID_changed"
,
"0"
);
}
}
...
@@ -106,7 +106,7 @@ module OneM2M_Functions {
...
@@ -106,7 +106,7 @@ module OneM2M_Functions {
if
(
PX_RUN_POSTAMBLE
)
{
if
(
PX_RUN_POSTAMBLE
)
{
if
(
PX_UNSTRUCTURED
)
if
(
PX_UNSTRUCTURED
)
{
{
v_request
:=
m_deleteAe
(
"/"
&
vc_aeAux
.
aE_ID
);
v_request
:=
valueof
(
m_deleteAe
(
"/"
&
vc_aeAux
.
aE_ID
)
)
;
v_request
.
from_
:=
vc_aeAux
.
aE_ID
;
v_request
.
from_
:=
vc_aeAux
.
aE_ID
;
mcaPort
.
send
(
m_request
(
v_request
));
mcaPort
.
send
(
m_request
(
v_request
));
}
else
{
}
else
{
...
@@ -131,7 +131,7 @@ module OneM2M_Functions {
...
@@ -131,7 +131,7 @@ module OneM2M_Functions {
if
(
PX_UNSTRUCTURED
)
if
(
PX_UNSTRUCTURED
)
{
{
v_request
:=
m_deleteAcp
(
"/"
&
vc_acpAux
.
resourceID
);
v_request
:=
valueof
(
m_deleteAcp
(
"/"
&
vc_acpAux
.
resourceID
)
)
;
v_request
.
from_
:=
PX_AE_ID_STEM
;
v_request
.
from_
:=
PX_AE_ID_STEM
;
mcaPort
.
send
(
m_request
(
v_request
));
mcaPort
.
send
(
m_request
(
v_request
));
}
else
{
}
else
{
...
...
This diff is collapsed.
Click to expand it.
OneM2M_Testcases.ttcn
+
65
−
65
View file @
1f56801f
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
* @author ETSI
* @author ETSI
* @version $URL: https://forge.etsi.org/svn/oneM2M/trunk/ttcn/OneM2M_Testcases.ttcn $
* @version $URL: https://forge.etsi.org/svn/oneM2M/trunk/ttcn/OneM2M_Testcases.ttcn $
* $Id: OneM2M_Testcases.ttcn 9
7
2016-06-0
1 15:38:10
Z reinaortega $
* $Id: OneM2M_Testcases.ttcn 9
8
2016-06-0
2 07:34:39
Z reinaortega $
* @desc Module containing test cases for oneM2M
* @desc Module containing test cases for oneM2M
*
*
*/
*/
...
@@ -177,7 +177,7 @@ module OneM2M_Testcases {
...
@@ -177,7 +177,7 @@ module OneM2M_Testcases {
f_createResource
(
p_resourceType
,
v_aeResourceAddress
,
p_requestPrimitive
);
f_createResource
(
p_resourceType
,
v_aeResourceAddress
,
p_requestPrimitive
);
// Test Body
// Test Body
v_request
:=
m_retrieveResource
(
v_aeResourceAddress
&
"/"
&
c_defaultResourceName
);
v_request
:=
valueof
(
m_retrieveResource
(
v_aeResourceAddress
&
"/"
&
c_defaultResourceName
)
)
;
v_request
.
resultContent
:=
int0
;
//Nothing
v_request
.
resultContent
:=
int0
;
//Nothing
mcaPort
.
send
(
m_request
(
v_request
));
mcaPort
.
send
(
m_request
(
v_request
));
tc_ac
.
start
;
tc_ac
.
start
;
...
@@ -292,7 +292,7 @@ module OneM2M_Testcases {
...
@@ -292,7 +292,7 @@ module OneM2M_Testcases {
f_createResource
(
p_resourceType
,
v_aeResourceAddress
,
p_requestPrimitive
);
f_createResource
(
p_resourceType
,
v_aeResourceAddress
,
p_requestPrimitive
);
// Test Body
// Test Body
v_request
:=
m_retrieveResource
(
v_aeResourceAddress
&
"/"
&
c_defaultResourceName
);
v_request
:=
valueof
(
m_retrieveResource
(
v_aeResourceAddress
&
"/"
&
c_defaultResourceName
)
)
;
v_request
.
resultContent
:=
int1
;
//Attributes
v_request
.
resultContent
:=
int1
;
//Attributes
mcaPort
.
send
(
m_request
(
v_request
));
mcaPort
.
send
(
m_request
(
v_request
));
tc_ac
.
start
;
tc_ac
.
start
;
...
@@ -407,7 +407,7 @@ module OneM2M_Testcases {
...
@@ -407,7 +407,7 @@ module OneM2M_Testcases {
f_createResource
(
p_resourceType
,
v_aeResourceAddress
,
p_requestPrimitive
);
f_createResource
(
p_resourceType
,
v_aeResourceAddress
,
p_requestPrimitive
);
// Test Body
// Test Body
v_request
:=
m_retrieveResource
(
v_aeResourceAddress
&
"/"
&
c_defaultResourceName
);
v_request
:=
valueof
(
m_retrieveResource
(
v_aeResourceAddress
&
"/"
&
c_defaultResourceName
)
)
;
v_request
.
resultContent
:=
int2
;
//Attributes
v_request
.
resultContent
:=
int2
;
//Attributes
mcaPort
.
send
(
m_request
(
v_request
));
mcaPort
.
send
(
m_request
(
v_request
));
tc_ac
.
start
;
tc_ac
.
start
;
...
@@ -522,7 +522,7 @@ module OneM2M_Testcases {
...
@@ -522,7 +522,7 @@ module OneM2M_Testcases {
f_createResource
(
p_resourceType
,
v_aeResourceAddress
,
p_requestPrimitive
);
f_createResource
(
p_resourceType
,
v_aeResourceAddress
,
p_requestPrimitive
);
// Test Body
// Test Body
v_request
:=
m_retrieveResource
(
v_aeResourceAddress
&
"/"
&
c_defaultResourceName
);
v_request
:=
valueof
(
m_retrieveResource
(
v_aeResourceAddress
&
"/"
&
c_defaultResourceName
)
)
;
v_request
.
resultContent
:=
int1
;
//Attributes
v_request
.
resultContent
:=
int1
;
//Attributes
mcaPort
.
send
(
m_request
(
v_request
));
mcaPort
.
send
(
m_request
(
v_request
));
tc_ac
.
start
;
tc_ac
.
start
;
...
@@ -637,7 +637,7 @@ module OneM2M_Testcases {
...
@@ -637,7 +637,7 @@ module OneM2M_Testcases {
f_createResource
(
p_resourceType
,
v_aeResourceAddress
,
p_requestPrimitive
);
f_createResource
(
p_resourceType
,
v_aeResourceAddress
,
p_requestPrimitive
);
// Test Body
// Test Body
v_request
:=
m_retrieveResource
(
v_aeResourceAddress
&
"/"
&
c_defaultResourceName
);
v_request
:=
valueof
(
m_retrieveResource
(
v_aeResourceAddress
&
"/"
&
c_defaultResourceName
)
)
;
v_request
.
resultContent
:=
int1
;
//Attributes
v_request
.
resultContent
:=
int1
;
//Attributes
mcaPort
.
send
(
m_request
(
v_request
));
mcaPort
.
send
(
m_request
(
v_request
));
tc_ac
.
start
;
tc_ac
.
start
;
...
@@ -752,7 +752,7 @@ module OneM2M_Testcases {
...
@@ -752,7 +752,7 @@ module OneM2M_Testcases {
f_createResource
(
p_resourceType
,
v_aeResourceAddress
,
p_requestPrimitive
);
f_createResource
(
p_resourceType
,
v_aeResourceAddress
,
p_requestPrimitive
);
// Test Body
// Test Body
v_request
:=
m_retrieveResource
(
v_aeResourceAddress
&
"/"
&
c_defaultResourceName
);
v_request
:=
valueof
(
m_retrieveResource
(
v_aeResourceAddress
&
"/"
&
c_defaultResourceName
)
)
;
v_request
.
resultContent
:=
int1
;
//Attributes
v_request
.
resultContent
:=
int1
;
//Attributes
mcaPort
.
send
(
m_request
(
v_request
));
mcaPort
.
send
(
m_request
(
v_request
));
tc_ac
.
start
;
tc_ac
.
start
;
...
@@ -867,7 +867,7 @@ module OneM2M_Testcases {
...
@@ -867,7 +867,7 @@ module OneM2M_Testcases {
f_createResource
(
p_resourceType
,
v_aeResourceAddress
,
p_requestPrimitive
);
f_createResource
(
p_resourceType
,
v_aeResourceAddress
,
p_requestPrimitive
);
// Test Body
// Test Body
v_request
:=
m_retrieveResource
(
v_aeResourceAddress
&
"/"
&
c_defaultResourceName
);
v_request
:=
valueof
(
m_retrieveResource
(
v_aeResourceAddress
&
"/"
&
c_defaultResourceName
)
)
;
v_request
.
resultContent
:=
int1
;
//Attributes
v_request
.
resultContent
:=
int1
;
//Attributes
mcaPort
.
send
(
m_request
(
v_request
));
mcaPort
.
send
(
m_request
(
v_request
));
tc_ac
.
start
;
tc_ac
.
start
;
...
@@ -2323,8 +2323,8 @@ module OneM2M_Testcases {
...
@@ -2323,8 +2323,8 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
//Check attribute 1
//Check attribute 1
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
_optional
))
{
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
.
labels
!=
v_labels_2
){
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
_optional
.
labels
!=
v_labels_2
){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
}
}
}
}
...
@@ -2348,8 +2348,8 @@ module OneM2M_Testcases {
...
@@ -2348,8 +2348,8 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
//Check attribute 1
//Check attribute 1
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
_optional
))
{
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
.
labels
!=
v_labels_2
){
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
_optional
.
labels
!=
v_labels_2
){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
}
}
}
}
...
@@ -2399,8 +2399,8 @@ module OneM2M_Testcases {
...
@@ -2399,8 +2399,8 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
//Check attribute 1
//Check attribute 1
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
_optional
))
{
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
.
labels
!=
v_labels_2
){
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
_optional
.
labels
!=
v_labels_2
){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
}
}
}
}
...
@@ -2425,8 +2425,8 @@ module OneM2M_Testcases {
...
@@ -2425,8 +2425,8 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
//Check attribute 1
//Check attribute 1
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
PollingChannel
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
PollingChannel
_optional
))
{
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
PollingChannel
.
labels
!=
v_labels_2
){
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
PollingChannel
_optional
.
labels
!=
v_labels_2
){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
}
}
}
}
...
@@ -2450,8 +2450,8 @@ module OneM2M_Testcases {
...
@@ -2450,8 +2450,8 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
//Check attribute 1
//Check attribute 1
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
_optional
))
{
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
.
labels
!=
v_labels_2
){
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
_optional
.
labels
!=
v_labels_2
){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
}
}
}
}
...
@@ -2534,8 +2534,8 @@ module OneM2M_Testcases {
...
@@ -2534,8 +2534,8 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
//Check attribute 1
//Check attribute 1
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
_optional
))
{
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
.
labels
!=
v_labels_1
){
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
_optional
.
labels
!=
v_labels_1
){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
}
}
}
}
...
@@ -2556,8 +2556,8 @@ module OneM2M_Testcases {
...
@@ -2556,8 +2556,8 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
//Check attribute 1
//Check attribute 1
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
_optional
))
{
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
.
labels
!=
v_labels_1
){
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
_optional
.
labels
!=
v_labels_1
){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
}
}
}
}
...
@@ -2578,8 +2578,8 @@ module OneM2M_Testcases {
...
@@ -2578,8 +2578,8 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
//Check attribute 1
//Check attribute 1
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy
_optional
))
{
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy
.
labels
!=
v_labels_1
){
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy
_optional
.
labels
!=
v_labels_1
){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
}
}
}
}
...
@@ -2600,8 +2600,8 @@ module OneM2M_Testcases {
...
@@ -2600,8 +2600,8 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
//Check attribute 1
//Check attribute 1
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
_optional
))
{
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
.
labels
!=
v_labels_1
){
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
_optional
.
labels
!=
v_labels_1
){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
}
}
}
}
...
@@ -2622,8 +2622,8 @@ module OneM2M_Testcases {
...
@@ -2622,8 +2622,8 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
//Check attribute 1
//Check attribute 1
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
PollingChannel
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
PollingChannel
_optional
))
{
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
PollingChannel
.
labels
!=
v_labels_1
){
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
PollingChannel
_optional
.
labels
!=
v_labels_1
){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
}
}
}
}
...
@@ -2644,8 +2644,8 @@ module OneM2M_Testcases {
...
@@ -2644,8 +2644,8 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
//Check attribute 1
//Check attribute 1
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
_optional
))
{
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
.
labels
!=
v_labels_1
){
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
_optional
.
labels
!=
v_labels_1
){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not updated correctly"
)
}
}
}
}
...
@@ -2733,8 +2733,8 @@ module OneM2M_Testcases {
...
@@ -2733,8 +2733,8 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
//Check attribute 1
//Check attribute 1
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
_optional
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
.
labels
)){
// FIXME: CHECK: labels set to empty
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
_optional
.
labels
)){
// FIXME: CHECK: labels set to empty
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
}
}
}
}
...
@@ -2761,8 +2761,8 @@ module OneM2M_Testcases {
...
@@ -2761,8 +2761,8 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
//Check attribute 1
//Check attribute 1
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
_optional
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
.
labels
)){
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
_optional
.
labels
)){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
}
}
}
}
...
@@ -2789,8 +2789,8 @@ module OneM2M_Testcases {
...
@@ -2789,8 +2789,8 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
//Check attribute 1
//Check attribute 1
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy
_optional
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy
.
labels
)){
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy
_optional
.
labels
)){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
}
}
}
}
...
@@ -2817,8 +2817,8 @@ module OneM2M_Testcases {
...
@@ -2817,8 +2817,8 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
//Check attribute 1
//Check attribute 1
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
_optional
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
.
labels
)){
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
_optional
.
labels
)){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
}
}
}
}
...
@@ -2845,8 +2845,8 @@ module OneM2M_Testcases {
...
@@ -2845,8 +2845,8 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
//Check attribute 1
//Check attribute 1
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
PollingChannel
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
PollingChannel
_optional
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
PollingChannel
.
labels
)){
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
PollingChannel
_optional
.
labels
)){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
}
}
}
}
...
@@ -2873,8 +2873,8 @@ module OneM2M_Testcases {
...
@@ -2873,8 +2873,8 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
//Check attribute 1
//Check attribute 1
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
_optional
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
.
labels
)){
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
_optional
.
labels
)){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
}
}
}
}
...
@@ -2963,17 +2963,17 @@ module OneM2M_Testcases {
...
@@ -2963,17 +2963,17 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
_optional
))
{
//Check attribute 1
//Check attribute 1
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
.
expirationTime
!=
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
Container_optional
.
expirationTime
)){
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
_optional
.
expirationTime
!=
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
Container_optional
.
expirationTime
)){
setverdict
(
fail
,
testcasename
()
&
": Error: Expiration Time attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Expiration Time attribute not updated correctly"
)
}
}
//Check attribute 2
//Check attribute 2
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
.
maxNrOfInstances
!=
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
Container_optional
.
maxNrOfInstances
)){
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
_optional
.
maxNrOfInstances
!=
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
Container_optional
.
maxNrOfInstances
)){
setverdict
(
fail
,
testcasename
()
&
": Error: MaxNrOfInstances attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: MaxNrOfInstances attribute not updated correctly"
)
}
}
//Check attribute 3
//Check attribute 3
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
.
labels
)){
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Container
_optional
.
labels
)){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
}
}
}
}
...
@@ -3006,17 +3006,17 @@ module OneM2M_Testcases {
...
@@ -3006,17 +3006,17 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
_optional
))
{
//Check attribute 1
//Check attribute 1
if
(
not
match
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
.
groupName
,
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
Group_optional
.
groupName
))){
if
(
not
match
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
_optional
.
groupName
,
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
Group_optional
.
groupName
))){
setverdict
(
fail
,
testcasename
()
&
": Error: Expiration Time attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Expiration Time attribute not updated correctly"
)
}
}
//Check attribute 2
//Check attribute 2
if
(
not
match
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
.
accessControlPolicyIDs
,
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
Group_optional
.
accessControlPolicyIDs
))){
if
(
not
match
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
_optional
.
accessControlPolicyIDs
,
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
Group_optional
.
accessControlPolicyIDs
))){
setverdict
(
fail
,
testcasename
()
&
": Error: MaxNrOfInstances attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: MaxNrOfInstances attribute not updated correctly"
)
}
}
//Check attribute 3
//Check attribute 3
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
.
labels
)){
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Group
_optional
.
labels
)){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
}
}
}
}
...
@@ -3062,17 +3062,17 @@ module OneM2M_Testcases {
...
@@ -3062,17 +3062,17 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy
_optional
))
{
//Check attribute 1
//Check attribute 1
if
(
not
match
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy
.
privileges
,
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy_optional
.
privileges
))){
if
(
not
match
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy
_optional
.
privileges
,
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy_optional
.
privileges
))){
setverdict
(
fail
,
testcasename
()
&
": Error: Privileges attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Privileges attribute not updated correctly"
)
}
}
//Check attribute 2
//Check attribute 2
if
(
not
match
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy
.
announceTo
,
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy_optional
.
announceTo
))){
if
(
not
match
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy
_optional
.
announceTo
,
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy_optional
.
announceTo
))){
setverdict
(
fail
,
testcasename
()
&
": Error: Expiration Time attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Expiration Time attribute not updated correctly"
)
}
}
//Check attribute 3
//Check attribute 3
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy
.
labels
)){
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
AccessControlPolicy
_optional
.
labels
)){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
}
}
}
}
...
@@ -3100,17 +3100,17 @@ module OneM2M_Testcases {
...
@@ -3100,17 +3100,17 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
_optional
))
{
//Check attribute 1
//Check attribute 1
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
.
scheduleElement
!=
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
Schedule_optional
.
scheduleElement
)){
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
_optional
.
scheduleElement
!=
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
Schedule_optional
.
scheduleElement
)){
setverdict
(
fail
,
testcasename
()
&
": Error: Expiration Time attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Expiration Time attribute not updated correctly"
)
}
}
//Check attribute 2
//Check attribute 2
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
.
announceTo
!=
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
Schedule_optional
.
announceTo
)){
if
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
_optional
.
announceTo
!=
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
Schedule_optional
.
announceTo
)){
setverdict
(
fail
,
testcasename
()
&
": Error: MaxNrOfInstances attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: MaxNrOfInstances attribute not updated correctly"
)
}
}
//Check attribute 3
//Check attribute 3
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
.
labels
)){
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Schedule
_optional
.
labels
)){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
}
}
}
}
...
@@ -3139,15 +3139,15 @@ module OneM2M_Testcases {
...
@@ -3139,15 +3139,15 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
PollingChannel
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
PollingChannel
_optional
))
{
//Check attribute 1
//Check attribute 1
//Check attribute 2
//Check attribute 2
if
(
not
match
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
PollingChannel
.
accessControlPolicyIDs
,
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
PollingChannel_optional
.
accessControlPolicyIDs
))){
if
(
not
match
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
PollingChannel
_optional
.
accessControlPolicyIDs
,
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
PollingChannel_optional
.
accessControlPolicyIDs
))){
setverdict
(
fail
,
testcasename
()
&
": Error: ACPI attribute not added correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: ACPI attribute not added correctly"
)
}
}
//Check attribute 3
//Check attribute 3
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
PollingChannel
.
labels
)){
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
PollingChannel
_optional
.
labels
)){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
}
}
}
}
...
@@ -3177,17 +3177,17 @@ module OneM2M_Testcases {
...
@@ -3177,17 +3177,17 @@ module OneM2M_Testcases {
if
(
getverdict
==
pass
){
if
(
getverdict
==
pass
){
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
))
{
if
(
ischosen
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
_optional
))
{
//Check attribute 1
//Check attribute 1
if
(
not
match
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
.
labels
,
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
Subscription_optional
.
labels
))){
if
(
not
match
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
_optional
.
labels
,
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
Subscription_optional
.
labels
))){
setverdict
(
fail
,
testcasename
()
&
": Error: Expiration Time attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Expiration Time attribute not updated correctly"
)
}
}
//Check attribute 2
//Check attribute 2
if
(
not
match
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
.
accessControlPolicyIDs
,
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
Subscription_optional
.
accessControlPolicyIDs
))){
if
(
not
match
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
_optional
.
accessControlPolicyIDs
,
valueof
(
v_updateRequest
.
primitiveContent
.
any_1
[
0
].
Subscription_optional
.
accessControlPolicyIDs
))){
setverdict
(
fail
,
testcasename
()
&
": Error: MaxNrOfInstances attribute not updated correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: MaxNrOfInstances attribute not updated correctly"
)
}
}
//Check attribute 3
//Check attribute 3
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
.
expirationCounter
)){
if
(
ispresent
(
v_responsePrimitive
.
primitiveContent
.
any_1
[
0
].
Subscription
_optional
.
expirationCounter
)){
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
setverdict
(
fail
,
testcasename
()
&
": Error: Labels attribute not deleted correctly"
)
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
OneM2M_Types.ttcn
+
2
−
2
View file @
1f56801f
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
* @author ETSI
* @author ETSI
* @version $URL: https://forge.etsi.org/svn/oneM2M/trunk/ttcn/OneM2M_Types.ttcn $
* @version $URL: https://forge.etsi.org/svn/oneM2M/trunk/ttcn/OneM2M_Types.ttcn $
* $Id: OneM2M_Types.ttcn 9
7
2016-06-0
1 15:38:10
Z reinaortega $
* $Id: OneM2M_Types.ttcn 9
8
2016-06-0
2 07:34:39
Z reinaortega $
* @desc Test System module for oneM2M
* @desc Test System module for oneM2M
*
*
*/
*/
...
@@ -4411,5 +4411,5 @@ with {
...
@@ -4411,5 +4411,5 @@ with {
encode
"XML"
;
encode
"XML"
;
variant
"namespace as 'http://www.onem2m.org/xml/protocols' prefix 'm2m'"
;
variant
"namespace as 'http://www.onem2m.org/xml/protocols' prefix 'm2m'"
;
variant
"controlNamespace 'http://www.w3.org/2001/XMLSchema-instance' prefix 'xsi'"
;
variant
"controlNamespace 'http://www.w3.org/2001/XMLSchema-instance' prefix 'xsi'"
;
extension
"anytype charstring, AttributeList, AE, AccessControlPolicy, AccessControlPolicy_optional, ACP_update_invalid, AE_optional, AE_update_invalid,Container_optional, Container_update_invalid, ContentInstance_optional, ContentInstance_update_invalid, Group_optional, Group_update_invalid, Schedule_optional, Schedule_update_invalid, Subscription_optional, Subscription_update_invalid, PollingChannel_optional, PollingChannel_update_invalid"
extension
"anytype charstring,
AnyURI,
AttributeList, AE, AccessControlPolicy, AccessControlPolicy_optional, ACP_update_invalid, AE_optional, AE_update_invalid,Container_optional, Container_update_invalid, ContentInstance_optional, ContentInstance_update_invalid, Group_optional, Group_update_invalid, Schedule_optional, Schedule_update_invalid, Subscription_optional, Subscription_update_invalid, PollingChannel_optional, PollingChannel_update_invalid"
}
}
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