blob: 2ce2cc6c493da592c0dfac2c01f4923c179fc65b [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 Hans Peter Freytherfdd0ddf2009-11-22 18:01:42 +010027#include <openbsc/gsm_data.h>
Holger Freyther59da07b2009-02-23 00:50:38 +000028#include <openbsc/gsm_utils.h>
Daniel Willmannfdd0a6c2008-12-28 01:51:14 +000029
Daniel Willmannfdd0a6c2008-12-28 01:51:14 +000030int main(int argc, char** argv)
31{
32 DEBUGP(DSMS, "SMS testing\n");
33 struct msgb *msg;
34 u_int8_t *sms;
Daniel Willmann6e6143e2008-12-28 21:38:26 +000035 u_int8_t i;
Daniel Willmannfdd0a6c2008-12-28 01:51:14 +000036
Holger Freyther59da07b2009-02-23 00:50:38 +000037 /* test 7-bit coding/decoding */
38 const char *input = "test text";
39 u_int8_t length;
Harald Welte7e310b12009-03-30 20:56:32 +000040 u_int8_t coded[256];
41 char result[256];
42
43 length = gsm_7bit_encode(coded, input);
44 gsm_7bit_decode(result, coded, length);
Holger Freyther59da07b2009-02-23 00:50:38 +000045 if (strcmp(result, input) != 0) {
46 printf("7 Bit coding failed... life sucks\n");
47 printf("Wanted: '%s' got '%s'\n", input, result);
48 }
Daniel Willmannfdd0a6c2008-12-28 01:51:14 +000049}
Holger Freyther0df0f872009-02-11 00:33:51 +000050
51/* stubs */
52void input_event(void) {}
Holger Freyther3281f6e2009-02-20 18:33:00 +000053void nm_state_event(void) {}