osmo_epdg: Write slide for TTCN-3 testsuite

This commit is contained in:
Pau Espin 2024-04-25 12:59:07 +02:00
parent 8e2f169375
commit 9dfd8e6ee2
2 changed files with 22 additions and 2 deletions

View File

@ -74,9 +74,12 @@ include::osmo_epdg_sample_cfg_file.adoc[]
* TODO: Talk about ansible-prototype and the manual tests we did
* Tell how to test with SWu-EMulator
== TTCN-3
== TTCN-3: EPDG_Tests
* TODO-pespin: Talk about EPDG_Tests
include::ttcn3_component_diagram.adoc[]
* Extra script to set up iface + routing for userplane in docker-playground setup
* 15 tests so far
== Future work

View File

@ -0,0 +1,17 @@
[graphviz]
----
digraph G {
rankdir=LR;
ATS [label="ATS\nEPDG_Tests.ttcn"];
EPDG [label="EPDG\nosmo-epdg",shape="box", color=red];
GTP_KERN [label="gtp\nkernel-module", shape="box"];
ATS -> EPDG [label="CEAI (GSUP)"];
ATS -> EPDG [label="S6b (Diameter)"];
EPDG -> ATS [label="SWx (Diameter)"]
EPDG -> ATS [label="S2b (GTPv2C)"];
ATS -> EPDG [label="IP traffic (to/from strongswan ipsec)", style=dashed];
EPDG -> GTP_KERN [label="netlink"]
GTP_KERN -> ATS [label="IP traffic (GTPv1U to/from UPF)", style=dashed]
}
----