diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2014-12-22 14:09:25 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2015-01-07 08:54:46 +0100 |
commit | 2ca2b8c2e0926a1562ea9dfbe16b686230e20638 (patch) | |
tree | e8dd41a000c4de92d4d16001a1f9eb9ec21bf2fe /sc/qa | |
parent | 67c989adc57eb279c478f59869499439ec65665f (diff) |
UNO API test for conditional formats
Change-Id: I45d4b9652f35174eaf59c8868d593764c2ef2ebf
Diffstat (limited to 'sc/qa')
-rw-r--r-- | sc/qa/extras/sccondformats.cxx | 136 |
1 files changed, 136 insertions, 0 deletions
diff --git a/sc/qa/extras/sccondformats.cxx b/sc/qa/extras/sccondformats.cxx new file mode 100644 index 000000000000..4a664c43cc87 --- /dev/null +++ b/sc/qa/extras/sccondformats.cxx @@ -0,0 +1,136 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#include <test/calc_unoapi_test.hxx> + +#include <com/sun/star/beans/XPropertySet.hpp> +#include <com/sun/star/sheet/ConditionOperator.hpp> +#include <com/sun/star/sheet/XSheetConditionalEntries.hpp> +#include <com/sun/star/sheet/XSpreadsheetDocument.hpp> +#include <com/sun/star/sheet/XSpreadsheet.hpp> +#include <com/sun/star/table/CellAddress.hpp> +#include <unonames.hxx> + +using namespace css; + +namespace sc_apitest { + +#define NUMBER_OF_TESTS 1 + +class ScConditionalFormatTest : public CalcUnoApiTest +{ +public: + ScConditionalFormatTest(); + + virtual void setUp() SAL_OVERRIDE; + virtual void tearDown() SAL_OVERRIDE; + + uno::Reference< uno::XInterface > init(); + void testCondFormat(); + + CPPUNIT_TEST_SUITE(ScConditionalFormatTest); + CPPUNIT_TEST(testCondFormat); + CPPUNIT_TEST_SUITE_END(); +private: + + static sal_Int32 nTest; + static uno::Reference< lang::XComponent > mxComponent; +}; + +sal_Int32 ScConditionalFormatTest::nTest = 0; +uno::Reference< lang::XComponent > ScConditionalFormatTest::mxComponent; + +ScConditionalFormatTest::ScConditionalFormatTest() + : CalcUnoApiTest("sc/qa/unit/data/ods") +{ +} + +uno::Reference< uno::XInterface > ScConditionalFormatTest::init() +{ + // get the test file + OUString aFileURL; + createFileURL(OUString("new_cond_format_test.ods"), aFileURL); + if(!mxComponent.is()) + mxComponent = loadFromDesktop(aFileURL); + CPPUNIT_ASSERT_MESSAGE("Component not loaded",mxComponent.is()); + + // get the first sheet + uno::Reference< sheet::XSpreadsheetDocument > xDoc(mxComponent, uno::UNO_QUERY_THROW); + uno::Reference< container::XIndexAccess > xIndex (xDoc->getSheets(), uno::UNO_QUERY_THROW); + uno::Reference< sheet::XSpreadsheet > xSheet( xIndex->getByIndex(0), uno::UNO_QUERY_THROW); + + return xSheet; +} + +void ScConditionalFormatTest::testCondFormat() +{ + uno::Reference< sheet::XSpreadsheet > aSheet(init(), uno::UNO_QUERY_THROW); + uno::Reference< beans::XPropertySet > xProps; + uno::Reference< sheet::XSheetConditionalEntries > xSheetConditionalEntries; + + xProps.set(aSheet->getCellRangeByPosition(1, 1, 1, 21), uno::UNO_QUERY_THROW); + xSheetConditionalEntries.set(xProps->getPropertyValue(SC_UNONAME_CONDFMT), uno::UNO_QUERY_THROW); + CPPUNIT_ASSERT_EQUAL(sal_Int32(1), xSheetConditionalEntries->getCount()); + + uno::Sequence< beans::PropertyValue > aPropertyValueList(5); + aPropertyValueList[0].Name = SC_UNONAME_STYLENAME; + aPropertyValueList[0].Value <<= uno::makeAny<OUString>("Result2"); + aPropertyValueList[1].Name = SC_UNONAME_FORMULA1; + aPropertyValueList[1].Value <<= uno::makeAny<OUString>("$Sheet1.$B$2"); + aPropertyValueList[2].Name = SC_UNONAME_FORMULA2; + aPropertyValueList[2].Value <<= uno::makeAny<OUString>("$Sheet1.$A$2"); + aPropertyValueList[3].Name = SC_UNONAME_OPERATOR; + aPropertyValueList[3].Value <<= sheet::ConditionOperator_EQUAL; + aPropertyValueList[4].Name = SC_UNONAME_SOURCEPOS; + aPropertyValueList[4].Value <<= uno::makeAny(table::CellAddress(0, 0, 16)); + xSheetConditionalEntries->addNew(aPropertyValueList); + CPPUNIT_ASSERT_EQUAL(sal_Int32(2), xSheetConditionalEntries->getCount()); + xProps->setPropertyValue(SC_UNONAME_CONDFMT, uno::makeAny(xSheetConditionalEntries)); + + xProps.set(aSheet->getCellByPosition(0, 16), uno::UNO_QUERY_THROW); + xSheetConditionalEntries.set(xProps->getPropertyValue(SC_UNONAME_CONDFMT), uno::UNO_QUERY_THROW); + CPPUNIT_ASSERT_EQUAL(sal_Int32(0), xSheetConditionalEntries->getCount()); + + // clear conditional formatting in cell $B$17 + xProps.set(aSheet->getCellByPosition(1, 16), uno::UNO_QUERY_THROW); + xSheetConditionalEntries.set(xProps->getPropertyValue(SC_UNONAME_CONDFMT), uno::UNO_QUERY_THROW); + CPPUNIT_ASSERT_EQUAL(sal_Int32(2), xSheetConditionalEntries->getCount()); + xSheetConditionalEntries->clear(); + xProps->setPropertyValue(SC_UNONAME_CONDFMT, uno::makeAny(xSheetConditionalEntries)); + + xProps.set(aSheet->getCellByPosition(1, 16), uno::UNO_QUERY_THROW); + xSheetConditionalEntries.set(xProps->getPropertyValue(SC_UNONAME_CONDFMT), uno::UNO_QUERY_THROW); + // This was 1 before - conditional formats were not removed + CPPUNIT_ASSERT_EQUAL(sal_Int32(0), xSheetConditionalEntries->getCount()); +} + +void ScConditionalFormatTest::setUp() +{ + nTest++; + CalcUnoApiTest::setUp(); +} + +void ScConditionalFormatTest::tearDown() +{ + if (nTest == NUMBER_OF_TESTS) + { + closeDocument(mxComponent); + mxComponent.clear(); + } + + CalcUnoApiTest::tearDown(); +} + +CPPUNIT_TEST_SUITE_REGISTRATION(ScConditionalFormatTest); + +} + +CPPUNIT_PLUGIN_IMPLEMENT(); + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |