2015-05-17 01:11:03 +01:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <setjmp.h>
|
|
|
|
#include <cmocka.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "proftest.h"
|
|
|
|
#include "test_connect.h"
|
2015-05-28 20:02:16 +01:00
|
|
|
#include "test_ping.h"
|
|
|
|
#include "test_rooms.h"
|
2015-05-29 01:01:34 +01:00
|
|
|
#include "test_presence.h"
|
2015-05-31 00:12:13 +01:00
|
|
|
#include "test_message.h"
|
2015-06-06 01:02:27 +01:00
|
|
|
#include "test_chat_session.h"
|
2015-05-17 01:11:03 +01:00
|
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
|
|
|
|
const UnitTest all_tests[] = {
|
2015-05-24 20:31:18 +01:00
|
|
|
|
2015-05-27 01:06:17 +01:00
|
|
|
unit_test_setup_teardown(connect_jid_requests_roster,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
|
|
|
unit_test_setup_teardown(connect_jid_sends_presence_after_receiving_roster,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
|
|
|
unit_test_setup_teardown(connect_jid_requests_bookmarks,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
|
|
|
unit_test_setup_teardown(connect_bad_password,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
2015-05-28 20:02:16 +01:00
|
|
|
unit_test_setup_teardown(connect_shows_presence_updates,
|
2015-05-27 19:48:25 +01:00
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
2015-05-28 20:02:16 +01:00
|
|
|
|
|
|
|
unit_test_setup_teardown(ping_multiple,
|
2015-05-27 23:00:42 +01:00
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
2015-05-28 20:02:16 +01:00
|
|
|
unit_test_setup_teardown(ping_responds,
|
2015-05-27 23:00:42 +01:00
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
2015-05-28 20:02:16 +01:00
|
|
|
|
|
|
|
unit_test_setup_teardown(rooms_query,
|
2015-05-27 23:00:42 +01:00
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
2015-05-29 01:01:34 +01:00
|
|
|
|
|
|
|
unit_test_setup_teardown(presence_away,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
|
|
|
unit_test_setup_teardown(presence_away_with_message,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
2015-05-29 01:10:45 +01:00
|
|
|
unit_test_setup_teardown(presence_online,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
|
|
|
unit_test_setup_teardown(presence_online_with_message,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
|
|
|
unit_test_setup_teardown(presence_xa,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
|
|
|
unit_test_setup_teardown(presence_xa_with_message,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
|
|
|
unit_test_setup_teardown(presence_dnd,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
|
|
|
unit_test_setup_teardown(presence_dnd_with_message,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
|
|
|
unit_test_setup_teardown(presence_chat,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
|
|
|
unit_test_setup_teardown(presence_chat_with_message,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
2015-05-29 01:22:24 +01:00
|
|
|
unit_test_setup_teardown(presence_set_priority,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
|
|
|
unit_test_setup_teardown(presence_includes_priority,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
2015-05-30 22:44:41 +01:00
|
|
|
unit_test_setup_teardown(presence_received,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
2015-05-31 00:12:13 +01:00
|
|
|
|
|
|
|
unit_test_setup_teardown(message_send,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
|
|
|
unit_test_setup_teardown(message_receive,
|
|
|
|
init_prof_test,
|
2015-06-06 01:02:27 +01:00
|
|
|
close_prof_test),
|
|
|
|
|
|
|
|
unit_test_setup_teardown(sends_message_to_barejid_when_contact_offline,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
|
|
|
unit_test_setup_teardown(sends_message_to_barejid_when_contact_online,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
|
|
|
unit_test_setup_teardown(sends_message_to_fulljid_when_received_from_fulljid,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
|
|
|
unit_test_setup_teardown(sends_subsequent_messages_to_fulljid,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
|
|
|
unit_test_setup_teardown(resets_to_barejid_after_presence_received,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
|
|
|
unit_test_setup_teardown(new_session_when_message_received_from_different_fulljid,
|
|
|
|
init_prof_test,
|
|
|
|
close_prof_test),
|
2015-05-17 01:11:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
return run_tests(all_tests);
|
|
|
|
}
|