osmo-ttcn3-hacks/mgw
Philipp Maier 76a8d0160e MGCP_Test: ts_CRCX_no_lco: check media description instead of media attribute
The testcase ts_CRCX_no_lco looks at the media attributes to see
if it findes the expected default codec there. In this testcase
we expect PCMU/8000/1 as media attribute, but this is a codec from
the fixed payload type domain. The MGW may not list this info inside
the media attributes. Listing the payload type number in the media
description is sufficient. We should check this instead.

- Remove media attribute check
- Check meida description for PCMU (0)

Change-Id: I69600a1025e68011e8fc5d8bf22d842d9c63bf53
Related: OS#2658
2018-06-23 11:40:04 +00:00
..
MGCP_Test.cfg MGCP_Test: fix config file include path 2018-03-16 13:46:40 +01:00
MGCP_Test.default remove *.default from [EXECUTE] in *.default files 2018-03-13 14:30:55 +01:00
MGCP_Test.ttcn MGCP_Test: ts_CRCX_no_lco: check media description instead of media attribute 2018-06-23 11:40:04 +00:00
README.md Add README.md file for several suites 2018-06-14 18:55:36 +02:00
RTP_CodecPort_CtrlFunct.ttcn mgw: Add RTP_CodecPort throguh which we can send/receive RTP+RTCP 2017-11-18 13:28:07 +01:00
RTP_CodecPort_CtrlFunctDef.cc mgw: Add RTP_CodecPort throguh which we can send/receive RTP+RTCP 2017-11-18 13:28:07 +01:00
RTP_Endpoint.ttcn Print more self-explanatory error message on bind/connect failures 2018-05-23 20:27:02 +02:00
expected-results.xml MGCP_Test: Test non LCO crcx 2018-06-06 17:16:21 +02:00
gen_links.sh mgw: Add statistics to RTP_Emulation and link/build it in mgw test 2018-03-29 08:49:15 +02:00
regen_makefile.sh mgw: Add statistics to RTP_Emulation and link/build it in mgw test 2018-03-29 08:49:15 +02:00

README.md

== MGW_Test.ttcn

  • external interfaces
    • MGCP (emulates call agent)
    • RTP (stream source/sink)

{% dot mgw_tests.svg digraph G { rankdir=LR; MGW [label="IUT\nosmo-mgw",shape="box"]; ATS [label="ATS\nMGCP_Test.ttcn"];

ATS -> MGW [label="RTP"]; ATS -> MGW [label="MGCP"]; MGW -> ATS [label="RTP"]; } %}