mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-12-04 20:07:36 +00:00
tests: Don't mock calls_contacts_provider_new()
Having set which folks backends to use the real function can be used without causing any warnings leading to the build to fail.
This commit is contained in:
parent
b6bdfaca99
commit
e5a6ace32d
5 changed files with 3 additions and 45 deletions
|
@ -23,16 +23,12 @@ test_link_args = [
|
||||||
'-fPIC',
|
'-fPIC',
|
||||||
]
|
]
|
||||||
|
|
||||||
mock_link_args = [ test_link_args,
|
|
||||||
'-Wl,--wrap=calls_contacts_provider_new',
|
|
||||||
]
|
|
||||||
|
|
||||||
|
|
||||||
test_sources = [ 'test-manager.c' ]
|
test_sources = [ 'test-manager.c' ]
|
||||||
|
|
||||||
t = executable('manager', test_sources,
|
t = executable('manager', test_sources,
|
||||||
c_args : test_cflags,
|
c_args : test_cflags,
|
||||||
link_args: mock_link_args,
|
link_args: test_link_args,
|
||||||
pie: true,
|
pie: true,
|
||||||
link_with : [calls_vala, libcalls],
|
link_with : [calls_vala, libcalls],
|
||||||
dependencies: calls_deps,
|
dependencies: calls_deps,
|
||||||
|
@ -73,7 +69,7 @@ test('util', t, env: test_env)
|
||||||
test_sources = [ 'test-ui-call.c', 'mock-call.c', 'mock-call.h' ]
|
test_sources = [ 'test-ui-call.c', 'mock-call.c', 'mock-call.h' ]
|
||||||
t = executable('ui-call', test_sources,
|
t = executable('ui-call', test_sources,
|
||||||
c_args : test_cflags,
|
c_args : test_cflags,
|
||||||
link_args : mock_link_args,
|
link_args : test_link_args,
|
||||||
pie: true,
|
pie: true,
|
||||||
link_with : [calls_vala, libcalls],
|
link_with : [calls_vala, libcalls],
|
||||||
dependencies : calls_deps,
|
dependencies : calls_deps,
|
||||||
|
@ -90,7 +86,7 @@ test_sources = [
|
||||||
|
|
||||||
t = executable('ringer', test_sources,
|
t = executable('ringer', test_sources,
|
||||||
c_args : test_cflags,
|
c_args : test_cflags,
|
||||||
link_args: mock_link_args,
|
link_args: test_link_args,
|
||||||
pie: true,
|
pie: true,
|
||||||
link_with : [calls_vala, libcalls, libfeedback],
|
link_with : [calls_vala, libcalls, libfeedback],
|
||||||
dependencies: calls_deps,
|
dependencies: calls_deps,
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright (C) 2021 Purism SPC
|
|
||||||
*
|
|
||||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
||||||
*
|
|
||||||
* Author: Evangelos Ribeiro Tzaras <devrtz@fortysixandtwo.eu>
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include "calls-contacts-provider.h"
|
|
||||||
|
|
||||||
CallsContactsProvider *__wrap_calls_contacts_provider_new (void);
|
|
|
@ -5,18 +5,11 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "calls-manager.h"
|
#include "calls-manager.h"
|
||||||
#include "mock-contacts-provider.h"
|
|
||||||
|
|
||||||
#include <cui-call.h>
|
#include <cui-call.h>
|
||||||
#include <gtk/gtk.h>
|
#include <gtk/gtk.h>
|
||||||
#include <libpeas/peas.h>
|
#include <libpeas/peas.h>
|
||||||
|
|
||||||
CallsContactsProvider *
|
|
||||||
__wrap_calls_contacts_provider_new (void)
|
|
||||||
{
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
struct TestData {
|
struct TestData {
|
||||||
GMainLoop *loop;
|
GMainLoop *loop;
|
||||||
CallsManager *manager;
|
CallsManager *manager;
|
||||||
|
|
|
@ -11,15 +11,6 @@
|
||||||
#include "calls-ringer.h"
|
#include "calls-ringer.h"
|
||||||
#include "calls-ui-call-data.h"
|
#include "calls-ui-call-data.h"
|
||||||
#include "mock-call.h"
|
#include "mock-call.h"
|
||||||
#include "mock-contacts-provider.h"
|
|
||||||
|
|
||||||
|
|
||||||
/* mock calls_contacts_provider_new() */
|
|
||||||
CallsContactsProvider *
|
|
||||||
__wrap_calls_contacts_provider_new (void)
|
|
||||||
{
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* add or remove calls */
|
/* add or remove calls */
|
||||||
|
|
|
@ -9,17 +9,9 @@
|
||||||
|
|
||||||
#include "calls-ui-call-data.h"
|
#include "calls-ui-call-data.h"
|
||||||
#include "mock-call.h"
|
#include "mock-call.h"
|
||||||
#include "mock-contacts-provider.h"
|
|
||||||
|
|
||||||
#include <gtk/gtk.h>
|
#include <gtk/gtk.h>
|
||||||
|
|
||||||
CallsContactsProvider *
|
|
||||||
__wrap_calls_contacts_provider_new (void)
|
|
||||||
{
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
test_cui_call_state_mapping (void)
|
test_cui_call_state_mapping (void)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue