mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-12-25 08:00:12 +01:00
Fixed unit test for make_random_string()
Signed-off-by: Janos SUTO <sj@acts.hu>
This commit is contained in:
parent
ce193974f1
commit
107d88db99
@ -11,20 +11,20 @@ struct data data;
|
|||||||
|
|
||||||
static void test_strtolower(){
|
static void test_strtolower(){
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
struct test_data_s_s test_data_s_s[] = {
|
struct test_data_s_s test_data_s_s[] = {
|
||||||
{ "aaaa", "aaaa"},
|
{ "aaaa", "aaaa"},
|
||||||
{ "aBhu+18", "abhu+18"},
|
{ "aBhu+18", "abhu+18"},
|
||||||
{ "u Uj i", "u uj i"},
|
{ "u Uj i", "u uj i"},
|
||||||
{ "eee?", "eee?"},
|
{ "eee?", "eee?"},
|
||||||
{ "EEE?E", "eee?e"},
|
{ "EEE?E", "eee?e"},
|
||||||
};
|
};
|
||||||
|
|
||||||
TEST_HEADER();
|
TEST_HEADER();
|
||||||
|
|
||||||
for(i=0; i<sizeof(test_data_s_s)/sizeof(struct test_data_s_s); i++){
|
for(i=0; i<sizeof(test_data_s_s)/sizeof(struct test_data_s_s); i++){
|
||||||
strtolower(test_data_s_s[i].s);
|
strtolower(test_data_s_s[i].s);
|
||||||
ASSERT(strcmp(test_data_s_s[i].s, test_data_s_s[i].result) == 0, test_data_s_s[i].result);
|
ASSERT(strcmp(test_data_s_s[i].s, test_data_s_s[i].result) == 0, test_data_s_s[i].result);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_FOOTER();
|
TEST_FOOTER();
|
||||||
}
|
}
|
||||||
@ -32,16 +32,16 @@ static void test_strtolower(){
|
|||||||
|
|
||||||
static void test_extract_verp_address(){
|
static void test_extract_verp_address(){
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
struct test_data_s_s test_data_s_s[] = {
|
struct test_data_s_s test_data_s_s[] = {
|
||||||
{ "archive+user=domain.com@myarchive.local", "user@domain.com"},
|
{ "archive+user=domain.com@myarchive.local", "user@domain.com"},
|
||||||
};
|
};
|
||||||
|
|
||||||
TEST_HEADER();
|
TEST_HEADER();
|
||||||
|
|
||||||
for(i=0; i<sizeof(test_data_s_s)/sizeof(struct test_data_s_s); i++){
|
for(i=0; i<sizeof(test_data_s_s)/sizeof(struct test_data_s_s); i++){
|
||||||
extract_verp_address(test_data_s_s[i].s);
|
extract_verp_address(test_data_s_s[i].s);
|
||||||
ASSERT(strcmp(test_data_s_s[i].s, test_data_s_s[i].result) == 0, test_data_s_s[i].result);
|
ASSERT(strcmp(test_data_s_s[i].s, test_data_s_s[i].result) == 0, test_data_s_s[i].result);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST_FOOTER();
|
TEST_FOOTER();
|
||||||
}
|
}
|
||||||
@ -96,7 +96,7 @@ static void test_make_random_string(){
|
|||||||
TEST_HEADER();
|
TEST_HEADER();
|
||||||
|
|
||||||
for(i=0; i<10; i++){
|
for(i=0; i<10; i++){
|
||||||
make_random_string(buf, sizeof(buf)-1);
|
make_random_string((unsigned char*)&buf[0], QUEUE_ID_LEN);
|
||||||
printf("%s ", buf);
|
printf("%s ", buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user