Attention is currently required from: dexter.
pespin has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37495?usp=email )
Change subject: eIM_Tests: Use real notificationAddress in ProfileINstallationResultData
......................................................................
Patch Set 1: Code-Review+1
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37495?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I337ef32a424875ca9d9be178ae96f1a76383dd38
Gerrit-Change-Number: 37495
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <pmaier(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-Attention: dexter <pmaier(a)sysmocom.de>
Gerrit-Comment-Date: Mon, 15 Jul 2024 14:53:50 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
Gerrit-MessageType: comment
pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37491?usp=email )
Change subject: asterisk: TC_internal_call_all_Nregistered: Answer Cancel when received
......................................................................
asterisk: TC_internal_call_all_Nregistered: Answer Cancel when received
Otherwise CANCEL is not answered until the MO+MT SIP UAs have fully
established the call, which causes Asterisk to retransmit the CANCEL
several times.
Change-Id: I72e9ecaf58156f3fe62c4fb2d8c74c82ab16aa78
---
M asterisk/Asterisk_Tests.ttcn
1 file changed, 23 insertions(+), 7 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/91/37491/1
diff --git a/asterisk/Asterisk_Tests.ttcn b/asterisk/Asterisk_Tests.ttcn
index 71d3576..916339a 100644
--- a/asterisk/Asterisk_Tests.ttcn
+++ b/asterisk/Asterisk_Tests.ttcn
@@ -373,16 +373,19 @@
/* Make sure the desired MT is the one picking up first the call: */
COORD.send(COORD_CMD_PICKUP) to vc_conn_list[vc_conn_mt_idx];
- interleave {
- [] COORD.receive(COORD_CMD_CALL_ESTABLISHED) from vc_conn_list[vc_conn_mo_idx];
- [] COORD.receive(COORD_CMD_CALL_ESTABLISHED) from vc_conn_list[vc_conn_mt_idx];
- }
-
- /* Pick up from other phone calls and expect CANCEL: */
for (var integer i := 0; i < num_conns; i := i + 1) {
if (i != vc_conn_mo_idx and i != vc_conn_mt_idx) {
COORD.send(COORD_CMD_PICKUP) to vc_conn_list[i];
- COORD.receive(COORD_CMD_CALL_CANCELLED) from vc_conn_list[i];
+ }
+ }
+
+ /* Pick up from other phone calls and expect CANCEL: */
+ var boolean wait_mo := true, wait_mt := true;
+ for (var integer i := 0; i < num_conns; i := i + 1) {
+ alt {
+ [wait_mo] COORD.receive(COORD_CMD_CALL_ESTABLISHED) from vc_conn_list[vc_conn_mo_idx] { wait_mo := false };
+ [wait_mt] COORD.receive(COORD_CMD_CALL_ESTABLISHED) from vc_conn_list[vc_conn_mt_idx] { wait_mt := false };
+ [] COORD.receive(COORD_CMD_CALL_CANCELLED);
}
}
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37491?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I72e9ecaf58156f3fe62c4fb2d8c74c82ab16aa78
Gerrit-Change-Number: 37491
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: newchange
Attention is currently required from: jolly, laforge, pespin.
Hello Jenkins Builder, jolly, laforge,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37481?usp=email
to look at the new patch set (#2).
The following approvals got outdated and were removed:
Code-Review+1 by jolly, Verified+1 by Jenkins Builder
Change subject: ttcn3-asterisk: Introduce test TC_ims_call_mo_2nd_mt_rejected
......................................................................
ttcn3-asterisk: Introduce test TC_ims_call_mo_2nd_mt_rejected
Change-Id: Id6577d0e9137c86855469904d347e95b5bcfa4a7
---
M asterisk/Asterisk_Tests.ttcn
M asterisk/IMS_ConnectionHandler.ttcn
M asterisk/expected-results.xml
3 files changed, 101 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/81/37481/2
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37481?usp=email
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Id6577d0e9137c86855469904d347e95b5bcfa4a7
Gerrit-Change-Number: 37481
Gerrit-PatchSet: 2
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: jolly <andreas(a)eversberg.eu>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Attention: jolly <andreas(a)eversberg.eu>
Gerrit-Attention: laforge <laforge(a)osmocom.org>
Gerrit-Attention: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: newpatchset