about summary refs log tree commit diff stats
path: root/tests/test_muc.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-05-28 18:50:55 +0100
committerJames Booth <boothj5@gmail.com>2015-05-28 18:50:55 +0100
commit6d6bb6458873196f904257cd00a6f2221262783d (patch)
tree2b751a3e8cc54dc487a95703898fc9a96e438dbf /tests/test_muc.c
parent0c99dc7ad60843aa7719a9c75aa701e3c86720da (diff)
downloadprofani-tty-6d6bb6458873196f904257cd00a6f2221262783d.tar.gz
Moved tests -> unittests
Diffstat (limited to 'tests/test_muc.c')
-rw-r--r--tests/test_muc.c78
1 files changed, 0 insertions, 78 deletions
diff --git a/tests/test_muc.c b/tests/test_muc.c
deleted file mode 100644
index e3b7f9b0..00000000
--- a/tests/test_muc.c
+++ /dev/null
@@ -1,78 +0,0 @@
-#include <stdarg.h>
-#include <stddef.h>
-#include <setjmp.h>
-#include <cmocka.h>
-#include <stdlib.h>
-
-#include "muc.h"
-
-void muc_before_test(void **state)
-{
-    muc_init();
-}
-
-void muc_after_test(void **state)
-{
-    muc_close();
-}
-
-void test_muc_invites_add(void **state)
-{
-    char *room = "room@conf.server";
-    muc_invites_add(room, NULL);
-
-    gboolean invite_exists = muc_invites_contain(room);
-
-    assert_true(invite_exists);
-}
-
-void test_muc_remove_invite(void **state)
-{
-    char *room = "room@conf.server";
-    muc_invites_add(room, NULL);
-    muc_invites_remove(room);
-
-    gboolean invite_exists = muc_invites_contain(room);
-
-    assert_false(invite_exists);
-}
-
-void test_muc_invites_count_0(void **state)
-{
-    int invite_count = muc_invites_count();
-
-    assert_true(invite_count == 0);
-}
-
-void test_muc_invites_count_5(void **state)
-{
-    muc_invites_add("room1@conf.server", NULL);
-    muc_invites_add("room2@conf.server", NULL);
-    muc_invites_add("room3@conf.server", NULL);
-    muc_invites_add("room4@conf.server", NULL);
-    muc_invites_add("room5@conf.server", NULL);
-
-    int invite_count = muc_invites_count();
-
-    assert_true(invite_count == 5);
-}
-
-void test_muc_room_is_not_active(void **state)
-{
-    char *room = "room@server.org";
-
-    gboolean room_is_active = muc_active(room);
-
-    assert_false(room_is_active);
-}
-
-void test_muc_active(void **state)
-{
-    char *room = "room@server.org";
-    char *nick = "bob";
-    muc_join(room, nick, NULL, FALSE);
-
-    gboolean room_is_active = muc_active(room);
-
-    assert_true(room_is_active);
-}