summaryrefslogtreecommitdiff
path: root/tests/test_uri.c
blob: 3004227a066609530c797af36bad5bb89f8b2f3d (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
/*
 * Asterisk -- An open source telephony toolkit.
 *
 * Copyright (C) 2014, Digium, Inc.
 *
 * Kevin Harwell <kharwell@digium.com>
 *
 * See http://www.asterisk.org for more information about
 * the Asterisk project. Please do not directly contact
 * any of the maintainers of this project for assistance;
 * the project provides a web site, mailing lists and IRC
 * channels for your use.
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License Version 2. See the LICENSE file
 * at the top of the source tree.
 */

/*!
 * \file
 * \brief URI Unit Tests
 *
 * \author Kevin Harwell <kharwell@digium.com>
 *
 */

/*** MODULEINFO
	<depend>TEST_FRAMEWORK</depend>
	<support_level>core</support_level>
 ***/

#include "asterisk.h"

#include "asterisk/test.h"
#include "asterisk/module.h"
#include "asterisk/uri.h"

#define CATEGORY "/main/uri/"

static const char *scenarios[][7] = {
	{"http://name:pass@localhost", "http", "name:pass", "localhost", NULL, NULL, NULL},
	{"http://localhost", "http", NULL, "localhost", NULL, NULL, NULL},
	{"http://localhost:80", "http", NULL, "localhost", "80", NULL, NULL},
	{"http://localhost/path/", "http", NULL, "localhost", NULL, "path/", NULL},
	{"http://localhost/?query", "http", NULL, "localhost", NULL, "", "query"},
	{"http://localhost:80/path", "http", NULL, "localhost", "80", "path", NULL},
	{"http://localhost:80/?query", "http", NULL, "localhost", "80", "", "query"},
	{"http://localhost:80/path?query", "http", NULL, "localhost", "80", "path", "query"},
};

AST_TEST_DEFINE(uri_parse)
{
#define VALIDATE(value, expected_value) \
	do { ast_test_validate(test, \
		     (value == expected_value) || \
		     (value && expected_value && \
		      !strcmp(value, expected_value)));	\
	} while (0)

	int i;

	switch (cmd) {
	case TEST_INIT:
		info->name = __func__;
		info->category = CATEGORY;
		info->summary = "Uri parsing scenarios";
		info->description = "For each scenario validate result(s)";
		return AST_TEST_NOT_RUN;
	case TEST_EXECUTE:
		break;
	}
	for (i = 0; i < ARRAY_LEN(scenarios); ++i) {
		RAII_VAR(struct ast_uri *, uri, NULL, ao2_cleanup);
		const char **scenario = scenarios[i];

		ast_test_validate(test, (uri = ast_uri_parse(scenario[0])));
		VALIDATE(ast_uri_scheme(uri), scenario[1]);
		VALIDATE(ast_uri_user_info(uri), scenario[2]);
		VALIDATE(ast_uri_host(uri), scenario[3]);
		VALIDATE(ast_uri_port(uri), scenario[4]);
		VALIDATE(ast_uri_path(uri), scenario[5]);
		VALIDATE(ast_uri_query(uri), scenario[6]);
	}

	return AST_TEST_PASS;
}

AST_TEST_DEFINE(uri_default_http)
{
	RAII_VAR(struct ast_uri *, uri, NULL, ao2_cleanup);

	switch (cmd) {
	case TEST_INIT:
		info->name = __func__;
		info->category = CATEGORY;
		info->summary = "parse an http uri with host only";
		info->description = info->summary;
		return AST_TEST_NOT_RUN;
	case TEST_EXECUTE:
		break;
	}

	ast_test_validate(test, (uri = ast_uri_parse_http("localhost")));
	ast_test_validate(test, !strcmp(ast_uri_scheme(uri), "http"));
	ast_test_validate(test, !strcmp(ast_uri_host(uri), "localhost"));
	ast_test_validate(test, !strcmp(ast_uri_port(uri), "80"));
	ast_test_validate(test, !ast_uri_is_secure(uri));

	return AST_TEST_PASS;
}

AST_TEST_DEFINE(uri_default_http_secure)
{
	RAII_VAR(struct ast_uri *, uri, NULL, ao2_cleanup);

	switch (cmd) {
	case TEST_INIT:
		info->name = __func__;
		info->category = CATEGORY;
		info->summary = "parse an https uri with host only";
		info->description = info->summary;
		return AST_TEST_NOT_RUN;
	case TEST_EXECUTE:
		break;
	}

	ast_test_validate(test, (uri = ast_uri_parse_http("https://localhost")));
	ast_test_validate(test, !strcmp(ast_uri_scheme(uri), "https"));
	ast_test_validate(test, !strcmp(ast_uri_host(uri), "localhost"));
	ast_test_validate(test, !strcmp(ast_uri_port(uri), "443"));
	ast_test_validate(test, ast_uri_is_secure(uri));

	return AST_TEST_PASS;
}

static int load_module(void)
{
	AST_TEST_REGISTER(uri_parse);
	AST_TEST_REGISTER(uri_default_http);
	AST_TEST_REGISTER(uri_default_http_secure);
	return AST_MODULE_LOAD_SUCCESS;
}

static int unload_module(void)
{
	AST_TEST_UNREGISTER(uri_default_http_secure);
	AST_TEST_UNREGISTER(uri_default_http);
	AST_TEST_UNREGISTER(uri_parse);
	return 0;
}

AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "URI test module");