mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-28 15:36:20 +00:00
Apply coding style
Regards https://github.com/profanity-im/profanity/issues/1396
This commit is contained in:
@@ -1,24 +1,27 @@
|
||||
#include <cmocka.h>
|
||||
#include <setjmp.h>
|
||||
#include <stdarg.h>
|
||||
#include <stddef.h>
|
||||
#include <setjmp.h>
|
||||
#include <cmocka.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "xmpp/muc.h"
|
||||
|
||||
void muc_before_test(void **state)
|
||||
void
|
||||
muc_before_test(void** state)
|
||||
{
|
||||
muc_init();
|
||||
}
|
||||
|
||||
void muc_after_test(void **state)
|
||||
void
|
||||
muc_after_test(void** state)
|
||||
{
|
||||
muc_close();
|
||||
}
|
||||
|
||||
void test_muc_invites_add(void **state)
|
||||
void
|
||||
test_muc_invites_add(void** state)
|
||||
{
|
||||
char *room = "room@conf.server";
|
||||
char* room = "room@conf.server";
|
||||
muc_invites_add(room, NULL);
|
||||
|
||||
gboolean invite_exists = muc_invites_contain(room);
|
||||
@@ -26,9 +29,10 @@ void test_muc_invites_add(void **state)
|
||||
assert_true(invite_exists);
|
||||
}
|
||||
|
||||
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_invites_add(room, NULL);
|
||||
muc_invites_remove(room);
|
||||
|
||||
@@ -37,14 +41,16 @@ void test_muc_remove_invite(void **state)
|
||||
assert_false(invite_exists);
|
||||
}
|
||||
|
||||
void test_muc_invites_count_0(void **state)
|
||||
void
|
||||
test_muc_invites_count_0(void** state)
|
||||
{
|
||||
int invite_count = muc_invites_count();
|
||||
|
||||
assert_true(invite_count == 0);
|
||||
}
|
||||
|
||||
void test_muc_invites_count_5(void **state)
|
||||
void
|
||||
test_muc_invites_count_5(void** state)
|
||||
{
|
||||
muc_invites_add("room1@conf.server", NULL);
|
||||
muc_invites_add("room2@conf.server", NULL);
|
||||
@@ -57,19 +63,21 @@ void test_muc_invites_count_5(void **state)
|
||||
assert_true(invite_count == 5);
|
||||
}
|
||||
|
||||
void test_muc_room_is_not_active(void **state)
|
||||
void
|
||||
test_muc_room_is_not_active(void** state)
|
||||
{
|
||||
char *room = "room@server.org";
|
||||
char* room = "room@server.org";
|
||||
|
||||
gboolean room_is_active = muc_active(room);
|
||||
|
||||
assert_false(room_is_active);
|
||||
}
|
||||
|
||||
void test_muc_active(void **state)
|
||||
void
|
||||
test_muc_active(void** state)
|
||||
{
|
||||
char *room = "room@server.org";
|
||||
char *nick = "bob";
|
||||
char* room = "room@server.org";
|
||||
char* nick = "bob";
|
||||
muc_join(room, nick, NULL, FALSE);
|
||||
|
||||
gboolean room_is_active = muc_active(room);
|
||||
|
||||
Reference in New Issue
Block a user