mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2025-01-08 12:55:32 +00:00
0b2f146053
This includes the following changes: - Introduce a `providers` hash table to keep track of multiple CallProvider's and remove the `provider` member - Remove `calls_manager_get_provider()` and `calls_manager_set_provider()` in favour of `calls_manager_add_provider()`, `calls_manager_remove_provider()` and `calls_manager_has_provider()` - Introduce a `origins` GListStore to keep track of available origins. `origins` is updated in `items_changed_cb()` when the origins of any CallsProvider are updated. - Adapt to changes with respect to `calls_manager_get_origins()`. - Introduce `origins_by_protocol` hash table to keep track of available origins per protocol. - Adjust tests - We temporarily break country code lookup which was handled previously with the "default-origin" mechanism. We will add it back to the CallsSettings class which will provide a better application-wide mechanism.
130 lines
4 KiB
C
130 lines
4 KiB
C
/*
|
|
* Copyright (C) 2020 Purism SPC
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0+
|
|
*/
|
|
|
|
#include "calls-manager.h"
|
|
|
|
#include <gtk/gtk.h>
|
|
#include <libpeas/peas.h>
|
|
|
|
CallsCall *test_call = NULL;
|
|
|
|
static void
|
|
call_add_cb (CallsManager *manager, CallsCall *call)
|
|
{
|
|
test_call = call;
|
|
}
|
|
|
|
static void
|
|
call_remove_cb (CallsManager *manager, CallsCall *call)
|
|
{
|
|
g_assert (call == test_call);
|
|
test_call = NULL;
|
|
}
|
|
|
|
static void
|
|
test_calls_manager_without_provider ()
|
|
{
|
|
guint no_origins;
|
|
GListModel *origins;
|
|
g_autoptr (CallsManager) manager = calls_manager_new ();
|
|
g_assert (CALLS_IS_MANAGER (manager));
|
|
|
|
g_assert (calls_manager_get_state (manager) == CALLS_MANAGER_STATE_NO_PROVIDER);
|
|
|
|
origins = calls_manager_get_origins (manager);
|
|
no_origins = g_list_model_get_n_items (origins);
|
|
g_assert_cmpuint (no_origins, ==, 0);
|
|
|
|
g_assert_null (calls_manager_get_calls (manager));
|
|
g_assert_null (calls_manager_get_suitable_origins (manager, "tel:+123456789"));
|
|
g_assert_null (calls_manager_get_suitable_origins (manager, "sip:alice@example.org"));
|
|
g_assert_null (calls_manager_get_suitable_origins (manager, "sips:bob@example.org"));
|
|
}
|
|
|
|
static void
|
|
test_calls_manager_dummy_provider ()
|
|
{
|
|
g_autoptr (CallsManager) manager = calls_manager_new ();
|
|
GListModel *origins;
|
|
GListModel *origins_tel;
|
|
guint position;
|
|
g_autoptr (CallsOrigin) origin = NULL;
|
|
g_assert (CALLS_IS_MANAGER (manager));
|
|
|
|
g_assert (calls_manager_get_state (manager) == CALLS_MANAGER_STATE_NO_PROVIDER);
|
|
|
|
origins = calls_manager_get_origins (manager);
|
|
g_assert_true (origins);
|
|
g_assert_cmpuint (g_list_model_get_n_items (origins), ==, 0);
|
|
|
|
calls_manager_add_provider (manager, "dummy");
|
|
g_assert_true (calls_manager_has_provider (manager, "dummy"));
|
|
g_assert_true (calls_manager_get_state (manager) == CALLS_MANAGER_STATE_READY);
|
|
|
|
g_assert_cmpuint (g_list_model_get_n_items (origins), >, 0);
|
|
g_assert_null (calls_manager_get_calls (manager));
|
|
|
|
test_call = NULL;
|
|
g_signal_connect (manager, "call-add", G_CALLBACK (call_add_cb), NULL);
|
|
g_signal_connect (manager, "call-remove", G_CALLBACK (call_remove_cb), NULL);
|
|
|
|
origin = g_list_model_get_item (origins, 0);
|
|
g_assert_true (CALLS_IS_ORIGIN (origin));
|
|
|
|
origins_tel = calls_manager_get_suitable_origins (manager, "tel:+393422342");
|
|
g_assert_true (G_IS_LIST_MODEL (origins_tel));
|
|
g_assert_true (G_IS_LIST_STORE (origins_tel));
|
|
g_assert_true (g_list_store_find (G_LIST_STORE (origins_tel), origin, &position));
|
|
|
|
calls_origin_dial (origin, "+393422342");
|
|
g_assert_true (CALLS_IS_CALL (test_call));
|
|
calls_call_hang_up (test_call);
|
|
g_assert_null (test_call);
|
|
|
|
/* Add new call do check if we remove it when we unload the provider */
|
|
calls_origin_dial (origin, "+393422342");
|
|
|
|
/* Unload the provider */
|
|
calls_manager_remove_provider (manager, "dummy");
|
|
|
|
g_assert_null (test_call);
|
|
g_assert_cmpuint (g_list_model_get_n_items (origins), ==, 0);
|
|
|
|
g_assert (calls_manager_get_state (manager) == CALLS_MANAGER_STATE_NO_PROVIDER);
|
|
}
|
|
|
|
static void
|
|
test_calls_manager_mm_provider ()
|
|
{
|
|
g_autoptr (CallsManager) manager = calls_manager_new ();
|
|
g_assert (CALLS_IS_MANAGER (manager));
|
|
|
|
g_assert (calls_manager_get_state (manager) == CALLS_MANAGER_STATE_NO_PROVIDER);
|
|
calls_manager_add_provider (manager, "mm");
|
|
g_assert (calls_manager_get_state (manager) > CALLS_MANAGER_STATE_NO_PROVIDER);
|
|
g_assert_null (calls_manager_get_calls (manager));
|
|
|
|
calls_manager_remove_provider (manager, "mm");
|
|
g_assert_cmpuint (calls_manager_get_state (manager), ==, CALLS_MANAGER_STATE_NO_PROVIDER);
|
|
}
|
|
|
|
gint
|
|
main (gint argc,
|
|
gchar *argv[])
|
|
{
|
|
gtk_test_init (&argc, &argv, NULL);
|
|
|
|
/* Add builddir as search path */
|
|
#ifdef PLUGIN_BUILDDIR
|
|
peas_engine_add_search_path (peas_engine_get_default (), PLUGIN_BUILDDIR, NULL);
|
|
#endif
|
|
|
|
g_test_add_func("/Calls/Manager/without_provider", test_calls_manager_without_provider);
|
|
g_test_add_func("/Calls/Manager/dummy_provider", test_calls_manager_dummy_provider);
|
|
g_test_add_func("/Calls/Manager/mm_provider", test_calls_manager_mm_provider);
|
|
|
|
return g_test_run();
|
|
}
|