blob: 769df49fe11f22216acb9f3f5c6e1378398d1e3b [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',
Pau Espin Pedrolb26f32a2017-09-14 13:52:28 +020030 nominal_power='val_trx_nominal_power_trx0',
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020031 max_power_red='val_trx_max_power_red_trx0',
32 timeslot_list=mock_timeslot_list),
33 dict(arfcn='val_trx_arfcn_trx1',
Pau Espin Pedrolb26f32a2017-09-14 13:52:28 +020034 nominal_power='val_trx_nominal_power_trx1',
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020035 max_power_red='val_trx_max_power_red_trx1',
36 timeslot_list=mock_timeslot_list),
37 )
38}
39
Pau Espin Pedrol2d16f6f2017-05-30 15:33:57 +020040mock_esme = {
41 'system_id': 'val_system_id',
42 'password': 'val_password'
43}
44
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020045def clone_mod(d, val_ext):
46 c = dict(d)
47 for name in c.keys():
48 if isinstance(c[name], str):
49 c[name] = c[name] + val_ext
50 elif isinstance(c[name], dict):
51 c[name] = clone_mod(c[name], val_ext)
52 return c
53
54mock_bts0 = clone_mod(mock_bts, '_bts0')
55mock_bts1 = clone_mod(mock_bts, '_bts1')
56
Pau Espin Pedrol2d16f6f2017-05-30 15:33:57 +020057mock_esme0 = clone_mod(mock_esme, '_esme0')
58mock_esme1 = clone_mod(mock_esme, '_esme1')
59mock_esme1['password'] = ''
60
Neels Hofmeyr3531a192017-03-28 14:30:28 +020061vals = dict(nitb=dict(
62 net=dict(
63 mcc='val_mcc',
64 mnc='val_mnc',
65 short_name='val_short_name',
66 long_name='val_long_name',
67 auth_policy='val_auth_policy',
68 encryption='val_encryption',
69 bts_list=(mock_bts0, mock_bts1)
70 ),
Neels Hofmeyr4f59ba62017-05-22 20:04:05 +020071 ip_address=dict(addr='val_ip_address'),
72 ),
Pau Espin Pedrol2d16f6f2017-05-30 15:33:57 +020073 smsc=dict(
74 policy='val_smsc_policy',
75 esme_list=(mock_esme0, mock_esme1)
76 ),
Neels Hofmeyr3531a192017-03-28 14:30:28 +020077 )
Neels Hofmeyrdae3d3c2017-03-28 12:16:58 +020078
79print(template.render('osmo-nitb.cfg', vals))
80
81print('- Testing: expect to fail on invalid templates dir')
82try:
83 template.set_templates_dir('non-existing dir')
84 sys.stderr.write('Error: setting non-existing templates dir should raise RuntimeError\n')
85 assert(False)
86except RuntimeError:
87 # not logging exception to omit non-constant path name from expected output
88 print('sucess: setting non-existing templates dir raised RuntimeError\n')
89 pass
90
91# vim: expandtab tabstop=4 shiftwidth=4