aboutsummaryrefslogtreecommitdiffstats
path: root/sgsn/README.md
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-06-14 18:55:33 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2018-06-14 18:55:36 +0200
commita4cecf5af7ee37e3b17e22f609987abc702a6b2d (patch)
treeeff02c5787ab42fc768264f2209520a68268792a /sgsn/README.md
parent99f3ca0c4852a5f6dd0c40ac756d290cc036b6f5 (diff)
Add README.md file for several suites
Content grabbed from [1] and converted to markdown as it's more probable to have it displayed correctly on popular git repo hosting platforms. Syntax for embedded graphviz taken from [2]. [1] http://git.gnumonks.org/laforge-slides/plain/2018/osmodevcon2018-ttcn3_test_suites/osmodevcon2018-ttcn3_test_suites.adoc [2] https://github.com/stlehmann/markdown-graphviz Change-Id: I9aad03e605569e9613665a7585d60bf308bcb54f
Diffstat (limited to 'sgsn/README.md')
-rw-r--r--sgsn/README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/sgsn/README.md b/sgsn/README.md
new file mode 100644
index 00000000..4ed7ea4a
--- /dev/null
+++ b/sgsn/README.md
@@ -0,0 +1,18 @@
+# SGSN_Tests.ttcn
+
+* external interfaces
+ * Gb (emulates PCU side NS/BSSGP + MS)
+ * GSUP (emulates HLR)
+ * VTY
+
+{% dot sgsn_tests.svg
+digraph G {
+ rankdir=LR;
+ SGSN [label="SGSN\nosmo-sgsn",shape="box"];
+ ATS [label="ATS\nSGSN_Tests.ttcn"];
+
+ ATS -> SGSN [label="Gb"];
+ SGSN-> ATS [label="Gp (GTP)"];
+ ATS -> SGSN [label="VTY"];
+}
+%}