2016-03-10 18:50:54 +01:00
|
|
|
/* -*- 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/bootstrapfixture.hxx>
|
|
|
|
#include <unotest/macros_test.hxx>
|
|
|
|
#include <test/xmltesttools.hxx>
|
|
|
|
#include <boost/property_tree/json_parser.hpp>
|
|
|
|
|
|
|
|
#define LOK_USE_UNSTABLE_API
|
|
|
|
#include <LibreOfficeKit/LibreOfficeKitEnums.h>
|
|
|
|
#include <com/sun/star/frame/Desktop.hpp>
|
|
|
|
#include <comphelper/dispatchcommand.hxx>
|
|
|
|
#include <comphelper/processfactory.hxx>
|
|
|
|
#include <comphelper/propertysequence.hxx>
|
|
|
|
#include <comphelper/string.hxx>
|
|
|
|
#include <editeng/editids.hrc>
|
|
|
|
#include <editeng/editview.hxx>
|
|
|
|
#include <editeng/outliner.hxx>
|
|
|
|
#include <osl/conditn.hxx>
|
|
|
|
#include <sfx2/dispatch.hxx>
|
|
|
|
#include <sfx2/viewfrm.hxx>
|
|
|
|
#include <svl/srchitem.hxx>
|
|
|
|
|
|
|
|
#include <comphelper/lok.hxx>
|
|
|
|
|
2016-05-08 21:11:13 -04:00
|
|
|
#include <tabvwsh.hxx>
|
|
|
|
#include <docsh.hxx>
|
2016-03-10 18:50:54 +01:00
|
|
|
#include <document.hxx>
|
|
|
|
#include <docuno.hxx>
|
|
|
|
|
|
|
|
using namespace css;
|
|
|
|
|
|
|
|
#if !defined(WNT) && !defined(MACOSX)
|
|
|
|
static const char* DATA_DIRECTORY = "/sc/qa/unit/tiledrendering/data/";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class ScTiledRenderingTest : public test::BootstrapFixture, public unotest::MacrosTest, public XmlTestTools
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ScTiledRenderingTest();
|
|
|
|
virtual void setUp() SAL_OVERRIDE;
|
|
|
|
virtual void tearDown() SAL_OVERRIDE;
|
|
|
|
|
|
|
|
#if !defined(WNT) && !defined(MACOSX)
|
2016-03-16 22:13:08 +05:30
|
|
|
void testRowColumnSelections();
|
2016-03-10 18:50:54 +01:00
|
|
|
void testSortAscendingDescending();
|
2016-04-20 13:52:31 -04:00
|
|
|
void testPartHash();
|
2016-05-08 21:11:13 -04:00
|
|
|
void testDocumentSize();
|
2016-03-10 18:50:54 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE(ScTiledRenderingTest);
|
|
|
|
#if !defined(WNT) && !defined(MACOSX)
|
2016-03-16 22:13:08 +05:30
|
|
|
CPPUNIT_TEST(testRowColumnSelections);
|
2016-03-10 18:50:54 +01:00
|
|
|
CPPUNIT_TEST(testSortAscendingDescending);
|
2016-04-20 13:52:31 -04:00
|
|
|
CPPUNIT_TEST(testPartHash);
|
2016-05-08 21:11:13 -04:00
|
|
|
CPPUNIT_TEST(testDocumentSize);
|
2016-03-10 18:50:54 +01:00
|
|
|
#endif
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
|
|
|
|
private:
|
|
|
|
#if !defined(WNT) && !defined(MACOSX)
|
|
|
|
ScModelObj* createDoc(const char* pName);
|
|
|
|
static void callback(int nType, const char* pPayload, void* pData);
|
|
|
|
void callbackImpl(int nType, const char* pPayload);
|
2016-05-08 21:11:13 -04:00
|
|
|
|
|
|
|
/// document size changed callback.
|
|
|
|
osl::Condition m_aDocSizeCondition;
|
2016-03-10 18:50:54 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
uno::Reference<lang::XComponent> mxComponent;
|
|
|
|
#if !defined(WNT) && !defined(MACOSX)
|
|
|
|
// TODO various test-related members - when needed
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
ScTiledRenderingTest::ScTiledRenderingTest()
|
|
|
|
#if !defined(WNT) && !defined(MACOSX)
|
|
|
|
// TODO various test-related members - when needed
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScTiledRenderingTest::setUp()
|
|
|
|
{
|
|
|
|
test::BootstrapFixture::setUp();
|
|
|
|
|
|
|
|
mxDesktop.set(css::frame::Desktop::create(comphelper::getComponentContext(getMultiServiceFactory())));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScTiledRenderingTest::tearDown()
|
|
|
|
{
|
|
|
|
if (mxComponent.is())
|
|
|
|
mxComponent->dispose();
|
|
|
|
|
|
|
|
test::BootstrapFixture::tearDown();
|
|
|
|
}
|
|
|
|
|
|
|
|
#if !defined(WNT) && !defined(MACOSX)
|
|
|
|
ScModelObj* ScTiledRenderingTest::createDoc(const char* pName)
|
|
|
|
{
|
|
|
|
if (mxComponent.is())
|
|
|
|
mxComponent->dispose();
|
|
|
|
mxComponent = loadFromDesktop(m_directories.getURLFromSrc(DATA_DIRECTORY) + OUString::createFromAscii(pName), "com.sun.star.sheet.SpreadsheetDocument");
|
|
|
|
ScModelObj* pModelObj = dynamic_cast<ScModelObj*>(mxComponent.get());
|
|
|
|
CPPUNIT_ASSERT(pModelObj);
|
|
|
|
pModelObj->initializeForTiledRendering(uno::Sequence<beans::PropertyValue>());
|
|
|
|
return pModelObj;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScTiledRenderingTest::callback(int nType, const char* pPayload, void* pData)
|
|
|
|
{
|
|
|
|
static_cast<ScTiledRenderingTest*>(pData)->callbackImpl(nType, pPayload);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO when needed...
|
|
|
|
static std::vector<OUString> lcl_convertSeparated(const OUString& rString, sal_Unicode nSeparator)
|
|
|
|
{
|
|
|
|
std::vector<OUString> aRet;
|
|
|
|
|
|
|
|
sal_Int32 nIndex = 0;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
OUString aToken = rString.getToken(0, nSeparator, nIndex);
|
|
|
|
aToken = aToken.trim();
|
|
|
|
if (!aToken.isEmpty())
|
|
|
|
aRet.push_back(aToken);
|
|
|
|
}
|
|
|
|
while (nIndex >= 0);
|
|
|
|
|
|
|
|
return aRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void lcl_convertRectangle(const OUString& rString, Rectangle& rRectangle)
|
|
|
|
{
|
|
|
|
uno::Sequence<OUString> aSeq = comphelper::string::convertCommaSeparated(rString);
|
|
|
|
CPPUNIT_ASSERT_EQUAL(static_cast<sal_Int32>(4), aSeq.getLength());
|
|
|
|
rRectangle.setX(aSeq[0].toInt32());
|
|
|
|
rRectangle.setY(aSeq[1].toInt32());
|
|
|
|
rRectangle.setWidth(aSeq[2].toInt32());
|
|
|
|
rRectangle.setHeight(aSeq[3].toInt32());
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
2016-05-08 21:11:13 -04:00
|
|
|
void ScTiledRenderingTest::callbackImpl(int nType, const char* /*pPayload*/)
|
2016-03-10 18:50:54 +01:00
|
|
|
{
|
2016-05-08 21:11:13 -04:00
|
|
|
switch (nType)
|
|
|
|
{
|
|
|
|
case LOK_CALLBACK_DOCUMENT_SIZE_CHANGED:
|
|
|
|
{
|
|
|
|
m_aDocSizeCondition.set();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2016-03-10 18:50:54 +01:00
|
|
|
}
|
|
|
|
|
2016-03-16 22:13:08 +05:30
|
|
|
void ScTiledRenderingTest::testRowColumnSelections()
|
|
|
|
{
|
|
|
|
comphelper::LibreOfficeKit::setActive();
|
|
|
|
ScModelObj* pModelObj = createDoc("select-row-cols.ods");
|
|
|
|
uno::Sequence<beans::PropertyValue> aArgs(2);
|
|
|
|
|
|
|
|
// Select the 5th row with no modifier
|
|
|
|
aArgs[0].Name = OUString::fromUtf8("Row");
|
|
|
|
aArgs[0].Value <<= static_cast<sal_Int32>(5 - 1);
|
|
|
|
aArgs[1].Name = OUString::fromUtf8("Modifier");
|
|
|
|
aArgs[1].Value <<= static_cast<sal_uInt16>(0);
|
|
|
|
comphelper::dispatchCommand(".uno:SelectRow", aArgs);
|
|
|
|
|
|
|
|
// Check if it is selected
|
|
|
|
OString aUsedMimeType;
|
|
|
|
OString aResult = pModelObj->getTextSelection("text/plain;charset=utf-8", aUsedMimeType);
|
|
|
|
OString aExpected("1\t2\t3\t4\t5\t6\t7\t8\t9\t10\t11\t12\t13\t14\t15\t16\t17\t18\t19\t20\t21\n");
|
|
|
|
CPPUNIT_ASSERT_EQUAL(aExpected, aResult);
|
|
|
|
|
|
|
|
// Select the 10th row with shift modifier
|
|
|
|
aArgs[0].Name = OUString::fromUtf8("Row");
|
|
|
|
aArgs[0].Value <<= static_cast<sal_Int32>(10 - 1);
|
|
|
|
aArgs[1].Name = OUString::fromUtf8("Modifier");
|
|
|
|
aArgs[1].Value <<= static_cast<sal_uInt16>(KEY_SHIFT);
|
|
|
|
comphelper::dispatchCommand(".uno:SelectRow", aArgs);
|
|
|
|
|
|
|
|
// Check if all the rows from 5th to 10th get selected
|
|
|
|
aResult = pModelObj->getTextSelection("text/plain;charset=utf-8", aUsedMimeType);
|
|
|
|
aExpected = "1\t2\t3\t4\t5\t6\t7\t8\t9\t10\t11\t12\t13\t14\t15\t16\t17\t18\t19\t20\t21\n2\t3\t4\t5\t6\t7\t8\t9\t10\t11\t12\t13\t14\t15\t16\t17\t18\t19\t20\t21\t22\n3\t4\t5\t6\t7\t8\t9\t10\t11\t12\t13\t14\t15\t16\t17\t18\t19\t20\t21\t22\t23\n4\t5\t6\t7\t8\t9\t10\t11\t12\t13\t14\t15\t16\t17\t18\t19\t20\t21\t22\t23\t24\n5\t6\t7\t8\t9\t10\t11\t12\t13\t14\t15\t16\t17\t18\t19\t20\t21\t22\t23\t24\t25\n6\t7\t8\t9\t10\t11\t12\t13\t14\t15\t16\t17\t18\t19\t20\t21\t22\t23\t24\t25\t26\n";
|
|
|
|
CPPUNIT_ASSERT_EQUAL(aExpected, aResult);
|
|
|
|
|
|
|
|
// Select the 10th row with ctrl modifier
|
|
|
|
aArgs[0].Name = OUString::fromUtf8("Row");
|
|
|
|
aArgs[0].Value <<= static_cast<sal_Int32>(13 - 1);
|
|
|
|
aArgs[1].Name = OUString::fromUtf8("Modifier");
|
|
|
|
aArgs[1].Value <<= static_cast<sal_uInt16>(KEY_MOD1);
|
|
|
|
comphelper::dispatchCommand(".uno:SelectRow", aArgs);
|
|
|
|
|
|
|
|
// When we copy this, we don't get anything useful, but we must not crash
|
|
|
|
// (used to happen)
|
|
|
|
aResult = pModelObj->getTextSelection("text/plain;charset=utf-8", aUsedMimeType);
|
|
|
|
CPPUNIT_ASSERT_EQUAL(OString(), aResult);
|
|
|
|
|
|
|
|
// TODO check that we really selected what we wanted here
|
|
|
|
|
|
|
|
// Select Column 5 with ctrl modifier
|
|
|
|
aArgs[0].Name = OUString::fromUtf8("Col");
|
|
|
|
aArgs[0].Value <<= static_cast<sal_Int32>(5 - 1);
|
|
|
|
aArgs[1].Name = OUString::fromUtf8("Modifier");
|
|
|
|
aArgs[1].Value <<= static_cast<sal_uInt16>(KEY_MOD1);
|
|
|
|
comphelper::dispatchCommand(".uno:SelectColumn", aArgs);
|
|
|
|
|
|
|
|
// When we copy this, we don't get anything useful, but we must not crash
|
|
|
|
// (used to happen)
|
|
|
|
aResult = pModelObj->getTextSelection("text/plain;charset=utf-8", aUsedMimeType);
|
|
|
|
CPPUNIT_ASSERT_EQUAL(OString(), aResult);
|
|
|
|
|
|
|
|
// TODO check that we really selected what we wanted here
|
|
|
|
|
2016-03-19 01:23:07 +05:30
|
|
|
// Test for deselection of already selected rows
|
|
|
|
// First Deselect Row 13 because copy doesn't work for multiple selections
|
|
|
|
aArgs[0].Name = OUString::fromUtf8("Row");
|
|
|
|
aArgs[0].Value <<= static_cast<sal_Int32>(13 - 1);
|
|
|
|
aArgs[1].Name = OUString::fromUtf8("Modifier");
|
|
|
|
aArgs[1].Value <<= static_cast<sal_uInt16>(KEY_MOD1);
|
|
|
|
comphelper::dispatchCommand(".uno:SelectRow", aArgs);
|
|
|
|
|
|
|
|
// Deselect row 10
|
|
|
|
aArgs[0].Name = OUString::fromUtf8("Row");
|
|
|
|
aArgs[0].Value <<= static_cast<sal_Int32>(10 - 1);
|
|
|
|
aArgs[1].Name = OUString::fromUtf8("Modifier");
|
|
|
|
aArgs[1].Value <<= static_cast<sal_uInt16>(KEY_MOD1);
|
|
|
|
comphelper::dispatchCommand(".uno:SelectRow", aArgs);
|
|
|
|
|
|
|
|
// Click at row 6 holding shift
|
|
|
|
aArgs[0].Name = OUString::fromUtf8("Row");
|
|
|
|
aArgs[0].Value <<= static_cast<sal_Int32>(6 - 1);
|
|
|
|
aArgs[1].Name = OUString::fromUtf8("Modifier");
|
|
|
|
aArgs[1].Value <<= static_cast<sal_uInt16>(KEY_SHIFT);
|
|
|
|
comphelper::dispatchCommand(".uno:SelectRow", aArgs);
|
|
|
|
|
|
|
|
// only row 5 should remain selected
|
|
|
|
aResult = pModelObj->getTextSelection("text/plain;charset=utf-8", aUsedMimeType);
|
|
|
|
aExpected = "1\t2\t3\t4\t5\t6\t7\t8\t9\t10\t11\t12\t13\t14\t15\t16\t17\t18\t19\t20\t21\n";
|
|
|
|
CPPUNIT_ASSERT_EQUAL(aExpected, aResult);
|
2016-03-16 22:13:08 +05:30
|
|
|
|
|
|
|
comphelper::LibreOfficeKit::setActive(false);
|
|
|
|
}
|
|
|
|
|
2016-03-10 18:50:54 +01:00
|
|
|
void ScTiledRenderingTest::testSortAscendingDescending()
|
|
|
|
{
|
|
|
|
comphelper::LibreOfficeKit::setActive();
|
|
|
|
ScModelObj* pModelObj = createDoc("sort-range.ods");
|
|
|
|
ScDocument* pDoc = pModelObj->GetDocument();
|
|
|
|
|
|
|
|
// select the values in the first column
|
|
|
|
pModelObj->postMouseEvent(LOK_MOUSEEVENT_MOUSEBUTTONDOWN, 551, 129, 1);
|
|
|
|
pModelObj->postMouseEvent(LOK_MOUSEEVENT_MOUSEMOVE, 820, 1336, 1);
|
|
|
|
pModelObj->postMouseEvent(LOK_MOUSEEVENT_MOUSEBUTTONUP, 820, 1359, 1);
|
|
|
|
|
|
|
|
// sort ascending
|
|
|
|
uno::Sequence<beans::PropertyValue> aArgs;
|
|
|
|
comphelper::dispatchCommand(".uno:SortAscending", aArgs);
|
|
|
|
|
|
|
|
// check it's sorted
|
|
|
|
for (SCROW r = 0; r < 6; ++r)
|
|
|
|
{
|
|
|
|
CPPUNIT_ASSERT_EQUAL(double(r + 1), pDoc->GetValue(ScAddress(0, r, 0)));
|
|
|
|
}
|
|
|
|
|
|
|
|
// sort descending
|
|
|
|
comphelper::dispatchCommand(".uno:SortDescending", aArgs);
|
|
|
|
|
|
|
|
// check it's sorted
|
|
|
|
for (SCROW r = 0; r < 6; ++r)
|
|
|
|
{
|
|
|
|
CPPUNIT_ASSERT_EQUAL(double(6 - r), pDoc->GetValue(ScAddress(0, r, 0)));
|
|
|
|
}
|
|
|
|
|
|
|
|
// nothing else was sorted
|
|
|
|
CPPUNIT_ASSERT_EQUAL(double(1), pDoc->GetValue(ScAddress(1, 0, 0)));
|
|
|
|
CPPUNIT_ASSERT_EQUAL(double(3), pDoc->GetValue(ScAddress(1, 1, 0)));
|
|
|
|
CPPUNIT_ASSERT_EQUAL(double(2), pDoc->GetValue(ScAddress(1, 2, 0)));
|
|
|
|
|
|
|
|
comphelper::LibreOfficeKit::setActive(false);
|
|
|
|
}
|
|
|
|
|
2016-04-20 13:52:31 -04:00
|
|
|
void ScTiledRenderingTest::testPartHash()
|
|
|
|
{
|
|
|
|
comphelper::LibreOfficeKit::setActive();
|
|
|
|
ScModelObj* pModelObj = createDoc("sort-range.ods");
|
|
|
|
|
|
|
|
int nParts = pModelObj->getParts();
|
|
|
|
for (int it = 0; it < nParts; it++)
|
|
|
|
{
|
|
|
|
CPPUNIT_ASSERT(!pModelObj->getPartHash(it).isEmpty());
|
|
|
|
}
|
|
|
|
|
|
|
|
// check part that it does not exists
|
|
|
|
CPPUNIT_ASSERT(pModelObj->getPartHash(100).isEmpty());
|
|
|
|
comphelper::LibreOfficeKit::setActive(false);
|
|
|
|
}
|
|
|
|
|
2016-05-08 21:11:13 -04:00
|
|
|
void ScTiledRenderingTest::testDocumentSize()
|
|
|
|
{
|
|
|
|
comphelper::LibreOfficeKit::setActive();
|
|
|
|
ScModelObj* pModelObj = createDoc("sort-range.ods");
|
|
|
|
ScDocShell* pDocSh = dynamic_cast< ScDocShell* >( pModelObj->GetEmbeddedObject() );
|
|
|
|
CPPUNIT_ASSERT(pDocSh);
|
|
|
|
|
|
|
|
ScTabViewShell* pViewShell = pDocSh->GetBestViewShell(false);
|
|
|
|
CPPUNIT_ASSERT(pViewShell);
|
|
|
|
|
2016-06-16 16:45:21 +02:00
|
|
|
pViewShell->registerLibreOfficeKitViewCallback(&ScTiledRenderingTest::callback, this);
|
|
|
|
|
|
|
|
// check initial document size
|
|
|
|
Size aDocSize = pModelObj->getDocumentSize();
|
|
|
|
CPPUNIT_ASSERT(aDocSize.Width() > 0);
|
|
|
|
CPPUNIT_ASSERT(aDocSize.Height() > 0);
|
|
|
|
|
2016-05-08 21:11:13 -04:00
|
|
|
// Set cursor column
|
|
|
|
pViewShell->SetCursor(100, 0);
|
|
|
|
// 2 seconds
|
|
|
|
TimeValue aTime = { 2 , 0 };
|
|
|
|
osl::Condition::Result aResult = m_aDocSizeCondition.wait(aTime);
|
|
|
|
CPPUNIT_ASSERT_EQUAL(aResult, osl::Condition::result_ok);
|
|
|
|
|
|
|
|
// Set cursor row
|
|
|
|
pViewShell->SetCursor(0, 100);
|
|
|
|
// 2 seconds
|
|
|
|
aTime = { 2 , 0 };
|
|
|
|
aResult = m_aDocSizeCondition.wait(aTime);
|
|
|
|
CPPUNIT_ASSERT_EQUAL(aResult, osl::Condition::result_ok);
|
|
|
|
|
|
|
|
comphelper::LibreOfficeKit::setActive(false);
|
|
|
|
}
|
|
|
|
|
2016-03-10 18:50:54 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(ScTiledRenderingTest);
|
|
|
|
|
|
|
|
CPPUNIT_PLUGIN_IMPLEMENT();
|
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|