blob: f8c32a5264e4fbfe70dec977314700347f3ce4e7 [file] [log] [blame]
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +02001#!/usr/bin/env python3
2
3import _prep
4
5import sys
6import os
7
8from osmo_gsm_tester import template, log
9
10log.set_level(log.C_CNF, log.L_DBG)
11
12print('- Testing: fill a config file with values')
13
14mock_timeslot_list=(
15 { 'phys_chan_config': 'val_phys_chan_config_0' },
16 { 'phys_chan_config': 'val_phys_chan_config_1' },
17 { 'phys_chan_config': 'val_phys_chan_config_2' },
18 { 'phys_chan_config': 'val_phys_chan_config_3' },
19 )
20
21mock_bts = {
Neels Hofmeyr2694a9d2017-04-27 19:48:09 +020022 'osmobsc_bts_type': 'val_type',
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020023 'band': 'val_band',
24 'location_area_code': 'val_bts.location_area_code',
25 'base_station_id_code': 'val_bts.base_station_id_code',
Neels Hofmeyr3531a192017-03-28 14:30:28 +020026 'ipa_unit_id': 'val_bts.unit_id',
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020027 'stream_id': 'val_bts.stream_id',
28 'trx_list': (
29 dict(arfcn='val_trx_arfcn_trx0',
30 max_power_red='val_trx_max_power_red_trx0',
31 timeslot_list=mock_timeslot_list),
32 dict(arfcn='val_trx_arfcn_trx1',
33 max_power_red='val_trx_max_power_red_trx1',
34 timeslot_list=mock_timeslot_list),
35 )
36}
37
Pau Espin Pedrol2d16f6f2017-05-30 15:33:57 +020038mock_esme = {
39 'system_id': 'val_system_id',
40 'password': 'val_password'
41}
42
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020043def clone_mod(d, val_ext):
44 c = dict(d)
45 for name in c.keys():
46 if isinstance(c[name], str):
47 c[name] = c[name] + val_ext
48 elif isinstance(c[name], dict):
49 c[name] = clone_mod(c[name], val_ext)
50 return c
51
52mock_bts0 = clone_mod(mock_bts, '_bts0')
53mock_bts1 = clone_mod(mock_bts, '_bts1')
54
Pau Espin Pedrol2d16f6f2017-05-30 15:33:57 +020055mock_esme0 = clone_mod(mock_esme, '_esme0')
56mock_esme1 = clone_mod(mock_esme, '_esme1')
57mock_esme1['password'] = ''
58
Neels Hofmeyr3531a192017-03-28 14:30:28 +020059vals = dict(nitb=dict(
60 net=dict(
61 mcc='val_mcc',
62 mnc='val_mnc',
63 short_name='val_short_name',
64 long_name='val_long_name',
65 auth_policy='val_auth_policy',
66 encryption='val_encryption',
67 bts_list=(mock_bts0, mock_bts1)
68 ),
Neels Hofmeyr4f59ba62017-05-22 20:04:05 +020069 ip_address=dict(addr='val_ip_address'),
70 ),
Pau Espin Pedrol2d16f6f2017-05-30 15:33:57 +020071 smsc=dict(
72 policy='val_smsc_policy',
73 esme_list=(mock_esme0, mock_esme1)
74 ),
Neels Hofmeyr3531a192017-03-28 14:30:28 +020075 )
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020076
77print(template.render('osmo-nitb.cfg', vals))
78
79print('- Testing: expect to fail on invalid templates dir')
80try:
81 template.set_templates_dir('non-existing dir')
82 sys.stderr.write('Error: setting non-existing templates dir should raise RuntimeError\n')
83 assert(False)
84except RuntimeError:
85 # not logging exception to omit non-constant path name from expected output
86 print('sucess: setting non-existing templates dir raised RuntimeError\n')
87 pass
88
89# vim: expandtab tabstop=4 shiftwidth=4