summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-01-18 00:48:49 -0500
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-01-18 00:54:00 -0500
commita96b6f4708d587ddddd93101e51e52dec4e87b7e (patch)
tree01632faf1b7413bf3d79e06a1a6092dca984306d
parentaf5b416cc9371440872d24cb17ee842359b3ac4f (diff)
fdo#73487: Write unit tests for this.
Also remove the files used for the old tests. Change-Id: I4fbf6acce205d15a35780524120e351e01dc6642
-rw-r--r--sc/qa/unit/data/xls/border.xlsbin28160 -> 0 bytes
-rwxr-xr-xsc/qa/unit/data/xlsx/border.xlsxbin9784 -> 0 bytes
-rw-r--r--sc/qa/unit/subsequent_filters-test.cxx91
3 files changed, 54 insertions, 37 deletions
diff --git a/sc/qa/unit/data/xls/border.xls b/sc/qa/unit/data/xls/border.xls
deleted file mode 100644
index 876839b1fcb1..000000000000
--- a/sc/qa/unit/data/xls/border.xls
+++ /dev/null
Binary files differ
diff --git a/sc/qa/unit/data/xlsx/border.xlsx b/sc/qa/unit/data/xlsx/border.xlsx
deleted file mode 100755
index e33c083b3838..000000000000
--- a/sc/qa/unit/data/xlsx/border.xlsx
+++ /dev/null
Binary files differ
diff --git a/sc/qa/unit/subsequent_filters-test.cxx b/sc/qa/unit/subsequent_filters-test.cxx
index f0f8a9293115..1f3b3d44b492 100644
--- a/sc/qa/unit/subsequent_filters-test.cxx
+++ b/sc/qa/unit/subsequent_filters-test.cxx
@@ -102,8 +102,8 @@ public:
void testMatrixODS();
void testMatrixXLS();
void testBorderODS();
- void testBorderXLS();
- void testBorderXLSX();
+ void testCellBordersXLS();
+ void testCellBordersXLSX();
void testBordersOoo33();
void testBugFixesODS();
void testBugFixesXLS();
@@ -174,8 +174,8 @@ public:
CPPUNIT_TEST(testMatrixODS);
CPPUNIT_TEST(testMatrixXLS);
CPPUNIT_TEST(testBorderODS);
-// CPPUNIT_TEST(testBorderXLS);
-// CPPUNIT_TEST(testBorderXLSX);
+ CPPUNIT_TEST(testCellBordersXLS);
+ CPPUNIT_TEST(testCellBordersXLSX);
CPPUNIT_TEST(testBordersOoo33);
CPPUNIT_TEST(testBugFixesODS);
CPPUNIT_TEST(testBugFixesXLS);
@@ -232,7 +232,7 @@ public:
private:
void testPassword_Impl(const OUString& rFileNameBase);
- void testBorderImpl( sal_uLong nFormatType );
+ void testExcelCellBorders( sal_uLong nFormatType );
uno::Reference<uno::XInterface> m_xCalcComponent;
};
@@ -776,51 +776,68 @@ void ScFiltersTest::testBorderODS()
xDocSh->DoClose();
}
-void ScFiltersTest::testBorderImpl( sal_uLong nFormatType )
+namespace {
+
+const char* toBorderName( sal_Int16 eStyle )
{
- ScDocShellRef xDocSh = loadDoc("border.", nFormatType );
+ switch (eStyle)
+ {
+ case table::BorderLineStyle::SOLID: return "SOLID";
+ case table::BorderLineStyle::DOTTED: return "DOTTED";
+ case table::BorderLineStyle::DASHED: return "DASHED";
+ case table::BorderLineStyle::DOUBLE: return "DOUBLE";
+ case table::BorderLineStyle::FINE_DASHED: return "FINE_DASHED";
+ default:
+ ;
+ }
- CPPUNIT_ASSERT_MESSAGE("Failed to load border.xls", xDocSh.Is());
- ScDocument* pDoc = xDocSh->GetDocument();
+ return "";
+}
- const editeng::SvxBorderLine* pLeft = NULL;
- const editeng::SvxBorderLine* pTop = NULL;
- const editeng::SvxBorderLine* pRight = NULL;
- const editeng::SvxBorderLine* pBottom = NULL;
+}
- pDoc->GetBorderLines( 2, 3, 0, &pLeft, &pTop, &pRight, &pBottom );
- CPPUNIT_ASSERT(pRight);
- CPPUNIT_ASSERT_EQUAL(
- table::BorderLineStyle::SOLID, pRight->GetBorderLineStyle());
- CPPUNIT_ASSERT_EQUAL(1L, pRight->GetWidth());
+void ScFiltersTest::testExcelCellBorders( sal_uLong nFormatType )
+{
+ ScDocShellRef xDocSh = loadDoc("cell-borders.", nFormatType);
- pDoc->GetBorderLines( 3, 5, 0, &pLeft, &pTop, &pRight, &pBottom );
- CPPUNIT_ASSERT(pRight);
- CPPUNIT_ASSERT_EQUAL(
- table::BorderLineStyle::SOLID, pRight->GetBorderLineStyle());
- CPPUNIT_ASSERT_EQUAL(20L, pRight->GetWidth());
+ CPPUNIT_ASSERT_MESSAGE("Failed to load file", xDocSh.Is());
+ ScDocument* pDoc = xDocSh->GetDocument();
- pDoc->GetBorderLines( 5, 7, 0, &pLeft, &pTop, &pRight, &pBottom );
- CPPUNIT_ASSERT(pRight);
- CPPUNIT_ASSERT_EQUAL(
- table::BorderLineStyle::SOLID, pRight->GetBorderLineStyle());
- CPPUNIT_ASSERT_EQUAL(30L, pRight->GetWidth());
+ struct
+ {
+ SCROW mnRow;
+ sal_Int16 mnStyle;
+ long mnWidth;
+ } aChecks[] = {
+ { 1, table::BorderLineStyle::SOLID, 1L }, // hair
+ { 3, table::BorderLineStyle::DOTTED, 15L }, // thin
+ { 9, table::BorderLineStyle::FINE_DASHED, 15L }, // dashed
+ { 11, table::BorderLineStyle::SOLID, 15L }, // thin
+ { 19, table::BorderLineStyle::DASHED, 35L }, // medium dashed
+ { 21, table::BorderLineStyle::SOLID, 35L }, // medium
+ { 23, table::BorderLineStyle::SOLID, 50L }, // thick
+ { 25, table::BorderLineStyle::DOUBLE, -1L }, // double (don't check width)
+ };
- pDoc->GetBorderLines( 7, 9, 0, &pLeft, &pTop, &pRight, &pBottom );
- CPPUNIT_ASSERT(pRight);
- CPPUNIT_ASSERT_EQUAL(
- table::BorderLineStyle::FINE_DASHED, pRight->GetBorderLineStyle());
- CPPUNIT_ASSERT_EQUAL(1L, pRight->GetWidth());
+ for (size_t i = 0; i < SAL_N_ELEMENTS(aChecks); ++i)
+ {
+ const editeng::SvxBorderLine* pLine = NULL;
+ pDoc->GetBorderLines(2, aChecks[i].mnRow, 0, NULL, &pLine, NULL, NULL);
+ CPPUNIT_ASSERT(pLine);
+ CPPUNIT_ASSERT_EQUAL(toBorderName(aChecks[i].mnStyle), toBorderName(pLine->GetBorderLineStyle()));
+ if (aChecks[i].mnWidth >= 0)
+ CPPUNIT_ASSERT_EQUAL(aChecks[i].mnWidth, pLine->GetWidth());
+ }
}
-void ScFiltersTest::testBorderXLS()
+void ScFiltersTest::testCellBordersXLS()
{
- testBorderImpl( XLS );
+ testExcelCellBorders(XLS);
}
-void ScFiltersTest::testBorderXLSX()
+void ScFiltersTest::testCellBordersXLSX()
{
- testBorderImpl( XLSX );
+ testExcelCellBorders(XLSX);
}
struct Border