blob: 106635ffde7b2d47a272a1c314c53377a26a3c13 [file] [log] [blame]
Daniel Willmannb2208692008-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 Freythera162b6e2009-02-23 00:50:38 +000022#include <stdlib.h>
23#include <string.h>
Daniel Willmannb2208692008-12-28 01:51:14 +000024#include <sys/types.h>
Harald Welte9c38ed62010-02-20 17:29:27 +010025#include <osmocore/msgb.h>
26#include <osmocore/gsm_utils.h>
Daniel Willmannb2208692008-12-28 01:51:14 +000027
Daniel Willmannb2208692008-12-28 01:51:14 +000028int main(int argc, char** argv)
29{
Harald Welte9c38ed62010-02-20 17:29:27 +010030 printf("SMS testing\n");
Daniel Willmannb2208692008-12-28 01:51:14 +000031 struct msgb *msg;
32 u_int8_t *sms;
Daniel Willmann2e497db2008-12-28 21:38:26 +000033 u_int8_t i;
Daniel Willmannb2208692008-12-28 01:51:14 +000034
Holger Freythera162b6e2009-02-23 00:50:38 +000035 /* test 7-bit coding/decoding */
36 const char *input = "test text";
37 u_int8_t length;
Harald Welteac213b22009-03-30 20:56:32 +000038 u_int8_t coded[256];
39 char result[256];
40
41 length = gsm_7bit_encode(coded, input);
42 gsm_7bit_decode(result, coded, length);
Holger Freythera162b6e2009-02-23 00:50:38 +000043 if (strcmp(result, input) != 0) {
44 printf("7 Bit coding failed... life sucks\n");
45 printf("Wanted: '%s' got '%s'\n", input, result);
46 }
Daniel Willmannb2208692008-12-28 01:51:14 +000047}