#pragma once #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include class test_cell : public CxxTest::TestSuite { private: xlnt::workbook wb, wb_guess_types; public: test_cell() { wb_guess_types.set_guess_types(true); } void test_infer_numeric() { auto ws = wb_guess_types.create_sheet(); auto cell = ws.get_cell("A1"); cell.set_value("4.2"); TS_ASSERT(cell.get_value() == 4.2L); cell.set_value("-42.000"); TS_ASSERT(cell.get_value() == -42); cell.set_value("0"); TS_ASSERT(cell.get_value() == 0); cell.set_value("0.9999"); TS_ASSERT(cell.get_value() == 0.9999L); cell.set_value("99E-02"); TS_ASSERT(cell.get_value() == 0.99L); cell.set_value("4"); TS_ASSERT(cell.get_value() == 4); cell.set_value("-1E3"); TS_ASSERT(cell.get_value() == -1000); cell.set_value("2e+2"); TS_ASSERT(cell.get_value() == 200); cell.set_value("3.1%"); TS_ASSERT(cell.get_value() == 0.031L); cell.set_value("03:40:16"); TS_ASSERT(cell.get_value() == xlnt::time(3, 40, 16)); cell.set_value("03:40"); TS_ASSERT(cell.get_value() == xlnt::time(3, 40)); cell.set_value("30:33.865633336"); TS_ASSERT(cell.get_value() == xlnt::time(0, 30, 33, 865633)); } void test_ctor() { auto ws = wb.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference("A", 1)); TS_ASSERT(cell.get_data_type() == xlnt::cell::type::null); TS_ASSERT(cell.get_column() == "A"); TS_ASSERT(cell.get_row() == 1); TS_ASSERT(cell.get_reference() == "A1"); TS_ASSERT(!cell.has_value()); TS_ASSERT(!cell.has_comment()); } void test_null() { const auto datatypes = { xlnt::cell::type::null, xlnt::cell::type::boolean, xlnt::cell::type::error, xlnt::cell::type::formula, xlnt::cell::type::numeric, xlnt::cell::type::string }; for(const auto &datatype : datatypes) { auto ws = wb.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); cell.set_data_type(datatype); TS_ASSERT(cell.get_data_type() == datatype); cell.clear_value(); TS_ASSERT(cell.get_data_type() == xlnt::cell::type::null); } } void test_string() { auto ws = wb.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); cell.set_value("hello"); TS_ASSERT(cell.get_data_type() == xlnt::cell::type::string); cell.set_value("."); TS_ASSERT(cell.get_data_type() == xlnt::cell::type::string); cell.set_value("0800"); TS_ASSERT(cell.get_data_type() == xlnt::cell::type::string); } void test_formula1() { auto ws = wb_guess_types.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); cell.set_value("=42"); TS_ASSERT(cell.get_data_type() == xlnt::cell::type::formula); } void test_formula2() { auto ws = wb_guess_types.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); cell.set_value("=if(A1<4;-1;1)"); TS_ASSERT(cell.get_data_type() == xlnt::cell::type::formula); } void test_not_formula() { auto ws = wb.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); cell.set_value("="); TS_ASSERT(cell.get_data_type() == xlnt::cell::type::string); TS_ASSERT(cell.get_value() == "="); TS_ASSERT(!cell.has_formula()); } void test_boolean() { auto ws = wb.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); for(auto value : {true, false}) { cell.set_value(value); TS_ASSERT(cell.get_data_type() == xlnt::cell::type::boolean); } } void test_error_codes() { auto ws = wb_guess_types.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); for(auto error_code : xlnt::cell::error_codes()) { cell.set_value(error_code.first); TS_ASSERT(cell.get_data_type() == xlnt::cell::type::error); } } void test_insert_datetime() { auto ws = wb.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); cell.set_value(xlnt::datetime(2010, 7, 13, 6, 37, 41)); TS_ASSERT(cell.get_data_type() == xlnt::cell::type::numeric); TS_ASSERT(cell.get_value() == 40372.27616898148L); TS_ASSERT(cell.is_date()); TS_ASSERT(cell.get_number_format().get_format_string() == "yyyy-mm-dd h:mm:ss"); } void test_insert_date() { auto ws = wb.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); cell.set_value(xlnt::date(2010, 7, 13)); TS_ASSERT(cell.get_data_type() == xlnt::cell::type::numeric); TS_ASSERT(cell.get_value() == 40372.L); TS_ASSERT(cell.is_date()); TS_ASSERT(cell.get_number_format().get_format_string() == "yyyy-mm-dd"); } void test_insert_time() { auto ws = wb.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); cell.set_value(xlnt::time(1, 3)); TS_ASSERT(cell.get_data_type() == xlnt::cell::type::numeric); TS_ASSERT(cell.get_value() == 0.04375L); TS_ASSERT(cell.is_date()); TS_ASSERT(cell.get_number_format().get_format_string() == "h:mm:ss"); } void test_cell_formatted_as_date1() { auto ws = wb.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); cell.set_value(xlnt::datetime::today()); cell.clear_value(); TS_ASSERT(!cell.is_date()); // disagree with openpyxl TS_ASSERT(!cell.has_value()); } void test_cell_formatted_as_date2() { auto ws = wb.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); cell.set_value(xlnt::datetime::today()); cell.set_value("testme"); TS_ASSERT(!cell.is_date()); TS_ASSERT(cell.get_value() == "testme"); } void test_cell_formatted_as_date3() { auto ws = wb.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); cell.set_value(xlnt::datetime::today()); cell.set_value(true); TS_ASSERT(!cell.is_date()); TS_ASSERT(cell.get_value() == true); } void test_illegal_characters() { auto ws = wb.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); // The bytes 0x00 through 0x1F inclusive must be manually escaped in values. auto illegal_chrs = {0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31}; for(auto i : illegal_chrs) { std::string str(1, i); TS_ASSERT_THROWS(cell.set_value(str), xlnt::illegal_character_error); } cell.set_value(std::string(1, 33)); cell.set_value(std::string(1, 9)); // Tab cell.set_value(std::string(1, 10)); // Newline cell.set_value(std::string(1, 13)); // Carriage return cell.set_value(" Leading and trailing spaces are legal "); } // void test_time_regex() {} void test_timedelta() { auto ws = wb.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); cell.set_value(xlnt::timedelta(1, 3, 0, 0, 0)); TS_ASSERT(cell.get_value() == 1.125); TS_ASSERT(cell.get_data_type() == xlnt::cell::type::numeric); TS_ASSERT(!cell.is_date()); TS_ASSERT(cell.get_number_format().get_format_string() == "[hh]:mm:ss"); } void test_repr() { auto ws = wb[1]; auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); TS_ASSERT(cell.to_repr() == ""); } void test_comment_assignment() { auto ws = wb.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); TS_ASSERT(!cell.has_comment()); xlnt::comment comm(cell, "text", "author"); TS_ASSERT(cell.get_comment() == comm); } void test_only_one_cell_per_comment() { auto ws = wb.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); xlnt::comment comm(cell, "text", "author"); auto c2 = ws.get_cell(xlnt::cell_reference(1, 2)); TS_ASSERT_THROWS(c2.set_comment(comm), xlnt::attribute_error); } void test_remove_comment() { auto ws = wb.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); xlnt::comment comm(cell, "text", "author"); cell.clear_comment(); TS_ASSERT(!cell.has_comment()); } void test_cell_offset() { auto ws = wb.create_sheet(); auto cell = ws.get_cell(xlnt::cell_reference(1, 1)); TS_ASSERT(cell.offset(1, 2).get_reference() == "B3"); } std::string make_latin1_string() { unsigned char pound = 163; auto test_string = "Compound Value (" + std::string(1, pound) + ")"; return test_string; } void test_bad_encoding() { auto ws = wb.create_sheet(); auto cell = ws[xlnt::cell_reference("A1")]; TS_ASSERT_THROWS(cell.check_string(make_latin1_string()), xlnt::unicode_decode_error); TS_ASSERT_THROWS(cell.set_value(make_latin1_string()), xlnt::unicode_decode_error); } void test_good_encoding() { xlnt::workbook latin1_wb(xlnt::encoding::latin1); auto ws = latin1_wb.get_active_sheet(); auto cell = ws[xlnt::cell_reference("A1")]; cell.check_string(make_latin1_string()); cell.set_value(make_latin1_string()); } void test_font() { auto ws = wb.create_sheet(); auto cell = ws.get_cell("A1"); xlnt::font font; font.set_bold(true); cell.set_font(font); TS_ASSERT(cell.has_format()); TS_ASSERT(cell.get_format().font_applied()); TS_ASSERT_EQUALS(cell.get_font(), font); } void test_fill() { auto ws = wb.create_sheet(); auto cell = ws.get_cell("A1"); xlnt::fill f; f.set_pattern_type(xlnt::fill::pattern_type::solid); f.set_foreground_color(xlnt::color(xlnt::color::type::rgb, "FF0000")); cell.set_fill(f); TS_ASSERT(cell.has_format()); TS_ASSERT(cell.get_format().fill_applied()); TS_ASSERT_EQUALS(cell.get_fill(), f); } void test_border() { auto ws = wb.create_sheet(); auto cell = ws.get_cell("A1"); xlnt::border border; cell.set_border(border); TS_ASSERT(cell.has_format()); TS_ASSERT(cell.get_format().border_applied()); TS_ASSERT_EQUALS(cell.get_border(), border); } void test_number_format() { auto ws = wb.create_sheet(); auto cell = ws.get_cell("A1"); xlnt::number_format format("dd--hh--mm"); cell.set_number_format(format); TS_ASSERT(cell.has_format()); TS_ASSERT(cell.get_format().number_format_applied()); TS_ASSERT_EQUALS(cell.get_number_format().get_format_string(), "dd--hh--mm"); } void test_alignment() { auto ws = wb.create_sheet(); auto cell = ws.get_cell("A1"); xlnt::alignment align; align.set_wrap_text(true); cell.set_alignment(align); TS_ASSERT(cell.has_format()); TS_ASSERT(cell.get_format().alignment_applied()); TS_ASSERT_EQUALS(cell.get_alignment(), align); } void test_protection() { auto ws = wb.create_sheet(); auto cell = ws.get_cell("A1"); xlnt::protection prot; prot.set_locked(xlnt::protection::type::protected_); cell.set_protection(prot); TS_ASSERT(cell.has_format()); TS_ASSERT(cell.get_format().protection_applied()); TS_ASSERT_EQUALS(cell.get_protection(), prot); } };