1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
/*
*
* Visual Voicemail Daemon
*
* Copyright (C) 2021, Chris Talbot <chris@talbothome.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <glib.h>
#include <glib/gprintf.h>
#include "vvmutil.h"
static void
test_number_decode (gconstpointer data)
{
char *output;
const char decode_t_mobile_to[] = "VOICE=+12065550110@domain.com";
const char decode_t_mobile_from[] = "VOICE=+14325550110@tmo.com";
const char decode_mint_mobile_to[] = "VOICE=4325550110@domain.com";
const char decode_mint_mobile_from[] = "VOICE=2065550110@tmo.com";
const char decode_att_usa_to[] = "\"4325550110\" <4325550110@crafpaalvml001.nsdeng.att.com>";
const char decode_att_usa_from[] = "\"2065550110\" <2065550110@crafpaalvml001.nsdeng.att.com>";
const char decode_vzw_usa_to[] = "+15465557654@vzwazc.com";
const char decode_vzw_usa_from[] = "+15235555432@vzwazc.com";
const char decode_e164_to[] = "+12065550110";
const char decode_e164_from[] = "+14325550110";
const char decode_fr_bouygues_telecom_to[] = "<0236438476@bouyguestelecom.fr>";
const char decode_fr_bouygues_telecom_from[] = "<0267865545@bouyguestelecom.fr>";
const char decode_fr_orange_telecom_from[] = "+33612345678@dav.orange.fr";
output = parse_email_address (decode_t_mobile_to);
g_assert (g_strcmp0 (output, "+12065550110") == 0);
g_clear_pointer (&output, g_free);
output = parse_email_address (decode_t_mobile_from);
g_assert (g_strcmp0 (output, "+14325550110") == 0);
g_free (output);
output = NULL;
output = parse_email_address (decode_mint_mobile_to);
g_assert (g_strcmp0 (output, "4325550110") == 0);
g_clear_pointer (&output, g_free);
output = parse_email_address (decode_mint_mobile_from);
g_assert (g_strcmp0 (output, "2065550110") == 0);
g_clear_pointer (&output, g_free);
output = parse_email_address (decode_att_usa_to);
g_assert (g_strcmp0 (output, "4325550110") == 0);
g_clear_pointer (&output, g_free);
output = parse_email_address (decode_att_usa_from);
g_assert (g_strcmp0 (output, "2065550110") == 0);
g_clear_pointer (&output, g_free);
output = parse_email_address (decode_vzw_usa_to);
g_assert (g_strcmp0 (output, "+15465557654") == 0);
g_clear_pointer (&output, g_free);
output = parse_email_address (decode_vzw_usa_from);
g_assert (g_strcmp0 (output, "+15235555432") == 0);
g_clear_pointer (&output, g_free);
output = parse_email_address (decode_e164_to);
g_assert (g_strcmp0 (output, "+12065550110") == 0);
g_clear_pointer (&output, g_free);
output = parse_email_address (decode_e164_from);
g_assert (g_strcmp0 (output, "+14325550110") == 0);
g_clear_pointer (&output, g_free);
output = parse_email_address (decode_fr_bouygues_telecom_to);
g_assert (g_strcmp0 (output, "0236438476") == 0);
g_clear_pointer (&output, g_free);
output = parse_email_address (decode_fr_bouygues_telecom_from);
g_assert (g_strcmp0 (output, "0267865545") == 0);
g_clear_pointer (&output, g_free);
output = parse_email_address (decode_fr_orange_telecom_from);
g_assert (g_strcmp0 (output, "+33612345678") == 0);
g_clear_pointer (&output, g_free);
}
int
main (int argc,
char **argv)
{
g_test_init (&argc, &argv, NULL);
g_test_add_data_func ("/vvmutil/Number Decode Test",
NULL, test_number_decode);
return g_test_run ();
}
|