mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-10-31 18:55:22 +00:00
74 lines
1.6 KiB
C
74 lines
1.6 KiB
C
/*
|
|
* Copyright (C) 2018 Purism SPC
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0+
|
|
*/
|
|
|
|
#include "setup-call.h"
|
|
#include "calls-message-source.h"
|
|
#include "calls-call.h"
|
|
#include "calls-origin.h"
|
|
#include "common.h"
|
|
|
|
#include <gtk/gtk.h>
|
|
#include <string.h>
|
|
|
|
static void
|
|
test_dummy_call_object (CallFixture *fixture,
|
|
gconstpointer user_data)
|
|
{
|
|
g_assert_true (G_IS_OBJECT (fixture->dummy_call));
|
|
g_assert_true (CALLS_IS_MESSAGE_SOURCE (fixture->dummy_call));
|
|
g_assert_true (CALLS_IS_CALL (fixture->dummy_call));
|
|
}
|
|
|
|
|
|
static void
|
|
test_dummy_call_get_number (CallFixture *fixture,
|
|
gconstpointer user_data)
|
|
{
|
|
const gchar *number;
|
|
number = calls_call_get_number (CALLS_CALL (fixture->dummy_call));
|
|
g_assert_nonnull (number);
|
|
g_assert_cmpstr (number, ==, TEST_CALL_NUMBER);
|
|
}
|
|
|
|
static void
|
|
test_dummy_call_get_state (CallFixture *fixture,
|
|
gconstpointer user_data)
|
|
{
|
|
CallsCallState state;
|
|
state = calls_call_get_state (CALLS_CALL (fixture->dummy_call));
|
|
g_assert_true (state == CALLS_CALL_STATE_ACTIVE);
|
|
}
|
|
|
|
|
|
static void
|
|
test_dummy_call_hang_up (CallFixture *fixture,
|
|
gconstpointer user_data)
|
|
{
|
|
calls_call_hang_up (CALLS_CALL (fixture->dummy_call));
|
|
|
|
g_assert_null (calls_origin_get_calls
|
|
(CALLS_ORIGIN (fixture->parent.dummy_origin)));
|
|
}
|
|
|
|
gint
|
|
main (gint argc,
|
|
gchar *argv[])
|
|
{
|
|
gtk_test_init (&argc, &argv, NULL);
|
|
|
|
|
|
#define add_test(name) add_calls_test(Call, call, name)
|
|
|
|
add_test(object);
|
|
add_test(get_number);
|
|
add_test(get_state);
|
|
add_test(hang_up);
|
|
|
|
#undef add_test
|
|
|
|
|
|
return g_test_run();
|
|
}
|