osmo-ttcn3-hacks/msc
Neels Hofmeyr e860fc49d9 msc: test auth options, and fall-back to no-auth
Test 12 permutations of
(auth optional,required) x (a5 '0', '0 3', '3') x (hlr has auth info)

In TC_auth_options_2(), expect behavior after implementing OS#4830: if
the HLR fails to return auth info and auth + ciph are configured
optional, fall back to no authentication. This test will start
succeeding starting with commit
I5feda196fa481dd8a46b0e4721c64b7c6600f0d1 in osmo-msc.git.

All other tests yield the current behavior of osmo-msc.

Related: I5feda196fa481dd8a46b0e4721c64b7c6600f0d1 (osmo-msc)
Related: OS#4830
Change-Id: I8e3b02ca83e56ef5349d85f08407509e19fa353c
2022-10-26 15:35:12 +00:00
..
BSC_ConnectionHandler.ttcn msc: test auth options, and fall-back to no-auth 2022-10-26 15:35:12 +00:00
MSC_Tests.cfg msc: add MSC_Tests_Iu.control to MSC_Tests.cfg 2022-08-07 15:48:17 +02:00
MSC_Tests.default msc: Add RANAP to msc tests 2019-04-30 19:07:47 +02:00
MSC_Tests.ttcn msc: test auth options, and fall-back to no-auth 2022-10-26 15:35:12 +00:00
MSC_Tests_Iu.ttcn msc: add tests for SMS and voice call while Paging 2020-05-11 17:33:05 +00:00
README.md Update README.md of several TTCN3 test suites 2019-11-15 18:49:09 +00:00
expected-results.xml update various expected-results.xml 2022-08-12 02:31:23 +00:00
gen_links.sh msc: add first a5/4 tests 2021-05-19 17:49:52 +00:00
osmo-msc.cfg msc/osmo-{msc,stp}.cfg: enable extended timestamp in logging 2021-12-14 12:59:04 +00:00
osmo-stp.cfg msc/osmo-{msc,stp}.cfg: enable extended timestamp in logging 2021-12-14 12:59:04 +00:00
regen_makefile.sh regen_makefile.sh: set executable name explicitly 2021-10-13 11:12:22 +02:00

README.md

MSC_Tests.ttcn

  • external interfaces
    • A: BSSAP/SCCP/M3UA (emulates BSC-side)
    • IuCS: RANAP/SCCP/M3UA (emulates HNBGW-side)
    • MNCC: MNCC/unix-domain (emulates ext. MNCC side)
    • MGW: MGCP (emulates MGW side)
    • GSUP (emulates HLR side)
    • SMPP (emulates ESME side)
    • VTY
    • CTRL

{% dot msc_tests.svg digraph G { rankdir=LR; MSC [label="IUT\nosmo-msc",shape="box"]; ATS [label="ATS\nMSC_Tests.ttcn"]; STP [label="STP\nosmo-stp"];

ATS -> MSC [label="MNCC"]; ATS -> MSC [label="SMPP",style="dashed"]; ATS -> MSC [label="CTRL"]; ATS -> MSC [label="VTY"]; MSC -> ATS [label="GSUP"]; MSC -> ATS [label="MGCP"]; ATS -> STP [label="A BSSAP\nSCCP/M3UA"]; MSC -> STP [label="A BSSAP\nSCCP/M3UA"]; ATS -> STP [label="IuCS RANAP\nSCCP/M3UA"]; MSC -> STP [label="IuCS RANAP\nSCCP/M3UA"]; } %}