Some stuff was wrong and some was missing after new features being implemented in tests over time. Change-Id: I7a279592a68ffc76408a8e728e76151534265cc0changes/79/16079/3
parent
61122c8f35
commit
0361193a55
@ -0,0 +1,28 @@ |
||||
# BSCNAT_Tests.ttcn |
||||
|
||||
* external interfaces |
||||
* BSSAP/SCCP/IPA (SCCPLite) (emulates BSC-side and MSC-side) |
||||
* MGCP/UDP (emulates MSC-side MSC+MGW) |
||||
* MGCP/IPA (emulates BSC-side BSC+MGW) |
||||
* RTP (emulates BSC-side MGW and MSC-side MGW) |
||||
* Osmux (emulates BSC-side MGW) |
||||
* VTY |
||||
* CTRL |
||||
|
||||
{% dot bscnat_tests.svg |
||||
digraph G { |
||||
rankdir=LR; |
||||
BSCNAT [label="IUT\nosmo-bsc_nat",shape="box"]; |
||||
ATS [label="ATS\nBSC_Tests.ttcn"]; |
||||
|
||||
ATS -> BSCNAT [label="SCCPLite BSC-side"]; |
||||
BSCNAT -> ATS [label="SCCPLite MSC-side"]; |
||||
BSCNAT -> ATS [label="MGCP/UDP MSC-side", dir="both"]; |
||||
BSCNAT -> ATS [label="MGCP/IPA BSC-side"]; |
||||
ATS -> BSCNAT [label="CTRL"]; |
||||
ATS -> BSCNAT [label="VTY"]; |
||||
ATS -> BSCNAT [label="RTP BSC-side", dir="both"]; |
||||
ATS -> BSCNAT [label="RTP MSC-side", dir="both"]; |
||||
ATS -> BSCNAT [label="Osmux BSC-side", dir="both"]; |
||||
} |
||||
%} |
@ -1,24 +1,31 @@ |
||||
|
||||
# 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 (impllements HLR 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"]; |
||||
} |
||||
%} |
||||
|
@ -0,0 +1,18 @@ |
||||
# PCU_Tests.ttcn |
||||
|
||||
* external interfaces |
||||
* Gb (emulates SGSN side NS/BSSGP) |
||||
* unix pcu socket (emulates BTS) |
||||
* VTY |
||||
|
||||
{% dot msc_tests.svg |
||||
digraph G { |
||||
rankdir=LR; |
||||
PCU [label="IUT\nosmo-pcu",shape="box"]; |
||||
ATS [label="ATS\nPCU_Tests.ttcn"]; |
||||
|
||||
PCU -> ATS [label="Gb"]; |
||||
PCU -> ATS [label="pcu_sock"]; |
||||
ATS -> PCU [label="VTY"]; |
||||
} |
||||
%} |
@ -0,0 +1,18 @@ |
||||
# STP_Tests.ttcn |
||||
|
||||
* external interfaces |
||||
* M3UA/SCTP (can emulate both client and server side) |
||||
* IPA (can emulate both client and server side) |
||||
* VTY |
||||
|
||||
{% dot sip_tests.svg |
||||
digraph G { |
||||
rankdir=LR; |
||||
STP [label="IUT\nosmo-stp",shape="box"]; |
||||
ATS [label="ATS\nSTP_Tests.ttcn"]; |
||||
|
||||
ATS -> STP [label="M3UA", dir="both"]; |
||||
ATS -> STP [label="IPA", dir="both"]; |
||||
ATS -> STP [label="VTY"]; |
||||
} |
||||
%} |
Loading…
Reference in new issue