blob: 2bdacec634bcb455bc0f0c75506a9a9312190e75 [file] [log] [blame]
Neels Hofmeyr3531a192017-03-28 14:30:28 +02001# osmo_gsm_tester: specifics for running a sysmoBTS
2#
3# Copyright (C) 2016-2017 by sysmocom - s.f.m.c. GmbH
4#
5# Author: Neels Hofmeyr <neels@hofmeyr.de>
6#
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU Affero General Public License as
9# published by the Free Software Foundation, either version 3 of the
10# License, or (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU Affero General Public License for more details.
16#
17# You should have received a copy of the GNU Affero General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20import os
21from . import log, config, util, template, process
22
23class OsmoBtsTrx(log.Origin):
24 suite_run = None
25 nitb = None
26 run_dir = None
Neels Hofmeyr3531a192017-03-28 14:30:28 +020027 inst = None
28 env = None
29
30 BIN_TRX = 'osmo-trx'
31 BIN_BTS_TRX = 'osmo-bts-trx'
32 BIN_PCU = 'osmo-pcu'
33
34 def __init__(self, suite_run, conf):
35 self.suite_run = suite_run
36 self.conf = conf
37 self.set_name('osmo-bts-trx')
38 self.set_log_category(log.C_RUN)
Neels Hofmeyr3531a192017-03-28 14:30:28 +020039 self.env = {}
40
41 def start(self):
42 if self.nitb is None:
43 raise RuntimeError('BTS needs to be added to a NITB before it can be started')
44 self.suite_run.poll()
45
46 self.log('Starting to connect to', self.nitb)
47 self.run_dir = util.Dir(self.suite_run.trial.get_run_dir().new_dir(self.name()))
48 self.configure()
49
50 self.inst = util.Dir(os.path.abspath(self.suite_run.trial.get_inst('osmo-bts-trx')))
Your Name3c6673a2017-04-08 18:52:39 +020051 lib = self.inst.child('lib')
52 if not os.path.isdir(lib):
53 raise RuntimeError('No lib/ in %r' % self.inst)
54 self.env = { 'LD_LIBRARY_PATH': lib }
Neels Hofmeyr3531a192017-03-28 14:30:28 +020055
56 self.launch_process(OsmoBtsTrx.BIN_TRX)
57 self.launch_process(OsmoBtsTrx.BIN_BTS_TRX, '-r', '1', '-c', os.path.abspath(self.config_file))
58 #self.launch_process(OsmoBtsTrx.BIN_PCU, '-r', '1')
59 self.suite_run.poll()
60
61 def launch_process(self, binary_name, *args):
Neels Hofmeyr3531a192017-03-28 14:30:28 +020062 binary = os.path.abspath(self.inst.child('bin', binary_name))
63 run_dir = self.run_dir.new_dir(binary_name)
64 if not os.path.isfile(binary):
65 raise RuntimeError('Binary missing: %r' % binary)
66 proc = process.Process(binary_name, run_dir,
67 (binary,) + args,
68 env=self.env)
Neels Hofmeyr3531a192017-03-28 14:30:28 +020069 self.suite_run.remember_to_stop(proc)
70 proc.launch()
71
72 def configure(self):
73 if self.nitb is None:
74 raise RuntimeError('BTS needs to be added to a NITB before it can be configured')
75 self.config_file = self.run_dir.new_file('osmo-bts-trx.cfg')
76 self.dbg(config_file=self.config_file)
77
78 values = dict(osmo_bts_trx=config.get_defaults('osmo_bts_trx'))
79 config.overlay(values, self.suite_run.config())
80 config.overlay(values, dict(osmo_bts_trx=dict(oml_remote_ip=self.nitb.addr())))
81 config.overlay(values, dict(osmo_bts_trx=self.conf))
82 self.dbg(conf=values)
83
84 with open(self.config_file, 'w') as f:
85 r = template.render('osmo-bts-trx.cfg', values)
86 self.dbg(r)
87 f.write(r)
88
89 def conf_for_nitb(self):
90 values = config.get_defaults('nitb_bts')
91 config.overlay(values, config.get_defaults('osmo_bts_sysmo'))
92 config.overlay(values, self.conf)
93 config.overlay(values, { 'type': 'sysmobts' })
94 self.dbg(conf=values)
95 return values
96
97 def set_nitb(self, nitb):
98 self.nitb = nitb
99
100# vim: expandtab tabstop=4 shiftwidth=4