diff options
author | Armin Le Grand <Armin.Le.Grand@cib.de> | 2016-07-22 14:51:43 +0200 |
---|---|---|
committer | Thorsten Behrens <Thorsten.Behrens@CIB.de> | 2016-08-18 02:39:12 +0200 |
commit | fd73a4b6ea4ba4ff9f6e513b0f812f38c8414c34 (patch) | |
tree | 600316f98250069e7f264a9cb23ca2b767c22259 /cui/qa/unit | |
parent | 62b84ba934d8fafe05ffc76ed73d05b450dc714f (diff) |
screenshots: add dialog test cases for cui
Only one dialog had to be disabled, some others look not
very useful
Change-Id: Icbf46365e1824ea320ce721b8c783883336e9278
Diffstat (limited to 'cui/qa/unit')
-rw-r--r-- | cui/qa/unit/cui-dialogs-test.cxx | 150 | ||||
-rw-r--r-- | cui/qa/unit/data/cui-dialogs-test.txt | 226 |
2 files changed, 376 insertions, 0 deletions
diff --git a/cui/qa/unit/cui-dialogs-test.cxx b/cui/qa/unit/cui-dialogs-test.cxx new file mode 100644 index 000000000000..0d903e349226 --- /dev/null +++ b/cui/qa/unit/cui-dialogs-test.cxx @@ -0,0 +1,150 @@ +/* -*- 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 <test/screenshot_test.hxx> +#include <rtl/strbuf.hxx> +#include <osl/file.hxx> +#include <sfx2/app.hxx> +#include <vcl/abstdlg.hxx> + +using namespace ::com::sun::star; + +/// Test opening a dialog in cui +class CuiDialogsTest : public ScreenshotTest +{ +private: + /// helper method to populate KnownDialogs, called in setUp(). Needs to be + /// written and has to add entries to KnownDialogs + virtual void registerKnownDialogsByID(mapType& rKnownDialogs) override; + + /// dialog creation for known dialogs by ID. Has to be implemented for + /// each registered known dialog + virtual VclAbstractDialog* createDialogByID(sal_uInt32 nID) override; + +public: + CuiDialogsTest(); + virtual ~CuiDialogsTest(); + + virtual void setUp() override; + + // try to open a dialog + void openAnyDialog(); + + CPPUNIT_TEST_SUITE(CuiDialogsTest); + CPPUNIT_TEST(openAnyDialog); + CPPUNIT_TEST_SUITE_END(); +}; + +CuiDialogsTest::CuiDialogsTest() +{ +} + +CuiDialogsTest::~CuiDialogsTest() +{ +} + +void CuiDialogsTest::setUp() +{ + ScreenshotTest::setUp(); +} + +void CuiDialogsTest::registerKnownDialogsByID(mapType& /*rKnownDialogs*/) +{ + // fill map of known dilogs +} + +VclAbstractDialog* CuiDialogsTest::createDialogByID(sal_uInt32 /*nID*/) +{ + return nullptr; +} + +void CuiDialogsTest::openAnyDialog() +{ + /// example how to process an input file containing the UXMLDescriptions of the dialogs + /// to dump + if (true) + { + test::Directories aDirectories; + OUString aURL = aDirectories.getURLFromSrc("cui/qa/unit/data/cui-dialogs-test.txt"); + SvFileStream aStream(aURL, StreamMode::READ); + OString aNextUIFile; + const OString aComment("#"); + + while (aStream.ReadLine(aNextUIFile)) + { + if (!aNextUIFile.isEmpty() && !aNextUIFile.startsWith(aComment)) + { + // first check if it's a known dialog + std::unique_ptr<VclAbstractDialog> pDlg(createDialogByName(aNextUIFile)); + + if (pDlg) + { + // known dialog, dump screenshot to path + dumpDialogToPath(*pDlg); + } + else + { + // unknown dialog, try fallback to generic created + // VclBuilder-generated instance. Keep in mind that Dialogs + // using this mechanism will probably not be layouted well + // since the setup/initialization part is missing. Thus, + // only use for fallback when only the UI file is available. + dumpDialogToPath(aNextUIFile); + } + } + } + } + + /// example how to dump all known dialogs + if (false) + { + // example for SfxTabDialog: 5 -> "modules/sdraw/ui/drawpagedialog.ui" + // example for TabDialog: 22 -> "modules/simpress/ui/headerfooterdialog.ui" + // example for self-adapted wizard: 0 -> "modules/simpress/ui/publishingdialog.ui" + for (mapType::const_iterator i = getKnownDialogs().begin(); i != getKnownDialogs().end(); i++) + { + std::unique_ptr<VclAbstractDialog> pDlg(createDialogByID((*i).second)); + + if (pDlg) + { + // known dialog, dump screenshot to path + dumpDialogToPath(*pDlg); + } + else + { + // unknown dialog, should not happen in this basic loop. + // You have probably forgotten to add a case and + // implementastion to createDialogByID, please do this + } + } + } + + /// example how to dump a dialog using fallback functionality + if (false) + { + // unknown dialog, try fallback to generic created + // VclBuilder-generated instance. Keep in mind that Dialogs + // using this mechanism will probably not be layouted well + // since the setup/initialization part is missing. Thus, + // only use for fallback when only the UI file is available. + // + // Take any example here, it's only for demonstration - using + // even a known one to demonstrate the fallback possibility + const OString aUIXMLDescription("modules/swriter/ui/abstractdialog.ui"); + + dumpDialogToPath(aUIXMLDescription); + } +} + +CPPUNIT_TEST_SUITE_REGISTRATION(CuiDialogsTest); + +CPPUNIT_PLUGIN_IMPLEMENT(); + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/cui/qa/unit/data/cui-dialogs-test.txt b/cui/qa/unit/data/cui-dialogs-test.txt new file mode 100644 index 000000000000..4e1fc44fe26b --- /dev/null +++ b/cui/qa/unit/data/cui-dialogs-test.txt @@ -0,0 +1,226 @@ +# -*- 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/. +# + +# This file contains all dialogs that the unit tests in the module +# will work on if it is in script mode. It will read one-by-one, +# try to open it and create a screenshot that will be saved in +# workdir/screenshots using the pattern of the ui-file name. +# +# Syntax: +# - emty lines are allowed +# - lines starting with '#' are treated as comment +# - all other lines should contain a *.ui filename in the same +# notation as in the dialog constructors (see code) + +# +# The 'known' dialogs which have a hard-coded representation +# in registerKnownDialogsByID/createDialogByID +# + +# No known dialogs in cui for now + +# +# Dialogs without a hard-coded representation. These will +# be visualized using a fallback based on VclBuilder +# + +# currently deactivated, leads to problems and the test to not work +# This is typically a hint that these should be hard-coded in the +# test case since they need some document and model data to work +# +# cui/ui/bitmaptabpage.ui + +cui/ui/customizedialog.ui +cui/ui/gallerythemedialog.ui +cui/ui/formatcellsdialog.ui +cui/ui/searchformatdialog.ui +cui/ui/autocorrectdialog.ui +cui/ui/borderareatransparencydialog.ui +cui/ui/borderbackgrounddialog.ui +cui/ui/calloutdialog.ui +cui/ui/areadialog.ui +cui/ui/linedialog.ui +cui/ui/textdialog.ui +cui/ui/positionsizedialog.ui +cui/ui/accelconfigpage.ui +cui/ui/menuassignpage.ui +cui/ui/gallerygeneralpage.ui +cui/ui/galleryfilespage.ui +cui/ui/connpooloptions.ui +cui/ui/dbregisterpage.ui +cui/ui/optfontspage.ui +cui/ui/optaccessibilitypage.ui +cui/ui/optasianpage.ui +cui/ui/optbasicidepage.ui +cui/ui/optchartcolorspage.ui +cui/ui/optappearancepage.ui +cui/ui/optctlpage.ui +cui/ui/optfltrpage.ui +cui/ui/optfltrembedpage.ui +cui/ui/optgeneralpage.ui +cui/ui/optviewpage.ui +cui/ui/optlanguagespage.ui +cui/ui/optuserpage.ui +cui/ui/opthtmlpage.ui +cui/ui/optproxypage.ui +cui/ui/optsecuritypage.ui +cui/ui/optemailpage.ui +cui/ui/optadvancedpage.ui +cui/ui/optjsearchpage.ui +cui/ui/optlingupage.ui +cui/ui/optmemorypage.ui +cui/ui/optopenclpage.ui +cui/ui/optpathspage.ui +cui/ui/optsavepage.ui +cui/ui/optonlineupdatepage.ui +cui/ui/personalization_tab.ui +cui/ui/cellalignment.ui +cui/ui/acoroptionspage.ui +cui/ui/applyautofmtpage.ui +cui/ui/acorreplacepage.ui +cui/ui/acorexceptpage.ui +cui/ui/applylocalizedpage.ui +cui/ui/wordcompletionpage.ui +cui/ui/smarttagoptionspage.ui +cui/ui/borderpage.ui +cui/ui/connectortabpage.ui +cui/ui/croppage.ui +cui/ui/calloutpage.ui +cui/ui/eventassignpage.ui +cui/ui/numberingformatpage.ui +cui/ui/picknumberingpage.ui +cui/ui/pickbulletpage.ui +cui/ui/pickoutlinepage.ui +cui/ui/pickgraphicpage.ui +cui/ui/numberingoptionspage.ui +cui/ui/numberingpositionpage.ui +cui/ui/pageformatpage.ui +cui/ui/paraindentspacing.ui +cui/ui/paragalignpage.ui +cui/ui/textflowpage.ui +cui/ui/asiantypography.ui +cui/ui/swpossizepage.ui +cui/ui/paratabspage.ui +cui/ui/textanimtabpage.ui +cui/ui/colorpage.ui +cui/ui/gradientpage.ui +cui/ui/linestyletabpage.ui +cui/ui/lineendstabpage.ui +cui/ui/eventsconfigpage.ui +cui/ui/macroassignpage.ui +cui/ui/backgroundpage.ui +cui/ui/dimensionlinestabpage.ui +cui/ui/textattrtabpage.ui +cui/ui/areatabpage.ui +cui/ui/hatchpage.ui +cui/ui/linetabpage.ui +cui/ui/shadowtabpage.ui +cui/ui/rotationtabpage.ui +cui/ui/slantcornertabpage.ui +cui/ui/possizetabpage.ui +cui/ui/transparencytabpage.ui +cui/ui/distributionpage.ui +cui/ui/hyperlinknewdocpage.ui +cui/ui/hyperlinkdocpage.ui +cui/ui/hyperlinkinternetpage.ui +cui/ui/hyperlinkmailpage.ui +cui/ui/charnamepage.ui +cui/ui/effectspage.ui +cui/ui/positionpage.ui +cui/ui/twolinespage.ui +cui/ui/movemenu.ui +cui/ui/newtoolbardialog.ui +cui/ui/iconselectordialog.ui +cui/ui/iconchangedialog.ui +cui/ui/assigncomponentdialog.ui +cui/ui/aboutdialog.ui +cui/ui/colorpickerdialog.ui +cui/ui/specialcharacters.ui +cui/ui/fmsearchdialog.ui +cui/ui/gallerysearchprogress.ui +cui/ui/galleryapplyprogress.ui +cui/ui/galleryupdateprogress.ui +cui/ui/gallerytitledialog.ui +cui/ui/gallerythemeiddialog.ui +cui/ui/cuiimapdlg.ui +cui/ui/recordnumberdialog.ui +cui/ui/namedialog.ui +cui/ui/objectnamedialog.ui +cui/ui/objecttitledescdialog.ui +cui/ui/messbox.ui +cui/ui/hangulhanjaconversiondialog.ui +cui/ui/hangulhanjaoptdialog.ui +cui/ui/hangulhanjaadddialog.ui +cui/ui/hangulhanjaeditdictdialog.ui +cui/ui/hyperlinkmarkdialog.ui +cui/ui/hyphenate.ui +cui/ui/insertrowcolumn.ui +cui/ui/baselinksdialog.ui +cui/ui/multipathdialog.ui +cui/ui/selectpathdialog.ui +cui/ui/newtabledialog.ui +cui/ui/password.ui +cui/ui/pastespecial.ui +cui/ui/comment.ui +cui/ui/newlibdialog.ui +cui/ui/scriptorganizer.ui +cui/ui/showcoldialog.ui +cui/ui/searchattrdialog.ui +cui/ui/similaritysearchdialog.ui +cui/ui/zoomdialog.ui +cui/ui/certdialog.ui +cui/ui/databaselinkdialog.ui +cui/ui/aboutconfigvaluedialog.ui +cui/ui/optnewdictionarydialog.ui +cui/ui/editdictionarydialog.ui +cui/ui/javastartparametersdialog.ui +cui/ui/javaclasspathdialog.ui +cui/ui/breaknumberoption.ui +cui/ui/editmodulesdialog.ui +cui/ui/blackorwhitelistentrydialog.ui +cui/ui/select_persona_dialog.ui +cui/ui/securityoptionsdialog.ui +cui/ui/optionsdialog.ui +cui/ui/optionsdialog.ui +cui/ui/tsaurldialog.ui +cui/ui/storedwebconnectiondialog.ui +cui/ui/percentdialog.ui +cui/ui/macroassigndialog.ui +cui/ui/spelloptionsdialog.ui +cui/ui/distributiondialog.ui +cui/ui/eventassigndialog.ui +cui/ui/mosaicdialog.ui +cui/ui/smoothdialog.ui +cui/ui/solarizedialog.ui +cui/ui/agingdialog.ui +cui/ui/posterdialog.ui +cui/ui/embossdialog.ui +cui/ui/hyperlinkdialog.ui +cui/ui/insertoleobject.ui +cui/ui/insertfloatingframe.ui +cui/ui/splitcellsdialog.ui +cui/ui/thesaurus.ui +cui/ui/macroselectordialog.ui +cui/ui/spellingdialog.ui +cui/ui/aboutconfigdialog.ui +cui/ui/queryupdategalleryfilelistdialog.ui +cui/ui/querydeletechartcolordialog.ui +cui/ui/querydeletedictionarydialog.ui +cui/ui/queryduplicatedialog.ui +cui/ui/querynoloadedfiledialog.ui +cui/ui/querydeletebitmapdialog.ui +cui/ui/querysavelistdialog.ui +cui/ui/querynosavefiledialog.ui +cui/ui/querydeletecolordialog.ui +cui/ui/querydeletegradientdialog.ui +cui/ui/querydeletehatchdialog.ui +cui/ui/querydeletelinestyledialog.ui +cui/ui/querychangelineenddialog.ui +cui/ui/querydeletelineenddialog.ui +cui/ui/colorconfigwin.ui |