aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test_sms.c
blob: cb3dd6a3b25a0b266dd98cb60b43226c88c5cba7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include <unistd.h>
#include "../libsample/sample.h"
#include "../liblogging/logging.h"
#include "../nmt/nmt.h"

static const uint8_t test_mo_sms_data1[] = {
	0x00, 0x00, 0x00, 0xa1, 0x41, 0x0f, 0x11,
	0x00, 0x04, 0xa1, 0x8a, 0x51,
	0x00, 0x00, 0xff, 0x05, 0xc8, 0x20, 0x93,
	0xf9, 0x7c,
};
static const uint8_t test_mo_sms_data2[] = {
	0x00, 0x02, 0x07, 0xa1, 0xa9, 0x62, 0x65,
	0xf4, 0x41, 0x10, 0x11, 0x02, 0x03, 0xa1,
	0x21, 0xf3,
	0x00, 0x30, 0xff, 0x06, 0x48, 0x61, 0x6c,
	0x6c, 0x6f, 0x21,
};

static const char *test_mo_sms_text1 = "HALLO";
static const char *test_mo_sms_text2 = "Hallo!";

static const char *test_mt_sms_text = "Moin Moin";
static const char *test_mt_sms_tel = "4948416068";
static time_t test_mt_sms_time = 851430904;

static const uint8_t test_mt_sms_data[] = {
	0x01, 0x18, 0x53, 0x4d, 0x53, 0x48, 0x18, 0x41, 0x42, 0x43, 0x02,
	0x01,
	0x01,
	0x41,
	0x1a,
	0x04,
	0x0a, 0x91, 0x94, 0x84, 0x14, 0xa6, 0x86,
	0x00,
	0x00,
	0x69, 0x21, 0x42, 0x21, 0x53, 0x4a, 0x00,
	0x09, 0xcd, 0x77, 0xda, 0x0d, 0x6a, 0xbe, 0xd3, 0x6e,
};

static void assert(int condition, char *why)
{
	printf("%s = %s\n", why, (condition) ? "TRUE" : "FALSE");

	if (!condition) {
		printf("\n******************** FAILED ********************\n\n");
		exit(-1);
	}
}

static void ok(void)
{
	printf("\n OK ;->\n\n");
	sleep(1);
}

static uint8_t dms_buffer[256];
static int dms_buffer_count;
void dms_send(nmt_t __attribute__((unused)) *nmt, const uint8_t *data, int length, int __attribute__((unused)) eight_bits)
{
	int i;

	/* skip deliver report */
	if (length == 13)
		return;

	dms_buffer_count = length;
	memcpy(dms_buffer, data, length);

	assert(length == sizeof(test_mt_sms_data), "Expecting SMS binary data length to match");
	for (i = 0; i < length; i++) {
		if (data[i] != test_mt_sms_data[i])
			printf("offset: %d  got: 0x%02x  expecting: 0x%02x\n", i, data[i], test_mt_sms_data[i]);
	}
	assert(!memcmp(data, test_mt_sms_data, length), "Expecting SMS binary data to match");
}

void sms_release(nmt_t __attribute__((unused)) *nmt)
{
	printf("(got release from SMS layer)\n");
}

int sms_submit(nmt_t __attribute__((unused)) *nmt, uint8_t __attribute__((unused)) ref, const char __attribute__((unused)) *orig_address, uint8_t __attribute__((unused)) orig_type, uint8_t __attribute__((unused)) orig_plan, int __attribute__((unused)) msg_ref, const char __attribute__((unused)) *dest_address, uint8_t __attribute__((unused)) dest_type, uint8_t __attribute__((unused)) dest_plan, const char *message)
{
	strcpy((char *)dms_buffer, message);
	dms_buffer_count = strlen(message);

	return 0;
}

void sms_deliver_report(nmt_t __attribute__((unused)) *nmt, uint8_t __attribute__((unused)) ref, int __attribute__((unused)) error, uint8_t __attribute__((unused)) cause)
{
	printf("(got deliver report from SMS layer)\n");
}

extern void main_mobile_loop();

int main(void)
{
	nmt_t *nmt;
	int i;
	int rc;

	/* this is never called, it forces the linker to add mobile functions */
	if (loglevel == -1000) main_mobile_loop();

	loglevel = LOGL_DEBUG;
	logging_init();

	nmt = calloc(sizeof(*nmt), 1);
	sms_init_sender(nmt);
	sms_reset(nmt);

	/* deliver */
	printf("(delivering SMS)\n");
	rc = sms_deliver(nmt, 1, test_mt_sms_tel, SMS_TYPE_INTERNATIONAL, SMS_PLAN_ISDN_TEL, test_mt_sms_time, 0, test_mt_sms_text);
	assert(rc == 0, "Expecting sms_deliver() to return 0");

	sms_cleanup_sender(nmt);
	free(nmt);

	ok();

	nmt = calloc(sizeof(*nmt), 1);
	sms_init_sender(nmt);
	sms_reset(nmt);

	printf("(submitting SMS 7-bit encoded)\n");
	dms_buffer_count = 0;
	for (i = 0; i < (int)sizeof(test_mo_sms_data1); i++)
		dms_receive(nmt, test_mo_sms_data1 + i, 1, 1);

	assert(dms_buffer_count == (int)strlen(test_mo_sms_text1), "Expecting SMS text length to match");
	assert(!memcmp(dms_buffer, test_mo_sms_text1, dms_buffer_count), "Expecting SMS text to match");

	sms_cleanup_sender(nmt);
	free(nmt);

	ok();

	nmt = calloc(sizeof(*nmt), 1);
	sms_init_sender(nmt);
	sms_reset(nmt);

	printf("(submitting SMS 8-bit encoded)\n");
	dms_buffer_count = 0;
	for (i = 0; i < (int)sizeof(test_mo_sms_data2); i++)
		dms_receive(nmt, test_mo_sms_data2 + i, 1, 1);

	assert(dms_buffer_count == (int)strlen(test_mo_sms_text2), "Expecting SMS text length to match");
	assert(!memcmp(dms_buffer, test_mo_sms_text2, dms_buffer_count), "Expecting SMS text to match");

	sms_cleanup_sender(nmt);
	free(nmt);

	ok();

	return 0;
}

void call_down_clock(void) {}

const char *aaimage[] = { NULL };