Apply coding style

Regards https://github.com/profanity-im/profanity/issues/1396
This commit is contained in:
Michael Vetter
2020-07-07 09:43:28 +02:00
parent 66f9a6b721
commit 9b55f2dec0
214 changed files with 19572 additions and 17582 deletions

View File

@@ -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);