mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-25 05:06:22 +00:00
Added setup and teardown for muc tests
This commit is contained in:
@@ -6,29 +6,33 @@
|
||||
|
||||
#include "muc.h"
|
||||
|
||||
void muc_before_test(void **state)
|
||||
{
|
||||
muc_init();
|
||||
}
|
||||
|
||||
void muc_after_test(void **state)
|
||||
{
|
||||
muc_close();
|
||||
}
|
||||
|
||||
void test_muc_add_invite(void **state)
|
||||
{
|
||||
char *room = "room@conf.server";
|
||||
muc_init();
|
||||
muc_add_invite(room);
|
||||
|
||||
gboolean invite_exists = muc_invites_include(room);
|
||||
|
||||
assert_true(invite_exists);
|
||||
|
||||
muc_close();
|
||||
}
|
||||
|
||||
void test_muc_remove_invite(void **state)
|
||||
{
|
||||
char *room = "room@conf.server";
|
||||
muc_init();
|
||||
muc_add_invite(room);
|
||||
muc_remove_invite(room);
|
||||
|
||||
gboolean invite_exists = muc_invites_include(room);
|
||||
|
||||
assert_false(invite_exists);
|
||||
|
||||
muc_close();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user