mirror of
https://github.com/profanity-im/profanity.git
synced 2025-01-03 14:57:42 -05:00
Added invalid jid test for /join
This commit is contained in:
parent
2d54c565ce
commit
a94814f0a9
@ -1591,7 +1591,8 @@ cmd_join(gchar **args, struct cmd_help_t help)
|
|||||||
|
|
||||||
Jid *room_arg = jid_create(args[0]);
|
Jid *room_arg = jid_create(args[0]);
|
||||||
if (room_arg == NULL) {
|
if (room_arg == NULL) {
|
||||||
cons_show_error("Specified room has incorrect format");
|
cons_show_error("Specified room has incorrect format.");
|
||||||
|
cons_show("");
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -67,6 +67,23 @@ void cmd_join_shows_usage_when_no_args(void **state)
|
|||||||
free(help);
|
free(help);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void cmd_join_shows_error_message_when_invalid_room_jid(void **state)
|
||||||
|
{
|
||||||
|
mock_cons_show_error();
|
||||||
|
CommandHelp *help = malloc(sizeof(CommandHelp));
|
||||||
|
gchar *args[] = { "//@@/", NULL };
|
||||||
|
|
||||||
|
mock_connection_status(JABBER_CONNECTED);
|
||||||
|
|
||||||
|
expect_cons_show_error("Specified room has incorrect format.");
|
||||||
|
expect_cons_show("");
|
||||||
|
|
||||||
|
gboolean result = cmd_join(args, *help);
|
||||||
|
assert_true(result);
|
||||||
|
|
||||||
|
free(help);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
void cmd_connect_shows_usage_when_no_server_value(void **state)
|
void cmd_connect_shows_usage_when_no_server_value(void **state)
|
||||||
{
|
{
|
||||||
|
@ -3,3 +3,4 @@ void cmd_join_shows_message_when_connecting(void **state);
|
|||||||
void cmd_join_shows_message_when_disconnected(void **state);
|
void cmd_join_shows_message_when_disconnected(void **state);
|
||||||
void cmd_join_shows_message_when_undefined(void **state);
|
void cmd_join_shows_message_when_undefined(void **state);
|
||||||
void cmd_join_shows_usage_when_no_args(void **state);
|
void cmd_join_shows_usage_when_no_args(void **state);
|
||||||
|
void cmd_join_shows_error_message_when_invalid_room_jid(void **state);
|
||||||
|
@ -492,6 +492,7 @@ int main(int argc, char* argv[]) {
|
|||||||
unit_test(cmd_join_shows_message_when_disconnected),
|
unit_test(cmd_join_shows_message_when_disconnected),
|
||||||
unit_test(cmd_join_shows_message_when_undefined),
|
unit_test(cmd_join_shows_message_when_undefined),
|
||||||
unit_test(cmd_join_shows_usage_when_no_args),
|
unit_test(cmd_join_shows_usage_when_no_args),
|
||||||
|
unit_test(cmd_join_shows_error_message_when_invalid_room_jid),
|
||||||
};
|
};
|
||||||
|
|
||||||
return run_tests(all_tests);
|
return run_tests(all_tests);
|
||||||
|
Loading…
Reference in New Issue
Block a user