blob: fa09636443647ed58a2e86b9053aee254c659c9a [file] [log] [blame]
Daniel Willmannfdd0a6c2008-12-28 01:51:14 +00001/*
2 * (C) 2008 by Daniel Willmann <daniel@totalueberwachung.de>
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (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 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 */
20
21#include <stdio.h>
Holger Freyther59da07b2009-02-23 00:50:38 +000022#include <stdlib.h>
23#include <string.h>
Daniel Willmannfdd0a6c2008-12-28 01:51:14 +000024#include <sys/types.h>
25#include <openbsc/debug.h>
26#include <openbsc/msgb.h>
Holger Freyther59da07b2009-02-23 00:50:38 +000027#include <openbsc/gsm_utils.h>
Daniel Willmannfdd0a6c2008-12-28 01:51:14 +000028
Daniel Willmannfdd0a6c2008-12-28 01:51:14 +000029int main(int argc, char** argv)
30{
31 DEBUGP(DSMS, "SMS testing\n");
32 struct msgb *msg;
33 u_int8_t *sms;
Daniel Willmann6e6143e2008-12-28 21:38:26 +000034 u_int8_t i;
Daniel Willmannfdd0a6c2008-12-28 01:51:14 +000035
Holger Freyther59da07b2009-02-23 00:50:38 +000036 /* test 7-bit coding/decoding */
37 const char *input = "test text";
38 u_int8_t length;
Harald Welte7e310b12009-03-30 20:56:32 +000039 u_int8_t coded[256];
40 char result[256];
41
42 length = gsm_7bit_encode(coded, input);
43 gsm_7bit_decode(result, coded, length);
Holger Freyther59da07b2009-02-23 00:50:38 +000044 if (strcmp(result, input) != 0) {
45 printf("7 Bit coding failed... life sucks\n");
46 printf("Wanted: '%s' got '%s'\n", input, result);
47 }
Daniel Willmannfdd0a6c2008-12-28 01:51:14 +000048}
Holger Freyther0df0f872009-02-11 00:33:51 +000049
50/* stubs */
51void input_event(void) {}
Holger Freyther3281f6e2009-02-20 18:33:00 +000052void nm_state_event(void) {}