/*============================================================================= Library: CTK Copyright (c) 2010 German Cancer Research Center, Division of Medical and Biological Informatics Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =============================================================================*/ #include #include #include #include #include #include #include #include #include #include #include #include "ctkTestSuiteInterface.h" class TestRunner : public QThread { public: TestRunner(ctkPluginContext* context, long testPluginId, int argc, char** argv) : context(context), testPluginId(testPluginId), argc(argc), argv(argv) { } void run() { // start the main test plugin which registers the test suites (QObject classes) QSharedPointer fwTest = context->getPlugin(testPluginId); fwTest->start(); QList refs = context->getServiceReferences(); int result = 0; foreach(ctkServiceReference ref, refs) { result += QTest::qExec(context->getService(ref), argc, argv); if (result > 0) break; } if (result > 0) QCoreApplication::exit(result); } private: ctkPluginContext* context; long testPluginId; int argc; char** argv; }; int main(int argc, char** argv) { QCoreApplication app(argc, argv); app.setOrganizationName("CTK"); app.setOrganizationDomain("commontk.org"); app.setApplicationName("ctkPluginFrameworkCppTests"); QString pluginDir; #ifdef CMAKE_INTDIR pluginDir = qApp->applicationDirPath() + "/../test_plugins/" CMAKE_INTDIR "/"; #else pluginDir = qApp->applicationDirPath() + "/test_plugins/"; #endif QApplication::addLibraryPath(pluginDir); ctkProperties fwProps; fwProps.insert(ctkPluginConstants::FRAMEWORK_STORAGE_CLEAN, ctkPluginConstants::FRAMEWORK_STORAGE_CLEAN_ONFIRSTINIT); fwProps.insert("pluginfw.testDir", pluginDir); ctkPluginFrameworkFactory fwFactory(fwProps); QSharedPointer framework = fwFactory.getFramework(); framework->start(); ctkPluginContext* context = framework->getPluginContext(); long fwTestPluginId = -1; QStringList libFilter; libFilter << "*.dll" << "*.so" << "*.dylib"; QDirIterator dirIter(pluginDir, libFilter, QDir::Files); while(dirIter.hasNext()) { dirIter.next(); if (dirIter.fileName().contains("org_commontk_pluginfwtest")) { try { fwTestPluginId = context->installPlugin(QUrl::fromLocalFile(dirIter.filePath()).toString())->getPluginId(); break; } catch (const ctkPluginException& e) { qCritical() << e.what(); } } } if (fwTestPluginId < 0) { qCritical() << "Could not find the plugin framework test plugin: org.commontk.pluginfwtest"; } // QList refs = context->getServiceReferences("ctkTestSuiteInterface"); // int result = 0; // foreach(ctkServiceReference ref, refs) // { // result = QTest::qExec(context->getService(ref), argc, argv); // } // return result; TestRunner runner(context, fwTestPluginId, argc, argv); runner.connect(&runner, SIGNAL(finished()), &app, SLOT(quit())); runner.start(); return app.exec(); }