1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-05-13 16:49:29 +00:00
Purism-Calls/tests/test-contacts.c
Evangelos Ribeiro Tzaras cf52fbba67 test-contacts: Add more test cases
Testing lookup of both empty string and NULL ensures we won't regress.
2023-04-13 06:01:05 +00:00

73 lines
2.1 KiB
C

/*
* Copyright (C) 2022 Purism SPC
*
* SPDX-License-Identifier: GPL-3.0+
*
* Author: Evangelos Ribeiro Tzaras <evangelos.tzaras@puri.sm>
*/
#include "calls-best-match.h"
#include "calls-contacts-provider.h"
#include <gtk/gtk.h>
static void
test_contacts_null_contact (void)
{
g_autoptr (CallsContactsProvider) contacts_provider =
calls_contacts_provider_new ();
g_autoptr (CallsBestMatch) best_match = NULL;
best_match = calls_contacts_provider_lookup_id (contacts_provider, NULL);
g_assert_nonnull (best_match);
g_assert_cmpstr (calls_best_match_get_primary_info (best_match), ==, "Anonymous caller");
g_assert_cmpstr (calls_best_match_get_secondary_info (best_match), ==, "");
}
static void
test_contacts_empty_contact (void)
{
g_autoptr (CallsContactsProvider) contacts_provider =
calls_contacts_provider_new ();
g_autoptr (CallsBestMatch) best_match = NULL;
best_match = calls_contacts_provider_lookup_id (contacts_provider, "");
g_assert_nonnull (best_match);
g_assert_cmpstr (calls_best_match_get_primary_info (best_match), ==, "Anonymous caller");
g_assert_cmpstr (calls_best_match_get_secondary_info (best_match), ==, "");
}
static void
test_contacts_unknown_contact (void)
{
g_autoptr (CallsContactsProvider) contacts_provider =
calls_contacts_provider_new ();
g_autoptr (CallsBestMatch) best_match = NULL;
const char *id = "111222333444555666";
best_match = calls_contacts_provider_lookup_id (contacts_provider, id);
g_assert_nonnull (best_match);
g_assert_cmpstr (calls_best_match_get_primary_info (best_match), ==, id);
g_assert_cmpstr (calls_best_match_get_secondary_info (best_match), ==, "");
}
/* TODO set up folks keyfile backend to test "known" contact */
int
main (int argc,
char *argv[])
{
g_test_init (&argc, &argv, NULL);
g_test_add_func ("/Calls/contacts/null", (GTestFunc) test_contacts_null_contact);
g_test_add_func ("/Calls/contacts/empty", (GTestFunc) test_contacts_empty_contact);
g_test_add_func ("/Calls/contacts/unknown", (GTestFunc) test_contacts_unknown_contact);
g_test_run ();
}