xlnt/tests/test_read.hpp

349 lines
12 KiB
C++
Raw Normal View History

2014-05-09 03:32:12 +08:00
#pragma once
2014-05-19 09:29:19 +08:00
#include <fstream>
2014-05-09 03:32:12 +08:00
#include <iostream>
#include <cxxtest/TestSuite.h>
2014-06-06 04:19:31 +08:00
#include <xlnt/xlnt.hpp>
#include "helpers/path_helper.hpp"
2014-05-09 03:32:12 +08:00
2014-06-06 04:19:31 +08:00
class test_read : public CxxTest::TestSuite
2014-05-09 03:32:12 +08:00
{
public:
void test_read_standalone_worksheet()
{
2014-07-20 04:59:05 +08:00
auto path = PathHelper::GetDataDirectory("/reader/sheet2.xml");
2014-05-19 09:29:19 +08:00
xlnt::workbook wb;
xlnt::worksheet ws(wb);
{
std::ifstream handle(path);
2014-06-07 23:49:19 +08:00
ws = xlnt::reader::read_worksheet(handle, wb, "Sheet 2", {"hello"});
2014-05-19 09:29:19 +08:00
}
TS_ASSERT_DIFFERS(ws, nullptr);
if(!(ws == nullptr))
{
2014-05-21 22:20:30 +08:00
TS_ASSERT_EQUALS(ws.get_cell("G5"), "hello");
TS_ASSERT_EQUALS(ws.get_cell("D30"), 30);
TS_ASSERT_EQUALS(ws.get_cell("K9"), 0.09);
2014-05-19 09:29:19 +08:00
}
2014-05-09 03:32:12 +08:00
}
2014-07-19 03:18:23 +08:00
xlnt::workbook standard_workbook()
{
2014-07-20 04:59:05 +08:00
auto path = PathHelper::GetDataDirectory("/genuine/empty.xlsx");
return xlnt::reader::load_workbook(path);
2014-07-19 03:18:23 +08:00
}
2014-05-09 03:32:12 +08:00
void test_read_standard_workbook()
{
2014-07-19 03:18:23 +08:00
TS_ASSERT_DIFFERS(standard_workbook(), nullptr);
2014-05-09 03:32:12 +08:00
}
void test_read_standard_workbook_from_fileobj()
{
2014-07-20 04:59:05 +08:00
auto path = PathHelper::GetDataDirectory("/genuine/empty.xlsx");
std::ifstream fo(path, std::ios::binary);
2014-07-20 04:59:05 +08:00
auto wb = xlnt::reader::load_workbook(path);
2014-07-19 03:18:23 +08:00
TS_ASSERT_DIFFERS(standard_workbook(), nullptr);
2014-05-09 03:32:12 +08:00
}
void test_read_worksheet()
{
2014-07-20 04:59:05 +08:00
auto wb = standard_workbook();
2014-05-19 09:29:19 +08:00
auto sheet2 = wb.get_sheet_by_name("Sheet2 - Numbers");
TS_ASSERT_DIFFERS(sheet2, nullptr);
2014-05-21 22:20:30 +08:00
TS_ASSERT_EQUALS("This is cell G5", sheet2.get_cell("G5"));
TS_ASSERT_EQUALS(18, sheet2.get_cell("D18"));
2014-07-19 03:18:23 +08:00
TS_ASSERT_EQUALS(true, sheet2.get_cell("G9"));
TS_ASSERT_EQUALS(false, sheet2.get_cell("G10"));
2014-05-09 03:32:12 +08:00
}
void test_read_nostring_workbook()
{
2014-07-19 03:18:23 +08:00
auto path = PathHelper::GetDataDirectory("/genuine/empty-no-string.xlsx");
2014-07-20 04:59:05 +08:00
auto wb = xlnt::reader::load_workbook(path);
2014-07-19 03:18:23 +08:00
TS_ASSERT_DIFFERS(standard_workbook(), nullptr);
2014-05-09 03:32:12 +08:00
}
void test_read_empty_file()
{
2014-07-20 04:59:05 +08:00
auto path = PathHelper::GetDataDirectory("/reader/null_file.xlsx");
TS_ASSERT_THROWS(xlnt::reader::load_workbook(path), xlnt::invalid_file_exception);
2014-05-09 03:32:12 +08:00
}
void test_read_empty_archive()
{
2014-07-19 03:18:23 +08:00
auto path = PathHelper::GetDataDirectory("/reader/null_archive.xlsx");
2014-07-20 04:59:05 +08:00
TS_ASSERT_THROWS(xlnt::reader::load_workbook(path), xlnt::invalid_file_exception);
2014-05-09 03:32:12 +08:00
}
2014-07-19 03:18:23 +08:00
void test_read_workbook_with_no_properties()
2014-05-09 03:32:12 +08:00
{
2014-07-20 04:59:05 +08:00
auto path = PathHelper::GetDataDirectory("/genuine/empty_with_no_properties.xlsx");
xlnt::reader::load_workbook(path);
2014-05-09 03:32:12 +08:00
}
2014-07-20 04:59:05 +08:00
xlnt::workbook workbook_with_styles()
2014-05-09 03:32:12 +08:00
{
2014-07-20 04:59:05 +08:00
auto path = PathHelper::GetDataDirectory("/genuine/empty-with-styles.xlsx");
return xlnt::reader::load_workbook(path);
2014-05-09 03:32:12 +08:00
}
2014-07-19 03:18:23 +08:00
void test_read_workbook_with_styles_general()
2014-05-09 03:32:12 +08:00
{
2014-07-19 03:18:23 +08:00
auto wb = workbook_with_styles();
auto ws = wb["Sheet1"];
2014-07-24 08:51:28 +08:00
auto code = ws.get_cell("A1").get_style().get_number_format().get_format_code();
auto expected = xlnt::number_format::format::general;
TS_ASSERT_EQUALS(code, expected);
2014-05-09 03:32:12 +08:00
}
2014-07-19 03:18:23 +08:00
void test_read_workbook_with_styles_date()
2014-05-09 03:32:12 +08:00
{
2014-07-19 03:18:23 +08:00
auto wb = workbook_with_styles();
auto ws = wb["Sheet1"];
2014-07-24 08:51:28 +08:00
auto code = ws.get_cell("A2").get_style().get_number_format().get_format_code();
auto expected = xlnt::number_format::format::date_xlsx14;
TS_ASSERT_EQUALS(code, expected);
2014-05-13 01:42:28 +08:00
}
2014-07-19 03:18:23 +08:00
void test_read_workbook_with_styles_number()
2014-05-09 03:32:12 +08:00
{
2014-07-19 03:18:23 +08:00
auto wb = workbook_with_styles();
auto ws = wb["Sheet1"];
2014-07-24 08:51:28 +08:00
auto code = ws.get_cell("A3").get_style().get_number_format().get_format_code();
auto expected = xlnt::number_format::format::number_00;
TS_ASSERT_EQUALS(code, expected);
2014-05-09 03:32:12 +08:00
}
2014-07-19 03:18:23 +08:00
void test_read_workbook_with_styles_time()
2014-05-09 03:32:12 +08:00
{
2014-07-19 03:18:23 +08:00
auto wb = workbook_with_styles();
auto ws = wb["Sheet1"];
2014-07-24 08:51:28 +08:00
auto code = ws.get_cell("A4").get_style().get_number_format().get_format_code();
auto expected = xlnt::number_format::format::date_time3;
TS_ASSERT_EQUALS(code, expected);
2014-05-09 03:32:12 +08:00
}
2014-07-19 03:18:23 +08:00
void test_read_workbook_with_styles_percentage()
2014-05-09 03:32:12 +08:00
{
2014-07-19 03:18:23 +08:00
auto wb = workbook_with_styles();
auto ws = wb["Sheet1"];
2014-07-24 08:51:28 +08:00
auto code = ws.get_cell("A5").get_style().get_number_format().get_format_code();
auto expected = xlnt::number_format::format::percentage_00;
TS_ASSERT_EQUALS(code, expected);
2014-05-09 03:32:12 +08:00
}
2014-07-19 03:18:23 +08:00
2014-07-20 04:59:05 +08:00
xlnt::workbook date_mac_1904()
2014-05-09 03:32:12 +08:00
{
2014-07-19 03:18:23 +08:00
auto path = PathHelper::GetDataDirectory("/reader/date_1904.xlsx");
2014-07-20 04:59:05 +08:00
return xlnt::reader::load_workbook(path);
2014-05-09 03:32:12 +08:00
}
2014-07-19 03:18:23 +08:00
2014-07-20 04:59:05 +08:00
xlnt::workbook date_std_1900()
2014-05-09 03:32:12 +08:00
{
2014-07-19 03:18:23 +08:00
auto path = PathHelper::GetDataDirectory("/reader/date_1900.xlsx");
2014-07-20 04:59:05 +08:00
return xlnt::reader::load_workbook(path);
2014-05-13 01:42:28 +08:00
}
2014-07-19 03:18:23 +08:00
2014-05-09 03:32:12 +08:00
void test_read_win_base_date()
{
2014-07-19 03:18:23 +08:00
auto wb = date_std_1900();
2014-07-20 04:59:05 +08:00
TS_ASSERT_EQUALS(wb.get_properties().excel_base_date, xlnt::calendar::windows_1900);
2014-05-09 03:32:12 +08:00
}
2014-07-19 03:18:23 +08:00
2014-05-09 03:32:12 +08:00
void test_read_mac_base_date()
{
2014-07-19 03:18:23 +08:00
auto wb = date_mac_1904();
2014-07-20 04:59:05 +08:00
TS_ASSERT_EQUALS(wb.get_properties().excel_base_date, xlnt::calendar::mac_1904);
2014-05-09 03:32:12 +08:00
}
2014-07-19 03:18:23 +08:00
void test_read_date_style_win()
2014-05-09 03:32:12 +08:00
{
2014-07-19 03:18:23 +08:00
auto wb = date_std_1900();
auto ws = wb["Sheet1"];
2014-07-20 04:59:05 +08:00
TS_ASSERT_EQUALS(ws.get_cell("A1").get_style().get_number_format().get_format_code(), xlnt::number_format::format::date_xlsx14);
2014-05-09 03:32:12 +08:00
}
2014-07-19 03:18:23 +08:00
void test_read_date_style_mac()
2014-05-09 03:32:12 +08:00
{
2014-07-19 03:18:23 +08:00
auto wb = date_mac_1904();
auto ws = wb["Sheet1"];
2014-07-20 04:59:05 +08:00
TS_ASSERT_EQUALS(ws.get_cell("A1").get_style().get_number_format().get_format_code(), xlnt::number_format::format::date_xlsx14);
2014-05-09 03:32:12 +08:00
}
2014-07-20 04:59:05 +08:00
void test_read_compare_mac_win_dates()
2014-07-19 03:18:23 +08:00
{
auto wb_mac = date_mac_1904();
auto ws_mac = wb_mac["Sheet1"];
2014-07-20 04:59:05 +08:00
auto wb_win = date_std_1900();
2014-07-19 03:18:23 +08:00
auto ws_win = wb_win["Sheet1"];
xlnt::datetime dt(2011, 10, 31);
TS_ASSERT_EQUALS(ws_mac.get_cell("A1"), dt);
TS_ASSERT_EQUALS(ws_win.get_cell("A1"), dt);
TS_ASSERT_EQUALS(ws_mac.get_cell("A1"), ws_win.get_cell("A1"));
}
void test_repair_central_directory()
{
2014-07-24 04:00:09 +08:00
TS_SKIP("repair not yet implemented");
2014-07-19 03:18:23 +08:00
/*
std::string data_a = "foobarbaz" + xlnt::CentralDirectorySignature;
std::string data_b = "bazbarfoo12345678901234567890";
auto f = xlnt::repair_central_directory(data_a + data_b, true);
TS_ASSERT_EQUALS(f, data_a + data_b.substr(0, 18));
f = xlnt::repair_central_directory(data_b, true);
TS_ASSERT_EQUALS(f, data_b);
*/
}
void test_read_no_theme()
{
auto path = PathHelper::GetDataDirectory("/genuine/libreoffice_nrt.xlsx");
2014-07-20 04:59:05 +08:00
auto wb = xlnt::reader::load_workbook(path);
2014-07-19 03:18:23 +08:00
TS_ASSERT_DIFFERS(wb, nullptr);
}
void test_read_cell_formulae()
2014-05-09 03:32:12 +08:00
{
2014-07-24 04:00:09 +08:00
TS_SKIP("fast parse not yet implemented");
2014-07-20 04:59:05 +08:00
/*
2014-07-19 03:18:23 +08:00
xlnt::workbook wb;
auto ws = wb.get_active_sheet();
auto path = PathHelper::GetDataDirectory("/reader/worksheet_formula.xml");
std::ifstream ws_stream(path);
2014-07-20 04:59:05 +08:00
xlnt::reader::fast_parse(ws, ws_stream, {"", ""}, {}, 0);
2014-07-19 03:18:23 +08:00
auto b1 = ws.get_cell("B1");
TS_ASSERT_EQUALS(b1.get_data_type(), xlnt::cell::type::formula);
TS_ASSERT_EQUALS(b1, "=CONCATENATE(A1, A2)");
2014-07-19 03:18:23 +08:00
auto a6 = ws.get_cell("A6");
TS_ASSERT_EQUALS(a6.get_data_type(), xlnt::cell::type::formula);
TS_ASSERT_EQUALS(a6, "=SUM(A4:A5)");
2014-07-20 04:59:05 +08:00
*/
2014-07-19 03:18:23 +08:00
}
void test_read_complex_formulae()
{
2014-07-24 04:00:09 +08:00
TS_SKIP("complex formulae not yet implemented");
2014-07-19 03:18:23 +08:00
}
void test_data_only()
{
2014-07-24 04:00:09 +08:00
TS_SKIP("data only not yet implemented");
2014-07-19 03:18:23 +08:00
}
void test_detect_worksheets()
{
2014-07-24 04:00:09 +08:00
TS_SKIP("detect worksheets not yet implemented");
2014-07-19 03:18:23 +08:00
}
void test_read_rels()
{
2014-07-24 04:00:09 +08:00
TS_SKIP("not yet implemented");
2014-07-19 03:18:23 +08:00
}
void test_read_content_types()
{
std::vector<std::pair<std::string, std::string>> expected =
{
{"/xl/workbook.xml", "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml"},
{"/xl/worksheets/sheet1.xml", "application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"},
{"/xl/chartsheets/sheet1.xml", "application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml"},
{"/xl/worksheets/sheet2.xml", "application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"},
{"/xl/theme/theme1.xml", "application/vnd.openxmlformats-officedocument.theme+xml"},
{"/xl/styles.xml", "application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml"},
{"/xl/sharedStrings.xml", "application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml"},
{"/xl/drawings/drawing1.xml", "application/vnd.openxmlformats-officedocument.drawing+xml"},
{"/xl/charts/chart1.xml", "application/vnd.openxmlformats-officedocument.drawingml.chart+xml"},
{"/xl/drawings/drawing2.xml", "application/vnd.openxmlformats-officedocument.drawing+xml"},
{"/xl/charts/chart2.xml", "application/vnd.openxmlformats-officedocument.drawingml.chart+xml"},
{"/xl/calcChain.xml", "application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml"},
{"/docProps/core.xml", "application/vnd.openxmlformats-package.core-properties+xml"},
{"/docProps/app.xml", "application/vnd.openxmlformats-officedocument.extended-properties+xml"}
};
2014-07-24 04:00:09 +08:00
auto path = PathHelper::GetDataDirectory("/reader/contains_chartsheets.xlsx");
2014-07-20 04:59:05 +08:00
xlnt::zip_file f(path, xlnt::file_mode::open);
auto result = xlnt::reader::read_content_types(f);
2014-07-24 04:00:09 +08:00
if(result.size() != expected.size())
{
TS_ASSERT_EQUALS(result.size(), expected.size());
return;
}
2014-07-20 04:59:05 +08:00
for(std::size_t i = 0; i < expected.size(); i++)
{
TS_ASSERT_EQUALS(result[i], expected[i]);
}
2014-07-19 03:18:23 +08:00
}
void test_read_sheets()
{
{
auto path = PathHelper::GetDataDirectory("/reader/bug137.xlsx");
2014-07-20 04:59:05 +08:00
xlnt::zip_file f(path, xlnt::file_mode::open);
auto sheets = xlnt::reader::read_sheets(f);
std::vector<std::pair<std::string, std::string>> expected =
{{"rId1", "Chart1"}, {"rId2", "Sheet1"}};
TS_ASSERT_EQUALS(sheets, expected);
2014-07-19 03:18:23 +08:00
}
{
auto path = PathHelper::GetDataDirectory("/reader/bug304.xlsx");
2014-07-20 04:59:05 +08:00
xlnt::zip_file f(path, xlnt::file_mode::open);
auto sheets = xlnt::reader::read_sheets(f);
std::vector<std::pair<std::string, std::string>> expected =
{{"rId1", "Sheet1"}, {"rId2", "Sheet2"}, {"rId3", "Sheet3"}};
TS_ASSERT_EQUALS(sheets, expected);
2014-07-19 03:18:23 +08:00
}
}
void test_guess_types()
{
2014-07-24 04:00:09 +08:00
TS_SKIP("type guessing not yet implemented");
2014-07-19 03:18:23 +08:00
bool guess;
2014-07-20 04:59:05 +08:00
xlnt::cell::type dtype;
std::vector<std::pair<bool, xlnt::cell::type>> test_cases = {{true, xlnt::cell::type::numeric}, {false, xlnt::cell::type::string}};
2014-07-19 03:18:23 +08:00
2014-07-20 04:59:05 +08:00
for(const auto &expected : test_cases)
2014-07-19 03:18:23 +08:00
{
std::tie(guess, dtype) = expected;
auto path = PathHelper::GetDataDirectory("/genuine/guess_types.xlsx");
2014-07-20 04:59:05 +08:00
auto wb = xlnt::reader::load_workbook(path, guess);
2014-07-19 03:18:23 +08:00
auto ws = wb.get_active_sheet();
TS_ASSERT_EQUALS(ws.get_cell("D2").get_data_type(), dtype);
}
}
void test_read_autofilter()
{
auto path = PathHelper::GetDataDirectory("/reader/bug275.xlsx");
2014-07-20 04:59:05 +08:00
auto wb = xlnt::reader::load_workbook(path);
2014-07-19 03:18:23 +08:00
auto ws = wb.get_active_sheet();
2014-07-20 04:59:05 +08:00
TS_ASSERT_EQUALS(ws.get_auto_filter().to_string(), "A1:B6");
2014-07-19 03:18:23 +08:00
}
void test_bad_formats_xlsb()
{
auto path = PathHelper::GetDataDirectory("/genuine/a.xlsb");
2014-07-20 04:59:05 +08:00
TS_ASSERT_THROWS(xlnt::reader::load_workbook(path), xlnt::invalid_file_exception);
2014-07-19 03:18:23 +08:00
}
void test_bad_formats_xls()
{
auto path = PathHelper::GetDataDirectory("/genuine/a.xls");
2014-07-20 04:59:05 +08:00
TS_ASSERT_THROWS(xlnt::reader::load_workbook(path), xlnt::invalid_file_exception);
2014-07-19 03:18:23 +08:00
}
void test_bad_formats_no()
{
auto path = PathHelper::GetDataDirectory("/genuine/a.no-format");
2014-07-20 04:59:05 +08:00
TS_ASSERT_THROWS(xlnt::reader::load_workbook(path), xlnt::invalid_file_exception);
}
2014-05-09 03:32:12 +08:00
};