blob: 0c8363254ad8b11e3afaed1c08a5b90ee0385976 [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',
Pau Espin Pedrol4ccce7c2017-11-07 11:13:20 +010025 'cell_identity': 'val_bts.cell_identity',
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020026 'base_station_id_code': 'val_bts.base_station_id_code',
Neels Hofmeyr3531a192017-03-28 14:30:28 +020027 'ipa_unit_id': 'val_bts.unit_id',
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020028 'stream_id': 'val_bts.stream_id',
29 'trx_list': (
30 dict(arfcn='val_trx_arfcn_trx0',
Pau Espin Pedrolb26f32a2017-09-14 13:52:28 +020031 nominal_power='val_trx_nominal_power_trx0',
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020032 max_power_red='val_trx_max_power_red_trx0',
33 timeslot_list=mock_timeslot_list),
34 dict(arfcn='val_trx_arfcn_trx1',
Pau Espin Pedrolb26f32a2017-09-14 13:52:28 +020035 nominal_power='val_trx_nominal_power_trx1',
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020036 max_power_red='val_trx_max_power_red_trx1',
37 timeslot_list=mock_timeslot_list),
38 )
39}
40
Pau Espin Pedrol2d16f6f2017-05-30 15:33:57 +020041mock_esme = {
42 'system_id': 'val_system_id',
43 'password': 'val_password'
44}
45
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020046def clone_mod(d, val_ext):
47 c = dict(d)
48 for name in c.keys():
49 if isinstance(c[name], str):
50 c[name] = c[name] + val_ext
51 elif isinstance(c[name], dict):
52 c[name] = clone_mod(c[name], val_ext)
53 return c
54
55mock_bts0 = clone_mod(mock_bts, '_bts0')
56mock_bts1 = clone_mod(mock_bts, '_bts1')
57
Pau Espin Pedrol2d16f6f2017-05-30 15:33:57 +020058mock_esme0 = clone_mod(mock_esme, '_esme0')
59mock_esme1 = clone_mod(mock_esme, '_esme1')
60mock_esme1['password'] = ''
61
Neels Hofmeyr3531a192017-03-28 14:30:28 +020062vals = dict(nitb=dict(
63 net=dict(
64 mcc='val_mcc',
65 mnc='val_mnc',
66 short_name='val_short_name',
67 long_name='val_long_name',
68 auth_policy='val_auth_policy',
69 encryption='val_encryption',
70 bts_list=(mock_bts0, mock_bts1)
71 ),
Neels Hofmeyr4f59ba62017-05-22 20:04:05 +020072 ip_address=dict(addr='val_ip_address'),
73 ),
Pau Espin Pedrol2d16f6f2017-05-30 15:33:57 +020074 smsc=dict(
75 policy='val_smsc_policy',
76 esme_list=(mock_esme0, mock_esme1)
77 ),
Neels Hofmeyr3531a192017-03-28 14:30:28 +020078 )
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020079
80print(template.render('osmo-nitb.cfg', vals))
81
82print('- Testing: expect to fail on invalid templates dir')
83try:
84 template.set_templates_dir('non-existing dir')
85 sys.stderr.write('Error: setting non-existing templates dir should raise RuntimeError\n')
86 assert(False)
87except RuntimeError:
88 # not logging exception to omit non-constant path name from expected output
89 print('sucess: setting non-existing templates dir raised RuntimeError\n')
90 pass
91
92# vim: expandtab tabstop=4 shiftwidth=4