blob: 66d0428b7a6aa1d81c738665e62f2248eb2a4e3a [file] [log] [blame]
Holger Hans Peter Freyther9f239a22011-01-06 19:32:52 +01001/*
2 * (C) 2011 by Holger Hans Peter Freyther <zecke@selfish.org>
3 * (C) 2011 by On-Waves
4 * 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 Affero General Public License as published by
8 * the Free Software Foundation; either version 3 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 Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <openbsc/mgcp.h>
Holger Hans Peter Freyther1f0c5b42011-02-28 14:37:03 +010021#include <openbsc/mgcp_internal.h>
Holger Hans Peter Freyther9f239a22011-01-06 19:32:52 +010022
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +020023#include <osmocom/core/application.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010024#include <osmocom/core/talloc.h>
Holger Hans Peter Freyther9f239a22011-01-06 19:32:52 +010025#include <string.h>
26
Harald Welte8819d822012-01-27 00:00:44 +010027#define AUEP1 "AUEP 158663169 ds/e1-1/2@172.16.6.66 MGCP 1.0\r\n"
28#define AUEP2 "AUEP 18983213 ds/e1-2/1@172.16.6.66 MGCP 1.0\r\n"
29
30static struct msgb *create_msg(const char *str)
Holger Hans Peter Freyther9f239a22011-01-06 19:32:52 +010031{
32 struct msgb *msg;
33
34 msg = msgb_alloc_headroom(4096, 128, "MGCP msg");
Harald Welte8819d822012-01-27 00:00:44 +010035 int len = sprintf((char *)msg->data, str);
Holger Hans Peter Freyther9f239a22011-01-06 19:32:52 +010036 msg->l2h = msgb_put(msg, len);
37 return msg;
38}
39
40static void test_auep(void)
41{
42 struct msgb *inp;
43 struct msgb *msg;
Holger Hans Peter Freytherd5b3ca62012-01-06 15:04:43 +010044 struct mgcp_config *cfg;
45
46 printf("Testing AUEP\n");
47
48 cfg = mgcp_config_alloc();
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +010049 cfg->trunk.number_endpoints = 64;
Holger Hans Peter Freyther1f0c5b42011-02-28 14:37:03 +010050 mgcp_endpoints_allocate(&cfg->trunk);
51
52 mgcp_endpoints_allocate(mgcp_trunk_alloc(cfg, 1));
Holger Hans Peter Freyther9f239a22011-01-06 19:32:52 +010053
Harald Welte8819d822012-01-27 00:00:44 +010054 inp = create_msg(AUEP1);
Holger Hans Peter Freyther9f239a22011-01-06 19:32:52 +010055 msg = mgcp_handle_message(cfg, inp);
56 msgb_free(inp);
57 if (strcmp((char *) msg->data, "200 158663169 OK\r\n") != 0)
58 printf("Result1 failed '%s'\n", (char *) msg->data);
59 /* Verify that the endpoint is fine */
60 msgb_free(msg);
61
Harald Welte8819d822012-01-27 00:00:44 +010062 inp = create_msg(AUEP2);
Holger Hans Peter Freyther9f239a22011-01-06 19:32:52 +010063 msg = mgcp_handle_message(cfg, inp);
64 msgb_free(inp);
65 /* Verify that the endpoint is not fine */
66 if (strcmp((char *) msg->data, "500 18983213 FAIL\r\n") != 0)
67 printf("Result2 failed '%s'\n", (char *) msg->data);
68 msgb_free(msg);
69
70 talloc_free(cfg);
71}
72
73int main(int argc, char **argv)
74{
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +020075 osmo_init_logging(&log_info);
Holger Hans Peter Freyther9f239a22011-01-06 19:32:52 +010076
77 test_auep();
Holger Hans Peter Freytherd5b3ca62012-01-06 15:04:43 +010078
79 printf("Done\n");
80 return EXIT_SUCCESS;
Holger Hans Peter Freyther9f239a22011-01-06 19:32:52 +010081}