diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 05:54:39 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 05:54:39 +0000 |
commit | 267c6f2ac71f92999e969232431ba04678e7437e (patch) | |
tree | 358c9467650e1d0a1d7227a21dac2e3d08b622b2 /xmlscript/qa/cppunit/test.cxx | |
parent | Initial commit. (diff) | |
download | libreoffice-267c6f2ac71f92999e969232431ba04678e7437e.tar.xz libreoffice-267c6f2ac71f92999e969232431ba04678e7437e.zip |
Adding upstream version 4:24.2.0.upstream/4%24.2.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'xmlscript/qa/cppunit/test.cxx')
-rw-r--r-- | xmlscript/qa/cppunit/test.cxx | 236 |
1 files changed, 236 insertions, 0 deletions
diff --git a/xmlscript/qa/cppunit/test.cxx b/xmlscript/qa/cppunit/test.cxx new file mode 100644 index 0000000000..f29c9bb7ba --- /dev/null +++ b/xmlscript/qa/cppunit/test.cxx @@ -0,0 +1,236 @@ +/* -*- 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 <test/xmltesttools.hxx> +#include <unotest/macros_test.hxx> +#include <unotools/tempfile.hxx> + +#include <com/sun/star/frame/Desktop.hpp> +#include <com/sun/star/frame/DispatchHelper.hpp> +#include <com/sun/star/beans/XPropertySet.hpp> +#include <com/sun/star/container/XNameContainer.hpp> +#include <com/sun/star/io/XInputStream.hpp> +#include <com/sun/star/io/XInputStreamProvider.hpp> +#include <com/sun/star/io/XOutputStream.hpp> + +#include <comphelper/processfactory.hxx> +#include <comphelper/propertysequence.hxx> + +#include <config_folders.h> +#include <osl/file.hxx> +#include <rtl/ustrbuf.hxx> +#include <rtl/byteseq.hxx> +#include <sal/log.hxx> + +#include <xmlscript/xmldlg_imexp.hxx> +#include <xmlscript/xml_helper.hxx> +#include <cppuhelper/bootstrap.hxx> + +using namespace ::cppu; +using namespace ::com::sun::star::uno; + +using namespace ::com::sun::star; + +/// Sample tests for import +class XmlScriptTest : public test::BootstrapFixture, public unotest::MacrosTest, public XmlTestTools +{ + OUString maDataPath; + + void testBasicElements(); + void testEmptyPopupItems(); + + Reference<container::XNameContainer> importFile(std::u16string_view sFileName); + void exportToFile(std::u16string_view sFileName, + Reference<container::XNameContainer> const& xDialogModel); + +public: + virtual void setUp() override; + + virtual void registerNamespaces(xmlXPathContextPtr& pXmlXpathCtx) override + { + xmlXPathRegisterNs(pXmlXpathCtx, BAD_CAST("dlg"), + BAD_CAST("http://openoffice.org/2000/dialog")); + xmlXPathRegisterNs(pXmlXpathCtx, BAD_CAST("script"), + BAD_CAST("http://openoffice.org/2000/script")); + } + CPPUNIT_TEST_SUITE(XmlScriptTest); + CPPUNIT_TEST(testBasicElements); + CPPUNIT_TEST(testEmptyPopupItems); + CPPUNIT_TEST_SUITE_END(); +}; + +void XmlScriptTest::setUp() +{ + test::BootstrapFixture::setUp(); + maDataPath = "/xmlscript/qa/cppunit/data/"; + + mxDesktop.set(frame::Desktop::create(mxComponentContext)); +} + +Reference<container::XNameContainer> XmlScriptTest::importFile(std::u16string_view sFileName) +{ + OUString sFullName = m_directories.getURLFromSrc(maDataPath) + sFileName; + osl::File aFile(sFullName); + CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_None, aFile.open(osl_File_OpenFlag_Read)); + sal_uInt64 nBytes; + aFile.getSize(nBytes); + std::vector<sal_Int8> bytes(nBytes); + sal_uInt64 nBytesRead; + aFile.read(bytes.data(), nBytes, nBytesRead); + CPPUNIT_ASSERT_EQUAL_MESSAGE("File not read correctly", nBytes, nBytesRead); + aFile.close(); + + Reference<container::XNameContainer> xDialogModel( + mxComponentContext->getServiceManager()->createInstanceWithContext( + "com.sun.star.awt.UnoControlDialogModel", mxComponentContext), + UNO_QUERY); + + ::xmlscript::importDialogModel(::xmlscript::createInputStream(std::move(bytes)), xDialogModel, + mxComponentContext, nullptr); + + Reference<lang::XComponent> xDialogModelComp(xDialogModel, UNO_QUERY); + if (xDialogModelComp) + xDialogModelComp->dispose(); + + return xDialogModel; +} + +void XmlScriptTest::exportToFile(std::u16string_view sURL, + Reference<container::XNameContainer> const& xDialogModel) +{ + Reference<io::XInputStreamProvider> xProvider( + ::xmlscript::exportDialogModel(xDialogModel, mxComponentContext, nullptr)); + Reference<io::XInputStream> xStream(xProvider->createInputStream()); + + Sequence<sal_Int8> bytes; + sal_Int32 nRead = xStream->readBytes(bytes, xStream->available()); + for (;;) + { + Sequence<sal_Int8> readBytes; + nRead = xStream->readBytes(readBytes, 1024); + if (!nRead) + break; + + sal_Int32 nPos = bytes.getLength(); + bytes.realloc(nPos + nRead); + memcpy(bytes.getArray() + nPos, readBytes.getConstArray(), static_cast<sal_uInt32>(nRead)); + } + + osl::File aFile(OUString{ sURL }); + CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_None, aFile.open(osl_File_OpenFlag_Write)); + sal_uInt64 nBytesWritten; + CPPUNIT_ASSERT_EQUAL(osl::FileBase::E_None, + aFile.write(bytes.getConstArray(), bytes.getLength(), nBytesWritten)); + aFile.close(); +} + +void XmlScriptTest::testBasicElements() +{ + // Import + Reference<container::XNameContainer> xModel(importFile(u"test.xml")); + CPPUNIT_ASSERT(xModel.is()); + + // Export + utl::TempFileNamed aTempFile; + aTempFile.EnableKillingFile(); + exportToFile(aTempFile.GetURL(), xModel); + + // Parse & check + xmlDocUniquePtr pXmlDoc = parseXml(aTempFile); + CPPUNIT_ASSERT(pXmlDoc); + + // Ensure we have all elements + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:button[1]"_ostr, "id"_ostr, "button1"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:button[2]"_ostr, "id"_ostr, "button3"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:checkbox[1]"_ostr, "id"_ostr, "check1"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:checkbox[2]"_ostr, "id"_ostr, "check2"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:checkbox[3]"_ostr, "id"_ostr, "check3"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:menulist[1]"_ostr, "id"_ostr, "list1"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:menulist[2]"_ostr, "id"_ostr, "list2"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:combobox[1]"_ostr, "id"_ostr, "combo1"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:radiogroup[1]/dlg:radio[1]"_ostr, + "id"_ostr, "radio1"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:radiogroup[1]/dlg:radio[2]"_ostr, + "id"_ostr, "radio2"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:radiogroup[1]/dlg:radio[3]"_ostr, + "id"_ostr, "radio3"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:titledbox[1]"_ostr, "id"_ostr, + "groupbox1"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:radiogroup[2]/dlg:radio[1]"_ostr, + "id"_ostr, "radio5"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:radiogroup[2]/dlg:radio[2]"_ostr, + "id"_ostr, "radio7"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:radiogroup[2]/dlg:radio[3]"_ostr, + "id"_ostr, "radio8"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:text[1]"_ostr, "id"_ostr, "fixed1"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:textfield[1]"_ostr, "id"_ostr, + "field1"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:textfield[2]"_ostr, "id"_ostr, + "field2"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:img[1]"_ostr, "id"_ostr, "image1"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:filecontrol[1]"_ostr, "id"_ostr, + "file1"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:datefield[1]"_ostr, "id"_ostr, + "datefield1"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:timefield[1]"_ostr, "id"_ostr, "time1"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:patternfield[1]"_ostr, "id"_ostr, + "pattern1"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:currencyfield[1]"_ostr, "id"_ostr, + "currency1"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:numericfield[1]"_ostr, "id"_ostr, + "numeric1"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:fixedline[1]"_ostr, "id"_ostr, + "fixedline1"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:progressmeter[1]"_ostr, "id"_ostr, + "progress1"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:scrollbar[1]"_ostr, "id"_ostr, + "scrollbar1"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:formattedfield[1]"_ostr, "id"_ostr, + "ffield0"); + assertXPath(pXmlDoc, "/dlg:window/dlg:bulletinboard/dlg:formattedfield[2]"_ostr, "id"_ostr, + "ffield1"); + + Reference<lang::XComponent> xDialogModelComp(xModel, UNO_QUERY); + if (xDialogModelComp) + xDialogModelComp->dispose(); +} + +void XmlScriptTest::testEmptyPopupItems() +{ + // Import + Reference<container::XNameContainer> xModel(importFile(u"EmptyPopupItems.xdl")); + CPPUNIT_ASSERT(xModel.is()); + + // Export + utl::TempFileNamed aTempFile; + aTempFile.EnableKillingFile(); + exportToFile(aTempFile.GetURL(), xModel); + + // Parse & check + xmlDocUniquePtr pXmlDoc = parseXml(aTempFile); + CPPUNIT_ASSERT(pXmlDoc); + + // Ensure we have 3 items in combobox after import/export and second one is empty + assertXPath(pXmlDoc, + "/dlg:window/dlg:bulletinboard/dlg:combobox/dlg:menupopup/dlg:menuitem[1]"_ostr, + "value"_ostr, "Eintrag1"); + assertXPath(pXmlDoc, + "/dlg:window/dlg:bulletinboard/dlg:combobox/dlg:menupopup/dlg:menuitem[2]"_ostr, + "value"_ostr, ""); + assertXPath(pXmlDoc, + "/dlg:window/dlg:bulletinboard/dlg:combobox/dlg:menupopup/dlg:menuitem[3]"_ostr, + "value"_ostr, "Eintrag2"); +} + +CPPUNIT_TEST_SUITE_REGISTRATION(XmlScriptTest); + +CPPUNIT_PLUGIN_IMPLEMENT(); + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |