mirror of
https://github.com/ascii-boxes/boxes.git
synced 2024-12-13 18:30:39 +01:00
371 lines
9.2 KiB
C
371 lines
9.2 KiB
C
/*
|
|
* boxes - Command line filter to draw/remove ASCII boxes around text
|
|
* Copyright (c) 1999-2021 Thomas Jensen and the boxes contributors
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License, version 2, as published
|
|
* by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*/
|
|
|
|
/*
|
|
* Unit tests of the 'cmdline' module
|
|
*/
|
|
|
|
#include "config.h"
|
|
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
#include <setjmp.h>
|
|
#include <cmocka.h>
|
|
#include "boxes.h"
|
|
#include "cmdline.h"
|
|
#include "tools.h"
|
|
#include "global_mock.h"
|
|
#include "cmdline_test.h"
|
|
|
|
|
|
static opt_t *act(const int num_args, ...)
|
|
{
|
|
assert_true(num_args >= 0);
|
|
|
|
int argc = 1;
|
|
char **argv = (char **) calloc(argc + 1, sizeof(char *));
|
|
argv[0] = "out/boxes";
|
|
|
|
if (num_args > 0) {
|
|
va_list va;
|
|
va_start(va, num_args);
|
|
char *arg;
|
|
while ((arg = va_arg(va, char *))) {
|
|
++argc;
|
|
argv = (char **) realloc(argv, (argc + 1) * sizeof(char *));
|
|
argv[argc - 1] = arg;
|
|
}
|
|
va_end(va);
|
|
}
|
|
argv[argc] = NULL;
|
|
|
|
opt_t *actual = process_commandline(argc, argv);
|
|
BFREE(argv);
|
|
return actual;
|
|
}
|
|
|
|
|
|
void test_indentmode_none(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-i", "none");
|
|
|
|
assert_non_null(actual);
|
|
assert_int_equal((int) 'n', (int) actual->indentmode);
|
|
}
|
|
|
|
|
|
void test_indentmode_invalid_long(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-i", "INVALID");
|
|
|
|
assert_null(actual); // invalid option, so we would need to exit with error
|
|
assert_int_equal(1, collect_err_size);
|
|
assert_string_equal("boxes: invalid indentation mode\n", collect_err[0]);
|
|
}
|
|
|
|
|
|
void test_indentmode_invalid_short(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-i", "X");
|
|
|
|
assert_null(actual); // invalid option, so we would need to exit with error
|
|
assert_int_equal(1, collect_err_size);
|
|
assert_string_equal("boxes: invalid indentation mode\n", collect_err[0]);
|
|
}
|
|
|
|
|
|
void test_indentmode_box(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-i", "BO");
|
|
|
|
assert_non_null(actual);
|
|
assert_int_equal((int) 'b', (int) actual->indentmode);
|
|
}
|
|
|
|
|
|
void test_indentmode_text(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-i", "t");
|
|
|
|
assert_non_null(actual);
|
|
assert_int_equal((int) 't', (int) actual->indentmode);
|
|
}
|
|
|
|
|
|
void test_killblank_true(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-k", "true");
|
|
|
|
assert_non_null(actual);
|
|
assert_int_equal(1, actual->killblank);
|
|
}
|
|
|
|
|
|
void test_killblank_false(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-k", "false");
|
|
|
|
assert_non_null(actual);
|
|
assert_int_equal(0, actual->killblank);
|
|
}
|
|
|
|
|
|
void test_killblank_invalid(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-k", "INVALID");
|
|
|
|
assert_null(actual); // invalid option, so we would need to exit with error
|
|
assert_int_equal(1, collect_err_size);
|
|
assert_string_equal("boxes: -k: invalid parameter\n", collect_err[0]);
|
|
}
|
|
|
|
|
|
void test_killblank_multiple(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(4, "-k", "true", "-k", "false"); // first one wins
|
|
|
|
assert_non_null(actual);
|
|
assert_int_equal(1, actual->killblank);
|
|
}
|
|
|
|
|
|
void test_padding_top_bottom(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-p", "t2b10");
|
|
|
|
assert_non_null(actual);
|
|
assert_int_equal(2, actual->padding[BTOP]);
|
|
assert_int_equal(10, actual->padding[BBOT]);
|
|
}
|
|
|
|
|
|
void test_padding_invalid(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-p", "INVALID");
|
|
|
|
assert_null(actual); // invalid option, so we would need to exit with error
|
|
assert_int_equal(1, collect_err_size);
|
|
assert_string_equal("boxes: invalid padding specification - INVALID\n", collect_err[0]);
|
|
}
|
|
|
|
|
|
void test_padding_negative(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-p", "a-1");
|
|
|
|
assert_null(actual); // invalid option, so we would need to exit with error
|
|
assert_int_equal(1, collect_err_size);
|
|
assert_string_equal("boxes: invalid padding specification - a-1\n", collect_err[0]);
|
|
}
|
|
|
|
|
|
void test_padding_notset(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-p", "");
|
|
|
|
assert_null(actual); // invalid option, so we would need to exit with error
|
|
assert_int_equal(1, collect_err_size);
|
|
assert_string_equal("boxes: invalid padding specification - \n", collect_err[0]);
|
|
}
|
|
|
|
|
|
void test_padding_invalid_value(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-p", "l2rX");
|
|
|
|
assert_null(actual); // invalid option, so we would need to exit with error
|
|
assert_int_equal(1, collect_err_size);
|
|
assert_string_equal("boxes: invalid padding specification - l2rX\n", collect_err[0]);
|
|
}
|
|
|
|
|
|
void test_padding_novalue(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-p", "a");
|
|
|
|
assert_null(actual); // invalid option, so we would need to exit with error
|
|
assert_int_equal(1, collect_err_size);
|
|
assert_string_equal("boxes: invalid padding specification - a\n", collect_err[0]);
|
|
}
|
|
|
|
|
|
void test_tabstops_zero(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-t", "0");
|
|
|
|
assert_null(actual); // invalid option, so we would need to exit with error
|
|
assert_int_equal(1, collect_err_size);
|
|
assert_string_equal("boxes: invalid tab stop distance -- 0\n", collect_err[0]);
|
|
}
|
|
|
|
|
|
void test_tabstops_500(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-t", "500");
|
|
|
|
assert_null(actual); // invalid option, so we would need to exit with error
|
|
assert_int_equal(1, collect_err_size);
|
|
assert_string_equal("boxes: invalid tab stop distance -- 500\n", collect_err[0]);
|
|
}
|
|
|
|
|
|
void test_tabstops_4X(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-t", "4X");
|
|
|
|
assert_null(actual); // invalid option, so we would need to exit with error
|
|
assert_int_equal(1, collect_err_size);
|
|
assert_string_equal("boxes: invalid tab handling specification - 4X\n", collect_err[0]);
|
|
}
|
|
|
|
|
|
void test_tabstops_4e(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-t", "4e");
|
|
|
|
assert_non_null(actual);
|
|
assert_int_equal(4, actual->tabstop);
|
|
assert_int_equal((int) 'e', (int) actual->tabexp);
|
|
}
|
|
|
|
|
|
void test_tabstops_4ex(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-t", "4ex");
|
|
|
|
assert_null(actual); // invalid option, so we would need to exit with error
|
|
assert_int_equal(1, collect_err_size);
|
|
assert_string_equal("boxes: invalid tab handling specification - 4ex\n", collect_err[0]);
|
|
}
|
|
|
|
|
|
void test_tabstops_7(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-t", "7");
|
|
|
|
assert_non_null(actual);
|
|
assert_int_equal(7, actual->tabstop);
|
|
assert_int_equal((int) 'e', (int) actual->tabexp);
|
|
}
|
|
|
|
|
|
void test_alignment_invalid_hX(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-a", "hX");
|
|
|
|
assert_null(actual); // invalid option, so we would need to exit with error
|
|
assert_int_equal(1, collect_err_size);
|
|
assert_string_equal("boxes: Illegal text format -- hX\n", collect_err[0]);
|
|
}
|
|
|
|
|
|
void test_alignment_invalid_vX(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-a", "vX");
|
|
|
|
assert_null(actual); // invalid option, so we would need to exit with error
|
|
assert_int_equal(1, collect_err_size);
|
|
assert_string_equal("boxes: Illegal text format -- vX\n", collect_err[0]);
|
|
}
|
|
|
|
|
|
void test_alignment_invalid_jX(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-a", "jX");
|
|
|
|
assert_null(actual); // invalid option, so we would need to exit with error
|
|
assert_int_equal(1, collect_err_size);
|
|
assert_string_equal("boxes: Illegal text format -- jX\n", collect_err[0]);
|
|
}
|
|
|
|
|
|
void test_alignment_notset(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-a", "");
|
|
|
|
assert_null(actual); // invalid option, so we would need to exit with error
|
|
assert_int_equal(1, collect_err_size);
|
|
assert_string_equal("boxes: Illegal text format -- \n", collect_err[0]);
|
|
}
|
|
|
|
|
|
void test_alignment_incomplete(void **state)
|
|
{
|
|
(void) state; /* unused */
|
|
|
|
opt_t *actual = act(2, "-a", "v");
|
|
|
|
assert_null(actual); // invalid option, so we would need to exit with error
|
|
assert_int_equal(1, collect_err_size);
|
|
assert_string_equal("boxes: Illegal text format -- v\n", collect_err[0]);
|
|
}
|
|
|
|
|
|
/*EOF*/ /* vim: set cindent sw=4: */
|