/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ /* * 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 #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace css; using namespace css::uno; using namespace com::sun::star; namespace sc_apitest { class ScDataPilotTablesObj : public CalcUnoApiTest, public apitest::XDataPilotTables { public: ScDataPilotTablesObj(); virtual uno::Reference init() override; virtual uno::Reference getXSpreadsheet() override; virtual void setUp() override; virtual void tearDown() override; CPPUNIT_TEST_SUITE(ScDataPilotTablesObj); // XDataPilotTables CPPUNIT_TEST(testXDataPilotTables); CPPUNIT_TEST_SUITE_END(); private: uno::Reference mxComponent; }; ScDataPilotTablesObj::ScDataPilotTablesObj() : CalcUnoApiTest("/sc/qa/extras/testdocuments") { } uno::Reference ScDataPilotTablesObj::init() { uno::Reference xDoc(mxComponent, UNO_QUERY_THROW); uno::Reference xSheets(xDoc->getSheets(), UNO_QUERY_THROW); uno::Reference xIndex(xDoc->getSheets(), UNO_QUERY_THROW); uno::Reference xSheet(xIndex->getByIndex(0), UNO_QUERY_THROW); for (auto i = 1; i < 4; i++) { xSheet->getCellByPosition(i, 0)->setFormula("Col" + OUString::number(i)); xSheet->getCellByPosition(0, i)->setFormula("Row" + OUString::number(i)); } uno::Reference xDPTS(xSheet, UNO_QUERY_THROW); uno::Reference xDPT(xDPTS->getDataPilotTables(), UNO_QUERY_THROW); uno::Reference xDPD(xDPT->createDataPilotDescriptor(), UNO_QUERY_THROW); xDPD->setSourceRange(table::CellRangeAddress(0, 0, 0, 4, 4)); //xDPT->insertNewByName("DataPilotTable", table::CellAddress(0, 5, 5), xDPD); return xDPT; } uno::Reference ScDataPilotTablesObj::getXSpreadsheet() { uno::Reference xDoc(mxComponent, UNO_QUERY_THROW); uno::Reference xSheets(xDoc->getSheets(), UNO_QUERY_THROW); uno::Reference xIndex(xDoc->getSheets(), UNO_QUERY_THROW); uno::Reference xSheet(xIndex->getByIndex(0), UNO_QUERY_THROW); return xSheet; } void ScDataPilotTablesObj::setUp() { CalcUnoApiTest::setUp(); // create a calc document mxComponent = loadFromDesktop("private:factory/scalc"); } void ScDataPilotTablesObj::tearDown() { closeDocument(mxComponent); CalcUnoApiTest::tearDown(); } CPPUNIT_TEST_SUITE_REGISTRATION(ScDataPilotTablesObj); } // end namespace CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */