[c2fa827] | 1 | #include <stdlib.h> |
---|
| 2 | #include <glib.h> |
---|
| 3 | #include <gmodule.h> |
---|
| 4 | #include <check.h> |
---|
| 5 | #include <string.h> |
---|
| 6 | #include "irc.h" |
---|
| 7 | #include "set.h" |
---|
| 8 | #include "util.h" |
---|
| 9 | |
---|
| 10 | START_TEST(test_strip_linefeed) |
---|
| 11 | { |
---|
| 12 | int i; |
---|
| 13 | const char *get[] = { "Test", "Test\r", "Test\rX\r", NULL }; |
---|
| 14 | const char *expected[] = { "Test", "Test", "TestX", NULL }; |
---|
| 15 | |
---|
| 16 | for (i = 0; get[i]; i++) { |
---|
| 17 | char copy[20]; |
---|
| 18 | strcpy(copy, get[i]); |
---|
| 19 | strip_linefeed(copy); |
---|
| 20 | fail_unless (strcmp(copy, expected[i]) == 0, |
---|
| 21 | "(%d) strip_linefeed broken: %s -> %s (expected: %s)", |
---|
| 22 | i, get[i], copy, expected[i]); |
---|
| 23 | } |
---|
| 24 | } |
---|
| 25 | END_TEST |
---|
| 26 | |
---|
[1fc2958] | 27 | START_TEST(test_strip_newlines) |
---|
| 28 | { |
---|
| 29 | int i; |
---|
| 30 | const char *get[] = { "Test", "Test\r\n", "Test\nX\n", NULL }; |
---|
| 31 | const char *expected[] = { "Test", "Test ", "Test X ", NULL }; |
---|
| 32 | |
---|
| 33 | for (i = 0; get[i]; i++) { |
---|
| 34 | char copy[20], *ret; |
---|
| 35 | strcpy(copy, get[i]); |
---|
| 36 | ret = strip_newlines(copy); |
---|
| 37 | fail_unless (strcmp(copy, expected[i]) == 0, |
---|
| 38 | "(%d) strip_newlines broken: %s -> %s (expected: %s)", |
---|
| 39 | i, get[i], copy, expected[i]); |
---|
| 40 | fail_unless (copy == ret, "Original string not returned"); |
---|
| 41 | } |
---|
| 42 | } |
---|
| 43 | END_TEST |
---|
| 44 | |
---|
[c2fa827] | 45 | Suite *util_suite (void) |
---|
| 46 | { |
---|
| 47 | Suite *s = suite_create("Util"); |
---|
| 48 | TCase *tc_core = tcase_create("Core"); |
---|
| 49 | suite_add_tcase (s, tc_core); |
---|
| 50 | tcase_add_test (tc_core, test_strip_linefeed); |
---|
[1fc2958] | 51 | tcase_add_test (tc_core, test_strip_newlines); |
---|
[c2fa827] | 52 | return s; |
---|
| 53 | } |
---|