1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-30 17:55:24 -04:00
profanity/tests/unittests/test_muc.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

87 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>
2014-01-30 18:32:52 -05:00
#include <stdlib.h>
2016-07-24 10:02:43 -04:00
#include "xmpp/muc.h"
2014-01-30 18:32:52 -05:00
2020-07-07 08:18:57 -04:00
void
muc_before_test(void** state)
2014-01-30 18:41:18 -05:00
{
muc_init();
}
2020-07-07 08:18:57 -04:00
void
muc_after_test(void** state)
2014-01-30 18:41:18 -05:00
{
muc_close();
}
2020-07-07 08:18:57 -04:00
void
test_muc_invites_add(void** state)
2014-01-30 18:32:52 -05:00
{
2020-07-07 08:18:57 -04:00
char* room = "room@conf.server";
2015-03-28 22:16:41 -04:00
muc_invites_add(room, NULL);
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
2020-07-07 08:18:57 -04:00
void
test_muc_remove_invite(void** state)
2014-01-30 18:36:24 -05:00
{
2020-07-07 08:18:57 -04:00
char* room = "room@conf.server";
2015-03-28 22:16:41 -04:00
muc_invites_add(room, NULL);
2014-09-28 17:09:20 -04:00
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
2020-07-07 08:18:57 -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);
}
2020-07-07 08:18:57 -04:00
void
test_muc_invites_count_5(void** state)
2014-01-30 18:49:58 -05:00
{
2015-03-28 22:16:41 -04: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 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
2020-07-07 08:18:57 -04:00
void
test_muc_room_is_not_active(void** state)
2014-01-30 19:10:28 -05:00
{
2020-07-07 08:18:57 -04:00
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);
}
2020-07-07 08:18:57 -04:00
void
test_muc_active(void** state)
2014-01-30 19:10:28 -05:00
{
2020-07-07 08:18:57 -04: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);
}