Added muc functional tests

This commit is contained in:
James Booth
2015-12-20 02:13:01 +00:00
parent 1f56c12377
commit 87b4d7cbab
4 changed files with 162 additions and 0 deletions

View File

@@ -20,6 +20,7 @@
#include "test_receipts.h"
#include "test_roster.h"
#include "test_software.h"
#include "test_muc.h"
#define PROF_FUNC_TEST(test) unit_test_setup_teardown(test, init_prof_test, close_prof_test)
@@ -82,6 +83,15 @@ int main(int argc, char* argv[]) {
PROF_FUNC_TEST(display_software_version_result_when_from_domainpart),
PROF_FUNC_TEST(show_message_in_chat_window_when_no_resource),
PROF_FUNC_TEST(display_software_version_result_in_chat),
PROF_FUNC_TEST(sends_room_join),
PROF_FUNC_TEST(sends_room_join_with_default_muc_service),
PROF_FUNC_TEST(sends_room_join_with_nick),
PROF_FUNC_TEST(sends_room_join_with_password),
PROF_FUNC_TEST(sends_room_join_with_nick_and_password),
PROF_FUNC_TEST(show_role_and_affiliation_on_join),
PROF_FUNC_TEST(show_subject_on_join),
};
return run_tests(all_tests);