1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-16 21:35:24 +00:00
profanity/tests/unittests/test_callbacks.c

67 lines
1.6 KiB
C
Raw Normal View History

2016-07-03 23:41:29 +00:00
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
2016-07-03 23:41:29 +00:00
#include <stdlib.h>
#include <string.h>
#include <glib.h>
2016-07-03 23:41:29 +00:00
#include "plugins/callbacks.h"
#include "plugins/plugins.h"
2020-07-07 12:18:57 +00:00
void
returns_no_commands(void** state)
2016-07-03 23:41:29 +00:00
{
callbacks_init();
2020-07-07 12:18:57 +00:00
GList* commands = plugins_get_command_names();
2016-07-03 23:41:29 +00:00
assert_true(commands == NULL);
callbacks_close();
g_list_free(commands);
2016-07-03 23:41:29 +00:00
}
2020-07-07 12:18:57 +00:00
void
returns_commands(void** state)
2016-07-03 23:41:29 +00:00
{
callbacks_init();
2020-07-07 12:18:57 +00:00
PluginCommand* command1 = malloc(sizeof(PluginCommand));
2016-07-04 20:10:11 +00:00
command1->command_name = strdup("command1");
callbacks_add_command("plugin1", command1);
2020-07-07 12:18:57 +00:00
PluginCommand* command2 = malloc(sizeof(PluginCommand));
2016-07-04 20:10:11 +00:00
command2->command_name = strdup("command2");
callbacks_add_command("plugin1", command2);
2020-07-07 12:18:57 +00:00
PluginCommand* command3 = malloc(sizeof(PluginCommand));
2016-07-04 20:10:11 +00:00
command3->command_name = strdup("command3");
callbacks_add_command("plugin2", command3);
2020-07-07 12:18:57 +00:00
GList* names = plugins_get_command_names();
2016-07-04 20:10:11 +00:00
assert_true(g_list_length(names) == 3);
gboolean foundCommand1 = FALSE;
gboolean foundCommand2 = FALSE;
gboolean foundCommand3 = FALSE;
2020-07-07 12:18:57 +00:00
GList* curr = names;
2016-07-04 20:10:11 +00:00
while (curr) {
if (g_strcmp0(curr->data, "command1") == 0) {
foundCommand1 = TRUE;
}
if (g_strcmp0(curr->data, "command2") == 0) {
foundCommand2 = TRUE;
}
if (g_strcmp0(curr->data, "command3") == 0) {
foundCommand3 = TRUE;
}
curr = g_list_next(curr);
}
2016-07-03 23:41:29 +00:00
2016-07-04 20:10:11 +00:00
assert_true(foundCommand1 && foundCommand2 && foundCommand3);
g_list_free(names);
// TODO: why does this make the test fail?
// callbacks_close();
2016-07-03 23:41:29 +00:00
}