1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-05-14 00:59:26 +00:00

test-contacts: Add more test cases

Testing lookup of both empty string and NULL ensures we won't regress.
This commit is contained in:
Evangelos Ribeiro Tzaras 2023-04-10 10:56:56 +02:00
parent 23ee0475dd
commit cf52fbba67

View file

@ -25,13 +25,48 @@ test_contacts_null_contact (void)
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[])
{
gtk_test_init (&argc, &argv, NULL);
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 ();
}