blob: 3742dd88057404512ada2c6987fb45b67728c63f [file] [log] [blame]
Harald Welteec8b4502010-02-20 20:34:29 +01001/*
2 * (C) 2008 by Daniel Willmann <daniel@totalueberwachung.de>
Nico Golde28de0532010-07-09 17:19:12 +02003 * (C) 2010 by Nico Golde <nico@ngolde.de>
Harald Welteec8b4502010-02-20 20:34:29 +01004 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
20 */
21
22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
25#include <sys/types.h>
26#include <osmocore/msgb.h>
27#include <osmocore/gsm_utils.h>
Holger Hans Peter Freyther31e97ea2010-07-20 02:46:56 +080028#include <osmocore/utils.h>
29
30struct test_case {
31 const uint8_t *input;
32 const uint16_t input_length;
33
34 const uint8_t *expected;
35 const uint16_t expected_length;
36};
37
38static const char simple_text[] = "test text";
39static const uint8_t simple_enc[] = {
40 0xf4, 0xf2, 0x9c, 0x0e, 0xa2, 0x97, 0xf1, 0x74, 0x00,
41};
42
43static const char escape_text[] = "!$ a more#^- complicated test@@?_\%! case";
44static const uint8_t escape_enc[] = {
45 0x21, 0x01, 0x28, 0x0c, 0x6a, 0xbf, 0xe5, 0xe5, 0xd1,
46 0x86, 0xd2, 0x02, 0x8d, 0xdf, 0x6d, 0x38, 0x3b, 0x3d,
47 0x0e, 0xd3, 0xcb, 0x64, 0x10, 0xbd, 0x3c, 0xa7, 0x03,
48 0x00, 0xbf, 0x48, 0x29, 0x04, 0x1a, 0x87, 0xe7, 0x65,
49 0x00, 0x00, 0x00, 0x00, 0x00
50};
51
52static const struct test_case test_encode[] =
53{
54 {
55 .input = simple_text,
56 .expected = simple_enc,
57 .expected_length = 9,
58 },
59 {
60 .input = escape_text,
61 .expected = escape_enc,
62 .expected_length = 41,
63 },
64};
65
66static const struct test_case test_decode[] =
67{
68 {
69 .input = simple_enc,
70 .input_length = 9,
71 .expected = simple_text,
72 },
73 {
74 .input = escape_enc,
75 .input_length = 41,
76 .expected = escape_text,
77 },
78};
Harald Welteec8b4502010-02-20 20:34:29 +010079
80int main(int argc, char** argv)
81{
82 printf("SMS testing\n");
83 struct msgb *msg;
84 uint8_t *sms;
85 uint8_t i;
86
Harald Welteec8b4502010-02-20 20:34:29 +010087 uint8_t length;
88 uint8_t coded[256];
89 char result[256];
90
Holger Hans Peter Freyther31e97ea2010-07-20 02:46:56 +080091 /* test 7-bit encoding */
92 for (i = 0; i < ARRAY_SIZE(test_encode); ++i) {
93 memset(coded, 0, sizeof(coded));
94 length = gsm_7bit_encode(coded, test_encode[i].input);
95
96 if (length != test_encode[i].expected_length) {
97 fprintf(stderr, "Failed to encode case %d. Got %d\n",
98 i, length);
99 return -1;
100 }
101
102 if (memcmp(coded, test_encode[i].expected, length) != 0) {
103 fprintf(stderr, "Encoded content does not match for %d\n",
104 i);
105 return -1;
106 }
Harald Welteec8b4502010-02-20 20:34:29 +0100107 }
Nico Golde28de0532010-07-09 17:19:12 +0200108
Holger Hans Peter Freyther31e97ea2010-07-20 02:46:56 +0800109 /* test 7-bit decoding */
110 for (i = 0; i < ARRAY_SIZE(test_decode); ++i) {
111 memset(result, 0, sizeof(coded));
112 gsm_7bit_decode(result, test_decode[i].input,
113 test_decode[i].input_length);
114
115 if (strcmp(result, test_decode[i].expected) != 0) {
116 fprintf(stderr, "Test case %d failed to decode.\n", i);
117 return -1;
118 }
Nico Golde28de0532010-07-09 17:19:12 +0200119 }
120
Holger Hans Peter Freyther31e97ea2010-07-20 02:46:56 +0800121 printf("OK\n");
Nico Golde28de0532010-07-09 17:19:12 +0200122 return 0;
Harald Welteec8b4502010-02-20 20:34:29 +0100123}