blob: beae658e9e3b1d1bdccd1bf3fa0dfa3f5edb80f0 [file] [log] [blame]
Holger Hans Peter Freyther800d29d2009-06-10 12:36:38 +02001/*
2 * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01006 * it under the terms of the GNU Affero General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
Holger Hans Peter Freyther800d29d2009-06-10 12:36:38 +02008 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Holger Hans Peter Freyther800d29d2009-06-10 12:36:38 +020017 *
18 */
19
20#include <stdio.h>
Harald Welte6bfda782009-06-26 20:30:46 +020021#include <stdlib.h>
Holger Hans Peter Freyther800d29d2009-06-10 12:36:38 +020022
23#include <assert.h>
24
Holger Hans Peter Freyther08e324f2012-01-06 14:06:56 +010025#include <osmocom/core/application.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010026#include <osmocom/core/select.h>
Holger Hans Peter Freyther08e324f2012-01-06 14:06:56 +010027
Neels Hofmeyr2d521a02016-05-14 00:57:04 +020028#include <openbsc/common_bsc.h>
Holger Hans Peter Freyther800d29d2009-06-10 12:36:38 +020029#include <openbsc/abis_rsl.h>
Holger Hans Peter Freyther08e324f2012-01-06 14:06:56 +010030#include <openbsc/debug.h>
31#include <openbsc/gsm_subscriber.h>
Harald Welte7b423ed2016-06-19 18:06:02 +020032#include <openbsc/vlr.h>
Neels Hofmeyr8d878e82016-09-25 15:47:36 +020033
Alexander Chemerisff4cb112017-07-11 01:42:41 +063034void test_bts_debug_print(void)
35{
36 struct gsm_network *network;
37 struct gsm_bts *bts;
38 struct gsm_bts_trx *trx;
39
40 printf("Testing the lchan printing:");
41
42 /* Create a dummy network */
43 network = bsc_network_init(tall_bsc_ctx, 1, 1, NULL);
44 if (!network)
45 exit(1);
46 /* Add a BTS with some reasonanbly non-zero id */
47 bts = gsm_bts_alloc(network, 45);
48 /* Add a second TRX to test on multiple TRXs */
49 gsm_bts_trx_alloc(bts);
50
51 llist_for_each_entry(trx, &bts->trx_list, list) {
52 char *name = gsm_lchan_name(&trx->ts[3].lchan[4]);
53
54 if (name)
55 printf(" %s", name);
56 else
57 printf("NULL name");
58 }
59 printf("\n");
60}
61
62
Neels Hofmeyre289a2a2016-09-25 15:58:01 +020063void test_dyn_ts_subslots(void)
64{
65 struct gsm_bts_trx_ts ts;
66
67 printf("Testing subslot numbers for pchan types\n");
68
69 ts.pchan = GSM_PCHAN_TCH_F;
70 OSMO_ASSERT(ts_subslots(&ts) == 1);
71
72 ts.pchan = GSM_PCHAN_TCH_H;
73 OSMO_ASSERT(ts_subslots(&ts) == 2);
74
75 ts.pchan = GSM_PCHAN_PDCH;
76 OSMO_ASSERT(ts_subslots(&ts) == 0);
77
78 ts.pchan = GSM_PCHAN_TCH_F_PDCH;
79 ts.flags = 0; /* TCH_F mode */
80 OSMO_ASSERT(ts_subslots(&ts) == 1);
81 ts.flags = TS_F_PDCH_ACTIVE;
Neels Hofmeyrc3f72f62016-09-25 15:33:02 +020082 OSMO_ASSERT(ts_subslots(&ts) == 0);
Neels Hofmeyre289a2a2016-09-25 15:58:01 +020083
84 ts.pchan = GSM_PCHAN_TCH_F_TCH_H_PDCH;
85 ts.dyn.pchan_is = GSM_PCHAN_TCH_F;
86 OSMO_ASSERT(ts_subslots(&ts) == 1);
87 ts.dyn.pchan_is = GSM_PCHAN_TCH_H;
88 OSMO_ASSERT(ts_subslots(&ts) == 2);
89 ts.dyn.pchan_is = GSM_PCHAN_PDCH;
90 OSMO_ASSERT(ts_subslots(&ts) == 0);
91}
92
Neels Hofmeyr8d878e82016-09-25 15:47:36 +020093int main(int argc, char **argv)
94{
95 osmo_init_logging(&log_info);
96
Neels Hofmeyre289a2a2016-09-25 15:58:01 +020097 test_dyn_ts_subslots();
Alexander Chemerisff4cb112017-07-11 01:42:41 +063098 test_bts_debug_print();
Holger Hans Peter Freyther08e324f2012-01-06 14:06:56 +010099
100 return EXIT_SUCCESS;
Holger Hans Peter Freyther800d29d2009-06-10 12:36:38 +0200101}
102
Harald Weltef338a032011-01-14 15:55:42 +0100103void _abis_nm_sendmsg() {}
Holger Hans Peter Freyther7673ce42009-08-10 06:40:05 +0200104void sms_alloc() {}
Holger Hans Peter Freyther900394a2013-12-27 20:10:24 +0100105void sms_free() {}
Holger Hans Peter Freyther78891072010-09-06 09:36:02 +0800106void gsm_net_update_ctype(struct gsm_network *network) {}
Holger Hans Peter Freytherd9cdd052010-12-21 13:43:52 +0100107void gsm48_secure_channel() {}
Holger Hans Peter Freytherffccb772010-12-28 17:47:43 +0100108void paging_request_stop() {}
Holger Hans Peter Freyther763b42a2010-12-29 11:07:22 +0100109void vty_out() {}
Holger Hans Peter Freyther800d29d2009-06-10 12:36:38 +0200110
Harald Welte7b423ed2016-06-19 18:06:02 +0200111void ipa_client_conn_clear_queue() {}
112void ipa_client_conn_close() {}
113void ipa_client_conn_create() {}
114void ipa_client_conn_destroy() {}
115void ipa_client_conn_open() {}
116void ipa_client_conn_send() {}
117void ipa_msg_push_header() {}
118void ipaccess_bts_handle_ccm() {}
Holger Hans Peter Freyther98657d52010-01-11 16:42:07 +0100119
Harald Welte7b423ed2016-06-19 18:06:02 +0200120struct tlv_definition nm_att_tlvdef;