diff options
author | Noel Grandin <noel@peralex.com> | 2014-11-27 14:58:39 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-12-09 12:45:19 +0000 |
commit | 6b5481c0260343800518192918ddf932ee5ae527 (patch) | |
tree | 673876344f0287e30de25ebe34913b37f744028f /sc/qa | |
parent | 64f45731a7ec8b5220649a387d2c26d27c912dd5 (diff) |
fdo#82312 - Excel chart has a wrong size
bug introduced in commit 0c7f35277575fee8594737f5b2842dfac2c6d04f
"remove SvStream::operator>> methods"
Change-Id: I72a1c05b3a4a3f3a250055775eb2d35b3114406d
Reviewed-on: https://gerrit.libreoffice.org/13151
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'sc/qa')
-rw-r--r-- | sc/qa/unit/data/xls/chartx.xls | bin | 0 -> 14848 bytes | |||
-rw-r--r-- | sc/qa/unit/subsequent_filters-test.cxx | 20 |
2 files changed, 20 insertions, 0 deletions
diff --git a/sc/qa/unit/data/xls/chartx.xls b/sc/qa/unit/data/xls/chartx.xls Binary files differnew file mode 100644 index 000000000000..2294c15f7b6f --- /dev/null +++ b/sc/qa/unit/data/xls/chartx.xls diff --git a/sc/qa/unit/subsequent_filters-test.cxx b/sc/qa/unit/subsequent_filters-test.cxx index be1955da0295..39a75c1ca8d9 100644 --- a/sc/qa/unit/subsequent_filters-test.cxx +++ b/sc/qa/unit/subsequent_filters-test.cxx @@ -146,6 +146,7 @@ public: //test shape import void testControlImport(); void testChartImportODS(); + void testChartImportXLS(); void testNumberFormatHTML(); void testNumberFormatCSV(); @@ -215,6 +216,7 @@ public: CPPUNIT_TEST(testRowIndex1BasedXLSX); CPPUNIT_TEST(testControlImport); CPPUNIT_TEST(testChartImportODS); + CPPUNIT_TEST(testChartImportXLS); CPPUNIT_TEST(testDataBarODS); CPPUNIT_TEST(testDataBarXLSX); @@ -1503,6 +1505,23 @@ void ScFiltersTest::testChartImportODS() xDocSh->DoClose(); } +void ScFiltersTest::testChartImportXLS() +{ + ScDocShellRef xDocSh = loadDoc("chartx.", XLS); + CPPUNIT_ASSERT_MESSAGE("Failed to load chartx.xls.", xDocSh.Is()); + + ScDocument& rDoc = xDocSh->GetDocument(); + + // Retrieve the chart object instance from the 2nd page (for the 2nd sheet). + const SdrOle2Obj* pOleObj = getSingleChartObject(rDoc, 0); + CPPUNIT_ASSERT_MESSAGE("Failed to retrieve a chart object from the 2nd sheet.", pOleObj); + + CPPUNIT_ASSERT_EQUAL(11148L, pOleObj->GetLogicRect().getWidth()); + CPPUNIT_ASSERT_EQUAL(8635L, pOleObj->GetLogicRect().getHeight()); + + xDocSh->DoClose(); +} + void ScFiltersTest::testNumberFormatHTML() { ScDocShellRef xDocSh = loadDoc("numberformat.", HTML); @@ -2679,3 +2698,4 @@ CPPUNIT_TEST_SUITE_REGISTRATION(ScFiltersTest); CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ + |