|
static struct ast_module_info | __mod_info = { .name = AST_MODULE, .flags = AST_MODFLAG_LOAD_ORDER , .description = "Callerid Parse Tests" , .key = "This paragraph is copyright (c) 2006 by Digium, Inc. \In order for your module to load, it must return this \key via a function called \"key\". Any code which \includes this paragraph must be licensed under the GNU \General Public License version 2 or later (at your \option). In addition to Digium's general reservations \of rights, Digium expressly reserves the right to \allow other parties to license this paragraph under \different terms. Any use of Digium, Inc. trademarks or \logos (including \"Asterisk\" or \"Digium\") without \express written permission of Digium, Inc. is prohibited.\n" , .buildopt_sum = AST_BUILDOPT_SUM, .load = load_module, .unload = unload_module, .load_pri = AST_MODPRI_DEFAULT, .support_level = AST_MODULE_SUPPORT_CORE, } |
|
static const struct ast_module_info * | ast_module_info = &__mod_info |
|
Callerid Tests.
- Author
Kinsey Moore <[email protected]>
This is an Asterisk test module for callerid functionality
Definition in file test_callerid.c.
AST_TEST_DEFINE |
( |
parse_nominal |
| ) |
|
Definition at line 47 of file test_callerid.c.
References ARRAY_LEN, ast_callerid_parse(), ast_free, ast_strdup, ast_strlen_zero, AST_TEST_FAIL, AST_TEST_NOT_RUN, AST_TEST_PASS, ast_test_status_update, cid_set::cid, sip_to_pjsip::info(), cid_set::name, NULL, cid_set::number, RAII_VAR, TEST_EXECUTE, and TEST_INIT.
49 static const struct cid_set cid_sets[] = {
50 {
"\"name\" <number>",
"name",
"number"},
51 {
"\" name \" <number>",
" name ",
"number"},
52 {
"name <number>",
"name",
"number"},
53 {
" name <number>",
"name",
"number"},
54 {
"\"\" <number>",
NULL,
"number"},
55 {
"<number>",
NULL,
"number"},
56 {
"name",
"name",
NULL},
57 {
" name",
"name",
NULL},
58 {
"\"name\"",
"name",
NULL},
59 {
"\"*10\"",
"*10",
NULL},
60 {
" \"*10\"",
"*10",
NULL},
61 {
"\"name\" <>",
"name",
NULL},
62 {
"name <>",
"name",
NULL},
63 {
"1234",
NULL,
"1234"},
64 {
" 1234",
NULL,
"1234"},
65 {
"\"na\\\"me\" <number>",
"na\"me",
"number"},
73 info->name =
"parse_nominal";
74 info->category =
"/main/callerid/";
75 info->summary =
"Callerid nominal parse unit test";
77 "This tests parsing of nominal callerid strings.";
83 for (i = 0; i <
ARRAY_LEN(cid_sets); i++) {
87 if (!cid_sets[i].name == !
ast_strlen_zero(name) || (cid_sets[i].name && strcmp(name, cid_sets[i].name))) {
89 "Expected callerid name '%s' instead of '%s'\n",
90 cid_sets[i].name, name);
94 if (!cid_sets[i].number == !
ast_strlen_zero(number) || (cid_sets[i].number && strcmp(number, cid_sets[i].number))) {
96 "Expected callerid number '%s' instead of '%s'\n",
97 cid_sets[i].number, number);
#define ast_strdup(str)
A wrapper for strdup()
#define ast_strlen_zero(foo)
#define RAII_VAR(vartype, varname, initval, dtor)
Declare a variable that will call a destructor function when it goes out of scope.
#define ast_test_status_update(a, b, c...)
int ast_callerid_parse(char *instr, char **name, char **location)
Destructively parse inbuf into name and location (or number)
AST_TEST_DEFINE |
( |
parse_off_nominal |
| ) |
|
Definition at line 105 of file test_callerid.c.
References ARRAY_LEN, ast_callerid_parse(), ast_free, ast_strdup, ast_strlen_zero, AST_TEST_FAIL, AST_TEST_NOT_RUN, AST_TEST_PASS, ast_test_status_update, cid_set::cid, sip_to_pjsip::info(), cid_set::name, cid_set::number, RAII_VAR, TEST_EXECUTE, and TEST_INIT.
107 static const struct cid_set cid_sets[] = {
108 {
"na\\\"me <number>",
"na\"me",
"number"},
109 {
"\"na\"me\" <number>",
"na\"me",
"number"},
110 {
"na\"me <number>",
"na\"me",
"number"},
111 {
"\"name <number>",
"\"name",
"number"},
112 {
"name <number",
"name",
"number"},
113 {
"\"name <number>\"",
"name",
"number"},
121 info->name =
"parse_off_nominal";
122 info->category =
"/main/callerid/";
123 info->summary =
"Callerid off-nominal parse unit test";
125 "This tests parsing of off-nominal callerid strings.";
131 for (i = 0; i <
ARRAY_LEN(cid_sets); i++) {
135 if (!cid_sets[i].name == !
ast_strlen_zero(name) || (cid_sets[i].name && strcmp(name, cid_sets[i].name))) {
137 "Expected callerid name '%s' instead of '%s'\n",
138 cid_sets[i].name, name);
142 if (!cid_sets[i].number == !
ast_strlen_zero(number) || (cid_sets[i].number && strcmp(number, cid_sets[i].number))) {
144 "Expected callerid number '%s' instead of '%s'\n",
145 cid_sets[i].number, number);
#define ast_strdup(str)
A wrapper for strdup()
#define ast_strlen_zero(foo)
#define RAII_VAR(vartype, varname, initval, dtor)
Declare a variable that will call a destructor function when it goes out of scope.
#define ast_test_status_update(a, b, c...)
int ast_callerid_parse(char *instr, char **name, char **location)
Destructively parse inbuf into name and location (or number)