Add AX25 protocol decoder and test (preliminary).
[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  * \version $Id$
36  * \author Francesco Sacchi <batt@develer.com>
37  */
38
39 #include "ax25.h"
40
41 #include <drv/afsk.h>
42 #include <struct/kfile_mem.h>
43
44 #include <cfg/debug.h>
45 #include <cfg/test.h>
46
47 #include <string.h> //strncmp
48
49 static AX25Ctx ax25;
50 static KFileMem mem;
51
52 uint8_t aprs_packet[] =
53 {
54         HDLC_FLAG,
55         0x82, 0xA0, 0xA4, 0xA6, 0x40, 0x40, 0xE0, 0xA6, 0x6A, 0x6E, 0x98, 0x9C, 0x40, 0x61, 0x03, 0xF0,
56         0x3D, 0x34, 0x36, 0x30, 0x33, 0x2E, 0x36, 0x33, 0x4E, 0x2F, 0x30, 0x31, 0x34, 0x33, 0x31, 0x2E,
57         0x32, 0x36, 0x45, 0x2D, 0x4F, 0x70, 0x2E, 0x20, 0x41, 0x6E, 0x64, 0x72, 0x65, 0x6A, 0x40, 0x65,
58         HDLC_FLAG,
59 };
60
61 static void msg_callback(AX25Msg *msg)
62 {
63         ASSERT(strncmp(msg->dst.call, "APRS  ", 6) == 0);
64         ASSERT(strncmp(msg->src.call, "S57LN ", 6) == 0);
65         ASSERT(msg->src.ssid == 0);
66         ASSERT(msg->dst.ssid == 0);
67         ASSERT(msg->ctrl == AX25_CTRL_UI);
68         ASSERT(msg->pid == AX25_PID_NOLAYER3);
69         ASSERT(msg->len == 30);
70         ASSERT(strncmp((char *)msg->info, "=4603.63N/01431.26E-Op. Andrej", 30) == 0);
71 }
72
73 int ax25_testSetup(void)
74 {
75         kdbg_init();
76         kfilemem_init(&mem, aprs_packet, sizeof(aprs_packet));
77         ax25_init(&ax25, &mem.fd, msg_callback);
78         return 0;
79 }
80
81 int ax25_testTearDown(void)
82 {
83         return 0;
84 }
85
86 int ax25_testRun(void)
87 {
88         ax25_poll(&ax25);
89         return  0;
90 }
91
92 TEST_MAIN(ax25);