osmo-ttcn3-hacks/asterisk
Pau Espin de7a48529a asterisk: Use Titan TEXT encoder to implement AMI record enc/dec
f_ami_wait_for_prompt_str had to be fixed since it was returning content
like this:
"Response: Success\nMessage: Authentication accepted"
Instead, the TEXT encoding expects:
"Response: Success\nMessage: Authentication accepted\n"
which is actually more in line with proper expectancies.

Change-Id: If179e45307a7e42b81b28db6ee4b7bf5eeb8b5f1
2024-04-25 09:15:31 +00:00
..
AMI_Functions.ttcn asterisk: Use Titan TEXT encoder to implement AMI record enc/dec 2024-04-25 09:15:31 +00:00
Asterisk_Tests.cfg Introduce Asterisk_Tests testsuite 2024-04-02 08:22:08 +00:00
Asterisk_Tests.default Asterisk: Initial AMI support 2024-04-18 14:14:02 +02:00
Asterisk_Tests.ttcn asterisk: Split SIPConnHdlr to its own file 2024-04-18 19:54:42 +02:00
README.md Introduce Asterisk_Tests testsuite 2024-04-02 08:22:08 +00:00
SIP_ConnectionHandler.ttcn asterisk: Split SIPConnHdlr to its own file 2024-04-18 19:54:42 +02:00
expected-results.xml asterisk: Introduce tests TC_internal_call_all_*registered 2024-04-11 10:54:38 +02:00
gen_links.sh SIP_Templates: Make tag collisions harder 2024-04-18 20:17:42 +02:00
regen_makefile.sh SIP_Templates: Make tag collisions harder 2024-04-18 20:17:42 +02:00

README.md

  • Asterisk_Tests.ttcn

  • external interfaces

    • SIP (emulates SIP UAs)
    • VoLTE (emulates IMS server)

{% dot sip_tests.svg digraph G { rankdir=LR; Asterisk [label="IUT\nAsterisk",shape="box"]; ATS [label="ATS\nAsterisk_Tests.ttcn"];

ATS -> Asterisk [label="SIP"]; ATS -> Asterisk [label="VoLTE (IMS)"]; } %}