1
1
mirror of https://github.com/profanity-im/profanity.git synced 2025-02-02 15:08:15 -05:00

79 lines
1.5 KiB
C
Raw Normal View History

2014-01-30 23:32:52 +00:00
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
#include <stdlib.h>
#include "muc.h"
2014-01-30 23:41:18 +00:00
void muc_before_test(void **state)
{
muc_init();
}
void muc_after_test(void **state)
{
muc_close();
}
2014-09-28 22:09:20 +01:00
void test_muc_invites_add(void **state)
2014-01-30 23:32:52 +00:00
{
char *room = "room@conf.server";
2015-03-29 03:16:41 +01:00
muc_invites_add(room, NULL);
2014-01-30 23:36:24 +00:00
2014-09-28 22:09:20 +01:00
gboolean invite_exists = muc_invites_contain(room);
2014-01-30 23:32:52 +00:00
assert_true(invite_exists);
}
2014-01-30 23:36:24 +00:00
void test_muc_remove_invite(void **state)
{
char *room = "room@conf.server";
2015-03-29 03:16:41 +01:00
muc_invites_add(room, NULL);
2014-09-28 22:09:20 +01:00
muc_invites_remove(room);
2014-01-30 23:36:24 +00:00
2014-09-28 22:09:20 +01:00
gboolean invite_exists = muc_invites_contain(room);
2014-01-30 23:36:24 +00:00
assert_false(invite_exists);
}
2014-01-30 23:49:58 +00:00
2014-09-28 22:09:20 +01:00
void test_muc_invites_count_0(void **state)
2014-01-30 23:49:58 +00:00
{
2014-09-28 22:09:20 +01:00
int invite_count = muc_invites_count();
2014-01-30 23:49:58 +00:00
assert_true(invite_count == 0);
}
2014-09-28 22:09:20 +01:00
void test_muc_invites_count_5(void **state)
2014-01-30 23:49:58 +00:00
{
2015-03-29 03:16:41 +01:00
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);
2014-01-30 23:49:58 +00:00
2014-09-28 22:09:20 +01:00
int invite_count = muc_invites_count();
2014-01-30 23:49:58 +00:00
assert_true(invite_count == 5);
}
2014-01-31 00:10:28 +00:00
void test_muc_room_is_not_active(void **state)
{
char *room = "room@server.org";
2014-01-31 00:10:28 +00:00
2014-09-28 22:09:20 +01:00
gboolean room_is_active = muc_active(room);
2014-01-31 00:10:28 +00:00
assert_false(room_is_active);
}
2014-09-28 22:09:20 +01:00
void test_muc_active(void **state)
2014-01-31 00:10:28 +00:00
{
char *room = "room@server.org";
char *nick = "bob";
2014-09-28 22:09:20 +01:00
muc_join(room, nick, NULL, FALSE);
2014-01-31 00:10:28 +00:00
2014-09-28 22:09:20 +01:00
gboolean room_is_active = muc_active(room);
2014-01-31 00:10:28 +00:00
assert_true(room_is_active);
}