mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-11-16 18:46:42 +00:00
tests: Add dtmf tone validity tests
This commit is contained in:
parent
afd1034dd1
commit
075dca5c35
1 changed files with 26 additions and 0 deletions
|
@ -9,6 +9,7 @@
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
#include <gtk/gtk.h>
|
#include <gtk/gtk.h>
|
||||||
|
#include <limits.h>
|
||||||
|
|
||||||
static void
|
static void
|
||||||
test_protocol_prefix (void)
|
test_protocol_prefix (void)
|
||||||
|
@ -23,6 +24,30 @@ test_protocol_prefix (void)
|
||||||
g_assert_cmpstr (get_protocol_from_address ("mailto:charley@spam.com"), ==, NULL);
|
g_assert_cmpstr (get_protocol_from_address ("mailto:charley@spam.com"), ==, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
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));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
int
|
int
|
||||||
main (int argc,
|
main (int argc,
|
||||||
|
@ -31,6 +56,7 @@ main (int argc,
|
||||||
gtk_test_init (&argc, &argv, NULL);
|
gtk_test_init (&argc, &argv, NULL);
|
||||||
|
|
||||||
g_test_add_func ("/Calls/util/protocol_prefix", (GTestFunc) test_protocol_prefix);
|
g_test_add_func ("/Calls/util/protocol_prefix", (GTestFunc) test_protocol_prefix);
|
||||||
|
g_test_add_func ("/Calls/util/dtmf_tones", (GTestFunc) test_dtmf_tone_validity);
|
||||||
|
|
||||||
g_test_run ();
|
g_test_run ();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue