about summary refs log tree commit diff stats
path: root/tests/unittests/test_server_events.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-09-25 23:30:44 +0100
committerJames Booth <boothj5@gmail.com>2016-09-25 23:30:44 +0100
commita48df40138d0e7f3709a2ab45157f5696b6f861b (patch)
tree60d99c7a3e72fce75eceecfa1e2c6a3b35362bc5 /tests/unittests/test_server_events.c
parent9796b23cfd5c0e3ab061f39bf77708fff4a3f52c (diff)
downloadprofani-tty-a48df40138d0e7f3709a2ab45157f5696b6f861b.tar.gz
Fix assertion errors in unit tests
Diffstat (limited to 'tests/unittests/test_server_events.c')
-rw-r--r--tests/unittests/test_server_events.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/unittests/test_server_events.c b/tests/unittests/test_server_events.c
index 9ab54cdb..fb178ac2 100644
--- a/tests/unittests/test_server_events.c
+++ b/tests/unittests/test_server_events.c
@@ -17,6 +17,7 @@
 void console_shows_online_presence_when_set_online(void **state)
 {
     prefs_set_string(PREF_STATUSES_CONSOLE, "online");
+    plugins_init();
     roster_create();
     char *barejid = "test1@server";
     roster_add(barejid, "bob", NULL, "both", FALSE);
@@ -29,11 +30,13 @@ void console_shows_online_presence_when_set_online(void **state)
     sv_ev_contact_online(barejid, resource, NULL, NULL);
 
     roster_destroy();
+    plugins_shutdown();
 }
 
 void console_shows_online_presence_when_set_all(void **state)
 {
     prefs_set_string(PREF_STATUSES_CONSOLE, "all");
+    plugins_init();
     roster_create();
     char *barejid = "test1@server";
     roster_add(barejid, "bob", NULL, "both", FALSE);
@@ -46,11 +49,13 @@ void console_shows_online_presence_when_set_all(void **state)
     sv_ev_contact_online(barejid, resource, NULL, NULL);
 
     roster_destroy();
+    plugins_shutdown();
 }
 
 void console_shows_dnd_presence_when_set_all(void **state)
 {
     prefs_set_string(PREF_STATUSES_CONSOLE, "all");
+    plugins_init();
     roster_create();
     char *barejid = "test1@server";
     roster_add(barejid, "bob", NULL, "both", FALSE);
@@ -63,10 +68,12 @@ void console_shows_dnd_presence_when_set_all(void **state)
     sv_ev_contact_online(barejid, resource, NULL, NULL);
 
     roster_destroy();
+    plugins_shutdown();
 }
 
 void handle_offline_removes_chat_session(void **state)
 {
+    plugins_init();
     roster_create();
     chat_sessions_init();
     char *barejid = "friend@server.chat.com";
@@ -85,6 +92,7 @@ void handle_offline_removes_chat_session(void **state)
 
     roster_destroy();
     chat_sessions_clear();
+    plugins_shutdown();
 }
 
 void lost_connection_clears_chat_sessions(void **state)