1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-07-07 18:04:15 -04:00
profanity/tests/test_muc.c

79 lines
1.5 KiB
C
Raw Normal View History

2014-01-30 18:32:52 -05:00
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
#include <stdlib.h>
#include "muc.h"
2014-01-30 18:41:18 -05:00
void muc_before_test(void **state)
{
muc_init();
}
void muc_after_test(void **state)
{
muc_close();
}
2014-09-28 17:09:20 -04:00
void test_muc_invites_add(void **state)
2014-01-30 18:32:52 -05:00
{
char *room = "room@conf.server";
2014-09-28 17:09:20 -04:00
muc_invites_add(room);
2014-01-30 18:36:24 -05:00
2014-09-28 17:09:20 -04:00
gboolean invite_exists = muc_invites_contain(room);
2014-01-30 18:32:52 -05:00
assert_true(invite_exists);
}
2014-01-30 18:36:24 -05:00
void test_muc_remove_invite(void **state)
{
char *room = "room@conf.server";
2014-09-28 17:09:20 -04:00
muc_invites_add(room);
muc_invites_remove(room);
2014-01-30 18:36:24 -05:00
2014-09-28 17:09:20 -04:00
gboolean invite_exists = muc_invites_contain(room);
2014-01-30 18:36:24 -05:00
assert_false(invite_exists);
}
2014-01-30 18:49:58 -05:00
2014-09-28 17:09:20 -04:00
void test_muc_invites_count_0(void **state)
2014-01-30 18:49:58 -05:00
{
2014-09-28 17:09:20 -04:00
int invite_count = muc_invites_count();
2014-01-30 18:49:58 -05:00
assert_true(invite_count == 0);
}
2014-09-28 17:09:20 -04:00
void test_muc_invites_count_5(void **state)
2014-01-30 18:49:58 -05:00
{
2014-09-28 17:09:20 -04:00
muc_invites_add("room1@conf.server");
muc_invites_add("room2@conf.server");
muc_invites_add("room3@conf.server");
muc_invites_add("room4@conf.server");
muc_invites_add("room5@conf.server");
2014-01-30 18:49:58 -05:00
2014-09-28 17:09:20 -04:00
int invite_count = muc_invites_count();
2014-01-30 18:49:58 -05:00
assert_true(invite_count == 5);
}
2014-01-30 19:10:28 -05:00
void test_muc_room_is_not_active(void **state)
{
char *room = "room@server.org";
2014-01-30 19:10:28 -05:00
2014-09-28 17:09:20 -04:00
gboolean room_is_active = muc_active(room);
2014-01-30 19:10:28 -05:00
assert_false(room_is_active);
}
2014-09-28 17:09:20 -04:00
void test_muc_active(void **state)
2014-01-30 19:10:28 -05:00
{
char *room = "room@server.org";
char *nick = "bob";
2014-09-28 17:09:20 -04:00
muc_join(room, nick, NULL, FALSE);
2014-01-30 19:10:28 -05:00
2014-09-28 17:09:20 -04:00
gboolean room_is_active = muc_active(room);
2014-01-30 19:10:28 -05:00
assert_true(room_is_active);
}