1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-07-04 16:09:29 +00:00
Purism-Calls/tests/test-plugins.c
Evangelos Ribeiro Tzaras 86a8f3ae22 Move provider plugins into a dedicated directory
Since we will introduce another type of plugin for the policy engine
we want to have each plugin type in separate directories.

We also have to adjust:

- plugin search directories
- po file location
- update paths for calls-doc target
2022-08-19 08:43:57 +00:00

63 lines
1.6 KiB
C

/*
* Copyright (C) 2021 Purism SPC
*
* SPDX-License-Identifier: GPL-3.0+
*
* Author: Evangelos Ribeiro Tzaras <evangelos.tzaras@puri.sm>
*/
#include "calls-provider.h"
#include <gtk/gtk.h>
#include <libpeas/peas.h>
static void
test_calls_plugin_loading (void)
{
g_autoptr (CallsProvider) dummy_provider = NULL;
g_autoptr (CallsProvider) mm_provider = NULL;
g_autoptr (CallsProvider) ofono_provider = NULL;
g_autoptr (CallsProvider) sip_provider = NULL;
g_autoptr (CallsProvider) not_a_provider = NULL;
dummy_provider = calls_provider_load_plugin ("dummy");
g_assert_nonnull (dummy_provider);
mm_provider = calls_provider_load_plugin ("mm");
g_assert_nonnull (mm_provider);
ofono_provider = calls_provider_load_plugin ("ofono");
g_assert_nonnull (ofono_provider);
sip_provider = calls_provider_load_plugin ("sip");
g_assert_nonnull (sip_provider);
not_a_provider = calls_provider_load_plugin ("not-a-valid-provider-plugin");
g_assert_null (not_a_provider);
calls_provider_unload_plugin ("dummy");
calls_provider_unload_plugin ("mm");
calls_provider_unload_plugin ("ofono");
calls_provider_unload_plugin ("sip");
}
gint
main (gint argc,
gchar *argv[])
{
g_autofree char *plugin_dir_provider = NULL;
gtk_test_init (&argc, &argv, NULL);
/* Add builddir as search path */
#ifdef PLUGIN_BUILDDIR
plugin_dir_provider = g_build_filename (PLUGIN_BUILDDIR, "provider", NULL);
peas_engine_add_search_path (peas_engine_get_default (), plugin_dir_provider, NULL);
#endif
g_test_add_func("/Calls/Plugins/load_plugins", test_calls_plugin_loading);
return g_test_run();
}