blob: 0cebc0969862db2eb156fceb10d37224c7fe9e9c [file] [log] [blame]
Pau Espin Pedrolfeb66e72019-03-04 18:37:04 +01001# osmo_gsm_tester: specifics for running a osmo-bts-oc2g
2#
3# Copyright (C) 2019 by sysmocom - s.f.m.c. GmbH
4#
5# Author: Pau Espin Pedrol <pespin@sysmocom.de>
6#
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU 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 General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20import os
21import pprint
Pau Espin Pedrole8bbcbf2020-04-10 19:51:31 +020022from .core import log, config, util, template, process, remote
23from . import pcu_oc2g, bts_osmo
Pau Espin Pedrolfeb66e72019-03-04 18:37:04 +010024
25class OsmoBtsOC2G(bts_osmo.OsmoBts):
26##############
27# PROTECTED
28##############
29
30 REMOTE_DIR = '/osmo-gsm-tester-bts'
31 BTS_OC2G_BIN = 'osmo-bts-oc2g'
32 BTS_OC2G_CFG = 'osmo-bts-oc2g.cfg'
33
34 def __init__(self, suite_run, conf):
35 super().__init__(suite_run, conf, OsmoBtsOC2G.BTS_OC2G_BIN, 'osmo_bts_oc2g')
36 self.run_dir = None
37 self.inst = None
38 self.remote_inst = None
39 self.remote_dir = None
Pau Espin Pedrolbd552f92020-04-10 02:18:05 +020040 self.proc_bts = None
Pau Espin Pedrolfeb66e72019-03-04 18:37:04 +010041 self.remote_user = 'root'
42
43 def _direct_pcu_enabled(self):
44 return util.str2bool(self.conf.get('direct_pcu'))
45
Pau Espin Pedrolfeb66e72019-03-04 18:37:04 +010046 def create_pcu(self):
47 return pcu_oc2g.OsmoPcuOC2G(self.suite_run, self, self.conf)
48
49 def configure(self):
50 if self.bsc is None:
51 raise RuntimeError('BTS needs to be added to a BSC or NITB before it can be configured')
52
53 self.config_file = self.run_dir.new_file(OsmoBtsOC2G.BTS_OC2G_CFG)
54 self.dbg(config_file=self.config_file)
55
56 values = { 'osmo_bts_oc2g': config.get_defaults('osmo_bts_oc2g') }
57 config.overlay(values, self.suite_run.config())
58 config.overlay(values, {
59 'osmo_bts_oc2g': {
60 'oml_remote_ip': self.bsc.addr(),
61 'pcu_socket_path': self.pcu_socket_path(),
62 }
63 })
64 config.overlay(values, { 'osmo_bts_oc2g': self.conf })
65
66 self.dbg('OSMO-BTS-OC2G CONFIG:\n' + pprint.pformat(values))
67
68 with open(self.config_file, 'w') as f:
69 r = template.render(OsmoBtsOC2G.BTS_OC2G_CFG, values)
70 self.dbg(r)
71 f.write(r)
72
73########################
74# PUBLIC - INTERNAL API
75########################
76 def pcu_socket_path(self):
77 return os.path.join(OsmoBtsOC2G.REMOTE_DIR, 'pcu_bts')
78
79 def conf_for_bsc(self):
80 values = self.conf_for_bsc_prepare()
81 # Hack until we have proper ARFCN resource allocation support (OS#2230)
82 band = values.get('band')
83 trx_list = values.get('trx_list')
84 if band == 'GSM-900':
85 for trx_i in range(len(trx_list)):
86 config.overlay(trx_list[trx_i], { 'arfcn' : str(50 + trx_i * 2) })
87 self.dbg(conf=values)
88 return values
89
90###################
91# PUBLIC (test API included)
92###################
93 # We get log from ssh stdout instead of usual stderr.
94 def ready_for_pcu(self):
95 if not self.proc_bts or not self.proc_bts.is_running:
96 return False
97 return 'BTS is up' in (self.proc_bts.get_stdout() or '')
98
99 def start(self, keepalive=False):
100 if self.bsc is None:
101 raise RuntimeError('BTS needs to be added to a BSC or NITB before it can be started')
102 log.log('Starting OsmoBtsOC2G to connect to', self.bsc)
103 self.run_dir = util.Dir(self.suite_run.get_test_run_dir().new_dir(self.name()))
104 self.configure()
105
106 self.inst = util.Dir(os.path.abspath(self.suite_run.trial.get_inst(OsmoBtsOC2G.BTS_OC2G_BIN)))
107 lib = self.inst.child('lib')
108 if not os.path.isdir(lib):
109 raise log.Error('No lib/ in', self.inst)
110 if not self.inst.isfile('bin', OsmoBtsOC2G.BTS_OC2G_BIN):
111 raise log.Error('No osmo-bts-oc2g binary in', self.inst)
112
Pau Espin Pedrol2eafb032020-01-29 17:56:14 +0100113 rem_host = remote.RemoteHost(self.run_dir, self.remote_user, self.remote_addr())
114 remote_prefix_dir = util.Dir(OsmoBtsOC2G.REMOTE_DIR)
115 self.remote_inst = util.Dir(remote_prefix_dir.child(os.path.basename(str(self.inst))))
116 remote_run_dir = util.Dir(remote_prefix_dir.child(OsmoBtsOC2G.BTS_OC2G_BIN))
Pau Espin Pedrolfeb66e72019-03-04 18:37:04 +0100117 remote_config_file = remote_run_dir.child(OsmoBtsOC2G.BTS_OC2G_CFG)
Pau Espin Pedrolfeb66e72019-03-04 18:37:04 +0100118
Pau Espin Pedrol2eafb032020-01-29 17:56:14 +0100119 rem_host.recreate_remote_dir(self.remote_inst)
120 rem_host.scp('scp-inst-to-remote', str(self.inst), remote_prefix_dir)
121 rem_host.create_remote_dir(remote_run_dir)
122 rem_host.scp('scp-cfg-to-remote', self.config_file, remote_config_file)
123
124 remote_lib = self.remote_inst.child('lib')
125 remote_binary = self.remote_inst.child('bin', OsmoBtsOC2G.BTS_OC2G_BIN)
Pau Espin Pedrolfeb66e72019-03-04 18:37:04 +0100126 args = ('LD_LIBRARY_PATH=%s' % remote_lib,
127 remote_binary, '-c', remote_config_file, '-r', '1',
128 '-i', self.bsc.addr())
129
130 if self._direct_pcu_enabled():
131 args += ('-M',)
132
Pau Espin Pedrolbd552f92020-04-10 02:18:05 +0200133 self.proc_bts = rem_host.RemoteProcess(OsmoBtsOC2G.BTS_OC2G_BIN, args)
134 self.suite_run.remember_to_stop(self.proc_bts, keepalive)
135 self.proc_bts.launch()
Pau Espin Pedrolfeb66e72019-03-04 18:37:04 +0100136# vim: expandtab tabstop=4 shiftwidth=4