blob: b7273de43bc9faee06ea02ffcfe92f607950aaf4 [file] [log] [blame]
Holger Hans Peter Freytherf0bc0752011-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 Freyther49e170b2011-02-28 14:37:03 +010021#include <openbsc/mgcp_internal.h>
Holger Hans Peter Freytherf0bc0752011-01-06 19:32:52 +010022
Holger Hans Peter Freyther2d59cc62011-05-12 16:02:07 +020023#include <osmocom/core/application.h>
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010024#include <osmocom/core/talloc.h>
Holger Hans Peter Freytherf0bc0752011-01-06 19:32:52 +010025#include <string.h>
26
27static struct msgb *create_auep1()
28{
29 struct msgb *msg;
30
31 msg = msgb_alloc_headroom(4096, 128, "MGCP msg");
Holger Hans Peter Freyther72026c12011-01-07 11:30:21 +010032 int len = sprintf((char *)msg->data, "AUEP 158663169 ds/e1-1/2@172.16.6.66 MGCP 1.0\r\n");
Holger Hans Peter Freytherf0bc0752011-01-06 19:32:52 +010033 msg->l2h = msgb_put(msg, len);
34 return msg;
35}
36
37static struct msgb *create_auep2()
38{
39 struct msgb *msg;
40
41 msg = msgb_alloc_headroom(4096, 128, "MGCP msg");
Holger Hans Peter Freyther72026c12011-01-07 11:30:21 +010042 int len = sprintf((char *)msg->data, "AUEP 18983213 ds/e1-2/1@172.16.6.66 MGCP 1.0\r\n");
Holger Hans Peter Freytherf0bc0752011-01-06 19:32:52 +010043 msg->l2h = msgb_put(msg, len);
44 return msg;
45}
46
47static void test_auep(void)
48{
49 struct msgb *inp;
50 struct msgb *msg;
51 struct mgcp_config *cfg = mgcp_config_alloc();
Holger Hans Peter Freytherab56ce12011-02-28 00:56:17 +010052 cfg->trunk.number_endpoints = 64;
Holger Hans Peter Freyther49e170b2011-02-28 14:37:03 +010053 mgcp_endpoints_allocate(&cfg->trunk);
54
55 mgcp_endpoints_allocate(mgcp_trunk_alloc(cfg, 1));
Holger Hans Peter Freytherf0bc0752011-01-06 19:32:52 +010056
57 inp = create_auep1();
58 msg = mgcp_handle_message(cfg, inp);
59 msgb_free(inp);
60 if (strcmp((char *) msg->data, "200 158663169 OK\r\n") != 0)
61 printf("Result1 failed '%s'\n", (char *) msg->data);
62 /* Verify that the endpoint is fine */
63 msgb_free(msg);
64
65 inp = create_auep2();
66 msg = mgcp_handle_message(cfg, inp);
67 msgb_free(inp);
68 /* Verify that the endpoint is not fine */
69 if (strcmp((char *) msg->data, "500 18983213 FAIL\r\n") != 0)
70 printf("Result2 failed '%s'\n", (char *) msg->data);
71 msgb_free(msg);
72
73 talloc_free(cfg);
74}
75
76int main(int argc, char **argv)
77{
Holger Hans Peter Freyther2d59cc62011-05-12 16:02:07 +020078 osmo_init_logging(&log_info);
Holger Hans Peter Freytherf0bc0752011-01-06 19:32:52 +010079
80 test_auep();
81 return 0;
82}