491 lines
19 KiB
C++
491 lines
19 KiB
C++
/* -*- 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 <sal/config.h>
|
|
#include <unotest/macros_test.hxx>
|
|
#include <test/bootstrapfixture.hxx>
|
|
#include <rtl/strbuf.hxx>
|
|
#include <osl/file.hxx>
|
|
|
|
#include <com/sun/star/frame/XDesktop.hpp>
|
|
|
|
#include <com/sun/star/lang/XComponent.hpp>
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
#include <com/sun/star/beans/XPropertySet.hpp>
|
|
#include <com/sun/star/util/SearchOptions.hpp>
|
|
#include <com/sun/star/frame/Desktop.hpp>
|
|
#include <com/sun/star/frame/XComponentLoader.hpp>
|
|
#include <com/sun/star/frame/XStorable.hpp>
|
|
#include <com/sun/star/document/MacroExecMode.hpp>
|
|
#include <com/sun/star/document/XEmbeddedScripts.hpp>
|
|
#include <com/sun/star/script/XLibraryContainer.hpp>
|
|
#include <com/sun/star/script/XLibraryContainerPassword.hpp>
|
|
#include <com/sun/star/drawing/XDrawPageSupplier.hpp>
|
|
#include <com/sun/star/drawing/XShapes.hpp>
|
|
#include <com/sun/star/drawing/XShape.hpp>
|
|
#include <com/sun/star/drawing/XShapeGrouper.hpp>
|
|
#include <com/sun/star/drawing/XControlShape.hpp>
|
|
#include <com/sun/star/text/XTextDocument.hpp>
|
|
#include <com/sun/star/text/TextContentAnchorType.hpp>
|
|
#include <com/sun/star/form/XForm.hpp>
|
|
#include <com/sun/star/form/XFormsSupplier.hpp>
|
|
#include <com/sun/star/awt/XControlModel.hpp>
|
|
#include <com/sun/star/container/XIndexContainer.hpp>
|
|
|
|
#include <sfx2/app.hxx>
|
|
#include <sfx2/docfilt.hxx>
|
|
#include <sfx2/docfile.hxx>
|
|
#include <sfx2/sfxmodelfactory.hxx>
|
|
#include <svl/intitem.hxx>
|
|
#include <comphelper/processfactory.hxx>
|
|
|
|
#include <basic/sbxdef.hxx>
|
|
#include <unotools/tempfile.hxx>
|
|
|
|
#include <unocrsr.hxx>
|
|
#include <ndtxt.hxx>
|
|
#include <doc.hxx>
|
|
#include <IDocumentLayoutAccess.hxx>
|
|
#include <IDocumentUndoRedo.hxx>
|
|
#include <IDocumentContentOperations.hxx>
|
|
#include "docsh.hxx"
|
|
#include <unotxdoc.hxx>
|
|
|
|
typedef tools::SvRef<SwDocShell> SwDocShellRef;
|
|
|
|
using namespace ::com::sun::star;
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
/* Implementation of Macros test */
|
|
|
|
class SwMacrosTest : public test::BootstrapFixture, public unotest::MacrosTest
|
|
{
|
|
public:
|
|
SwMacrosTest();
|
|
|
|
void createFileURL(const OUString& aFileBase, const OUString& aFileExtension, OUString& rFilePath);
|
|
|
|
virtual void setUp() SAL_OVERRIDE;
|
|
virtual void tearDown() SAL_OVERRIDE;
|
|
|
|
//void testStarBasic();
|
|
#if !defined MACOSX && !defined WNT
|
|
void testVba();
|
|
#endif
|
|
void testBookmarkDeleteAndJoin();
|
|
#if 0
|
|
void testControlShapeGrouping();
|
|
#endif
|
|
void testFdo55289();
|
|
void testFdo68983();
|
|
void testFindReplace();
|
|
CPPUNIT_TEST_SUITE(SwMacrosTest);
|
|
#if !defined(MACOSX) && !defined(WNT)
|
|
//enable this test if you want to play with star basic macros in unit tests
|
|
//works but does nothing useful yet
|
|
//CPPUNIT_TEST(testStarBasic);
|
|
CPPUNIT_TEST(testVba);
|
|
#endif
|
|
CPPUNIT_TEST(testBookmarkDeleteAndJoin);
|
|
#if 0
|
|
CPPUNIT_TEST(testControlShapeGrouping);
|
|
#endif
|
|
CPPUNIT_TEST(testFdo55289);
|
|
CPPUNIT_TEST(testFdo68983);
|
|
CPPUNIT_TEST(testFindReplace);
|
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
private:
|
|
uno::Reference<uno::XInterface> m_xWriterComponent;
|
|
OUString m_aBaseString;
|
|
};
|
|
|
|
void SwMacrosTest::createFileURL(const OUString& aFileBase, const OUString& aFileExtension, OUString& rFilePath)
|
|
{
|
|
OUString aSep("/");
|
|
OUStringBuffer aBuffer( getSrcRootURL() );
|
|
aBuffer.append(m_aBaseString).append(aSep).append(aFileExtension);
|
|
aBuffer.append(aSep).append(aFileBase).append(aFileExtension);
|
|
rFilePath = aBuffer.makeStringAndClear();
|
|
}
|
|
|
|
#if 0
|
|
|
|
void SwMacrosTest::testStarBasic()
|
|
{
|
|
const OUString aFileNameBase("StarBasic.");
|
|
OUString aFileExtension(aFileFormats[0].pName, strlen(aFileFormats[0].pName), RTL_TEXTENCODING_UTF8 );
|
|
OUString aFileName;
|
|
createFileURL(aFileNameBase, aFileExtension, aFileName);
|
|
uno::Reference< com::sun::star::lang::XComponent > xComponent = loadFromDesktop(aFileName, "com.sun.star.text.TextDocument");
|
|
|
|
CPPUNIT_ASSERT_MESSAGE("Failed to load StarBasic.ods", xComponent.is());
|
|
|
|
OUString aURL("vnd.sun.Star.script:Standard.Module1.Macro1?language=Basic&location=document");
|
|
String sUrl = aURL;
|
|
Any aRet;
|
|
Sequence< sal_Int16 > aOutParamIndex;
|
|
Sequence< Any > aOutParam;
|
|
Sequence< uno::Any > aParams;
|
|
|
|
SfxObjectShell* pFoundShell = SfxObjectShell::GetShellFromComponent(xComponent);
|
|
|
|
CPPUNIT_ASSERT_MESSAGE("Failed to access document shell", pFoundShell);
|
|
|
|
pFoundShell->CallXScript(xComponent, sUrl, aParams, aRet, aOutParamIndex,aOutParam);
|
|
pFoundShell->DoClose();
|
|
}
|
|
|
|
#endif
|
|
|
|
#if !defined MACOSX && !defined WNT
|
|
void SwMacrosTest::testVba()
|
|
{
|
|
TestMacroInfo testInfo[] = {
|
|
{
|
|
OUString("testVba."),
|
|
OUString("vnd.sun.Star.script:Project.NewMacros.Macro1?language=Basic&location=document")
|
|
}
|
|
};
|
|
OUString aFileExtension( "doc" );
|
|
for ( sal_uInt32 i=0; i<SAL_N_ELEMENTS( testInfo ); ++i )
|
|
{
|
|
OUString aFileName;
|
|
createFileURL(testInfo[i].sFileBaseName, aFileExtension, aFileName);
|
|
uno::Reference< com::sun::star::lang::XComponent > xComponent = loadFromDesktop(aFileName, "com.sun.star.text.TextDocument");
|
|
OUStringBuffer sMsg( "Failed to load " );
|
|
sMsg.append ( aFileName );
|
|
CPPUNIT_ASSERT_MESSAGE( OUStringToOString( sMsg.makeStringAndClear(), RTL_TEXTENCODING_UTF8 ).getStr(), xComponent.is() );
|
|
|
|
OUString sUrl = testInfo[i].sMacroUrl;
|
|
Any aRet;
|
|
Sequence< sal_Int16 > aOutParamIndex;
|
|
Sequence< Any > aOutParam;
|
|
Sequence< uno::Any > aParams;
|
|
|
|
SfxObjectShell* pFoundShell = SfxObjectShell::GetShellFromComponent(xComponent);
|
|
|
|
CPPUNIT_ASSERT_MESSAGE("Failed to access document shell", pFoundShell);
|
|
SfxObjectShell::CallXScript(xComponent, sUrl, aParams, aRet, aOutParamIndex,aOutParam);
|
|
OUString aStringRes;
|
|
aRet >>= aStringRes;
|
|
std::cout << "value of Ret " << OUStringToOString( aStringRes, RTL_TEXTENCODING_UTF8 ).getStr() << std::endl;
|
|
//CPPUNIT_ASSERT_MESSAGE( "script reported failure",aStringRes == "OK" );
|
|
pFoundShell->DoClose();
|
|
}
|
|
}
|
|
#endif
|
|
|
|
void SwMacrosTest::testBookmarkDeleteAndJoin()
|
|
{
|
|
SwDoc *const pDoc = new SwDoc;
|
|
pDoc->GetIDocumentUndoRedo().DoUndo(true); // bug is in SwUndoDelete
|
|
SwNodeIndex aIdx(pDoc->GetNodes().GetEndOfContent(), -1);
|
|
SwPaM aPaM(aIdx);
|
|
|
|
IDocumentContentOperations & rIDCO(pDoc->getIDocumentContentOperations());
|
|
rIDCO.AppendTxtNode(*aPaM.GetPoint());
|
|
rIDCO.InsertString(aPaM, OUString("A"));
|
|
rIDCO.AppendTxtNode(*aPaM.GetPoint());
|
|
rIDCO.InsertString(aPaM, OUString("A"));
|
|
rIDCO.AppendTxtNode(*aPaM.GetPoint());
|
|
aPaM.Move(fnMoveBackward, fnGoNode);
|
|
aPaM.Move(fnMoveBackward, fnGoNode);
|
|
aPaM.Move(fnMoveBackward, fnGoCntnt);
|
|
aPaM.SetMark();
|
|
aPaM.Move(fnMoveForward, fnGoDoc);
|
|
IDocumentMarkAccess & rIDMA = *pDoc->getIDocumentMarkAccess();
|
|
sw::mark::IMark *pMark =
|
|
rIDMA.makeMark(aPaM, "test", IDocumentMarkAccess::BOOKMARK);
|
|
CPPUNIT_ASSERT(pMark);
|
|
// select so pMark start position is on a node that is fully deleted
|
|
aPaM.Move(fnMoveBackward, fnGoNode);
|
|
// must leave un-selected content in last node to get the bJoinPrev flag!
|
|
aPaM.Move(fnMoveBackward, fnGoCntnt);
|
|
aPaM.Exchange();
|
|
aPaM.Move(fnMoveBackward, fnGoDoc);
|
|
// delete
|
|
rIDCO.DeleteAndJoin(aPaM, false);
|
|
|
|
for (IDocumentMarkAccess::const_iterator_t i = rIDMA.getAllMarksBegin(); i != rIDMA.getAllMarksEnd(); ++i)
|
|
{
|
|
// problem was that the nContent was pointing at deleted node
|
|
CPPUNIT_ASSERT((*i)->GetMarkStart().nNode.GetNode().GetCntntNode() ==
|
|
static_cast<const SwCntntNode*>((*i)->GetMarkStart().nContent.GetIdxReg()));
|
|
}
|
|
}
|
|
|
|
#if 0
|
|
void SwMacrosTest::testControlShapeGrouping()
|
|
{
|
|
OUString aFileName;
|
|
createFileURL("testControlShapeGrouping.", "odt", aFileName);
|
|
Reference< com::sun::star::lang::XComponent > xComponent(
|
|
loadFromDesktop(aFileName, "com.sun.star.text.TextDocument"));
|
|
CPPUNIT_ASSERT(xComponent.is());
|
|
|
|
uno::Reference<frame::XModel> const xModel(xComponent, UNO_QUERY);
|
|
CPPUNIT_ASSERT(xModel.is());
|
|
uno::Reference<lang::XMultiServiceFactory> xFactory(xModel, UNO_QUERY);
|
|
uno::Reference<drawing::XDrawPageSupplier> const xDPS(xModel, UNO_QUERY);
|
|
uno::Reference<drawing::XDrawPage> const xDP(xDPS->getDrawPage(), UNO_QUERY);
|
|
CPPUNIT_ASSERT(xDP.is());
|
|
uno::Reference<drawing::XShapes> const xDPShapes(xDP, UNO_QUERY);
|
|
CPPUNIT_ASSERT(xDPShapes.is());
|
|
uno::Reference<drawing::XShapes> const xShapes(getMultiServiceFactory()->createInstance("com.sun.star.drawing.ShapeCollection"),
|
|
UNO_QUERY);
|
|
CPPUNIT_ASSERT(xShapes.is());
|
|
uno::Reference<container::XIndexAccess> xShapesIC(xShapes, UNO_QUERY);
|
|
CPPUNIT_ASSERT(xShapesIC.is());
|
|
|
|
// uno::Reference<beans::XPropertySet> xFormProps(xForm, UNO_QUERY);
|
|
// xFormProps->setPropertyValue("Name", makeAny("aForm"));
|
|
uno::Reference<form::XFormsSupplier> const xFS(xDP, UNO_QUERY);
|
|
CPPUNIT_ASSERT(xFS.is());
|
|
uno::Reference<container::XIndexContainer> const xForms(xFS->getForms(), UNO_QUERY);
|
|
CPPUNIT_ASSERT(xForms.is());
|
|
uno::Reference<form::XForm> xForm(xForms->getByIndex(0), UNO_QUERY);
|
|
CPPUNIT_ASSERT(xForm.is());
|
|
uno::Reference<container::XNameContainer> xFormNC(xForm, UNO_QUERY);
|
|
|
|
uno::Reference<drawing::XControlShape> const xDateShape(
|
|
xFactory->createInstance("com.sun.star.drawing.ControlShape"),
|
|
UNO_QUERY);
|
|
uno::Reference<awt::XControlModel> const xDateControlModel(
|
|
xFactory->createInstance("com.sun.star.form.component.DateField"),
|
|
UNO_QUERY);
|
|
xDateShape->setControl(xDateControlModel);
|
|
uno::Reference<beans::XPropertySet> xDateShapeProps(xDateShape, UNO_QUERY);
|
|
xDateShapeProps->setPropertyValue("AnchorType", makeAny(text::TextContentAnchorType_AT_PARAGRAPH));
|
|
|
|
uno::Reference<drawing::XControlShape> const xTimeShape(
|
|
xFactory->createInstance("com.sun.star.drawing.ControlShape"),
|
|
UNO_QUERY);
|
|
uno::Reference<awt::XControlModel> const xTimeControlModel(
|
|
xFactory->createInstance("com.sun.star.form.component.TimeField"),
|
|
UNO_QUERY);
|
|
xTimeShape->setControl(xTimeControlModel);
|
|
uno::Reference<beans::XPropertySet> xTimeShapeProps(xTimeShape, UNO_QUERY);
|
|
xTimeShapeProps->setPropertyValue("AnchorType", makeAny(text::TextContentAnchorType_AT_PARAGRAPH));
|
|
|
|
xFormNC->insertByName("aDateCntrl", makeAny(xDateControlModel));
|
|
xDPShapes->add(xDateShape);
|
|
xFormNC->insertByName("aTimeCntrl", makeAny(xTimeControlModel));
|
|
xDPShapes->add(xTimeShape);
|
|
|
|
xShapes->add(uno::Reference<drawing::XShape>(xDateShape, UNO_QUERY));
|
|
xShapes->add(uno::Reference<drawing::XShape>(xTimeShape, UNO_QUERY));
|
|
uno::Reference<drawing::XShapeGrouper> const xDPGrouper(xDP, UNO_QUERY);
|
|
CPPUNIT_ASSERT(xDPGrouper.is());
|
|
uno::Reference<drawing::XShapeGroup> xGroup(xDPGrouper->group(xShapes));
|
|
CPPUNIT_ASSERT(xGroup.is());
|
|
uno::Reference<container::XIndexAccess> xGroupIC(xGroup, UNO_QUERY);
|
|
CPPUNIT_ASSERT(xGroup.is());
|
|
|
|
CPPUNIT_ASSERT(xDateShape->getControl().is());
|
|
CPPUNIT_ASSERT(xDateShape->getControl() == xDateControlModel);
|
|
CPPUNIT_ASSERT(xTimeShape->getControl().is());
|
|
CPPUNIT_ASSERT(xTimeShape->getControl() == xTimeControlModel);
|
|
|
|
{
|
|
uno::Reference< uno::XInterface > xDI;
|
|
xGroupIC->getByIndex(0) >>= xDI;
|
|
CPPUNIT_ASSERT(xDI.is());
|
|
uno::Reference< drawing::XControlShape > xDS(xDI, UNO_QUERY);
|
|
CPPUNIT_ASSERT(xDS.is());
|
|
CPPUNIT_ASSERT(xDS->getControl() == xDateControlModel);
|
|
|
|
uno::Reference< uno::XInterface > xTI;
|
|
xGroupIC->getByIndex(1) >>= xTI;
|
|
CPPUNIT_ASSERT(xTI.is());
|
|
uno::Reference< drawing::XControlShape > xTS(xTI, UNO_QUERY);
|
|
CPPUNIT_ASSERT(xTS.is());
|
|
CPPUNIT_ASSERT(xTS->getControl() == xTimeControlModel);
|
|
}
|
|
{
|
|
uno::Reference< uno::XInterface > xDI;
|
|
xShapesIC->getByIndex(0) >>= xDI;
|
|
CPPUNIT_ASSERT(xDI.is());
|
|
uno::Reference< drawing::XControlShape > xDS(xDI, UNO_QUERY);
|
|
CPPUNIT_ASSERT(xDS.is());
|
|
CPPUNIT_ASSERT(xDS->getControl() == xDateControlModel);
|
|
|
|
uno::Reference< uno::XInterface > xTI;
|
|
xShapesIC->getByIndex(1) >>= xTI;
|
|
CPPUNIT_ASSERT(xTI.is());
|
|
uno::Reference< drawing::XControlShape > xTS(xTI, UNO_QUERY);
|
|
CPPUNIT_ASSERT(xTS.is());
|
|
CPPUNIT_ASSERT(xTS->getControl() == xTimeControlModel);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
void SwMacrosTest::testFdo55289()
|
|
{
|
|
SwDoc *const pDoc = new SwDoc;
|
|
SwDocShellRef pDocShell = new SwDocShell(pDoc, SFX_CREATE_MODE_EMBEDDED);
|
|
// this needs to run with no layout to tickle the bugs in the special
|
|
// cases in SwXShape re-anchoring
|
|
assert(!pDoc->getIDocumentLayoutAccess().GetCurrentLayout());
|
|
|
|
uno::Reference<frame::XModel> const xModel(pDocShell->GetModel());
|
|
uno::Reference<drawing::XDrawPageSupplier> const xDPS(xModel, UNO_QUERY);
|
|
uno::Reference<drawing::XShapes> const xShapes(xDPS->getDrawPage(),
|
|
UNO_QUERY);
|
|
uno::Reference<beans::XPropertySet> const xShape(
|
|
uno::Reference<lang::XMultiServiceFactory>(xModel, UNO_QUERY)->
|
|
createInstance("com.sun.star.drawing.GraphicObjectShape"),
|
|
UNO_QUERY);
|
|
xShape->setPropertyValue("AnchorType",
|
|
makeAny(text::TextContentAnchorType_AT_PAGE));
|
|
xShapes->add(uno::Reference<drawing::XShape>(xShape, UNO_QUERY));
|
|
xShape->setPropertyValue("AnchorType",
|
|
makeAny(text::TextContentAnchorType_AT_CHARACTER));
|
|
xShape->setPropertyValue("AnchorType",
|
|
makeAny(text::TextContentAnchorType_AS_CHARACTER));
|
|
xShape->setPropertyValue("AnchorType",
|
|
makeAny(text::TextContentAnchorType_AT_CHARACTER));
|
|
xShape->setPropertyValue("AnchorType",
|
|
makeAny(text::TextContentAnchorType_AS_CHARACTER));
|
|
uno::Reference<text::XTextRange> const xEnd =
|
|
uno::Reference<text::XTextDocument>(xModel, UNO_QUERY)->getText()->getEnd();
|
|
uno::Reference<text::XTextContent> const xShapeContent(xShape, UNO_QUERY);
|
|
xShapeContent->attach(xEnd);
|
|
}
|
|
|
|
void SwMacrosTest::testFdo68983()
|
|
{
|
|
OUString aFileName;
|
|
createFileURL("fdo68983.", "odt", aFileName);
|
|
Reference< com::sun::star::lang::XComponent > xComponent =
|
|
loadFromDesktop(aFileName, "com.sun.star.text.TextDocument");
|
|
|
|
CPPUNIT_ASSERT_MESSAGE("Failed to load fdo68983.odt", xComponent.is());
|
|
|
|
Reference< frame::XStorable > xDocStorable(xComponent, UNO_QUERY_THROW);
|
|
CPPUNIT_ASSERT(xDocStorable.is());
|
|
|
|
utl::TempFile aTempFile;
|
|
aTempFile.EnableKillingFile();
|
|
Sequence<beans::PropertyValue> desc(1);
|
|
desc[0].Name = "FilterName";
|
|
desc[0].Value <<= OUString("writer8");
|
|
xDocStorable->storeAsURL(aTempFile.GetURL(), desc);
|
|
|
|
Reference<util::XCloseable>(xComponent, UNO_QUERY_THROW)->close(false);
|
|
|
|
// re-load
|
|
xComponent = loadFromDesktop(aTempFile.GetURL(), "com.sun.star.text.TextDocument");
|
|
|
|
// check that password-protected library survived store and re-load
|
|
Reference<document::XEmbeddedScripts> xDocScr(xComponent, UNO_QUERY_THROW);
|
|
Reference<script::XStorageBasedLibraryContainer> xStorBasLib(xDocScr->getBasicLibraries());
|
|
Reference<script::XLibraryContainer> xBasLib(xStorBasLib, UNO_QUERY_THROW);
|
|
Reference<script::XLibraryContainerPassword> xBasLibPwd(xStorBasLib, UNO_QUERY_THROW);
|
|
CPPUNIT_ASSERT(xBasLibPwd->isLibraryPasswordProtected("Library1"));
|
|
CPPUNIT_ASSERT(xBasLibPwd->verifyLibraryPassword("Library1", "foo"));
|
|
xBasLib->loadLibrary("Library1");
|
|
CPPUNIT_ASSERT(xBasLib->isLibraryLoaded("Library1"));
|
|
|
|
// close
|
|
Reference<util::XCloseable> xDocCloseable(xComponent, UNO_QUERY_THROW);
|
|
xDocCloseable->close(false);
|
|
}
|
|
|
|
void SwMacrosTest::testFindReplace()
|
|
{
|
|
// we need a full document with view and layout etc. because ::GetNode()
|
|
Reference<lang::XComponent> const xComponent =
|
|
loadFromDesktop("private:factory/swriter", "com.sun.star.text.TextDocument");
|
|
SwXTextDocument *const pTxtDoc = dynamic_cast<SwXTextDocument *>(xComponent.get());
|
|
CPPUNIT_ASSERT(pTxtDoc);
|
|
SwDoc *const pDoc = pTxtDoc->GetDocShell()->GetDoc();
|
|
SwNodeIndex aIdx(pDoc->GetNodes().GetEndOfContent(), -1);
|
|
// use a UnoCrsr so it will be corrected when deleting nodes
|
|
SwUnoCrsr *const pPaM(pDoc->CreateUnoCrsr(SwPosition(aIdx), false));
|
|
|
|
IDocumentContentOperations & rIDCO(pDoc->getIDocumentContentOperations());
|
|
rIDCO.InsertString(*pPaM, OUString("foo"));
|
|
rIDCO.AppendTxtNode(*pPaM->GetPoint());
|
|
rIDCO.InsertString(*pPaM, OUString("bar"));
|
|
rIDCO.AppendTxtNode(*pPaM->GetPoint());
|
|
rIDCO.InsertString(*pPaM, OUString("baz"));
|
|
pPaM->Move(fnMoveBackward, fnGoDoc);
|
|
|
|
bool bCancel(false);
|
|
util::SearchOptions opts(
|
|
util::SearchAlgorithms_REGEXP,
|
|
65536,
|
|
"$",
|
|
"",
|
|
lang::Locale("en", "US", ""),
|
|
2,
|
|
2,
|
|
2,
|
|
1073745152);
|
|
|
|
// find newline on 1st paragraph
|
|
bool bFound = pPaM->Find(
|
|
opts, false, DOCPOS_CURR, DOCPOS_END, bCancel, FND_IN_BODY, false);
|
|
CPPUNIT_ASSERT(bFound);
|
|
CPPUNIT_ASSERT(pPaM->HasMark());
|
|
CPPUNIT_ASSERT_EQUAL(OUString(""), pPaM->GetTxt());
|
|
|
|
// now do another Find, inside the selection from the first Find
|
|
// opts.searchFlags = 71680;
|
|
bFound = pPaM->Find(
|
|
opts, false, DOCPOS_CURR, DOCPOS_END, bCancel, FND_IN_SEL, false);
|
|
CPPUNIT_ASSERT(bFound);
|
|
CPPUNIT_ASSERT(pPaM->HasMark());
|
|
CPPUNIT_ASSERT_EQUAL(OUString(""), pPaM->GetTxt());
|
|
|
|
rIDCO.ReplaceRange(*pPaM, " ", true);
|
|
|
|
pPaM->DeleteMark();
|
|
pPaM->Move(fnMoveBackward, fnGoDoc);
|
|
|
|
// problem was that after the 2nd Find, the wrong newline was selected
|
|
CPPUNIT_ASSERT_EQUAL(OUString("foo bar"),
|
|
pPaM->Start()->nNode.GetNode().GetTxtNode()->GetTxt());
|
|
pPaM->Move(fnMoveForward, fnGoNode);
|
|
CPPUNIT_ASSERT_EQUAL(OUString("baz"),
|
|
pPaM->End()->nNode.GetNode().GetTxtNode()->GetTxt());
|
|
}
|
|
|
|
SwMacrosTest::SwMacrosTest()
|
|
: m_aBaseString("/sw/qa/core/data")
|
|
{
|
|
}
|
|
|
|
void SwMacrosTest::setUp()
|
|
{
|
|
test::BootstrapFixture::setUp();
|
|
|
|
// This is a bit of a fudge, we do this to ensure that SwGlobals::ensure,
|
|
// which is a private symbol to us, gets called
|
|
m_xWriterComponent =
|
|
getMultiServiceFactory()->createInstance(OUString(
|
|
"com.sun.star.comp.Writer.TextDocument"));
|
|
CPPUNIT_ASSERT_MESSAGE("no calc component!", m_xWriterComponent.is());
|
|
mxDesktop = com::sun::star::frame::Desktop::create( comphelper::getComponentContext(getMultiServiceFactory()) );
|
|
}
|
|
|
|
void SwMacrosTest::tearDown()
|
|
{
|
|
uno::Reference< lang::XComponent >( m_xWriterComponent, UNO_QUERY_THROW )->dispose();
|
|
test::BootstrapFixture::tearDown();
|
|
}
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION(SwMacrosTest);
|
|
|
|
CPPUNIT_PLUGIN_IMPLEMENT();
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|