summaryrefslogtreecommitdiff
path: root/tests/test_uri.c
diff options
context:
space:
mode:
authorKevin Harwell <kharwell@digium.com>2014-06-05 17:22:35 +0000
committerKevin Harwell <kharwell@digium.com>2014-06-05 17:22:35 +0000
commite763d704700674342c8957f82bddeab3e15dfa08 (patch)
tree14ffdb60c71b6e5976783d97778ba485c4954e6b /tests/test_uri.c
parentfd45b822470264d50d80d419e65655ea01842da7 (diff)
res_http_websocket: Create a websocket client
Added a websocket server client in Asterisk. Asterisk has a websocket server, but not a client. The ability to have Asterisk be able to connect to a websocket server can potentially be useful for future work (for instance this could allow ARI to connect back to some external system, although more work would be needed in order to incorporate that). Also a couple of things to note - proxy connection support has not been implemented and there is limited http response code handling (basically, it is connect or not). Also added an initial new URI handling mechanism to core. Internet type URI's are parsed into a data structure that contains pointers to the various parts of the URI. (closes issue ASTERISK-23742) Reported by: Kevin Harwell Review: https://reviewboard.asterisk.org/r/3541/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@415223 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'tests/test_uri.c')
-rw-r--r--tests/test_uri.c154
1 files changed, 154 insertions, 0 deletions
diff --git a/tests/test_uri.c b/tests/test_uri.c
new file mode 100644
index 000000000..92bbb70b0
--- /dev/null
+++ b/tests/test_uri.c
@@ -0,0 +1,154 @@
+/*
+ * 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"
+
+ASTERISK_FILE_VERSION(__FILE__, "")
+
+#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");