X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=tests%2Flib%2Fplugin.c;h=7e3c3e74183d27615e4ae7495305a47cac992736;hb=5d7e83594e8aa4f8b465165c05938116279f493d;hp=ff287c1c100a945bf14b7dc8cf9898b1cfab7349;hpb=393729a6d00d2d9132000692547720e2e177d69b;p=babeltrace.git diff --git a/tests/lib/plugin.c b/tests/lib/plugin.c index ff287c1c..7e3c3e74 100644 --- a/tests/lib/plugin.c +++ b/tests/lib/plugin.c @@ -1,18 +1,7 @@ /* - * Copyright (c) 2017 Philippe Proulx + * SPDX-License-Identifier: GPL-2.0-only * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; under version 2 of the License. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + * Copyright (C) 2017 Philippe Proulx */ #include @@ -41,8 +30,8 @@ static int check_env_var(const char *name) static void reset_test_plugin_env_vars(void) { - g_setenv("BT_TEST_PLUGIN_INIT_CALLED", "0", 1); - g_setenv("BT_TEST_PLUGIN_EXIT_CALLED", "0", 1); + g_setenv("BT_TEST_PLUGIN_INITIALIZE_CALLED", "0", 1); + g_setenv("BT_TEST_PLUGIN_FINALIZE_CALLED", "0", 1); } static char *get_test_plugin_path(const char *plugin_dir, @@ -79,7 +68,7 @@ static void test_minimal(const char *plugin_dir) "bt_plugin_find_all_from_file() succeeds with a valid file"); ok(plugin_set, "bt_plugin_find_all_from_file() returns a plugin set"); - ok(check_env_var("BT_TEST_PLUGIN_INIT_CALLED") == 1, + ok(check_env_var("BT_TEST_PLUGIN_INITIALIZE_CALLED") == 1, "plugin's initialization function is called during bt_plugin_find_all_from_file()"); ok(bt_plugin_set_get_plugin_count(plugin_set) == 1, "bt_plugin_find_all_from_file() returns the expected number of plugins"); @@ -105,8 +94,8 @@ static void test_minimal(const char *plugin_dir) ok(bt_plugin_get_sink_component_class_count(plugin) == 0, "bt_plugin_get_sink_component_class_count() returns the expected value"); bt_plugin_set_put_ref(plugin_set); - ok(check_env_var("BT_TEST_PLUGIN_EXIT_CALLED") == 1, - "plugin's exit function is called when the plugin is destroyed"); + ok(check_env_var("BT_TEST_PLUGIN_FINALIZE_CALLED") == 1, + "plugin's finalize function is called when the plugin is destroyed"); free(minimal_path); } @@ -188,16 +177,15 @@ static void test_sfs(const char *plugin_dir) ok(ret == 0 && results, "bt_query_executor_query() succeeds"); BT_ASSERT(bt_value_is_array(results) && bt_value_array_get_length(results) == 2); object = bt_value_array_borrow_element_by_index_const(results, 0); - BT_ASSERT(object && bt_value_is_string(object)); + BT_ASSERT(bt_value_is_string(object)); object_str = bt_value_string_get(object); ok(strcmp(object_str, "get-something") == 0, "bt_component_class_query() receives the expected object name"); res_params = bt_value_array_borrow_element_by_index_const(results, 1); - ok(bt_value_compare(res_params, params), + ok(bt_value_is_equal(res_params, params), "bt_component_class_query() receives the expected parameters"); bt_component_class_sink_get_ref(sink_comp_class); - diag("> putting the plugin set object here"); BT_PLUGIN_SET_PUT_REF_AND_RESET(plugin_set); graph = bt_graph_create(0); BT_ASSERT(graph); @@ -205,7 +193,6 @@ static void test_sfs(const char *plugin_dir) "the-sink", NULL, BT_LOGGING_LEVEL_NONE, &sink_component); ok(graph_ret == BT_GRAPH_ADD_COMPONENT_STATUS_OK && sink_component, "bt_graph_add_sink_component() still works after the plugin object is destroyed"); - BT_COMPONENT_SINK_PUT_REF_AND_RESET(sink_component); bt_graph_put_ref(graph); free(sfs_path);