2014-01-30 18:32:52 -05:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <setjmp.h>
|
|
|
|
#include <cmocka.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2016-07-24 10:02:43 -04:00
|
|
|
#include "xmpp/muc.h"
|
2014-01-30 18:32:52 -05:00
|
|
|
|
2023-11-01 20:30:08 -04:00
|
|
|
int
|
2014-01-30 18:41:18 -05:00
|
|
|
muc_before_test(void** state)
|
|
|
|
{
|
|
|
|
muc_init();
|
2023-11-01 20:30:08 -04:00
|
|
|
return 0;
|
2014-01-30 18:41:18 -05:00
|
|
|
}
|
|
|
|
|
2023-11-01 20:30:08 -04:00
|
|
|
int
|
2014-01-30 18:41:18 -05:00
|
|
|
muc_after_test(void** state)
|
|
|
|
{
|
|
|
|
muc_close();
|
2023-11-01 20:30:08 -04:00
|
|
|
return 0;
|
2014-01-30 18:41:18 -05:00
|
|
|
}
|
|
|
|
|
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";
|
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
|
|
|
|
|
|
|
void
|
|
|
|
test_muc_remove_invite(void** state)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
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
|
|
|
{
|
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
|
|
|
|
|
|
|
void
|
|
|
|
test_muc_room_is_not_active(void** state)
|
|
|
|
{
|
2014-03-08 16:20:26 -05: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);
|
|
|
|
}
|
|
|
|
|
2014-09-28 17:09:20 -04:00
|
|
|
void
|
|
|
|
test_muc_active(void** state)
|
2014-01-30 19:10:28 -05:00
|
|
|
{
|
2014-03-08 16:20:26 -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);
|
|
|
|
}
|