1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
/***************************************************************************
* Copyright 2008 Andreas Pakulat <apaku@gmx.de> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Library General Public License as *
* published by the Free Software Foundation; either version 2 of the *
* License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#ifndef KDEVPLATFORM_KDEVPLATFORMTESTCORE_H
#define KDEVPLATFORM_KDEVPLATFORMTESTCORE_H
#include "testsexport.h"
#include <shell/core.h>
namespace KDevelop {
class SessionController;
class RunController;
class PluginController;
class DocumentController;
class PartController;
class ProjectController;
class UiController;
/**
* \class TestCore testcore.h
*
* This is an ICore implementation which should be used inside unit tests.
* By default a temporary session named after currently running application
* will be instantiated. Furthermore the mainwindow - if created - will be
* hidden as no user interaction should take place in a unit test.
*
* The simplest code which should suffice for most use cases is:
*
* \code
* MyUnitTest::initTestCase() {
* AutoTestShell::init()
* TestCore::initialize();
* }
* MyUnitTest::cleanupTestCase() {
* TestCore::shutdown();
* }
* \endcode
*
* This class also allows one to replace certain or all parts of the
* shell library with custom implementation to make it possible
* to write plugin tests more easily.
*
* The usage is then as follows:
* \code
* TestCore* core = new TestCore();
* //replace plugin controller or similar
* core->setPluginController( new MyCustomPluginController( core ) );
* //initialize
* core->initialize(Core::Default);
* ... //test code
* // if you want to cleanup manually:
* core->cleanup();
* delete core;
* \endcode
*
* @note It is important to call initialize and cleanup, else the controllers
* won't work properly.
*/
class KDEVPLATFORMTESTS_EXPORT TestCore
: public Core
{
Q_OBJECT
public:
TestCore();
/**
* Initialize the test core with the given setup @p mode.
* Optionally launch with a user given session.
*
* @p mode Use @c Core::NoUi when your unit test does not require any UI
* NOTE: Even in @c Default mode the mainwindow will be hidden,
* as unit tests should not depend on user interaction.
* @p session By default a temporary session will be created called "test-%appname".
* If @p session is not empty, a non-temporary session with the given name
* will be opened.
* @return the initialized test core
*/
static TestCore* initialize(Core::Setup mode = Core::Default, const QString& session = {});
/**
* Calls @c cleanup() on the current TestCore instance,
* then deletes the core.
*
* @NOTE: It is important to call this in e.g. @c cleanupTestSuite()
* otherwise the core will be leaked, no proper cleanup will take place
* and e.g. temporary sessions not properly deleted.
*/
static void shutdown();
/**
* Fakes a shutdown without actually doing the shutdown.
*/
void setShuttingDown(bool shuttingDown);
void setSessionController(SessionController*);
void setPluginController(PluginController*);
void setRunController(RunController*);
void setDocumentController(DocumentController*);
void setPartController(PartController*);
void setProjectController(ProjectController*);
void setLanguageController(LanguageController*);
void setUiController(UiController*);
private:
void initializeNonStatic(Core::Setup mode, const QString& session);
};
}
#endif
|