fixeria has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/21608 )


Change subject: BTS_Tests_OML: add new test case TC_ipa_rsl_connect_nack
......................................................................

BTS_Tests_OML: add new test case TC_ipa_rsl_connect_nack

Currently osmo-bts seems to be sending IPA RSL Connect ACK
unconditionally, even if the remote peer is not reachable.

Change-Id: Ibfa58f670401907801f610578dd9b4ebf155a83a
---
M bts/BTS_Tests_OML.ttcn
1 file changed, 25 insertions(+), 0 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks 
refs/changes/08/21608/1

diff --git a/bts/BTS_Tests_OML.ttcn b/bts/BTS_Tests_OML.ttcn
index 396ed38..6770dab 100644
--- a/bts/BTS_Tests_OML.ttcn
+++ b/bts/BTS_Tests_OML.ttcn
@@ -589,6 +589,30 @@
        }
 }

+/* Make sure that the IUT sends RSL Connect NACK when the remote is not 
reachable. */
+testcase TC_ipa_rsl_connect_nack() runs on BSC_OML_CT {
+       timer T := 2.0;
+
+       f_init_oml(testcasename());
+
+       /* Most likely, nobody is listening to this port */
+       OML.send(ts_OML_IPA_RslConnect(0, 65535));
+
+       T.start;
+       alt {
+       [] OML.receive(tr_OML_IPA_MsgType(NM_MT_IPACC_RSL_CONNECT_NACK)) {
+               setverdict(pass);
+               }
+       [] OML.receive(tr_OML_IPA_MsgType(NM_MT_IPACC_RSL_CONNECT_ACK)) {
+               setverdict(fail, "RSL Connect ACK is not expected");
+               }
+       [] OML.receive { repeat; }
+       [] T.timeout {
+               setverdict(fail, "Timeout waiting for RSL Connect NACK");
+               }
+       }
+}
+

 control {
        execute( TC_wrong_mdisc() );
@@ -606,6 +630,7 @@
        execute( TC_ts_opstart() );
        execute( TC_ts_opstart_noattr() );
        execute( TC_initial_state_reports() );
+       execute( TC_ipa_rsl_connect_nack() );
 }

 /* BTS:

--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/21608
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: Ibfa58f670401907801f610578dd9b4ebf155a83a
Gerrit-Change-Number: 21608
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanits...@sysmocom.de>
Gerrit-MessageType: newchange

Reply via email to