1
0
Fork 0

[A] Added more tests for border styles

This commit is contained in:
seleznevae 2019-08-10 13:38:30 +03:00
parent 4461106fe9
commit d3d3e1821c
2 changed files with 172 additions and 84 deletions

View File

@ -9,6 +9,10 @@
- Changed specific style reset tags to universal reset style tag. - Changed specific style reset tags to universal reset style tag.
- Fix incorrect border style for the last line in the table. - Fix incorrect border style for the last line in the table.
### Tests
- Added more tests for border styles.
## v0.1.5 ## v0.1.5
### Tests ### Tests

View File

@ -288,12 +288,15 @@ void test_table_builtin_border_styles(void)
#endif #endif
ft_set_default_border_style(FT_BASIC_STYLE); test_table_style("FT_BASIC_STYLE (simple layout)",
table = create_basic_table(); create_simple_table, FT_BASIC_STYLE,
table_str = ft_to_string(table); "+-----+------+\n"
assert_true(table_str != NULL); "| 111 | 22 |\n"
"| 3 | 4444 |\n"
"+-----+------+\n");
table_str_etalon = test_table_style("FT_BASIC_STYLE (ordinary layout)",
create_basic_table, FT_BASIC_STYLE,
"+------+--------------------------+------+--------+\n" "+------+--------------------------+------+--------+\n"
"| Rank | Title | Year | Rating |\n" "| Rank | Title | Year | Rating |\n"
"+------+--------------------------+------+--------+\n" "+------+--------------------------+------+--------+\n"
@ -303,18 +306,37 @@ void test_table_builtin_border_styles(void)
"+------+--------------------------+------+--------+\n" "+------+--------------------------+------+--------+\n"
"| 4 | 2001: A Space Odyssey | 1968 | 8.5 |\n" "| 4 | 2001: A Space Odyssey | 1968 | 8.5 |\n"
"| 5 | Blade Runner | 1982 | 8.1 |\n" "| 5 | Blade Runner | 1982 | 8.1 |\n"
"+------+--------------------------+------+--------+\n"; "+------+--------------------------+------+--------+\n");
assert_str_equal(table_str, table_str_etalon);
ft_destroy_table(table); test_table_style("FT_BASIC_STYLE (complex layout)",
create_complex_table, FT_BASIC_STYLE,
"+------+--------------------------+------+--------+\n"
"| Rank | Title | Year | Rating |\n"
"+------+--------------------------+------+--------+\n"
"| Rank | Title | Rating |\n"
"+------+--------------------------+------+--------+\n"
"| Rank | Title | Year | Rating |\n"
"+------+--------------------------+------+--------+\n"
"| 1 | The Shawshank Redemption | 1994 |\n"
"| 2 | 12 Angry Men | 8.8 |\n"
"| 3 | It's a Wonderful Life | 1946 | 8.6 |\n"
"+------+--------------------------+------+--------+\n"
"| 4 | 2001: A Space Odyssey | 1968 | 8.5 |\n"
"| 5 | Blade Runner | 1982 | 8.1 |\n"
"+------+--------------------------+------+--------+\n");
/* *************************************************************** */ /* *************************************************************** */
ft_set_default_border_style(FT_BASIC2_STYLE); test_table_style("FT_BASIC2_STYLE (simple layout)",
table = create_basic_table(); create_simple_table, FT_BASIC2_STYLE,
table_str = ft_to_string(table); "+-----+------+\n"
assert_true(table_str != NULL); "| 111 | 22 |\n"
"+-----+------+\n"
"| 3 | 4444 |\n"
"+-----+------+\n");
table_str_etalon = test_table_style("FT_BASIC2_STYLE (ordinary layout)",
create_basic_table, FT_BASIC2_STYLE,
"+------+--------------------------+------+--------+\n" "+------+--------------------------+------+--------+\n"
"| Rank | Title | Year | Rating |\n" "| Rank | Title | Year | Rating |\n"
"+------+--------------------------+------+--------+\n" "+------+--------------------------+------+--------+\n"
@ -327,10 +349,27 @@ void test_table_builtin_border_styles(void)
"| 4 | 2001: A Space Odyssey | 1968 | 8.5 |\n" "| 4 | 2001: A Space Odyssey | 1968 | 8.5 |\n"
"+------+--------------------------+------+--------+\n" "+------+--------------------------+------+--------+\n"
"| 5 | Blade Runner | 1982 | 8.1 |\n" "| 5 | Blade Runner | 1982 | 8.1 |\n"
"+------+--------------------------+------+--------+\n"; "+------+--------------------------+------+--------+\n");
assert_str_equal(table_str, table_str_etalon);
ft_destroy_table(table);
test_table_style("FT_BASIC2_STYLE (complex layout)",
create_complex_table, FT_BASIC2_STYLE,
"+------+--------------------------+------+--------+\n"
"| Rank | Title | Year | Rating |\n"
"+------+--------------------------+------+--------+\n"
"| Rank | Title | Rating |\n"
"+------+--------------------------+------+--------+\n"
"| Rank | Title | Year | Rating |\n"
"+------+--------------------------+------+--------+\n"
"| 1 | The Shawshank Redemption | 1994 |\n"
"+------+--------------------------+------+--------+\n"
"| 2 | 12 Angry Men | 8.8 |\n"
"+------+--------------------------+------+--------+\n"
"| 3 | It's a Wonderful Life | 1946 | 8.6 |\n"
"+------+--------------------------+------+--------+\n"
"| 4 | 2001: A Space Odyssey | 1968 | 8.5 |\n"
"+------+--------------------------+------+--------+\n"
"| 5 | Blade Runner | 1982 | 8.1 |\n"
"+------+--------------------------+------+--------+\n");
/* *************************************************************** */ /* *************************************************************** */
@ -402,12 +441,15 @@ void test_table_builtin_border_styles(void)
/* *************************************************************** */ /* *************************************************************** */
ft_set_default_border_style(FT_DOT_STYLE); test_table_style("FT_DOT_STYLE (simple layout)",
table = create_basic_table(); create_simple_table, FT_DOT_STYLE,
table_str = ft_to_string(table); "..............\n"
assert_true(table_str != NULL); ": 111 : 22 :\n"
": 3 : 4444 :\n"
":.....:......:\n");
table_str_etalon = test_table_style("FT_DOT_STYLE (ordinary layout)",
create_basic_table, FT_DOT_STYLE,
"...................................................\n" "...................................................\n"
": Rank : Title : Year : Rating :\n" ": Rank : Title : Year : Rating :\n"
":......:..........................:......:........:\n" ":......:..........................:......:........:\n"
@ -417,36 +459,66 @@ void test_table_builtin_border_styles(void)
":......:..........................:......:........:\n" ":......:..........................:......:........:\n"
": 4 : 2001: A Space Odyssey : 1968 : 8.5 :\n" ": 4 : 2001: A Space Odyssey : 1968 : 8.5 :\n"
": 5 : Blade Runner : 1982 : 8.1 :\n" ": 5 : Blade Runner : 1982 : 8.1 :\n"
":......:..........................:......:........:\n"; ":......:..........................:......:........:\n");
assert_str_equal(table_str, table_str_etalon);
ft_destroy_table(table); test_table_style("FT_DOT_STYLE (complex layout)",
create_complex_table, FT_DOT_STYLE,
"...................................................\n"
": Rank : Title : Year : Rating :\n"
":......:.................................:........:\n"
": Rank : Title : Rating :\n"
":......:.................................:........:\n"
": Rank : Title : Year : Rating :\n"
":......:..........................:...............:\n"
": 1 : The Shawshank Redemption : 1994 :\n"
": 2 : 12 Angry Men : 8.8 :\n"
": 3 : It's a Wonderful Life : 1946 : 8.6 :\n"
":......:..........................:......:........:\n"
": 4 : 2001: A Space Odyssey : 1968 : 8.5 :\n"
": 5 : Blade Runner : 1982 : 8.1 :\n"
":......:..........................:......:........:\n");
/* *************************************************************** */ /* *************************************************************** */
ft_set_default_border_style(FT_EMPTY_STYLE); test_table_style("FT_EMPTY_STYLE (simple layout)",
table = create_basic_table(); create_simple_table, FT_EMPTY_STYLE,
table_str = ft_to_string(table); " 111 22 \n"
assert_true(table_str != NULL); " 3 4444 \n");
table_str_etalon = test_table_style("FT_EMPTY_STYLE (ordinary layout)",
create_basic_table, FT_EMPTY_STYLE,
" Rank Title Year Rating \n" " Rank Title Year Rating \n"
" 1 The Shawshank Redemption 1994 9.5 \n" " 1 The Shawshank Redemption 1994 9.5 \n"
" 2 12 Angry Men 1957 8.8 \n" " 2 12 Angry Men 1957 8.8 \n"
" 3 It's a Wonderful Life 1946 8.6 \n" " 3 It's a Wonderful Life 1946 8.6 \n"
" \n" " \n"
" 4 2001: A Space Odyssey 1968 8.5 \n" " 4 2001: A Space Odyssey 1968 8.5 \n"
" 5 Blade Runner 1982 8.1 \n"; " 5 Blade Runner 1982 8.1 \n");
assert_str_equal(table_str, table_str_etalon);
ft_destroy_table(table); // TODO: seems to be a bug here
test_table_style("FT_EMPTY_STYLE (complex layout)",
create_complex_table, FT_EMPTY_STYLE,
" Rank Title Year Rating \n"
" Rank Title Rating \n"
" Rank Title Year Rating \n"
" 1 The Shawshank Redemption 1994 \n"
" 2 12 Angry Men 8.8 \n"
" 3 It's a Wonderful Life 1946 8.6 \n"
" \n"
" 4 2001: A Space Odyssey 1968 8.5 \n"
" 5 Blade Runner 1982 8.1 \n");
/* *************************************************************** */ /* *************************************************************** */
ft_set_default_border_style(FT_EMPTY2_STYLE); test_table_style("FT_EMPTY2_STYLE (simple layout)",
table = create_basic_table(); create_simple_table, FT_EMPTY2_STYLE,
table_str = ft_to_string(table); " \n"
assert_true(table_str != NULL); " 111 22 \n"
" 3 4444 \n"
" \n");
table_str_etalon = test_table_style("FT_EMPTY2_STYLE (ordinary layout)",
create_basic_table, FT_EMPTY2_STYLE,
" \n" " \n"
" Rank Title Year Rating \n" " Rank Title Year Rating \n"
" 1 The Shawshank Redemption 1994 9.5 \n" " 1 The Shawshank Redemption 1994 9.5 \n"
@ -455,9 +527,21 @@ void test_table_builtin_border_styles(void)
" \n" " \n"
" 4 2001: A Space Odyssey 1968 8.5 \n" " 4 2001: A Space Odyssey 1968 8.5 \n"
" 5 Blade Runner 1982 8.1 \n" " 5 Blade Runner 1982 8.1 \n"
" \n"; " \n");
assert_str_equal(table_str, table_str_etalon);
ft_destroy_table(table); test_table_style("FT_EMPTY2_STYLE (complex layout)",
create_complex_table, FT_EMPTY2_STYLE,
" \n"
" Rank Title Year Rating \n"
" Rank Title Rating \n"
" Rank Title Year Rating \n"
" 1 The Shawshank Redemption 1994 \n"
" 2 12 Angry Men 8.8 \n"
" 3 It's a Wonderful Life 1946 8.6 \n"
" \n"
" 4 2001: A Space Odyssey 1968 8.5 \n"
" 5 Blade Runner 1982 8.1 \n"
" \n");
/* *************************************************************** */ /* *************************************************************** */