Update preset.
[bertos.git] / bertos / net / ax25_test.c
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos 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
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2009 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \brief AX25 test.
34  *
35  * \author Francesco Sacchi <batt@develer.com>
36  */
37
38 #include "ax25.h"
39
40 #include <struct/kfile_mem.h>
41
42 #include <cfg/debug.h>
43 #include <cfg/kfile_debug.h>
44 #include <cfg/test.h>
45
46 #include <string.h> //strncmp
47
48 static AX25Ctx ax25;
49 static KFileMem mem;
50 static KFileDebug dbg;
51
52 #define APRS_MSG \
53         0x3D, 0x34, 0x36, 0x30, 0x33, 0x2E, 0x36, 0x33, \
54         0x4E, 0x2F, 0x30, 0x31, 0x34, 0x33, 0x31, 0x2E, \
55         0x32, 0x36, 0x45, 0x2D, 0x4F, 0x70, 0x2E, 0x20, \
56         0x41, 0x6E, 0x64, 0x72, 0x65, 0x6A
57
58 uint8_t aprs_packet[] =
59 {
60         HDLC_FLAG,
61         0x82, 0xA0, 0xA4, 0xA6, 0x40, 0x40, 0xE0, /* dst */
62         0xA6, 0x6A, 0x6E, 0x98, 0x9C, 0x40, 0x61, /* src */
63         0x03, /* ctrl */
64         0xF0, /* pid */
65         APRS_MSG, /* payload */
66         0x40, 0x65, /* CRC */
67         HDLC_FLAG,
68 };
69
70 uint8_t buf[] = { APRS_MSG };
71 KFileMem mem1;
72 uint8_t aprs_packet_check[256];
73
74
75 static void msg_callback(AX25Msg *msg)
76 {
77         ax25_print(&dbg.fd, msg);
78         ASSERT(strncmp(msg->dst.call, "APRS\x0\x0", 6) == 0);
79         ASSERT(strncmp(msg->src.call, "S57LN\x0", 6) == 0);
80         ASSERT(msg->src.ssid == 0);
81         ASSERT(msg->dst.ssid == 0);
82         ASSERT(msg->ctrl == AX25_CTRL_UI);
83         ASSERT(msg->pid == AX25_PID_NOLAYER3);
84         ASSERT(msg->len == 30);
85         ASSERT(strncmp((const char *)msg->info, "=4603.63N/01431.26E-Op. Andrej", 30) == 0);
86 }
87
88 int ax25_testSetup(void)
89 {
90         kdbg_init();
91         kfiledebug_init(&dbg);
92         kfilemem_init(&mem, aprs_packet, sizeof(aprs_packet));
93         kfilemem_init(&mem1, aprs_packet_check, sizeof(aprs_packet_check));
94         ax25_init(&ax25, &mem.fd, msg_callback);
95         return 0;
96 }
97
98 int ax25_testTearDown(void)
99 {
100         return 0;
101 }
102
103 int ax25_testRun(void)
104 {
105         ax25_poll(&ax25);
106         ax25_init(&ax25, &mem1.fd, NULL);
107         ax25_send(&ax25, AX25_CALL("aprs", 0x70), AX25_CALL("s57ln", 0x30), buf, sizeof(buf));
108         ASSERT(memcmp(aprs_packet, aprs_packet_check, sizeof(aprs_packet)) == 0);
109         return  0;
110 }
111
112 TEST_MAIN(ax25);