Added setup and teardown for muc tests
This commit is contained in:
@@ -6,29 +6,33 @@
|
|||||||
|
|
||||||
#include "muc.h"
|
#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)
|
void test_muc_add_invite(void **state)
|
||||||
{
|
{
|
||||||
char *room = "room@conf.server";
|
char *room = "room@conf.server";
|
||||||
muc_init();
|
|
||||||
muc_add_invite(room);
|
muc_add_invite(room);
|
||||||
|
|
||||||
gboolean invite_exists = muc_invites_include(room);
|
gboolean invite_exists = muc_invites_include(room);
|
||||||
|
|
||||||
assert_true(invite_exists);
|
assert_true(invite_exists);
|
||||||
|
|
||||||
muc_close();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void test_muc_remove_invite(void **state)
|
void test_muc_remove_invite(void **state)
|
||||||
{
|
{
|
||||||
char *room = "room@conf.server";
|
char *room = "room@conf.server";
|
||||||
muc_init();
|
|
||||||
muc_add_invite(room);
|
muc_add_invite(room);
|
||||||
muc_remove_invite(room);
|
muc_remove_invite(room);
|
||||||
|
|
||||||
gboolean invite_exists = muc_invites_include(room);
|
gboolean invite_exists = muc_invites_include(room);
|
||||||
|
|
||||||
assert_false(invite_exists);
|
assert_false(invite_exists);
|
||||||
|
|
||||||
muc_close();
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,2 +1,5 @@
|
|||||||
|
void muc_before_test(void **state);
|
||||||
|
void muc_after_test(void **state);
|
||||||
|
|
||||||
void test_muc_add_invite(void **state);
|
void test_muc_add_invite(void **state);
|
||||||
void test_muc_remove_invite(void **state);
|
void test_muc_remove_invite(void **state);
|
||||||
|
|||||||
@@ -429,8 +429,8 @@ int main(int argc, char* argv[]) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const UnitTest muc_tests[] = {
|
const UnitTest muc_tests[] = {
|
||||||
unit_test(test_muc_add_invite),
|
unit_test_setup_teardown(test_muc_add_invite, muc_before_test, muc_after_test),
|
||||||
unit_test(test_muc_remove_invite),
|
unit_test_setup_teardown(test_muc_remove_invite, muc_before_test, muc_after_test),
|
||||||
};
|
};
|
||||||
|
|
||||||
int bak, bak2, new;
|
int bak, bak2, new;
|
||||||
|
|||||||
Reference in New Issue
Block a user