1
0
Fork 0
libfort/tests/test_table.c

893 lines
32 KiB
C
Raw Normal View History

2018-01-17 19:22:57 +01:00
//#define FORT_EXTERN static
2018-01-01 09:26:34 +01:00
#include "tests.h"
#include "fort.h"
#include <string.h>
2018-01-01 19:45:01 +01:00
#include <stdlib.h>
#include <stdio.h>
2018-01-17 19:22:57 +01:00
//#include "fort.c"
#include "table.h"
2018-01-21 11:22:46 +01:00
#include "options.h"
#include "vector.h"
2018-02-25 09:39:41 +01:00
//fort_table_options_t test_table_opts = {
// 1, /* cell_padding_top */
// 1, /* cell_padding_bottom */
// 1, /* cell_padding_left */
// 1, /* cell_padding_right */
// 1, /* cell_empty_string_height */
// /* border_chars */
// {
// '+', '-', '+', '+',
// '|', '|', '|',
// '+', '-', '+', '+',
// '+', '-', '+', '+'
// },
// /* header_border_chars */
// {
// '+', '-', '+', '+',
// '|', '|', '|',
// '+', '-', '+', '+',
// '+', '-', '+', '+'
// },
// /* separator_chars */
// {
// '+', '=', '+', '+',
// },
// NULL, /* col_options */
//};
int set_test_options_for_table(FTABLE *table)
{
assert(table);
int status = F_SUCCESS;
status |= ft_set_table_option(table, FT_OPT_BOTTOM_PADDING, 1);
status |= ft_set_table_option(table, FT_OPT_TOP_PADDING, 1);
status |= ft_set_table_option(table, FT_OPT_LEFT_PADDING, 1);
status |= ft_set_table_option(table, FT_OPT_RIGHT_PADDING, 1);
status |= ft_set_table_option(table, FT_OPT_EMPTY_STR_HEIGHT, 1);
assert_true( status == F_SUCCESS );
struct border_chars border_chs;
border_chs.top_border_ch = '-';
border_chs.separator_ch = '-';
border_chs.bottom_border_ch = '-';
border_chs.side_border_ch = '|';
border_chs.out_intersect_ch = '+';
border_chs.in_intersect_ch = '+';
struct border_chars header_border_chs;
header_border_chs.top_border_ch = '-';
header_border_chs.separator_ch = '-';
header_border_chs.bottom_border_ch = '-';
header_border_chs.side_border_ch = '|';
header_border_chs.out_intersect_ch = '+';
header_border_chs.in_intersect_ch = '+';
return ft_set_table_borders(table, &border_chs, &header_border_chs);
}
2018-01-21 11:22:46 +01:00
2018-02-25 09:39:41 +01:00
int set_test_options_as_default()
{
int status = F_SUCCESS;
status |= ft_set_default_option(FT_OPT_BOTTOM_PADDING, 1);
status |= ft_set_default_option(FT_OPT_TOP_PADDING, 1);
status |= ft_set_default_option(FT_OPT_LEFT_PADDING, 1);
status |= ft_set_default_option(FT_OPT_RIGHT_PADDING, 1);
status |= ft_set_default_option(FT_OPT_EMPTY_STR_HEIGHT, 1);
assert_true( status == F_SUCCESS );
struct border_chars border_chs;
border_chs.top_border_ch = '-';
border_chs.separator_ch = '-';
border_chs.bottom_border_ch = '-';
border_chs.side_border_ch = '|';
border_chs.out_intersect_ch = '+';
border_chs.in_intersect_ch = '+';
struct border_chars header_border_chs;
header_border_chs.top_border_ch = '-';
header_border_chs.separator_ch = '-';
header_border_chs.bottom_border_ch = '-';
header_border_chs.side_border_ch = '|';
header_border_chs.out_intersect_ch = '+';
header_border_chs.in_intersect_ch = '+';
return ft_set_default_borders(&border_chs, &header_border_chs);
}
2018-01-02 10:03:58 +01:00
2018-01-02 20:48:38 +01:00
void test_table_sizes(void **state)
2018-01-02 10:03:58 +01:00
{
(void)state;
FTABLE *table = ft_create_table();
2018-01-21 11:22:46 +01:00
assert_true( table != NULL );
2018-02-25 09:39:41 +01:00
// ft_set_table_options(table, &test_table_opts);
assert_true( set_test_options_for_table(table) == F_SUCCESS);
2018-01-02 10:03:58 +01:00
2018-01-02 20:48:38 +01:00
size_t rows = 0;
size_t cols = 0;
int status = F_SUCCESS;
WHEN("Table is empty") {
status = get_table_sizes(table, &rows, &cols);
assert_true( IS_SUCCESS(status) );
assert_true( rows == 0 );
assert_true( cols == 0 );
}
WHEN("Insert one cell") {
2018-01-22 19:31:03 +01:00
int n = ft_printf_ln(table, "%c", 'c');
2018-01-02 20:48:38 +01:00
assert_true( n == 1 );
status = get_table_sizes(table, &rows, &cols);
assert_true( IS_SUCCESS(status) );
assert_true( rows == 1 );
assert_true( cols == 1 );
}
WHEN("Insert two cells in the next row") {
2018-01-22 19:31:03 +01:00
int n = ft_printf_ln(table, "%c|%c", 'c', 'd');
2018-01-02 20:48:38 +01:00
assert_true( n == 2 );
status = get_table_sizes(table, &rows, &cols);
assert_true( IS_SUCCESS(status) );
assert_true( rows == 2 );
assert_true( cols == 2 );
}
WHEN("Insert five cells in the next row") {
2018-01-22 19:31:03 +01:00
int n = ft_printf_ln(table, "%d|%d|%d|%d|%d", 1, 2, 3, 4, 5);
2018-01-02 20:48:38 +01:00
assert_true( n == 5 );
status = get_table_sizes(table, &rows, &cols);
assert_true( IS_SUCCESS(status) );
assert_true( rows == 3 );
assert_true( cols == 5 );
}
ft_destroy_table(table);
}
void test_table_geometry(void **state)
{
(void)state;
FTABLE *table = ft_create_table();
2018-01-21 11:22:46 +01:00
assert_true( table != NULL );
2018-02-25 09:39:41 +01:00
// ft_set_table_options(table, &test_table_opts);
assert_true( set_test_options_for_table(table) == F_SUCCESS);
2018-01-02 10:03:58 +01:00
size_t height = 0;
size_t width = 0;
2018-01-02 20:48:38 +01:00
int status = F_SUCCESS;
2018-01-02 10:03:58 +01:00
2018-01-02 20:48:38 +01:00
WHEN("Table is empty") {
status = table_geometry(table, &height, &width);
assert_true( IS_SUCCESS(status) );
assert_true( height == 2 );
assert_true( width == 3 );
}
WHEN("Table has one cell") {
2018-01-22 19:31:03 +01:00
int n = ft_printf_ln(table, "%c", 'c');
2018-01-02 20:48:38 +01:00
assert_true( n == 1 );
status = table_geometry(table, &height, &width);
assert_true( IS_SUCCESS(status) );
assert_true( height == 5 );
assert_true( width == 6 );
}
WHEN("Inserting 3 cells in the next row") {
2018-01-22 19:31:03 +01:00
int n = ft_printf_ln(table, "%c|%s|%c", 'c', "as", 'e');
2018-01-02 20:48:38 +01:00
assert_true( n == 3 );
status = table_geometry(table, &height, &width);
assert_true( IS_SUCCESS(status) );
assert_true( height == 9 );
assert_true( width == 15 );
}
2018-01-02 10:03:58 +01:00
ft_destroy_table(table);
}
2018-01-01 09:26:34 +01:00
void test_table_basic(void **state)
{
(void)state;
2018-01-21 09:19:18 +01:00
FTABLE *table = NULL;
2018-01-01 09:26:34 +01:00
2018-01-02 20:48:38 +01:00
WHEN("All columns are equal and not empty") {
2018-01-21 09:19:18 +01:00
table = ft_create_table();
2018-01-21 11:22:46 +01:00
assert_true( table != NULL );
2018-02-25 09:39:41 +01:00
// ft_set_table_options(table, &test_table_opts);
assert_true( set_test_options_for_table(table) == F_SUCCESS);
2018-01-21 09:19:18 +01:00
2018-01-22 19:31:03 +01:00
int n = ft_hdr_printf_ln(table, "%d|%c|%s|%f", 3, 'c', "234", 3.14);
2018-01-02 20:48:38 +01:00
assert_true( n == 4 );
2018-01-22 19:31:03 +01:00
n = ft_printf_ln(table, "%d|%c|%s|%f", 3, 'c', "234", 3.14);
2018-01-02 20:48:38 +01:00
assert_true( n == 4 );
2018-01-22 19:31:03 +01:00
n = ft_printf_ln(table, "%d|%c|%s|%f", 3, 'c', "234", 3.14);
2018-01-02 20:48:38 +01:00
assert_true( n == 4 );
2018-01-01 19:45:01 +01:00
const char *table_str = ft_to_string(table);
2018-01-02 20:48:38 +01:00
assert_true( table_str != NULL );
const char *table_str_etalon =
2018-01-15 19:33:48 +01:00
"+---+---+-----+----------+\n"
2018-01-02 20:48:38 +01:00
"| | | | |\n"
"| 3 | c | 234 | 3.140000 |\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+---+---+-----+----------+\n"
2018-01-02 20:48:38 +01:00
"| | | | |\n"
"| 3 | c | 234 | 3.140000 |\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+---+---+-----+----------+\n"
2018-01-02 20:48:38 +01:00
"| | | | |\n"
"| 3 | c | 234 | 3.140000 |\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+---+---+-----+----------+\n";
2018-01-02 20:48:38 +01:00
// fprintf(stderr, "content:\n%s", table_str);
2018-01-02 10:03:58 +01:00
2018-01-02 20:48:38 +01:00
assert_true( strcmp(table_str, table_str_etalon) == 0);
2018-01-01 19:45:01 +01:00
2018-01-02 20:48:38 +01:00
ft_destroy_table(table);
}
2018-01-01 09:26:34 +01:00
2018-01-02 20:48:38 +01:00
WHEN("All columns are not equal and not empty") {
table = ft_create_table();
2018-01-21 11:22:46 +01:00
assert_true( table != NULL );
2018-02-25 09:39:41 +01:00
// ft_set_table_options(table, &test_table_opts);
assert_true( set_test_options_for_table(table) == F_SUCCESS);
2018-01-02 20:48:38 +01:00
2018-01-22 19:31:03 +01:00
int n = ft_hdr_printf_ln(table, "%d|%c|%s|%f", 3, 'c', "234", 3.14);
2018-01-02 20:48:38 +01:00
assert_true( n == 4 );
2018-01-22 19:31:03 +01:00
n = ft_printf_ln(table, "%c|%s|%f|%d", 'c', "234", 3.14, 3);
2018-01-02 20:48:38 +01:00
assert_true( n == 4 );
2018-01-22 19:31:03 +01:00
n = ft_printf_ln(table, "%s|%f|%d|%c", "234", 3.14, 3, 'c');
2018-01-02 20:48:38 +01:00
assert_true( n == 4 );
const char *table_str = ft_to_string(table);
2018-01-02 20:48:38 +01:00
assert_true( table_str != NULL );
const char *table_str_etalon =
2018-01-15 19:33:48 +01:00
"+-----+----------+----------+----------+\n"
2018-01-02 20:48:38 +01:00
"| | | | |\n"
"| 3 | c | 234 | 3.140000 |\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+-----+----------+----------+----------+\n"
2018-01-02 20:48:38 +01:00
"| | | | |\n"
"| c | 234 | 3.140000 | 3 |\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+-----+----------+----------+----------+\n"
2018-01-02 20:48:38 +01:00
"| | | | |\n"
"| 234 | 3.140000 | 3 | c |\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+-----+----------+----------+----------+\n";
2018-01-02 20:48:38 +01:00
// fprintf(stderr, "content:\n%s", table_str);
assert_true( strcmp(table_str, table_str_etalon) == 0);
ft_destroy_table(table);
}
WHEN("All columns are not equal and some cells are empty") {
table = ft_create_table();
2018-01-21 11:22:46 +01:00
assert_true( table != NULL );
2018-02-25 09:39:41 +01:00
// ft_set_table_options(table, &test_table_opts);
assert_true( set_test_options_for_table(table) == F_SUCCESS);
2018-01-02 20:48:38 +01:00
2018-01-22 19:31:03 +01:00
int n = ft_hdr_printf_ln(table, "||%s|%f", "234", 3.14);
2018-01-02 20:48:38 +01:00
assert_true( n == 4 );
2018-01-22 19:31:03 +01:00
n = ft_printf_ln(table, "%c|%s|%f", 'c', "234", 3.14);
2018-01-02 20:48:38 +01:00
assert_true( n == 3 );
2018-01-22 19:31:03 +01:00
n = ft_printf_ln(table, "%s|%f||", "234", 3.14);
2018-01-02 20:48:38 +01:00
assert_true( n == 4 );
const char *table_str = ft_to_string(table);
2018-01-02 20:48:38 +01:00
assert_true( table_str != NULL );
const char *table_str_etalon =
2018-01-15 19:33:48 +01:00
"+-----+----------+----------+----------+\n"
2018-01-02 20:48:38 +01:00
"| | | | |\n"
"| | | 234 | 3.140000 |\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+-----+----------+----------+----------+\n"
2018-01-02 20:48:38 +01:00
"| | | | |\n"
"| c | 234 | 3.140000 | |\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+-----+----------+----------+----------+\n"
2018-01-02 20:48:38 +01:00
"| | | | |\n"
2018-01-03 08:10:54 +01:00
"| 234 | 3.140000 | | |\n"
2018-01-02 20:48:38 +01:00
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+-----+----------+----------+----------+\n";
2018-01-02 20:48:38 +01:00
2018-01-03 08:10:54 +01:00
// fprintf(stderr, "content:\n%s", table_str);
assert_true( strcmp(table_str, table_str_etalon) == 0);
ft_destroy_table(table);
}
WHEN("All cells are empty") {
table = ft_create_table();
2018-01-21 11:22:46 +01:00
assert_true( table != NULL );
2018-02-25 09:39:41 +01:00
// ft_set_table_options(table, &test_table_opts);
assert_true( set_test_options_for_table(table) == F_SUCCESS);
2018-01-03 08:10:54 +01:00
2018-01-22 19:31:03 +01:00
int n = ft_hdr_printf_ln(table, "|||");
2018-01-03 08:10:54 +01:00
assert_true( n == 4 );
2018-01-22 19:31:03 +01:00
n = ft_printf_ln(table, "|||");
2018-01-03 08:10:54 +01:00
assert_true( n == 4 );
2018-01-22 19:31:03 +01:00
n = ft_printf_ln(table, "|||");
2018-01-03 08:10:54 +01:00
assert_true( n == 4 );
const char *table_str = ft_to_string(table);
2018-01-03 08:10:54 +01:00
assert_true( table_str != NULL );
const char *table_str_etalon =
2018-01-15 19:33:48 +01:00
"+--+--+--+--+\n"
2018-01-03 08:10:54 +01:00
"| | | | |\n"
"| | | | |\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+--+--+--+--+\n"
2018-01-03 08:10:54 +01:00
"| | | | |\n"
"| | | | |\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+--+--+--+--+\n"
2018-01-03 08:10:54 +01:00
"| | | | |\n"
"| | | | |\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+--+--+--+--+\n";
2018-01-03 08:10:54 +01:00
2018-01-02 20:48:38 +01:00
// fprintf(stderr, "content:\n%s", table_str);
assert_true( strcmp(table_str, table_str_etalon) == 0);
ft_destroy_table(table);
}
2018-01-03 08:40:54 +01:00
}
2018-01-21 11:22:46 +01:00
FTABLE *create_test_int_table(int set_test_opts)
2018-01-03 08:40:54 +01:00
{
FTABLE *table = NULL;
table = ft_create_table();
2018-01-21 11:22:46 +01:00
assert_true( table != NULL );
2018-02-25 09:39:41 +01:00
if (set_test_opts) {
assert_true( set_test_options_for_table(table) == F_SUCCESS);
}
// ft_set_table_options(table, &test_table_opts);
2018-01-03 08:40:54 +01:00
assert_true (table != NULL);
2018-01-22 19:31:03 +01:00
int n = ft_hdr_printf_ln(table, "%d|%d|%d|%d", 3, 4, 55, 67);
2018-01-03 08:40:54 +01:00
assert_true( n == 4 );
assert(ft_write(table, "3") == F_SUCCESS);
assert(ft_write(table, "4") == F_SUCCESS);
assert(ft_write(table, "55") == F_SUCCESS);
assert(ft_write_ln(table, "67") == F_SUCCESS);
assert(ft_write(table, "3") == F_SUCCESS);
assert(ft_write(table, "4") == F_SUCCESS);
assert(ft_write(table, "55") == F_SUCCESS);
assert(ft_write_ln(table, "67") == F_SUCCESS);
2018-01-03 08:40:54 +01:00
return table;
}
void test_table_options(void **state)
{
(void)state;
FTABLE *table = NULL;
2018-01-21 11:22:46 +01:00
// fort_table_options_t def_options =;
// ft_get_default_options(&def_options);
2018-01-03 08:40:54 +01:00
WHEN("All paddings = 1") {
2018-02-25 09:39:41 +01:00
// fort_table_options_t table_options;
// memcpy(&table_options, &test_table_opts, sizeof(fort_table_options_t));
// table_options.cell_padding_bottom = 1;
// table_options.cell_padding_top = 1;
// table_options.cell_padding_left = 1;
// table_options.cell_padding_right = 1;
// ft_set_default_options(&table_options);
set_test_options_as_default();
ft_set_default_option(FT_OPT_BOTTOM_PADDING, 1);
ft_set_default_option(FT_OPT_TOP_PADDING, 1);
ft_set_default_option(FT_OPT_LEFT_PADDING, 1);
ft_set_default_option(FT_OPT_RIGHT_PADDING, 1);
2018-01-03 08:40:54 +01:00
2018-01-21 11:22:46 +01:00
table = create_test_int_table(0);
2018-01-03 08:40:54 +01:00
const char *table_str = ft_to_string(table);
2018-01-03 08:40:54 +01:00
assert_true( table_str != NULL );
const char *table_str_etalon =
2018-01-15 19:33:48 +01:00
"+---+---+----+----+\n"
2018-01-03 08:40:54 +01:00
"| | | | |\n"
"| 3 | 4 | 55 | 67 |\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+---+---+----+----+\n"
2018-01-03 08:40:54 +01:00
"| | | | |\n"
"| 3 | 4 | 55 | 67 |\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+---+---+----+----+\n"
2018-01-03 08:40:54 +01:00
"| | | | |\n"
"| 3 | 4 | 55 | 67 |\n"
2018-02-04 14:21:04 +01:00
"| | | | |\n"
"+---+---+----+----+\n";
// fprintf(stderr, "content:\n%s", table_str);
assert_true( strcmp(table_str, table_str_etalon) == 0);
ft_destroy_table(table);
}
WHEN("Separator testing") {
table = create_test_int_table(0);
ft_add_separator(table);
int n = ft_hdr_printf_ln(table, "%d|%d|%d|%d", 3, 4, 55, 67);
assert_true( n == 4 );
const char *table_str = ft_to_string(table);
assert_true( table_str != NULL );
const char *table_str_etalon =
"+---+---+----+----+\n"
"| | | | |\n"
"| 3 | 4 | 55 | 67 |\n"
"| | | | |\n"
"+---+---+----+----+\n"
"| | | | |\n"
"| 3 | 4 | 55 | 67 |\n"
"| | | | |\n"
"+---+---+----+----+\n"
"| | | | |\n"
"| 3 | 4 | 55 | 67 |\n"
"| | | | |\n"
"+===+===+====+====+\n"
"| | | | |\n"
"| 3 | 4 | 55 | 67 |\n"
2018-01-03 08:40:54 +01:00
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+---+---+----+----+\n";
2018-01-03 08:40:54 +01:00
// fprintf(stderr, "content:\n%s", table_str);
assert_true( strcmp(table_str, table_str_etalon) == 0);
ft_destroy_table(table);
}
WHEN("Top and bottom padding = 0") {
2018-02-25 09:39:41 +01:00
// fort_table_options_t table_options;
// memcpy(&table_options, &test_table_opts, sizeof(fort_table_options_t));
// table_options.cell_padding_bottom = 0;
// table_options.cell_padding_top = 0;
// table_options.cell_padding_left = 1;
// table_options.cell_padding_right = 1;
// ft_set_default_options(&table_options);
ft_set_default_option(FT_OPT_BOTTOM_PADDING, 0);
ft_set_default_option(FT_OPT_TOP_PADDING, 0);
ft_set_default_option(FT_OPT_LEFT_PADDING, 1);
ft_set_default_option(FT_OPT_RIGHT_PADDING, 1);
2018-01-03 08:40:54 +01:00
2018-01-21 11:22:46 +01:00
table = create_test_int_table(0);
2018-01-03 08:40:54 +01:00
const char *table_str = ft_to_string(table);
2018-01-03 08:40:54 +01:00
assert_true( table_str != NULL );
const char *table_str_etalon =
2018-01-15 19:33:48 +01:00
"+---+---+----+----+\n"
2018-01-03 08:40:54 +01:00
"| 3 | 4 | 55 | 67 |\n"
2018-01-15 19:33:48 +01:00
"+---+---+----+----+\n"
2018-01-03 08:40:54 +01:00
"| 3 | 4 | 55 | 67 |\n"
2018-01-15 19:33:48 +01:00
"+---+---+----+----+\n"
2018-01-03 08:40:54 +01:00
"| 3 | 4 | 55 | 67 |\n"
2018-01-15 19:33:48 +01:00
"+---+---+----+----+\n";
2018-01-03 08:40:54 +01:00
// fprintf(stderr, "content:\n%s", table_str);
assert_true( strcmp(table_str, table_str_etalon) == 0);
ft_destroy_table(table);
}
WHEN("Left and right padding = 0") {
2018-02-25 09:39:41 +01:00
// fort_table_options_t table_options;
// memcpy(&table_options, &test_table_opts, sizeof(fort_table_options_t));
// table_options.cell_padding_bottom = 1;
// table_options.cell_padding_top = 1;
// table_options.cell_padding_left = 0;
// table_options.cell_padding_right = 0;
// ft_set_default_options(&table_options);
ft_set_default_option(FT_OPT_BOTTOM_PADDING, 1);
ft_set_default_option(FT_OPT_TOP_PADDING, 1);
ft_set_default_option(FT_OPT_LEFT_PADDING, 0);
ft_set_default_option(FT_OPT_RIGHT_PADDING, 0);
2018-01-03 08:40:54 +01:00
2018-01-21 11:22:46 +01:00
table = create_test_int_table(0);
2018-01-03 08:40:54 +01:00
const char *table_str = ft_to_string(table);
2018-01-03 08:40:54 +01:00
assert_true( table_str != NULL );
const char *table_str_etalon =
2018-01-15 19:33:48 +01:00
"+-+-+--+--+\n"
2018-01-03 08:40:54 +01:00
"| | | | |\n"
"|3|4|55|67|\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+-+-+--+--+\n"
2018-01-03 08:40:54 +01:00
"| | | | |\n"
"|3|4|55|67|\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+-+-+--+--+\n"
2018-01-03 08:40:54 +01:00
"| | | | |\n"
"|3|4|55|67|\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+-+-+--+--+\n";
2018-01-03 08:40:54 +01:00
// fprintf(stderr, "content:\n%s", table_str);
assert_true( strcmp(table_str, table_str_etalon) == 0);
ft_destroy_table(table);
}
WHEN("All paddings = 0") {
2018-02-25 09:39:41 +01:00
// fort_table_options_t table_options;
// memcpy(&table_options, &test_table_opts, sizeof(fort_table_options_t));
// table_options.cell_padding_bottom = 0;
// table_options.cell_padding_top = 0;
// table_options.cell_padding_left = 0;
// table_options.cell_padding_right = 0;
// ft_set_default_options(&table_options);
ft_set_default_option(FT_OPT_BOTTOM_PADDING, 0);
ft_set_default_option(FT_OPT_TOP_PADDING, 0);
ft_set_default_option(FT_OPT_LEFT_PADDING, 0);
ft_set_default_option(FT_OPT_RIGHT_PADDING, 0);
2018-01-03 08:40:54 +01:00
2018-01-21 11:22:46 +01:00
table = create_test_int_table(0);
2018-01-03 08:40:54 +01:00
const char *table_str = ft_to_string(table);
2018-01-03 08:40:54 +01:00
assert_true( table_str != NULL );
const char *table_str_etalon =
2018-01-15 19:33:48 +01:00
"+-+-+--+--+\n"
2018-01-03 08:40:54 +01:00
"|3|4|55|67|\n"
2018-01-15 19:33:48 +01:00
"+-+-+--+--+\n"
2018-01-03 08:40:54 +01:00
"|3|4|55|67|\n"
2018-01-15 19:33:48 +01:00
"+-+-+--+--+\n"
2018-01-03 08:40:54 +01:00
"|3|4|55|67|\n"
2018-01-15 19:33:48 +01:00
"+-+-+--+--+\n";
2018-01-03 08:40:54 +01:00
// fprintf(stderr, "content:\n%s", table_str);
assert_true( strcmp(table_str, table_str_etalon) == 0);
ft_destroy_table(table);
}
WHEN("Empty string has 0 heigt") {
2018-02-25 09:39:41 +01:00
// fort_table_options_t table_options;
// memcpy(&table_options, &test_table_opts, sizeof(fort_table_options_t));
// table_options.cell_padding_bottom = 1;
// table_options.cell_padding_top = 1;
// table_options.cell_padding_left = 1;
// table_options.cell_padding_right = 1;
// table_options.cell_empty_string_height = 0;
// ft_set_default_options(&table_options);
ft_set_default_option(FT_OPT_BOTTOM_PADDING, 1);
ft_set_default_option(FT_OPT_TOP_PADDING, 1);
ft_set_default_option(FT_OPT_LEFT_PADDING, 1);
ft_set_default_option(FT_OPT_RIGHT_PADDING, 1);
ft_set_default_option(FT_OPT_EMPTY_STR_HEIGHT, 0);
2018-01-21 11:22:46 +01:00
table = create_test_int_table(0);
2018-01-21 10:53:26 +01:00
int n = ft_printf_ln(table, "|||");
assert_true( n == 4 );
const char *table_str = ft_to_string(table);
assert_true( table_str != NULL );
const char *table_str_etalon =
2018-01-15 19:33:48 +01:00
"+---+---+----+----+\n"
"| | | | |\n"
"| 3 | 4 | 55 | 67 |\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+---+---+----+----+\n"
"| | | | |\n"
"| 3 | 4 | 55 | 67 |\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+---+---+----+----+\n"
"| | | | |\n"
"| 3 | 4 | 55 | 67 |\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+---+---+----+----+\n"
"| | | | |\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+---+---+----+----+\n";
// fprintf(stderr, "content:\n%s", table_str);
assert_true( strcmp(table_str, table_str_etalon) == 0);
ft_destroy_table(table);
}
2018-01-03 08:40:54 +01:00
WHEN("Changing cell separators") {
2018-02-25 09:39:41 +01:00
// fort_table_options_t table_options;
// memcpy(&table_options, &test_table_opts, sizeof(fort_table_options_t));
//#define BOR_CHARS table_options.border_chars
//#define H_BOR_CHARS table_options.header_border_chars
// BOR_CHARS[TL_bip] = BOR_CHARS[TT_bip] = BOR_CHARS[TV_bip] = BOR_CHARS[TR_bip] = '|';
// BOR_CHARS[LH_bip] = BOR_CHARS[IH_bip] = BOR_CHARS[II_bip] = BOR_CHARS[RH_bip] = '|';
// BOR_CHARS[BL_bip] = BOR_CHARS[BB_bip] = BOR_CHARS[BV_bip] = BOR_CHARS[BR_bip] = '|';
// BOR_CHARS[LL_bip] = BOR_CHARS[IV_bip] = BOR_CHARS[RR_bip] = '=';
2018-01-07 10:22:26 +01:00
2018-02-25 09:39:41 +01:00
// H_BOR_CHARS[TL_bip] = H_BOR_CHARS[TT_bip] = H_BOR_CHARS[TV_bip] = H_BOR_CHARS[TR_bip] = '*';
// H_BOR_CHARS[LH_bip] = H_BOR_CHARS[IH_bip] = H_BOR_CHARS[II_bip] = H_BOR_CHARS[RH_bip] = '*';
// H_BOR_CHARS[BL_bip] = H_BOR_CHARS[BB_bip] = H_BOR_CHARS[BV_bip] = H_BOR_CHARS[BR_bip] = '*';
// H_BOR_CHARS[LL_bip] = H_BOR_CHARS[IV_bip] = H_BOR_CHARS[RR_bip] = 'v';
2018-01-07 10:22:26 +01:00
2018-02-25 09:39:41 +01:00
//#undef BOR_CHARS
//#undef H_BOR_CHARS
2018-01-07 10:22:26 +01:00
2018-02-25 09:39:41 +01:00
// ft_set_default_options(&table_options);
struct border_chars border_chs;
border_chs.top_border_ch = '|';
border_chs.separator_ch = '|';
border_chs.bottom_border_ch = '|';
border_chs.side_border_ch = '=';
border_chs.out_intersect_ch = '+';
border_chs.in_intersect_ch = '#';
struct border_chars header_border_chs;
header_border_chs.top_border_ch = '*';
header_border_chs.separator_ch = '*';
header_border_chs.bottom_border_ch = '*';
header_border_chs.side_border_ch = 'v';
header_border_chs.out_intersect_ch = '+';
header_border_chs.in_intersect_ch = '#';
ft_set_default_borders(&border_chs, &header_border_chs);
2018-01-07 10:22:26 +01:00
2018-01-03 08:40:54 +01:00
2018-01-21 11:22:46 +01:00
table = create_test_int_table(0);
const char *table_str = ft_to_string(table);
assert_true( table_str != NULL );
const char *table_str_etalon =
2018-02-25 09:39:41 +01:00
"+***+***+****+****+\n"
2018-01-06 10:19:02 +01:00
"v v v v v\n"
"v 3 v 4 v 55 v 67 v\n"
"v v v v v\n"
2018-02-25 09:39:41 +01:00
"+***#***#****#****+\n"
"= = = = =\n"
"= 3 = 4 = 55 = 67 =\n"
"= = = = =\n"
2018-02-25 09:39:41 +01:00
"+|||#|||#||||#||||+\n"
"= = = = =\n"
"= 3 = 4 = 55 = 67 =\n"
"= = = = =\n"
2018-02-25 09:39:41 +01:00
"+|||+|||+||||+||||+\n";
// fprintf(stderr, "content:\n%s", table_str);
assert_true( strcmp(table_str, table_str_etalon) == 0);
ft_destroy_table(table);
2018-02-25 09:39:41 +01:00
//#define BOR_CHARS table_options.border_chars
//#define H_BOR_CHARS table_options.header_border_chars
// BOR_CHARS[TL_bip] = BOR_CHARS[TT_bip] = BOR_CHARS[TV_bip] = BOR_CHARS[TR_bip] = '|';
// BOR_CHARS[LH_bip] = BOR_CHARS[IH_bip] = BOR_CHARS[II_bip] = BOR_CHARS[RH_bip] = '\0';
// BOR_CHARS[BL_bip] = BOR_CHARS[BB_bip] = BOR_CHARS[BV_bip] = BOR_CHARS[BR_bip] = '|';
// BOR_CHARS[LL_bip] = BOR_CHARS[IV_bip] = BOR_CHARS[RR_bip] = '=';
// H_BOR_CHARS[TL_bip] = H_BOR_CHARS[TT_bip] = H_BOR_CHARS[TV_bip] = H_BOR_CHARS[TR_bip] = '*';
// H_BOR_CHARS[LH_bip] = H_BOR_CHARS[IH_bip] = H_BOR_CHARS[II_bip] = H_BOR_CHARS[RH_bip] = '*';
// H_BOR_CHARS[BL_bip] = H_BOR_CHARS[BB_bip] = H_BOR_CHARS[BV_bip] = H_BOR_CHARS[BR_bip] = '*';
// H_BOR_CHARS[LL_bip] = H_BOR_CHARS[IV_bip] = H_BOR_CHARS[RR_bip] = 'v';
//#undef BOR_CHARS
//#undef H_BOR_CHARS
2018-02-25 09:39:41 +01:00
// table_options.cell_padding_bottom = 0;
// table_options.cell_padding_top = 0;
// table_options.cell_padding_left = 1;
// table_options.cell_padding_right = 1;
// table_options.cell_empty_string_height = 0;
// ft_set_default_options(&table_options);
2018-02-25 09:39:41 +01:00
border_chs.top_border_ch = '|';
border_chs.separator_ch = '\0';
border_chs.bottom_border_ch = '|';
border_chs.side_border_ch = '=';
border_chs.out_intersect_ch = '+';
border_chs.in_intersect_ch = '\0';
2018-02-25 09:39:41 +01:00
header_border_chs.top_border_ch = '*';
header_border_chs.separator_ch = '*';
header_border_chs.bottom_border_ch = '*';
header_border_chs.side_border_ch = 'v';
header_border_chs.out_intersect_ch = '+';
header_border_chs.in_intersect_ch = '#';
2018-02-25 09:39:41 +01:00
ft_set_default_borders(&border_chs, &header_border_chs);
ft_set_default_option(FT_OPT_BOTTOM_PADDING, 0);
ft_set_default_option(FT_OPT_TOP_PADDING, 0);
ft_set_default_option(FT_OPT_LEFT_PADDING, 1);
ft_set_default_option(FT_OPT_RIGHT_PADDING, 1);
ft_set_default_option(FT_OPT_EMPTY_STR_HEIGHT, 0);
2018-01-21 11:22:46 +01:00
table = create_test_int_table(0);
table_str = ft_to_string(table);
assert_true( table_str != NULL );
table_str_etalon =
2018-02-25 09:39:41 +01:00
"+***+***+****+****+\n"
"v 3 v 4 v 55 v 67 v\n"
2018-02-25 09:39:41 +01:00
"+***#***#****#****+\n"
"= 3 = 4 = 55 = 67 =\n"
"= 3 = 4 = 55 = 67 =\n"
2018-02-25 09:39:41 +01:00
"+|||+|||+||||+||||+\n";
// fprintf(stderr, "content:\n%s", table_str);
assert_true( strcmp(table_str, table_str_etalon) == 0);
ft_destroy_table(table);
}
2018-01-02 20:48:38 +01:00
WHEN("Setting options for a particular table") {
2018-02-25 09:39:41 +01:00
// fort_table_options_t table_options;
// memcpy(&table_options, &test_table_opts, sizeof(fort_table_options_t));
// table_options.cell_padding_bottom = 0;
// table_options.cell_padding_top = 0;
// table_options.cell_padding_left = 0;
// table_options.cell_padding_right = 0;
// ft_set_default_options(&table_options);
2018-01-21 11:22:46 +01:00
table = create_test_int_table(0);
2018-02-25 09:39:41 +01:00
set_test_options_for_table(table);
ft_set_table_option(table, FT_OPT_BOTTOM_PADDING, 0);
ft_set_table_option(table, FT_OPT_TOP_PADDING, 0);
ft_set_table_option(table, FT_OPT_LEFT_PADDING, 0);
ft_set_table_option(table, FT_OPT_RIGHT_PADDING, 0);
const char *table_str = ft_to_string(table);
assert_true( table_str != NULL );
const char *table_str_etalon =
2018-01-15 19:33:48 +01:00
"+-+-+--+--+\n"
"|3|4|55|67|\n"
2018-01-15 19:33:48 +01:00
"+-+-+--+--+\n"
"|3|4|55|67|\n"
2018-01-15 19:33:48 +01:00
"+-+-+--+--+\n"
"|3|4|55|67|\n"
2018-01-15 19:33:48 +01:00
"+-+-+--+--+\n";
// fprintf(stderr, "content:\n%s", table_str);
assert_true( strcmp(table_str, table_str_etalon) == 0);
2018-02-25 09:39:41 +01:00
// table_options.cell_padding_bottom = 1;
// table_options.cell_padding_top = 1;
// table_options.cell_padding_left = 0;
// table_options.cell_padding_right = 0;
// ft_set_table_options(table, &table_options);
ft_set_table_option(table, FT_OPT_BOTTOM_PADDING, 1);
ft_set_table_option(table, FT_OPT_TOP_PADDING, 1);
ft_set_table_option(table, FT_OPT_LEFT_PADDING, 0);
ft_set_table_option(table, FT_OPT_RIGHT_PADDING, 0);
ft_set_table_option(table, FT_OPT_EMPTY_STR_HEIGHT, 0);
table_str = ft_to_string(table);
assert_true( table_str != NULL );
table_str_etalon =
2018-01-15 19:33:48 +01:00
"+-+-+--+--+\n"
"| | | | |\n"
"|3|4|55|67|\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+-+-+--+--+\n"
"| | | | |\n"
"|3|4|55|67|\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+-+-+--+--+\n"
"| | | | |\n"
"|3|4|55|67|\n"
"| | | | |\n"
2018-01-15 19:33:48 +01:00
"+-+-+--+--+\n";
2018-01-13 09:36:04 +01:00
// fprintf(stderr, "content:\n%s", table_str);
assert_true( strcmp(table_str, table_str_etalon) == 0);
ft_destroy_table(table);
}
2018-01-01 09:26:34 +01:00
2018-01-07 19:08:48 +01:00
2018-01-13 09:36:04 +01:00
WHEN("Set table width and column alignment") {
2018-02-25 09:39:41 +01:00
// fort_table_options_t table_options;
// memcpy(&table_options, &test_table_opts, sizeof(fort_table_options_t));
// table_options.cell_padding_bottom = 1;
// table_options.cell_padding_top = 1;
// table_options.cell_padding_left = 1;
// table_options.cell_padding_right = 1;
// ft_set_default_options(&table_options);
set_test_options_as_default();
2018-01-07 19:08:48 +01:00
2018-01-21 11:22:46 +01:00
table = create_test_int_table(0);
2018-02-25 17:25:00 +01:00
int status = F_SUCCESS;
2018-02-25 19:43:20 +01:00
// status |= ft_set_column_min_width(table, 1, 7);
// status |= ft_set_column_alignment(table, 1, LeftAligned);
// status |= ft_set_column_min_width(table, 2, 8);
// status |= ft_set_column_alignment(table, 2, CenterAligned);
status |= ft_set_cell_option(table, FT_ANY_ROW, 1, FT_OPT_MIN_WIDTH, 7);
status |= ft_set_cell_option(table, FT_ANY_ROW, 1, FT_OPT_TEXT_ALIGN, LeftAligned);
status |= ft_set_cell_option(table, FT_ANY_ROW, 2, FT_OPT_MIN_WIDTH, 8);
status |= ft_set_cell_option(table, FT_ANY_ROW, 2, FT_OPT_TEXT_ALIGN, CenterAligned);
2018-02-26 19:54:36 +01:00
status |= ft_set_cell_option(table, 2, 3, FT_OPT_MIN_WIDTH, 6);
status |= ft_set_cell_option(table, 2, 3, FT_OPT_TEXT_ALIGN, LeftAligned);
2018-02-25 17:25:00 +01:00
assert_true( status == F_SUCCESS);
2018-01-07 19:08:48 +01:00
const char *table_str = ft_to_string(table);
2018-01-07 19:08:48 +01:00
assert_true( table_str != NULL );
const char *table_str_etalon =
2018-02-26 19:54:36 +01:00
"+---+-------+--------+------+\n"
"| | | | |\n"
"| 3 | 4 | 55 | 67 |\n"
"| | | | |\n"
"+---+-------+--------+------+\n"
"| | | | |\n"
"| 3 | 4 | 55 | 67 |\n"
"| | | | |\n"
"+---+-------+--------+------+\n"
"| | | | |\n"
"| 3 | 4 | 55 | 67 |\n"
"| | | | |\n"
"+---+-------+--------+------+\n";
2018-01-07 19:08:48 +01:00
// fprintf(stderr, "content:\n%s", table_str);
assert_true( strcmp(table_str, table_str_etalon) == 0);
ft_destroy_table(table);
}
2018-01-21 09:19:18 +01:00
WHEN("All columns are equal and not empty") {
table = ft_create_table();
2018-01-22 19:31:03 +01:00
int n = ft_hdr_printf_ln(table, "%d|%c|%s|%f", 4, 'c', "234", 3.14);
2018-01-21 09:19:18 +01:00
assert_true( n == 4 );
2018-01-21 10:53:26 +01:00
n = FT_NWRITE_LN(table, "5", "c", "234\n12", "3.140000");
assert_true( n == F_SUCCESS );
2018-01-22 19:31:03 +01:00
n = ft_printf_ln(table, "%d|%c|%s|%f", 3, 'c', "234", 3.14);
2018-01-21 09:19:18 +01:00
assert_true( n == 4 );
const char *table_str = ft_to_string(table);
assert_true( table_str != NULL );
const char *table_str_etalon =
"+---+---+-----+----------+\n"
"| | | | |\n"
2018-01-21 10:53:26 +01:00
"| 4 | c | 234 | 3.140000 |\n"
2018-01-21 09:19:18 +01:00
"| | | | |\n"
"+---+---+-----+----------+\n"
"| | | | |\n"
2018-01-21 10:53:26 +01:00
"| 5 | c | 234 | 3.140000 |\n"
2018-01-21 09:19:18 +01:00
"| | | 12 | |\n"
"| | | | |\n"
"+---+---+-----+----------+\n"
"| | | | |\n"
"| 3 | c | 234 | 3.140000 |\n"
"| | | | |\n"
"+---+---+-----+----------+\n";
// fprintf(stderr, "content:\n%s", table_str);
assert_true( strcmp(table_str, table_str_etalon) == 0);
ft_destroy_table(table);
}
2018-01-01 09:26:34 +01:00
}