This scales better than using a built in array. Closes: https://gitlab.gnome.org/GNOME/calls/-/issues/714 Signed-off-by: Guido Günther <agx@sigxcpu.org> Part-of: <https://gitlab.gnome.org/GNOME/calls/-/merge_requests/790>
66 lines
1.6 KiB
C
66 lines
1.6 KiB
C
/*
|
|
* Copyright (C) 2022 The Phosh Developers
|
|
*
|
|
* Author: Guido Günther <agx@sigxcpu.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#include "calls-emergency-call-types.h"
|
|
|
|
#include <glib.h>
|
|
|
|
static void
|
|
test_lookup (void)
|
|
{
|
|
char *lookup = NULL;
|
|
|
|
/* No country code -> no match */
|
|
lookup = calls_emergency_call_type_get_name ("112", NULL);
|
|
g_assert_null (lookup);
|
|
|
|
/* Country code that's not in the table */
|
|
lookup = calls_emergency_call_type_get_name ("112", "doesnotexist");
|
|
g_assert_null (lookup);
|
|
|
|
/* Numbers that match a single type */
|
|
lookup = calls_emergency_call_type_get_name ("117", "CH");
|
|
g_assert_cmpstr (lookup, ==, "Police");
|
|
g_free (lookup);
|
|
|
|
lookup = calls_emergency_call_type_get_name ("144", "CH");
|
|
g_assert_cmpstr (lookup, ==, "Ambulance");
|
|
g_free (lookup);
|
|
|
|
/* Numbers that match multiple types */
|
|
lookup = calls_emergency_call_type_get_name ("112", "DE");
|
|
g_assert_cmpstr (lookup, ==, "Police, Ambulance, Fire Brigade");
|
|
g_free (lookup);
|
|
|
|
/* Numbers that doesn't match */
|
|
lookup = calls_emergency_call_type_get_name ("123456", "DE");
|
|
g_assert_null (lookup);
|
|
|
|
/* Lookup from service provider db */
|
|
lookup = calls_emergency_call_type_get_name ("112", "yy");
|
|
g_assert_cmpstr (lookup, ==, "Police, Ambulance, Fire Brigade");
|
|
g_free (lookup);
|
|
}
|
|
|
|
int
|
|
main (int argc,
|
|
char *argv[])
|
|
{
|
|
gint ret;
|
|
g_test_init (&argc, &argv, NULL);
|
|
|
|
calls_emergency_call_types_init (TEST_DATABASE);
|
|
|
|
g_test_add_func ("/Calls/EmergencyCallTypes/lookup", test_lookup);
|
|
|
|
ret = g_test_run ();
|
|
|
|
calls_emergency_call_types_destroy ();
|
|
return ret;
|
|
}
|