/* -*- 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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace css; using namespace css::uno; namespace { /** * Initial tests for SwXTextField. */ struct SwXTextField final : public UnoApiTest, public apitest::XPropertySet, public apitest::XComponent, public apitest::TextContent, public apitest::XTextContent, public apitest::XTextField { SwXTextField() : UnoApiTest(u""_ustr) , TextContent(text::TextContentAnchorType_AS_CHARACTER, text::TextContentAnchorType_AS_CHARACTER, text::WrapTextMode_NONE, text::WrapTextMode_NONE) { } virtual void setUp() override { UnoApiTest::setUp(); mxDesktop.set(frame::Desktop::create(mxComponentContext)); mxComponent = loadFromDesktop(u"private:factory/swriter"_ustr); CPPUNIT_ASSERT(mxComponent.is()); } Reference init() override { Reference xTextDocument(mxComponent, UNO_QUERY_THROW); Reference xMSF(mxComponent, UNO_QUERY_THROW); Reference xFieldMaster( xMSF->createInstance(u"com.sun.star.text.FieldMaster.Database"_ustr), UNO_QUERY_THROW); xFieldMaster->setPropertyValue(u"DataBaseName"_ustr, Any(u"Address Book File"_ustr)); xFieldMaster->setPropertyValue(u"DataTableName"_ustr, Any(u"address"_ustr)); xFieldMaster->setPropertyValue(u"DataColumnName"_ustr, Any(u"FIRSTNAME"_ustr)); Reference xField( xMSF->createInstance(u"com.sun.star.text.TextField.Database"_ustr), UNO_QUERY_THROW); xField->attachTextFieldMaster(xFieldMaster); Reference xText = xTextDocument->getText(); Reference xCursor = xText->createTextCursor(); Reference xFieldAsContent(xField, UNO_QUERY_THROW); xText->insertTextContent(xCursor, xFieldAsContent, false); mxTextRange = Reference(xCursor, UNO_QUERY_THROW); mxTextContent = Reference( xMSF->createInstance(u"com.sun.star.text.TextField.DateTime"_ustr), UNO_QUERY_THROW); return Reference(xField, UNO_QUERY_THROW); } void triggerDesktopTerminate() override { mxDesktop->terminate(); }; bool isAttachSupported() override { return true; }; Reference getTextRange() override { return mxTextRange; }; Reference getTextContent() override { return mxTextContent; }; CPPUNIT_TEST_SUITE(SwXTextField); CPPUNIT_TEST(testDispose); CPPUNIT_TEST(testAddEventListener); CPPUNIT_TEST(testRemoveEventListener); CPPUNIT_TEST(testTextContentProperties); CPPUNIT_TEST(testAttach); CPPUNIT_TEST(testGetAnchor); CPPUNIT_TEST_SUITE_END(); private: Reference mxTextRange; Reference mxTextContent; }; CPPUNIT_TEST_SUITE_REGISTRATION(SwXTextField); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */