[c2fa827] | 1 | #include <stdlib.h> |
---|
| 2 | #include <glib.h> |
---|
| 3 | #include <gmodule.h> |
---|
| 4 | #include <check.h> |
---|
[b40e60d] | 5 | #include <locale.h> |
---|
[1fc2958] | 6 | #include "bitlbee.h" |
---|
[6a90967] | 7 | #include "testsuite.h" |
---|
[1fc2958] | 8 | |
---|
| 9 | global_t global; /* Against global namespace pollution */ |
---|
| 10 | |
---|
[6a90967] | 11 | gboolean g_io_channel_pair(GIOChannel **ch1, GIOChannel **ch2) |
---|
| 12 | { |
---|
| 13 | int sock[2]; |
---|
| 14 | if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNIX, sock) < 0) { |
---|
| 15 | perror("socketpair"); |
---|
| 16 | return FALSE; |
---|
| 17 | } |
---|
| 18 | |
---|
| 19 | *ch1 = g_io_channel_unix_new(sock[0]); |
---|
| 20 | *ch2 = g_io_channel_unix_new(sock[1]); |
---|
| 21 | return TRUE; |
---|
| 22 | } |
---|
| 23 | |
---|
[ed5df81] | 24 | irc_t *torture_irc(void) |
---|
| 25 | { |
---|
| 26 | irc_t *irc; |
---|
| 27 | GIOChannel *ch1, *ch2; |
---|
| 28 | if (!g_io_channel_pair(&ch1, &ch2)) |
---|
| 29 | return NULL; |
---|
| 30 | irc = irc_new(g_io_channel_unix_get_fd(ch1)); |
---|
| 31 | return irc; |
---|
| 32 | } |
---|
| 33 | |
---|
[1fc2958] | 34 | double gettime() |
---|
| 35 | { |
---|
| 36 | struct timeval time[1]; |
---|
| 37 | |
---|
| 38 | gettimeofday( time, 0 ); |
---|
| 39 | return( (double) time->tv_sec + (double) time->tv_usec / 1000000 ); |
---|
| 40 | } |
---|
[c2fa827] | 41 | |
---|
| 42 | /* From check_util.c */ |
---|
| 43 | Suite *util_suite(void); |
---|
| 44 | |
---|
[1fc2958] | 45 | /* From check_nick.c */ |
---|
| 46 | Suite *nick_suite(void); |
---|
| 47 | |
---|
[6a90967] | 48 | /* From check_md5.c */ |
---|
| 49 | Suite *md5_suite(void); |
---|
| 50 | |
---|
[2305488] | 51 | /* From check_arc.c */ |
---|
| 52 | Suite *arc_suite(void); |
---|
| 53 | |
---|
[7bcdde3] | 54 | /* From check_irc.c */ |
---|
| 55 | Suite *irc_suite(void); |
---|
| 56 | |
---|
[c227706] | 57 | /* From check_help.c */ |
---|
| 58 | Suite *help_suite(void); |
---|
| 59 | |
---|
[ed5df81] | 60 | /* From check_user.c */ |
---|
| 61 | Suite *user_suite(void); |
---|
| 62 | |
---|
[7738014] | 63 | /* From check_set.c */ |
---|
| 64 | Suite *set_suite(void); |
---|
| 65 | |
---|
[af97b23] | 66 | /* From check_jabber_sasl.c */ |
---|
| 67 | Suite *jabber_sasl_suite(void); |
---|
| 68 | |
---|
[3e6764a] | 69 | /* From check_jabber_sasl.c */ |
---|
| 70 | Suite *jabber_util_suite(void); |
---|
| 71 | |
---|
[3b4cc8f] | 72 | int main (int argc, char **argv) |
---|
[c2fa827] | 73 | { |
---|
| 74 | int nf; |
---|
[3b4cc8f] | 75 | SRunner *sr; |
---|
| 76 | GOptionContext *pc; |
---|
| 77 | gboolean no_fork = FALSE; |
---|
| 78 | gboolean verbose = FALSE; |
---|
| 79 | GOptionEntry options[] = { |
---|
| 80 | {"no-fork", 'n', 0, G_OPTION_ARG_NONE, &no_fork, "Don't fork" }, |
---|
| 81 | {"verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose, "Be verbose", NULL }, |
---|
| 82 | { NULL } |
---|
| 83 | }; |
---|
| 84 | int i; |
---|
| 85 | |
---|
| 86 | pc = g_option_context_new(""); |
---|
| 87 | g_option_context_add_main_entries(pc, options, NULL); |
---|
| 88 | |
---|
| 89 | if(!g_option_context_parse(pc, &argc, &argv, NULL)) |
---|
| 90 | return 1; |
---|
| 91 | |
---|
| 92 | g_option_context_free(pc); |
---|
| 93 | |
---|
[7bcdde3] | 94 | log_init(); |
---|
[1521a85] | 95 | b_main_init(); |
---|
[b40e60d] | 96 | setlocale(LC_CTYPE, ""); |
---|
[7bcdde3] | 97 | |
---|
| 98 | if (verbose) { |
---|
| 99 | log_link( LOGLVL_ERROR, LOGOUTPUT_CONSOLE ); |
---|
[9225e08] | 100 | #ifdef DEBUG |
---|
[7bcdde3] | 101 | log_link( LOGLVL_DEBUG, LOGOUTPUT_CONSOLE ); |
---|
[9225e08] | 102 | #endif |
---|
[7bcdde3] | 103 | log_link( LOGLVL_INFO, LOGOUTPUT_CONSOLE ); |
---|
| 104 | log_link( LOGLVL_WARNING, LOGOUTPUT_CONSOLE ); |
---|
| 105 | } |
---|
| 106 | |
---|
| 107 | global.conf = conf_load( 0, NULL); |
---|
| 108 | global.conf->runmode = RUNMODE_DAEMON; |
---|
[3b4cc8f] | 109 | |
---|
| 110 | sr = srunner_create(util_suite()); |
---|
[1fc2958] | 111 | srunner_add_suite(sr, nick_suite()); |
---|
[6a90967] | 112 | srunner_add_suite(sr, md5_suite()); |
---|
[2305488] | 113 | srunner_add_suite(sr, arc_suite()); |
---|
[7bcdde3] | 114 | srunner_add_suite(sr, irc_suite()); |
---|
[c227706] | 115 | srunner_add_suite(sr, help_suite()); |
---|
[ed5df81] | 116 | srunner_add_suite(sr, user_suite()); |
---|
[7738014] | 117 | srunner_add_suite(sr, set_suite()); |
---|
[af97b23] | 118 | srunner_add_suite(sr, jabber_sasl_suite()); |
---|
[3e6764a] | 119 | srunner_add_suite(sr, jabber_util_suite()); |
---|
[3b4cc8f] | 120 | if (no_fork) |
---|
| 121 | srunner_set_fork_status(sr, CK_NOFORK); |
---|
| 122 | srunner_run_all (sr, verbose?CK_VERBOSE:CK_NORMAL); |
---|
[c2fa827] | 123 | nf = srunner_ntests_failed(sr); |
---|
| 124 | srunner_free(sr); |
---|
| 125 | return (nf == 0) ? EXIT_SUCCESS : EXIT_FAILURE; |
---|
| 126 | } |
---|