2021-04-30 14:24:07 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 Purism SPC
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-3.0+
|
|
|
|
*
|
|
|
|
* Author: Evangelos Ribeiro Tzaras <evangelos.tzaras@puri.sm>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
2021-11-16 14:35:58 +00:00
|
|
|
#include <limits.h>
|
2021-04-30 14:24:07 +00:00
|
|
|
|
|
|
|
static void
|
2021-06-02 18:18:50 +00:00
|
|
|
test_protocol_prefix (void)
|
2021-04-30 14:24:07 +00:00
|
|
|
{
|
|
|
|
g_assert_cmpstr (get_protocol_from_address ("sip:alice@example.org"), ==, "sip");
|
|
|
|
g_assert_cmpstr (get_protocol_from_address ("SIP:alice@example.org"), ==, "sip");
|
|
|
|
g_assert_cmpstr (get_protocol_from_address ("sips:bob@example.org"), ==, "sips");
|
|
|
|
g_assert_cmpstr (get_protocol_from_address ("sIpS:bob@example.org"), ==, "sips");
|
|
|
|
g_assert_cmpstr (get_protocol_from_address ("tel:+49123456789"), ==, "tel");
|
|
|
|
g_assert_cmpstr (get_protocol_from_address ("+49123456789"), ==, NULL);
|
|
|
|
g_assert_cmpstr (get_protocol_from_address_with_fallback ("+49123456789"), ==, "tel");
|
|
|
|
g_assert_cmpstr (get_protocol_from_address ("mailto:charley@spam.com"), ==, NULL);
|
|
|
|
}
|
|
|
|
|
2021-12-07 09:50:19 +00:00
|
|
|
|
2021-11-16 14:35:58 +00:00
|
|
|
static gboolean
|
|
|
|
string_contains_char (char *str, char c)
|
|
|
|
{
|
|
|
|
size_t len = strlen (str);
|
|
|
|
for (guint i = 0; i < len; i++) {
|
|
|
|
if (str[i] == c)
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
2021-12-07 09:50:19 +00:00
|
|
|
|
|
|
|
|
2021-11-16 14:35:58 +00:00
|
|
|
static void
|
|
|
|
test_dtmf_tone_validity (void)
|
|
|
|
{
|
|
|
|
char *valid_tones = "0123456789ABCD*#";
|
|
|
|
|
|
|
|
for (char c = CHAR_MIN; c < CHAR_MAX; c++) {
|
|
|
|
if (string_contains_char (valid_tones, c))
|
|
|
|
g_assert_true (dtmf_tone_key_is_valid (c));
|
|
|
|
else
|
|
|
|
g_assert_false (dtmf_tone_key_is_valid (c));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-30 14:24:07 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc,
|
|
|
|
char *argv[])
|
|
|
|
{
|
|
|
|
gtk_test_init (&argc, &argv, NULL);
|
|
|
|
|
|
|
|
g_test_add_func ("/Calls/util/protocol_prefix", (GTestFunc) test_protocol_prefix);
|
2021-11-16 14:35:58 +00:00
|
|
|
g_test_add_func ("/Calls/util/dtmf_tones", (GTestFunc) test_dtmf_tone_validity);
|
2021-04-30 14:24:07 +00:00
|
|
|
|
|
|
|
g_test_run ();
|
|
|
|
}
|