osmo-ttcn3-hacks/bts
Pau Espin f28fd080fc pcu: Support Neighbor Address Resolution over PCUIF
New versions of osmo-pcu support Neighbor Address Resolution over this
interface, and deprecated the old CTRL interface.
Let's use it by default while still keeping support for the old one for
a while to avoid breakage of existing deployments.

Tests run to validate:
* Old osmo-pcu still passes tests using CTRL interface
* New osmo-pcu (with new iface support) still passes tests using CTRL
  interface
* New osmo-pcu (with new iface support) passes tests using new iface

Related: SYS#4971
Change-Id: I05f1aabc64fc5bc4740b0d8afd8990b485eacd50
2021-09-14 09:11:14 +00:00
..
BTS_Tests.cfg bts: Test forwarding PCUIF<->IPA/OSMO/PCU 2021-06-28 10:43:21 +02:00
BTS_Tests.default BTS_Tests: re-organize configuration of TRX/TS params 2020-11-24 11:58:49 +01:00
BTS_Tests.ttcn bts: add TC_early_immediate_assignment_pre_chan_ack 2021-08-23 19:15:12 +00:00
BTS_Tests_LAPDm.ttcn BTS_Tests: make Training Sequence Code configurable 2020-11-24 12:05:27 +01:00
BTS_Tests_OML.ttcn pcu: Support Neighbor Address Resolution over PCUIF 2021-09-14 09:11:14 +00:00
BTS_Tests_SMSCB.ttcn BTS_Tests_SMSCB: ensure f_shutdown() is called in all test cases 2021-06-30 08:01:09 +00:00
BTS_Tests_VAMOS.ttcn [VAMOS] BTS: call f_shutdown() in f_TC_vamos_exec_async() 2021-06-21 20:18:05 +00:00
BTS_Tests_perf.ttcn bts/BTS_Tests: add frequency hopping parameters 2020-05-29 22:33:13 +07:00
README.md Update README.md of several TTCN3 test suites 2019-11-15 18:49:09 +00:00
expected-results.xml bts: add first a5/4 tests 2021-05-17 20:28:26 +00:00
gen_links.sh BTS: equip ConnHdlr with the RTP emulation component 2021-07-16 16:05:52 +00:00
osmo-bsc.cfg {bsc,bts}/osmo-bsc.cfg: remove deprecated parameters 2021-03-19 07:19:19 +00:00
osmo-bts.cfg bts/osmo-bts.cfg: enable GSMTAP Um frame logging 2021-03-19 13:09:52 +01:00
regen_makefile.sh BTS: equip ConnHdlr with the RTP emulation component 2021-07-16 16:05:52 +00:00

README.md

BTS_Tests.ttcn

  • external interfaces
    • A-bis side: RSL (emulates BSC-side server)
    • Um side: L1CTL to control MS
    • PCU side: pcu_socket
    • VTY
    • CTRL

{% dot bts_tests.svg digraph G { rankdir=LR; { rank=same; BTS, BSC}; BTS [label="IUT\nosmo-bts-trx",shape="box"]; ATS [label="ATS\nBTS_Tests.ttcn"]; BSC [label="osmo-bsc\nOML only"]; BTS -> fake_trx [label="bursts"]; fake_trx -> trxcon [label="bursts"]; trxcon -> ATS [label="GSM MAC blocks"];

BTS -> BSC [label="A-bis OML"]; BTS -> ATS [label="A-bis RSL"];

ATS -> BTS [label="pcu_sock"]; ATS -> BSC [label="VTY"]; ATS -> BTS [label="CTRL"]; } %}