2016-07-21 09:12:47 -05:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2016-06-30 15:39:28 -05:00
|
|
|
/*
|
|
|
|
* 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/screenshot_test.hxx"
|
|
|
|
|
|
|
|
#include <com/sun/star/util/XCloseable.hpp>
|
|
|
|
#include <com/sun/star/frame/Desktop.hpp>
|
|
|
|
#include <comphelper/processfactory.hxx>
|
|
|
|
#include <vcl/abstdlg.hxx>
|
|
|
|
#include <vcl/pngwrite.hxx>
|
2016-07-15 08:25:59 -05:00
|
|
|
#include <vcl/svapp.hxx>
|
2016-06-30 15:39:28 -05:00
|
|
|
|
|
|
|
namespace {
|
2016-07-15 08:25:59 -05:00
|
|
|
void splitHelpId( const OString& rHelpId, OUString& rDirname, OUString &rBasename )
|
2016-06-30 15:39:28 -05:00
|
|
|
{
|
|
|
|
sal_Int32 nIndex = rHelpId.lastIndexOf( '/' );
|
|
|
|
|
|
|
|
if( nIndex > 0 )
|
|
|
|
rDirname = OStringToOUString( rHelpId.copy( 0, nIndex ), RTL_TEXTENCODING_UTF8 );
|
|
|
|
|
|
|
|
if( rHelpId.getLength() > nIndex+1 )
|
|
|
|
rBasename= OStringToOUString( rHelpId.copy( nIndex+1 ), RTL_TEXTENCODING_UTF8 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
using namespace css;
|
|
|
|
using namespace css::uno;
|
|
|
|
|
|
|
|
ScreenshotTest::ScreenshotTest()
|
2016-07-21 09:12:47 -05:00
|
|
|
: m_aScreenshotDirectory("/workdir/screenshots/"),
|
|
|
|
maKnownDialogs()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ScreenshotTest::~ScreenshotTest()
|
2016-06-30 15:39:28 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScreenshotTest::setUp()
|
|
|
|
{
|
|
|
|
test::BootstrapFixture::setUp();
|
|
|
|
|
|
|
|
mxDesktop = css::frame::Desktop::create( comphelper::getComponentContext(getMultiServiceFactory()) );
|
|
|
|
CPPUNIT_ASSERT_MESSAGE("no desktop!", mxDesktop.is());
|
|
|
|
|
|
|
|
osl::FileBase::RC err = osl::Directory::create( m_directories.getURLFromSrc( m_aScreenshotDirectory ) );
|
|
|
|
CPPUNIT_ASSERT_MESSAGE( "Failed to create screenshot directory", (err == osl::FileBase::E_None || err == osl::FileBase::E_EXIST) );
|
2016-07-21 09:12:47 -05:00
|
|
|
|
|
|
|
// initialize maKnownDialogs
|
|
|
|
if (maKnownDialogs.empty())
|
|
|
|
{
|
|
|
|
registerKnownDialogsByID(maKnownDialogs);
|
|
|
|
}
|
2016-06-30 15:39:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void ScreenshotTest::tearDown()
|
|
|
|
{
|
|
|
|
test::BootstrapFixture::tearDown();
|
|
|
|
}
|
|
|
|
|
2016-07-15 08:25:59 -05:00
|
|
|
void ScreenshotTest::implSaveScreenshot(const Bitmap& rScreenshot, const OString& rScreenshotId)
|
2016-06-30 15:39:28 -05:00
|
|
|
{
|
2016-07-15 08:25:59 -05:00
|
|
|
OUString aDirname, aBasename;
|
|
|
|
splitHelpId(rScreenshotId, aDirname, aBasename);
|
|
|
|
aDirname = m_aScreenshotDirectory + aDirname;
|
|
|
|
|
|
|
|
osl::FileBase::RC err = osl::Directory::createPath(m_directories.getURLFromSrc(aDirname));
|
|
|
|
CPPUNIT_ASSERT_MESSAGE(OUStringToOString("Failed to create " + aDirname, RTL_TEXTENCODING_UTF8).getStr(),
|
|
|
|
(err == osl::FileBase::E_None || err == osl::FileBase::E_EXIST));
|
|
|
|
|
|
|
|
OUString aFullPath = m_directories.getSrcRootPath() + aDirname + "/" + aBasename + ".png";
|
|
|
|
SvFileStream aNew(aFullPath, StreamMode::WRITE | StreamMode::TRUNC);
|
|
|
|
CPPUNIT_ASSERT_MESSAGE(OUStringToOString("Failed to open " + OUString::number(aNew.GetErrorCode()), RTL_TEXTENCODING_UTF8).getStr(), aNew.IsOpen());
|
|
|
|
|
|
|
|
vcl::PNGWriter aPNGWriter(rScreenshot);
|
|
|
|
aPNGWriter.Write(aNew);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScreenshotTest::saveScreenshot(VclAbstractDialog& rDialog)
|
|
|
|
{
|
|
|
|
const Bitmap aScreenshot(rDialog.createScreenshot());
|
|
|
|
|
|
|
|
if (!aScreenshot.IsEmpty())
|
|
|
|
{
|
|
|
|
const OString aScreenshotId = rDialog.GetScreenshotId();
|
|
|
|
|
|
|
|
if (!aScreenshotId.isEmpty())
|
|
|
|
{
|
|
|
|
implSaveScreenshot(aScreenshot, aScreenshotId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScreenshotTest::saveScreenshot(Dialog& rDialog)
|
|
|
|
{
|
|
|
|
const Bitmap aScreenshot(rDialog.createScreenshot());
|
|
|
|
|
|
|
|
if (!aScreenshot.IsEmpty())
|
|
|
|
{
|
|
|
|
const OString aScreenshotId = rDialog.GetScreenshotId();
|
|
|
|
|
|
|
|
if (!aScreenshotId.isEmpty())
|
|
|
|
{
|
|
|
|
implSaveScreenshot(aScreenshot, aScreenshotId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-21 09:12:47 -05:00
|
|
|
VclAbstractDialog* ScreenshotTest::createDialogByName(const OString& rName)
|
|
|
|
{
|
|
|
|
VclAbstractDialog* pRetval = nullptr;
|
|
|
|
const mapType::const_iterator aHit = maKnownDialogs.find(rName);
|
|
|
|
|
|
|
|
if (aHit != maKnownDialogs.end())
|
|
|
|
{
|
|
|
|
return createDialogByID((*aHit).second);
|
|
|
|
}
|
|
|
|
|
|
|
|
return pRetval;
|
|
|
|
}
|
|
|
|
|
2016-07-15 08:25:59 -05:00
|
|
|
void ScreenshotTest::dumpDialogToPath(VclAbstractDialog& rDialog)
|
|
|
|
{
|
|
|
|
const std::vector<OString> aPageDescriptions(rDialog.getAllPageUIXMLDescriptions());
|
|
|
|
|
|
|
|
if (aPageDescriptions.size())
|
|
|
|
{
|
|
|
|
for (sal_uInt32 a(0); a < aPageDescriptions.size(); a++)
|
|
|
|
{
|
|
|
|
if (rDialog.selectPageByUIXMLDescription(aPageDescriptions[a]))
|
|
|
|
{
|
|
|
|
saveScreenshot(rDialog);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CPPUNIT_ASSERT(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
saveScreenshot(rDialog);
|
|
|
|
}
|
2016-06-30 15:39:28 -05:00
|
|
|
}
|
|
|
|
|
2016-07-15 08:25:59 -05:00
|
|
|
void ScreenshotTest::dumpDialogToPath(Dialog& rDialog)
|
2016-06-30 15:39:28 -05:00
|
|
|
{
|
2016-07-15 08:25:59 -05:00
|
|
|
const std::vector<OString> aPageDescriptions(rDialog.getAllPageUIXMLDescriptions());
|
|
|
|
|
|
|
|
if (aPageDescriptions.size())
|
|
|
|
{
|
|
|
|
for (sal_uInt32 a(0); a < aPageDescriptions.size(); a++)
|
|
|
|
{
|
|
|
|
if (rDialog.selectPageByUIXMLDescription(aPageDescriptions[a]))
|
|
|
|
{
|
|
|
|
saveScreenshot(rDialog);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CPPUNIT_ASSERT(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
saveScreenshot(rDialog);
|
|
|
|
}
|
2016-06-30 15:39:28 -05:00
|
|
|
}
|
2016-07-15 08:25:59 -05:00
|
|
|
|
|
|
|
void ScreenshotTest::dumpDialogToPath(const OString& rUIXMLDescription)
|
|
|
|
{
|
|
|
|
if (!rUIXMLDescription.isEmpty())
|
|
|
|
{
|
|
|
|
VclPtrInstance<Dialog> pDialog(Application::GetDefDialogParent(), WB_STDDIALOG | WB_SIZEABLE, Dialog::InitFlag::NoParent);
|
|
|
|
|
2016-07-21 10:05:32 -05:00
|
|
|
{
|
|
|
|
VclBuilder aBuilder(pDialog, VclBuilderContainer::getUIRootDir(), OStringToOUString(rUIXMLDescription, RTL_TEXTENCODING_UTF8));
|
|
|
|
vcl::Window *pRoot = aBuilder.get_widget_root();
|
|
|
|
Dialog *pRealDialog = dynamic_cast<Dialog*>(pRoot);
|
|
|
|
|
|
|
|
if (!pRealDialog)
|
|
|
|
{
|
|
|
|
pRealDialog = pDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
pRealDialog->SetText("LibreOffice DialogScreenshot");
|
|
|
|
pRealDialog->SetStyle(pDialog->GetStyle() | WB_CLOSEABLE);
|
|
|
|
|
|
|
|
dumpDialogToPath(*pRealDialog);
|
|
|
|
}
|
2016-07-15 08:25:59 -05:00
|
|
|
|
2016-07-21 10:05:32 -05:00
|
|
|
pDialog.disposeAndClear();
|
2016-07-15 08:25:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-30 15:39:28 -05:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|