/* -*- 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 using namespace com::sun::star; namespace { /// Covers sw/source/uibase/fldui/ fixes. class Test : public SwModelTestBase { }; CPPUNIT_TEST_FIXTURE(Test, testBiblioPageNumberUpdate) { // Given a document with 2 biblio fields, same properties, but different page number in the URL: SwDoc* pDoc = createSwDoc(); uno::Reference xFactory(mxComponent, uno::UNO_QUERY); uno::Reference xField( xFactory->createInstance("com.sun.star.text.TextField.Bibliography"), uno::UNO_QUERY); uno::Sequence aFields = { comphelper::makePropertyValue("BibiliographicType", text::BibliographyDataType::WWW), comphelper::makePropertyValue("Identifier", OUString("AT")), comphelper::makePropertyValue("Author", OUString("Author")), comphelper::makePropertyValue("Title", OUString("Title")), comphelper::makePropertyValue("URL", OUString("http://www.example.com/test.pdf#page=1")), }; xField->setPropertyValue("Fields", uno::Any(aFields)); uno::Reference xTextDocument(mxComponent, uno::UNO_QUERY); uno::Reference xText = xTextDocument->getText(); uno::Reference xCursor = xText->createTextCursor(); uno::Reference xContent(xField, uno::UNO_QUERY); xText->insertTextContent(xCursor, xContent, /*bAbsorb=*/false); xField.set(xFactory->createInstance("com.sun.star.text.TextField.Bibliography"), uno::UNO_QUERY); aFields = { comphelper::makePropertyValue("BibiliographicType", text::BibliographyDataType::WWW), comphelper::makePropertyValue("Identifier", OUString("AT")), comphelper::makePropertyValue("Author", OUString("Author")), comphelper::makePropertyValue("Title", OUString("Title")), comphelper::makePropertyValue("URL", OUString("http://www.example.com/test.pdf#page=2")), }; xField->setPropertyValue("Fields", uno::Any(aFields)); xContent.set(xField, uno::UNO_QUERY); xText->insertTextContent(xCursor, xContent, /*bAbsorb=*/false); // When changing the page number in the second field's URL: SwDocShell* pDocShell = pDoc->GetDocShell(); SwWrtShell* pWrtShell = pDocShell->GetWrtShell(); pWrtShell->SttEndDoc(/*bStt=*/false); pWrtShell->Left(CRSR_SKIP_CHARS, /*bSelect=*/false, 1, /*bBasicCall=*/false); OUString aCoreFields[AUTH_FIELD_END]; aCoreFields[AUTH_FIELD_AUTHORITY_TYPE] = OUString::number(text::BibliographyDataType::WWW); aCoreFields[AUTH_FIELD_IDENTIFIER] = "AT"; aCoreFields[AUTH_FIELD_AUTHOR] = "Author"; aCoreFields[AUTH_FIELD_TITLE] = "Title"; OUString aNewUrl = "http://www.example.com/test.pdf#page=42"; aCoreFields[AUTH_FIELD_URL] = aNewUrl; OUStringBuffer aFieldBuffer; for (const auto& rField : aCoreFields) { aFieldBuffer.append(rField).append(TOX_STYLE_DELIMITER); } SwFieldMgr aMgr(pWrtShell); aMgr.UpdateCurField(0, aFieldBuffer.makeStringAndClear(), OUString()); // Then make sure that the second field's URL is updated: auto pField = static_cast(pWrtShell->GetCurField()); const SwAuthEntry* pEntry = pField->GetAuthEntry(); // Without the accompanying fix in place, this test would have failed with: // - Expected: http://www.example.com/test.pdf#page=42 // - Actual : http://www.example.com/test.pdf#page=2 // i.e. the second biblio field's URL was not updated. CPPUNIT_ASSERT_EQUAL(aNewUrl, pEntry->GetAuthorField(AUTH_FIELD_URL)); } } CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */