Use a behavior-driven naming convention for unit tests. Functions are now named using the pattern: [unit]__[verb]__[scenario] The __ works as a semantic separator. Examples: * jid_create__returns__null_from_null() * cmd_connect__shows__usage_when_no_server_value Benefits: * Easy to find all tests associated with a specific function using the mandatory prefix. * Test output in CI now explicitly describes the unit, the expected outcome, and the scenario being tested. Also disabled keyhandlers tests due to missing code in src/ui.
40 lines
782 B
C
40 lines
782 B
C
#include "prof_cmocka.h"
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <glib.h>
|
|
|
|
#include "xmpp/xmpp.h"
|
|
|
|
#include "ui/ui.h"
|
|
#include "ui/stub_ui.h"
|
|
|
|
#include "command/cmd_funcs.h"
|
|
|
|
#define CMD_SUB "/sub"
|
|
|
|
void
|
|
cmd_sub__shows__message_when_not_connected(void** state)
|
|
{
|
|
gchar* args[] = { NULL };
|
|
|
|
will_return(connection_get_status, JABBER_DISCONNECTED);
|
|
|
|
expect_cons_show("You are currently not connected.");
|
|
|
|
gboolean result = cmd_sub(NULL, CMD_SUB, args);
|
|
assert_true(result);
|
|
}
|
|
|
|
void
|
|
cmd_sub__shows__usage_when_no_arg(void** state)
|
|
{
|
|
gchar* args[] = { NULL };
|
|
|
|
will_return(connection_get_status, JABBER_CONNECTED);
|
|
|
|
expect_string(cons_bad_cmd_usage, cmd, CMD_SUB);
|
|
|
|
gboolean result = cmd_sub(NULL, CMD_SUB, args);
|
|
assert_true(result);
|
|
}
|