Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
TST
ATS
Commits
6aacf723
Commit
6aacf723
authored
Feb 07, 2018
by
Antonio Castillo Verdugo
Browse files
Fix
#15
Signed-off-by:
acverdugo
<
acverdugo@at4wireless.com
>
parent
0e269726
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
LibOneM2M/OneM2M_Functions.ttcn
LibOneM2M/OneM2M_Functions.ttcn
+1
-0
OneM2M_PermutationFunctions.ttcn
OneM2M_PermutationFunctions.ttcn
+11
-2
No files found.
LibOneM2M/OneM2M_Functions.ttcn
View file @
6aacf723
...
...
@@ -35,6 +35,7 @@ module OneM2M_Functions {
// Map
map
(
self
:
mcaPort
,
system
:
mcaPort
);
map
(
self
:
mcaPortIn
,
system
:
mcaPortIn
);
map
(
self
:
acPort
,
system
:
acPort
);
activate
(
a_default
());
...
...
OneM2M_PermutationFunctions.ttcn
View file @
6aacf723
...
...
@@ -4772,7 +4772,7 @@ module OneM2M_PermutationFunctions {
// Preamble
if
(
p_resourceType
!=
int2
)
{
v_aeIndex
:=
f_cse_preamble_registerAe
();
//c_CRUDNDi);
v_aeIndex
:=
f_cse_preamble_registerAe
(
-
,
{
f_getAnnouncementTargetPoA
(
"HTTP"
,
PX_AE1_ADDRESS
,
""
)}
);
//c_CRUDNDi);
}
if
(
p_resourceType
!=
int1
)
{
...
...
@@ -4797,7 +4797,16 @@ module OneM2M_PermutationFunctions {
//Test Body
v_request
:=
f_getUpdateRequestPrimitive
(
p_resourceType
,
v_resourceIndex
,
p_updateRequestPrimitive
);
mcaPort
.
send
(
m_request
(
v_request
));
//CSEBase
if
(
p_resourceType
==
int23
)
{
//Subscription
v_request
.
primitiveContent
.
subscription
.
notificationURI
:=
{
f_getResourceAddress
(
v_aeIndex
)};
}
mcaPort
.
send
(
m_request
(
v_request
));
if
(
p_resourceType
==
int23
)
{
//Subscription
f_cse_notifyProcedure_subscriptionVerificationHandler
();
}
tc_ac
.
start
;
alt
{
[]
mcaPort
.
receive
(
mw_response
(
mw_responsePrimitive
(
int2004
)))
->
value
vc_response
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment