123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /*
- * Copyright (c) 2018-2020 SignalWire, Inc
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in all
- * copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
- #include "swclt_test.h"
- static blade_netcast_rqu_t __netcast_protocol_provider_add_request(ks_pool_t *pool, const char *protocol, ks_uuid_t nodeid, const char *channel)
- {
- blade_netcast_rqu_t request;
- request.command = BLADE_NETCAST_CMD_PROTOCOL_PROVIDER_ADD;
- request.certified_only = KS_TRUE;
- request.netcaster_nodeid = ks_uuid_null_thr_str();
- /* Fill in the params too */
- blade_netcast_protocol_provider_add_param_t params = {0};
- params.protocol = protocol;
- params.nodeid = ks_uuid_str(NULL, &nodeid);
- params.channels = ks_json_create_array();
- ks_json_add_item_to_array(params.channels, BLADE_CHANNEL_MARSHAL(&(blade_channel_t){channel, BLADE_ACL_PUBLIC, BLADE_ACL_PUBLIC}));
- /* Marshal it into its parent request */
- request.params = BLADE_NETCAST_PROTOCOL_PROVIDER_ADD_PARAM_MARSHAL(¶ms);
- return request;
- }
- static void test_blade_execute(ks_pool_t *pool)
- {
- ks_json_t *params = ks_json_create_object();
- ks_json_add_string_to_object(params, "tag", "hi");
- swclt_cmd_t *cmd = CREATE_BLADE_EXECUTE_CMD(
- NULL,
- "responder_a",
- "test.protocol",
- "test.method",
- ¶ms);
- REQUIRE(!params);
- char *desc;
- REQUIRE(!swclt_cmd_print(cmd, NULL, &desc));
- ks_log(KS_LOG_INFO, "Created command: %s", desc);
- REQUIRE(!strcmp(ks_json_get_object_string(cmd->json, "responder_nodeid", ""), "responder_a"));
- REQUIRE(!strcmp(ks_json_get_object_string(cmd->json, "protocol", ""), "test.protocol"));
- REQUIRE(!strcmp(ks_json_get_object_string(cmd->json, "method", ""), "test.method"));
- REQUIRE(!strcmp(ks_json_get_object_string(ks_json_get_object_item(cmd->json, "params"), "tag", ""), "hi"));
- ks_pool_free(&desc);
- swclt_cmd_destroy(&cmd);
- }
- static void test_blade_execute_with_id(ks_pool_t *pool)
- {
- ks_json_t *params = ks_json_create_object();
- ks_json_add_string_to_object(params, "tag", "hi");
- swclt_cmd_t *cmd = CREATE_BLADE_EXECUTE_CMD(
- "a6786101-4c6e-4d1a-ac22-1c5dcbbd3c48",
- "responder_a",
- "test.protocol",
- "test.method",
- ¶ms);
- REQUIRE(!params);
- char *desc;
- REQUIRE(!swclt_cmd_print(cmd, NULL, &desc));
- ks_log(KS_LOG_INFO, "Created command: %s", desc);
- REQUIRE(!strcmp(cmd->id_str, "a6786101-4c6e-4d1a-ac22-1c5dcbbd3c48"));
- REQUIRE(!strcmp(ks_json_get_object_string(cmd->json, "responder_nodeid", ""), "responder_a"));
- REQUIRE(!strcmp(ks_json_get_object_string(cmd->json, "protocol", ""), "test.protocol"));
- REQUIRE(!strcmp(ks_json_get_object_string(cmd->json, "method", ""), "test.method"));
- REQUIRE(!strcmp(ks_json_get_object_string(ks_json_get_object_item(cmd->json, "params"), "tag", ""), "hi"));
- ks_pool_free(&desc);
- swclt_cmd_destroy(&cmd);
- }
- static void test_blade_channel(ks_pool_t *pool)
- {
- ks_json_t *obj = BLADE_CHANNEL_MARSHAL(&(blade_channel_t){"bobo", BLADE_ACL_PUBLIC, BLADE_ACL_PUBLIC});
- ks_json_delete(&obj);
- }
- void test_json(ks_pool_t *pool)
- {
- test_blade_channel(pool);
- test_blade_execute(pool);
- test_blade_execute_with_id(pool);
- }
|