1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-08-04 18:44:14 -04:00
profanity/tests/unittests/test_cmd_pgp.c

120 lines
2.6 KiB
C
Raw Normal View History

2015-06-17 19:12:01 -04:00
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
2015-06-17 19:12:01 -04:00
#include <stdlib.h>
#include <string.h>
#include <glib.h>
2015-06-17 19:12:01 -04:00
2016-03-31 16:05:02 -04:00
#include "config.h"
2015-06-17 19:12:01 -04:00
2016-05-22 18:59:52 -04:00
#include "command/cmd_funcs.h"
2016-04-18 19:28:22 -04:00
#include "xmpp/xmpp.h"
2015-06-17 19:12:01 -04:00
#include "ui/stub_ui.h"
2015-07-26 19:04:48 -04:00
#define CMD_PGP "/pgp"
2016-03-31 16:05:02 -04:00
#ifdef HAVE_LIBGPGME
2020-07-07 08:18:57 -04:00
void
cmd_pgp_shows_usage_when_no_args(void** state)
2015-06-17 19:12:01 -04:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { NULL };
2015-06-17 19:12:01 -04:00
2015-07-26 19:04:48 -04:00
expect_string(cons_bad_cmd_usage, cmd, CMD_PGP);
2015-06-17 19:12:01 -04:00
2015-07-26 19:04:48 -04:00
gboolean result = cmd_pgp(NULL, CMD_PGP, args);
2015-06-17 19:12:01 -04:00
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_pgp_start_shows_message_when_connection(jabber_conn_status_t conn_status)
2015-06-17 20:34:27 -04:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "start", NULL };
2015-06-17 20:34:27 -04:00
ProfWin window;
window.type = WIN_CHAT;
2016-05-05 18:51:49 -04:00
will_return(connection_get_status, conn_status);
2015-06-17 20:34:27 -04:00
expect_cons_show("You must be connected to start PGP encrpytion.");
2015-07-26 19:04:48 -04:00
gboolean result = cmd_pgp(&window, CMD_PGP, args);
2015-06-17 20:34:27 -04:00
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_pgp_start_shows_message_when_disconnected(void** state)
2015-06-17 20:34:27 -04:00
{
cmd_pgp_start_shows_message_when_connection(JABBER_DISCONNECTED);
}
2020-07-07 08:18:57 -04:00
void
cmd_pgp_start_shows_message_when_disconnecting(void** state)
2015-06-17 20:34:27 -04:00
{
cmd_pgp_start_shows_message_when_connection(JABBER_DISCONNECTING);
}
2020-07-07 08:18:57 -04:00
void
cmd_pgp_start_shows_message_when_connecting(void** state)
2015-06-17 20:34:27 -04:00
{
cmd_pgp_start_shows_message_when_connection(JABBER_CONNECTING);
}
2020-07-07 08:18:57 -04:00
void
cmd_pgp_start_shows_message_when_no_arg_in_wintype(win_type_t wintype)
2015-06-17 20:34:27 -04:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "start", NULL };
2015-06-17 20:34:27 -04:00
ProfWin window;
window.type = wintype;
2016-05-05 18:51:49 -04:00
will_return(connection_get_status, JABBER_CONNECTED);
2015-06-17 20:34:27 -04:00
expect_cons_show("You must be in a regular chat window to start PGP encrpytion.");
2015-07-26 19:04:48 -04:00
gboolean result = cmd_pgp(&window, CMD_PGP, args);
2015-06-17 20:34:27 -04:00
assert_true(result);
}
2020-07-07 08:18:57 -04:00
void
cmd_pgp_start_shows_message_when_no_arg_in_console(void** state)
2015-06-17 20:34:27 -04:00
{
cmd_pgp_start_shows_message_when_no_arg_in_wintype(WIN_CONSOLE);
}
2020-07-07 08:18:57 -04:00
void
cmd_pgp_start_shows_message_when_no_arg_in_muc(void** state)
2015-06-17 20:34:27 -04:00
{
cmd_pgp_start_shows_message_when_no_arg_in_wintype(WIN_MUC);
}
2020-07-07 08:18:57 -04:00
void
cmd_pgp_start_shows_message_when_no_arg_in_conf(void** state)
2015-06-17 20:34:27 -04:00
{
cmd_pgp_start_shows_message_when_no_arg_in_wintype(WIN_CONFIG);
2015-06-17 20:34:27 -04:00
}
2020-07-07 08:18:57 -04:00
void
cmd_pgp_start_shows_message_when_no_arg_in_private(void** state)
2015-06-17 20:34:27 -04:00
{
cmd_pgp_start_shows_message_when_no_arg_in_wintype(WIN_PRIVATE);
}
2020-07-07 08:18:57 -04:00
void
cmd_pgp_start_shows_message_when_no_arg_in_xmlconsole(void** state)
2015-06-17 20:34:27 -04:00
{
cmd_pgp_start_shows_message_when_no_arg_in_wintype(WIN_XML);
}
2015-06-17 19:12:01 -04:00
#else
2020-07-07 08:18:57 -04:00
void
cmd_pgp_shows_message_when_pgp_unsupported(void** state)
2015-06-17 19:12:01 -04:00
{
2020-07-07 08:18:57 -04:00
gchar* args[] = { "gen", NULL };
2015-06-17 19:12:01 -04:00
expect_cons_show("This version of Profanity has not been built with PGP support enabled");
2015-07-26 19:04:48 -04:00
gboolean result = cmd_pgp(NULL, CMD_PGP, args);
2015-06-17 19:12:01 -04:00
assert_true(result);
}
#endif