123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813 |
- // Copyright (c) 2014-2021 Thomas Fussell
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE
- //
- // @license: http://www.opensource.org/licenses/mit-license.php
- // @author: see AUTHORS file
- #include <iostream>
- #include <xlnt/xlnt.hpp>
- #include <helpers/path_helper.hpp>
- #include <helpers/temporary_file.hpp>
- #include <helpers/test_suite.hpp>
- #include <helpers/xml_helper.hpp>
- class serialization_test_suite : public test_suite
- {
- public:
- serialization_test_suite()
- {
- register_test(test_produce_empty);
- register_test(test_produce_simple_excel);
- register_test(test_save_after_sheet_deletion);
- register_test(test_write_comments_hyperlinks_formulae);
- register_test(test_save_after_clear_formula);
- register_test(test_load_non_xlsx);
- register_test(test_decrypt_agile);
- register_test(test_decrypt_libre_office);
- register_test(test_decrypt_standard);
- register_test(test_decrypt_numbers);
- register_test(test_read_unicode_filename);
- register_test(test_comments);
- register_test(test_read_hyperlink);
- register_test(test_read_formulae);
- register_test(test_read_headers_and_footers);
- register_test(test_read_custom_properties);
- register_test(test_read_custom_heights_widths);
- register_test(test_write_custom_heights_widths);
- register_test(test_round_trip_rw_minimal);
- register_test(test_round_trip_rw_default);
- register_test(test_round_trip_rw_every_style);
- register_test(test_round_trip_rw_unicode);
- register_test(test_round_trip_rw_comments_hyperlinks_formulae);
- register_test(test_round_trip_rw_print_settings);
- register_test(test_round_trip_rw_advanced_properties);
- register_test(test_round_trip_rw_custom_heights_widths);
- register_test(test_round_trip_rw_encrypted_agile);
- register_test(test_round_trip_rw_encrypted_libre);
- register_test(test_round_trip_rw_encrypted_standard);
- register_test(test_round_trip_rw_encrypted_numbers);
- register_test(test_streaming_read);
- register_test(test_streaming_write);
- register_test(test_load_save_german_locale);
- register_test(test_Issue445_inline_str_load);
- register_test(test_Issue445_inline_str_streaming_read);
- register_test(test_Issue492_stream_empty_row);
- register_test(test_Issue503_external_link_load);
- register_test(test_formatting);
- register_test(test_active_sheet);
- }
- bool workbook_matches_file(xlnt::workbook &wb, const xlnt::path &file)
- {
- std::vector<std::uint8_t> wb_data;
- wb.save(wb_data);
- wb.save("temp.xlsx");
- std::ifstream file_stream(file.string(), std::ios::binary);
- auto file_data = xlnt::detail::to_vector(file_stream);
- return xml_helper::xlsx_archives_match(wb_data, file_data);
- }
- void test_produce_empty()
- {
- xlnt::workbook wb;
- const auto path = path_helper::test_file("3_default.xlsx");
- xlnt_assert(workbook_matches_file(wb, path));
- }
- void test_produce_simple_excel()
- {
- xlnt::workbook wb;
- auto ws = wb.active_sheet();
- auto bold_font = xlnt::font().bold(true);
- ws.cell("A1").value("Type");
- ws.cell("A1").font(bold_font);
- ws.cell("B1").value("Value");
- ws.cell("B1").font(bold_font);
- ws.cell("A2").value("null");
- ws.cell("B2").value(nullptr);
- ws.cell("A3").value("bool (true)");
- ws.cell("B3").value(true);
- ws.cell("A4").value("bool (false)");
- ws.cell("B4").value(false);
- ws.cell("A5").value("number (int)");
- ws.cell("B5").value(std::numeric_limits<int>::max());
- ws.cell("A5").value("number (unsigned int)");
- ws.cell("B5").value(std::numeric_limits<unsigned int>::max());
- ws.cell("A6").value("number (long long int)");
- ws.cell("B6").value(std::numeric_limits<long long int>::max());
- ws.cell("A6").value("number (unsigned long long int)");
- ws.cell("B6").value(std::numeric_limits<unsigned long long int>::max());
- ws.cell("A13").value("number (float)");
- ws.cell("B13").value(std::numeric_limits<float>::max());
- ws.cell("A14").value("number (double)");
- ws.cell("B14").value(std::numeric_limits<double>::max());
- ws.cell("A16").value("text (char *)");
- ws.cell("B16").value("string");
- ws.cell("A17").value("text (std::string)");
- ws.cell("B17").value(std::string("string"));
- ws.cell("A18").value("date");
- ws.cell("B18").value(xlnt::date(2016, 2, 3));
- ws.cell("A19").value("time");
- ws.cell("B19").value(xlnt::time(1, 2, 3, 4));
- ws.cell("A20").value("datetime");
- ws.cell("B20").value(xlnt::datetime(2016, 2, 3, 1, 2, 3, 4));
- ws.cell("A21").value("timedelta");
- ws.cell("B21").value(xlnt::timedelta(1, 2, 3, 4, 5));
- ws.freeze_panes("B2");
- std::vector<std::uint8_t> temp_buffer;
- wb.save(temp_buffer);
- xlnt_assert(!temp_buffer.empty());
- }
- void test_save_after_sheet_deletion()
- {
- xlnt::workbook workbook;
- xlnt_assert_equals(workbook.sheet_titles().size(), 1);
- auto sheet = workbook.create_sheet();
- sheet.title("XXX1");
- xlnt_assert_equals(workbook.sheet_titles().size(), 2);
- workbook.remove_sheet(workbook.sheet_by_title("XXX1"));
- xlnt_assert_equals(workbook.sheet_titles().size(), 1);
- std::vector<std::uint8_t> temp_buffer;
- xlnt_assert_throws_nothing(workbook.save(temp_buffer));
- xlnt_assert(!temp_buffer.empty());
- }
- void test_write_comments_hyperlinks_formulae()
- {
- xlnt::workbook wb;
- xlnt::sheet_format_properties format_properties;
- format_properties.base_col_width = 10.0;
- format_properties.default_row_height = 16.0;
- format_properties.dy_descent = 0.2;
- auto sheet1 = wb.active_sheet();
- sheet1.format_properties(format_properties);
- auto selection = xlnt::selection();
- selection.active_cell("C1");
- selection.sqref("C1");
- sheet1.view().add_selection(selection);
- // comments
- auto comment_font = xlnt::font()
- .bold(true)
- .size(10)
- .color(xlnt::indexed_color(81))
- .name("Calibri");
- sheet1.cell("A1").value("Sheet1!A1");
- sheet1.cell("A1").comment("Sheet1 comment", comment_font, "Microsoft Office User");
- sheet1.cell("A2").value("Sheet1!A2");
- sheet1.cell("A2").comment("Sheet1 comment2", comment_font, "Microsoft Office User");
- // hyperlinks
- auto hyperlink_font = xlnt::font()
- .size(12)
- .color(xlnt::theme_color(10))
- .name("Calibri")
- .family(2)
- .scheme("minor")
- .underline(xlnt::font::underline_style::single);
- auto hyperlink_style = wb.create_builtin_style(8);
- hyperlink_style.font(hyperlink_font);
- hyperlink_style.number_format(hyperlink_style.number_format(), false);
- hyperlink_style.fill(hyperlink_style.fill(), false);
- hyperlink_style.border(hyperlink_style.border(), false);
- auto hyperlink_format = wb.create_format();
- hyperlink_format.font(hyperlink_font);
- hyperlink_format.style(hyperlink_style);
- sheet1.cell("A4").hyperlink("https://microsoft.com/", "hyperlink1");
- sheet1.cell("A4").format(hyperlink_format);
- sheet1.cell("A5").hyperlink("https://google.com/");
- sheet1.cell("A5").format(hyperlink_format);
- sheet1.cell("A6").hyperlink(sheet1.cell("A1"));
- sheet1.cell("A6").format(hyperlink_format);
- sheet1.cell("A7").hyperlink("mailto:invalid@example.com?subject=important");
- sheet1.cell("A7").format(hyperlink_format);
- // formulae
- sheet1.cell("C1").formula("=CONCATENATE(C2,C3)");
- sheet1.cell("C2").value("a");
- sheet1.cell("C3").value("b");
- for (auto i = 1; i <= 7; ++i)
- {
- sheet1.row_properties(i).dy_descent = 0.2;
- }
- auto sheet2 = wb.create_sheet();
- sheet2.format_properties(format_properties);
- sheet2.add_view(xlnt::sheet_view());
- sheet2.view().add_selection(selection);
- // comments
- sheet2.cell("A1").value("Sheet2!A1");
- sheet2.cell("A1").comment("Sheet2 comment", comment_font, "Microsoft Office User");
- sheet2.cell("A2").value("Sheet2!A2");
- sheet2.cell("A2").comment("Sheet2 comment2", comment_font, "Microsoft Office User");
- // hyperlinks
- sheet2.cell("A4").hyperlink("https://apple.com/", "hyperlink2");
- sheet2.cell("A4").format(hyperlink_format);
- // formulae
- sheet2.cell("C1").formula("=C2*C3");
- sheet2.cell("C2").value(2);
- sheet2.cell("C3").value(3);
- for (auto i = 1; i <= 4; ++i)
- {
- sheet2.row_properties(i).dy_descent = 0.2;
- }
- wb.default_slicer_style("SlicerStyleLight1");
- wb.enable_known_fonts();
- wb.core_property(xlnt::core_property::created, "2018-03-18T20:53:30Z");
- wb.core_property(xlnt::core_property::modified, "2018-03-18T20:59:53Z");
- const auto path = path_helper::test_file("10_comments_hyperlinks_formulae.xlsx");
- xlnt_assert(workbook_matches_file(wb, path));
- }
- void test_save_after_clear_formula()
- {
- xlnt::workbook wb;
- const auto path = path_helper::test_file("18_formulae.xlsx");
- wb.load(path);
- auto ws1 = wb.sheet_by_index(0);
- for (auto row : ws1)
- {
- for (auto cell : row)
- {
- cell.clear_formula();
- }
- }
- wb.save("clear_formulae.xlsx");
- }
- void test_load_non_xlsx()
- {
- xlnt::workbook wb;
- const auto path = path_helper::test_file("1_powerpoint_presentation.xlsx");
- xlnt_assert_throws(wb.load(path), xlnt::invalid_file);
- }
- void test_decrypt_agile()
- {
- xlnt::workbook wb;
- const auto path = path_helper::test_file("5_encrypted_agile.xlsx");
- xlnt_assert_throws(wb.load(path, "incorrect"), xlnt::exception);
- xlnt_assert_throws_nothing(wb.load(path, "secret"));
- }
- void test_decrypt_libre_office()
- {
- xlnt::workbook wb;
- const auto path = path_helper::test_file("6_encrypted_libre.xlsx");
- xlnt_assert_throws(wb.load(path, "incorrect"), xlnt::exception);
- xlnt_assert_throws_nothing(wb.load(path, u8"\u043F\u0430\u0440\u043E\u043B\u044C")); // u8"пароль"
- }
- void test_decrypt_standard()
- {
- xlnt::workbook wb;
- const auto path = path_helper::test_file("7_encrypted_standard.xlsx");
- xlnt_assert_throws(wb.load(path, "incorrect"), xlnt::exception);
- xlnt_assert_throws_nothing(wb.load(path, "password"));
- }
- void test_decrypt_numbers()
- {
- xlnt::workbook wb;
- const auto path = path_helper::test_file("8_encrypted_numbers.xlsx");
- xlnt_assert_throws(wb.load(path, "incorrect"), xlnt::exception);
- xlnt_assert_throws_nothing(wb.load(path, "secret"));
- }
- void test_read_unicode_filename()
- {
- #ifdef _MSC_VER
- xlnt::workbook wb;
- // L"/9_unicode_Λ_😇.xlsx" doesn't use wchar_t(0x039B) for the capital lambda...
- // L"/9_unicode_\u039B_\U0001F607.xlsx" gives the correct output
- const auto path = LSTRING_LITERAL(XLNT_TEST_DATA_DIR) L"/9_unicode_\u039B_\U0001F607.xlsx"; // L"/9_unicode_Λ_😇.xlsx"
- wb.load(path);
- xlnt_assert_equals(wb.active_sheet().cell("A1").value<std::string>(), u8"un\u00EFc\u00F4d\u0117!"); // u8"unïcôdė!"
- #endif
- #ifndef __MINGW32__
- xlnt::workbook wb2;
- // u8"/9_unicode_Λ_😇.xlsx" doesn't use 0xC3AA for the capital lambda...
- // u8"/9_unicode_\u039B_\U0001F607.xlsx" gives the correct output
- const auto path2 = U8STRING_LITERAL(XLNT_TEST_DATA_DIR) u8"/9_unicode_\u039B_\U0001F607.xlsx"; // u8"/9_unicode_Λ_😇.xlsx"
- wb2.load(path2);
- xlnt_assert_equals(wb2.active_sheet().cell("A1").value<std::string>(), u8"un\u00EFc\u00F4d\u0117!"); // u8"unïcôdė!"
- #endif
- }
- void test_comments()
- {
- xlnt::workbook wb;
- const auto path = path_helper::test_file("10_comments_hyperlinks_formulae.xlsx");
- wb.load(path);
- auto sheet1 = wb[0];
- xlnt_assert_equals(sheet1.cell("A1").value<std::string>(), "Sheet1!A1");
- xlnt_assert_equals(sheet1.cell("A1").comment().plain_text(), "Sheet1 comment");
- xlnt_assert_equals(sheet1.cell("A1").comment().author(), "Microsoft Office User");
- auto sheet2 = wb[1];
- xlnt_assert_equals(sheet2.cell("A1").value<std::string>(), "Sheet2!A1");
- xlnt_assert_equals(sheet2.cell("A1").comment().plain_text(), "Sheet2 comment");
- xlnt_assert_equals(sheet2.cell("A1").comment().author(), "Microsoft Office User");
- }
- void test_read_hyperlink()
- {
- xlnt::workbook wb;
- const auto path = path_helper::test_file("10_comments_hyperlinks_formulae.xlsx");
- wb.load(path);
- auto ws1 = wb.sheet_by_index(0);
- xlnt_assert_equals(ws1.title(), "Sheet1");
- xlnt_assert(ws1.cell("A4").has_hyperlink());
- xlnt_assert_equals(ws1.cell("A4").value<std::string>(), "hyperlink1");
- xlnt_assert_equals(ws1.cell("A4").hyperlink().url(), "https://microsoft.com/");
- xlnt_assert(ws1.cell("A5").has_hyperlink());
- xlnt_assert_equals(ws1.cell("A5").value<std::string>(), "https://google.com/");
- xlnt_assert_equals(ws1.cell("A5").hyperlink().url(), "https://google.com/");
- xlnt_assert(ws1.cell("A6").has_hyperlink());
- xlnt_assert_equals(ws1.cell("A6").value<std::string>(), "Sheet1!A1");
- xlnt_assert_equals(ws1.cell("A6").hyperlink().target_range(), "Sheet1!A1");
- xlnt_assert(ws1.cell("A7").has_hyperlink());
- xlnt_assert_equals(ws1.cell("A7").value<std::string>(), "mailto:invalid@example.com?subject=important");
- xlnt_assert_equals(ws1.cell("A7").hyperlink().url(), "mailto:invalid@example.com?subject=important");
- }
- void test_read_formulae()
- {
- xlnt::workbook wb;
- const auto path = path_helper::test_file("18_formulae.xlsx");
- wb.load(path);
- auto ws1 = wb.sheet_by_index(0);
-
- // test has_formula
- // A1:B3 are plain text cells
- // C1:G3,I2,F4 have formulae
- for (auto row = 1; row < 4; row++)
- {
- for (auto column = 1; column < 8; column++)
- {
- if (column < 3)
- {
- xlnt_assert(!ws1.cell(column, row).has_formula());
- }
- else
- {
- xlnt_assert(ws1.cell(column, row).has_formula());
- }
- }
- }
- xlnt_assert(ws1.cell("I2").has_formula());
- xlnt_assert(ws1.cell("F4").has_formula());
- xlnt_assert(!ws1.cell("C9").has_formula()); // empty cell
- xlnt_assert(!ws1.cell("F5").has_formula()); // text cell
-
- xlnt_assert_equals(ws1.cell("C1").formula(), "B1^2"); // basic math with reference
- xlnt_assert_equals(ws1.cell("D1").formula(), "CONCATENATE(A1,B1)"); // concat with ref
- xlnt_assert_equals(ws1.cell("E1").formula(), "CONCATENATE($C$1,$D$1)"); // concat with absolute ref
- xlnt_assert_equals(ws1.cell("F1").formula(), "1+1"); // basic math
- xlnt_assert_equals(ws1.cell("G1").formula(), "PI()"); // constant
- xlnt_assert_equals(ws1.cell("I2").formula(), "COS(C2)+IMAGINARY(SIN(B2))"); // fancy math
- }
- void test_read_headers_and_footers()
- {
- xlnt::workbook wb;
- wb.load(path_helper::test_file("11_print_settings.xlsx"));
- auto ws = wb.active_sheet();
- xlnt_assert_equals(ws.cell("A1").value<std::string>(), "header");
- xlnt_assert_equals(ws.cell("A2").value<std::string>(), "and");
- xlnt_assert_equals(ws.cell("A3").value<std::string>(), "footer");
- xlnt_assert_equals(ws.cell("A4").value<std::string>(), "page1");
- xlnt_assert_equals(ws.cell("A43").value<std::string>(), "page2");
- xlnt_assert(ws.has_header_footer());
- xlnt_assert(ws.header_footer().align_with_margins());
- xlnt_assert(ws.header_footer().scale_with_doc());
- xlnt_assert(!ws.header_footer().different_first());
- xlnt_assert(!ws.header_footer().different_odd_even());
- xlnt_assert(ws.header_footer().has_header(xlnt::header_footer::location::left));
- xlnt_assert_equals(ws.header_footer().header(xlnt::header_footer::location::left).plain_text(), "left header");
- xlnt_assert(ws.header_footer().has_header(xlnt::header_footer::location::center));
- xlnt_assert_equals(ws.header_footer().header(xlnt::header_footer::location::center).plain_text(), "center header");
- xlnt_assert(ws.header_footer().has_header(xlnt::header_footer::location::right));
- xlnt_assert_equals(ws.header_footer().header(xlnt::header_footer::location::right).plain_text(), "right header");
- xlnt_assert(ws.header_footer().has_footer(xlnt::header_footer::location::left));
- xlnt_assert_equals(ws.header_footer().footer(xlnt::header_footer::location::left).plain_text(), "left && footer");
- xlnt_assert(ws.header_footer().has_footer(xlnt::header_footer::location::center));
- xlnt_assert_equals(ws.header_footer().footer(xlnt::header_footer::location::center).plain_text(), "center footer");
- xlnt_assert(ws.header_footer().has_footer(xlnt::header_footer::location::right));
- xlnt_assert_equals(ws.header_footer().footer(xlnt::header_footer::location::right).plain_text(), "right footer");
- }
- void test_read_custom_properties()
- {
- xlnt::workbook wb;
- wb.load(path_helper::test_file("12_advanced_properties.xlsx"));
- xlnt_assert(wb.has_custom_property("Client"));
- xlnt_assert_equals(wb.custom_property("Client").get<std::string>(), "me!");
- }
- void test_read_custom_heights_widths()
- {
- xlnt::workbook wb;
- wb.load(path_helper::test_file("13_custom_heights_widths.xlsx"));
- auto ws = wb.active_sheet();
- xlnt_assert_equals(ws.cell("A1").value<std::string>(), "A1");
- xlnt_assert_equals(ws.cell("B1").value<std::string>(), "B1");
- xlnt_assert_equals(ws.cell("D1").value<std::string>(), "D1");
- xlnt_assert_equals(ws.cell("A2").value<std::string>(), "A2");
- xlnt_assert_equals(ws.cell("B2").value<std::string>(), "B2");
- xlnt_assert_equals(ws.cell("D2").value<std::string>(), "D2");
- xlnt_assert_equals(ws.cell("A4").value<std::string>(), "A4");
- xlnt_assert_equals(ws.cell("B4").value<std::string>(), "B4");
- xlnt_assert_equals(ws.cell("D4").value<std::string>(), "D4");
- xlnt_assert_equals(ws.row_properties(1).height.get(), 99.95);
- xlnt_assert(!ws.row_properties(2).height.is_set());
- xlnt_assert_equals(ws.row_properties(3).height.get(), 99.95);
- xlnt_assert(!ws.row_properties(4).height.is_set());
- xlnt_assert_equals(ws.row_properties(5).height.get(), 99.95);
- auto width = ((16.0 * 7) - 5) / 7;
- xlnt_assert_delta(ws.column_properties("A").width.get(), width, 1.0E-9);
- xlnt_assert(!ws.column_properties("B").width.is_set());
- xlnt_assert_delta(ws.column_properties("C").width.get(), width, 1.0E-9);
- xlnt_assert(!ws.column_properties("D").width.is_set());
- xlnt_assert_delta(ws.column_properties("E").width.get(), width, 1.0E-9);
- }
- void test_write_custom_heights_widths()
- {
- xlnt::workbook wb;
- wb.core_property(xlnt::core_property::creator, "Microsoft Office User");
- wb.core_property(xlnt::core_property::last_modified_by, "Microsoft Office User");
- wb.core_property(xlnt::core_property::created, "2017-10-30T23:03:54Z");
- wb.core_property(xlnt::core_property::modified, "2017-10-30T23:08:31Z");
- wb.default_slicer_style("SlicerStyleLight1");
- wb.enable_known_fonts();
- auto ws = wb.active_sheet();
- auto sheet_format_properties = xlnt::sheet_format_properties();
- sheet_format_properties.base_col_width = 10.0;
- sheet_format_properties.default_row_height = 16.0;
- sheet_format_properties.dy_descent = 0.2;
- ws.format_properties(sheet_format_properties);
- ws.cell("A1").value("A1");
- ws.cell("B1").value("B1");
- ws.cell("D1").value("D1");
- ws.cell("A2").value("A2");
- ws.cell("A4").value("A4");
- ws.cell("B2").value("B2");
- ws.cell("B4").value("B4");
- ws.cell("D2").value("D2");
- ws.cell("D4").value("D4");
- for (auto i = 1; i <= 5; ++i)
- {
- ws.row_properties(i).dy_descent = 0.2;
- }
- ws.row_properties(1).height = 99.95;
- ws.row_properties(1).custom_height = true;
- ws.row_properties(3).height = 99.95;
- ws.row_properties(3).custom_height = true;
- ws.row_properties(5).height = 99.95;
- ws.row_properties(5).custom_height = true;
- auto width = ((16.0 * 7) - 5) / 7;
- ws.column_properties("A").width = width;
- ws.column_properties("A").custom_width = true;
- ws.column_properties("C").width = width;
- ws.column_properties("C").custom_width = true;
- ws.column_properties("E").width = width;
- ws.column_properties("E").custom_width = true;
- xlnt_assert(workbook_matches_file(wb,
- path_helper::test_file("13_custom_heights_widths.xlsx")));
- }
- /// <summary>
- /// Read file as an XLSX-formatted ZIP file in the filesystem to a workbook,
- /// write the workbook back to memory, then ensure that the contents of the two files are equivalent.
- /// </summary>
- bool round_trip_matches_rw(const xlnt::path &source)
- {
- xlnt::workbook source_workbook;
- source_workbook.load(source);
- std::vector<std::uint8_t> destination;
- source_workbook.save(destination);
- source_workbook.save("temp" + source.filename());
- #ifdef _MSC_VER
- std::ifstream source_stream(source.wstring(), std::ios::binary);
- #else
- std::ifstream source_stream(source.string(), std::ios::binary);
- #endif
- return xml_helper::xlsx_archives_match(xlnt::detail::to_vector(source_stream), destination);
- }
- bool round_trip_matches_rw(const xlnt::path &source, const std::string &password)
- {
- #ifdef _MSC_VER
- std::ifstream source_stream(source.wstring(), std::ios::binary);
- #else
- std::ifstream source_stream(source.string(), std::ios::binary);
- #endif
- auto source_data = xlnt::detail::to_vector(source_stream);
- xlnt::workbook source_workbook;
- source_workbook.load(source_data, password);
- std::vector<std::uint8_t> destination_data;
- //source_workbook.save(destination_data, password);
- source_workbook.save("encrypted.xlsx", password);
- //xlnt::workbook temp;
- //temp.load("encrypted.xlsx", password);
- //TODO: finish implementing encryption and uncomment this
- //return source_data == destination_data;
- return true;
- }
- void test_round_trip_rw_minimal()
- {
- xlnt_assert(round_trip_matches_rw(path_helper::test_file("2_minimal.xlsx")));
- }
- void test_round_trip_rw_default()
- {
- xlnt_assert(round_trip_matches_rw(path_helper::test_file("3_default.xlsx")));
- }
- void test_round_trip_rw_every_style()
- {
- xlnt_assert(round_trip_matches_rw(path_helper::test_file("4_every_style.xlsx")));
- }
- void test_round_trip_rw_unicode()
- {
- // u8"/9_unicode_Λ_😇.xlsx" doesn't use 0xC3AA for the capital lambda...
- // u8"/9_unicode_\u039B_\U0001F607.xlsx" gives the correct output
- xlnt_assert(round_trip_matches_rw(path_helper::test_file(u8"9_unicode_\u039B_\U0001F607.xlsx")));
- }
- void test_round_trip_rw_comments_hyperlinks_formulae()
- {
- xlnt_assert(round_trip_matches_rw(path_helper::test_file("10_comments_hyperlinks_formulae.xlsx")));
- }
- void test_round_trip_rw_print_settings()
- {
- xlnt_assert(round_trip_matches_rw(path_helper::test_file("11_print_settings.xlsx")));
- }
- void test_round_trip_rw_advanced_properties()
- {
- xlnt_assert(round_trip_matches_rw(path_helper::test_file("12_advanced_properties.xlsx")));
- }
- void test_round_trip_rw_custom_heights_widths()
- {
- xlnt_assert(round_trip_matches_rw(path_helper::test_file("13_custom_heights_widths.xlsx")));
- }
-
- void test_round_trip_rw_encrypted_agile()
- {
- xlnt_assert(round_trip_matches_rw(path_helper::test_file("5_encrypted_agile.xlsx"), "secret"));
- }
- void test_round_trip_rw_encrypted_libre()
- {
- xlnt_assert(round_trip_matches_rw(path_helper::test_file("6_encrypted_libre.xlsx"), u8"\u043F\u0430\u0440\u043E\u043B\u044C")); // u8"пароль"
- }
- void test_round_trip_rw_encrypted_standard()
- {
- xlnt_assert(round_trip_matches_rw(path_helper::test_file("7_encrypted_standard.xlsx"), "password"));
- }
- void test_round_trip_rw_encrypted_numbers()
- {
- xlnt_assert(round_trip_matches_rw(path_helper::test_file("8_encrypted_numbers.xlsx"), "secret"));
- }
- void test_streaming_read()
- {
- const auto path = path_helper::test_file("4_every_style.xlsx");
- xlnt::streaming_workbook_reader reader;
- reader.open(xlnt::path(path));
- for (auto sheet_name : reader.sheet_titles())
- {
- reader.begin_worksheet(sheet_name);
- while (reader.has_cell())
- {
- reader.read_cell();
- }
- reader.end_worksheet();
- }
- }
- void test_streaming_write()
- {
- const auto path = std::string("stream-out.xlsx");
- xlnt::streaming_workbook_writer writer;
- writer.open(path);
- writer.add_worksheet("stream");
- auto b2 = writer.add_cell("B2");
- b2.value("B2!");
- auto c3 = writer.add_cell("C3");
- b2.value("should not change");
- c3.value("C3!");
- }
- void test_load_save_german_locale()
- {
- /* std::locale current(std::locale::global(std::locale("de-DE")));
- test_round_trip_rw_custom_heights_widths();
- std::locale::global(current);*/
- }
- void test_Issue445_inline_str_load()
- {
- xlnt::workbook wb;
- wb.load(path_helper::test_file("Issue445_inline_str.xlsx"));
- auto ws = wb.active_sheet();
- auto cell = ws.cell("A1");
- xlnt_assert_equals(cell.value<std::string>(), std::string("a"));
- }
- void test_Issue445_inline_str_streaming_read()
- {
- xlnt::streaming_workbook_reader wbr;
- wbr.open(path_helper::test_file("Issue445_inline_str.xlsx"));
- wbr.begin_worksheet("Sheet");
- xlnt_assert(wbr.has_cell());
- auto cell = wbr.read_cell();
- xlnt_assert_equals(cell.value<std::string>(), std::string("a"));
- }
- void test_Issue492_stream_empty_row()
- {
- xlnt::streaming_workbook_reader wbr;
- wbr.open(path_helper::test_file("Issue492_empty_row.xlsx"));
- wbr.begin_worksheet("BLS Data Series");
- xlnt_assert(wbr.has_cell());
- xlnt_assert_equals(wbr.read_cell().reference(), "A1");
- xlnt_assert(wbr.has_cell());
- xlnt_assert_equals(wbr.read_cell().reference(), "A2");
- xlnt_assert(wbr.has_cell());
- xlnt_assert_equals(wbr.read_cell().reference(), "A4");
- xlnt_assert(wbr.has_cell());
- xlnt_assert_equals(wbr.read_cell().reference(), "B4");
- xlnt_assert(!wbr.has_cell());
- }
- void test_Issue503_external_link_load()
- {
- xlnt::workbook wb;
- wb.load(path_helper::test_file("Issue503_external_link.xlsx"));
- auto ws = wb.active_sheet();
- auto cell = ws.cell("A1");
- xlnt_assert_equals(cell.value<std::string>(), std::string("WDG_IC_00000003.aut"));
- }
-
- void test_formatting()
- {
- xlnt::workbook wb;
- wb.load(path_helper::test_file("excel_test_sheet.xlsx"));
- auto ws = wb.active_sheet();
- auto cell = ws.cell("A1");
-
- xlnt_assert_equals(cell.value<std::string>(), std::string("Bolder Text mixed with normal \ntext first line Bold And Underline"));
-
- auto rt = cell.value<xlnt::rich_text>();
- xlnt_assert_equals(rt.runs().size(), 12);
-
- auto assert_run = [](xlnt::rich_text_run run, std::string text, std::string typeface, xlnt::color color, std::size_t size, bool bold, bool strike, xlnt::font::underline_style underline)
- {
- xlnt_assert_equals(run.first, text);
- xlnt_assert(run.second.is_set());
- auto font = run.second.get();
- xlnt_assert_equals(font.name(), typeface);
- xlnt_assert_equals(font.size(), size);
- xlnt_assert_equals(font.bold(), bold);
- xlnt_assert_equals(font.color(), color);
- xlnt_assert_equals(font.strikethrough(), strike);
- xlnt_assert_equals(font.underline(), underline);
- };
-
- assert_run(rt.runs()[0], "Bolder", "Calibri (Body)", xlnt::theme_color(1), 12, true, false, xlnt::font::underline_style::none);
- assert_run(rt.runs()[1], " Text ", "Calibri", xlnt::theme_color(1), 12, true, false, xlnt::font::underline_style::none);
- assert_run(rt.runs()[2], "mixed ", "Calibri", xlnt::color::red(), 12, false, false, xlnt::font::underline_style::none);
- assert_run(rt.runs()[3], "wit", "Calibri (Body)", xlnt::color::red(), 12, false, false, xlnt::font::underline_style::single);
- assert_run(rt.runs()[4], "h", "Calibri", xlnt::color::red(), 12, false, false, xlnt::font::underline_style::single);
- assert_run(rt.runs()[5], " ", "Calibri", xlnt::color::red(), 12, false, false, xlnt::font::underline_style::none);
- assert_run(rt.runs()[6], "normal", "Calibri (Body)", xlnt::color::red(), 12, false, false, xlnt::font::underline_style::none);
- assert_run(rt.runs()[7], " ", "Calibri", xlnt::color::red(), 12, false, false, xlnt::font::underline_style::none);
- assert_run(rt.runs()[8], "\n", "Calibri", xlnt::theme_color(1), 12, false, false, xlnt::font::underline_style::none);
- assert_run(rt.runs()[9], "text", "Helvetica Neue", xlnt::theme_color(1), 12, false, true, xlnt::font::underline_style::none);
- assert_run(rt.runs()[10], " first line ", "Calibri", xlnt::theme_color(1), 12, true, false, xlnt::font::underline_style::none);
- assert_run(rt.runs()[11], "Bold And Underline", "Calibri (Body)", xlnt::theme_color(1), 12, true, false, xlnt::font::underline_style::single);
- }
- void test_active_sheet()
- {
- xlnt::workbook wb;
- wb.load(path_helper::test_file("20_active_sheet.xlsx"));
- xlnt_assert_equals(wb.active_sheet(), wb[2]);
- }
- };
- static serialization_test_suite x;
|