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