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 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
/*
SPDX-FileCopyrightText: 2012 Miha Čančula <miha@noughmad.eu>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "phpunitprovider.h"
#include "phpunittestsuite.h"
#include "testproviderdebug.h"
#include <interfaces/icore.h>
#include <interfaces/iprojectcontroller.h>
#include <interfaces/iproject.h>
#include <interfaces/ilanguagecontroller.h>
#include <interfaces/itestcontroller.h>
#include <project/projectmodel.h>
#include <language/duchain/duchainlock.h>
#include <language/duchain/duchain.h>
#include <language/duchain/declaration.h>
#include <language/duchain/classdeclaration.h>
#include <language/duchain/duchainutils.h>
#include <KPluginFactory>
#include <KAboutData>
#include <KLocalizedString>
#include <QVariant>
#include <QTimer>
#include <QStandardPaths>
using namespace KDevelop;
K_PLUGIN_FACTORY_WITH_JSON(PhpUnitProviderFactory, "kdevphpunitprovider.json",
registerPlugin<PhpUnitProvider>(); )
PhpUnitProvider::PhpUnitProvider(QObject* parent, const KPluginMetaData& metaData, const QVariantList& args)
: IPlugin(QStringLiteral("kdevphpunitprovider"), parent, metaData)
{
Q_UNUSED(args);
QString file = QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("kdevphpsupport/phpunitdeclarations.php"));
m_phpUnitDeclarationsFile = IndexedString(file);
DUChain::self()->updateContextForUrl(m_phpUnitDeclarationsFile, KDevelop::TopDUContext::AllDeclarationsContextsAndUses, this, -10);
connect(DUChain::self(), &DUChain::updateReady,
this, &PhpUnitProvider::updateReady);
}
void PhpUnitProvider::updateReady(const IndexedString& document, const ReferencedTopDUContext& context)
{
Q_UNUSED(document);
DUChainReadLocker lock;
if (!context) {
qCDebug(TESTPROVIDER) << "Received null context for file: " << document;
return;
}
if (document == m_phpUnitDeclarationsFile) {
QVector<Declaration*> declarations = context.data()->localDeclarations();
if (declarations.isEmpty()) {
qCDebug(TESTPROVIDER) << "Update of the internal test file found no suitable declarations";
return;
}
m_testCaseDeclaration = IndexedDeclaration(declarations.first());
qCDebug(TESTPROVIDER) << "Found declaration" << declarations.first()->toString();
foreach (const ReferencedTopDUContext& context, m_pendingContexts) {
processContext(context);
}
} else {
if (!m_testCaseDeclaration.isValid()) {
m_pendingContexts << context;
} else {
processContext(context);
}
}
}
void PhpUnitProvider::processContext(ReferencedTopDUContext referencedContext)
{
TopDUContext* context = referencedContext.data();
if (!context) {
qCDebug(TESTPROVIDER) << "context went away";
return;
}
Declaration* testCase = m_testCaseDeclaration.data();
if (!testCase) {
qCDebug(TESTPROVIDER) << "test case declaration went away";
return;
}
qCDebug(TESTPROVIDER) << "Number of declarations" << context->localDeclarations().size();
foreach (Declaration* declaration, context->localDeclarations())
{
ClassDeclaration* classDeclaration = dynamic_cast<ClassDeclaration*>(declaration);
if (!classDeclaration || classDeclaration->classModifier() & ClassDeclarationData::Abstract || !classDeclaration->internalContext())
{
continue;
}
if (classDeclaration->isPublicBaseClass(static_cast<ClassDeclaration*>(m_testCaseDeclaration.data()), context)) {
processTestCaseDeclaration(declaration);
}
}
}
void PhpUnitProvider::processTestCaseDeclaration(Declaration* d)
{
QString name = d->identifier().toString();
QUrl url = d->url().toUrl();
IProject* project = ICore::self()->projectController()->findProjectForUrl(url);
qCDebug(TESTPROVIDER) << name << url << (project ? project->name() : QStringLiteral("No project"));
if (!project)
{
return;
}
QStringList testCases;
QHash<QString, IndexedDeclaration> testCaseDeclarations;
ClassDeclaration* classDeclaration = dynamic_cast<ClassDeclaration*>(d);
if (!classDeclaration)
{
return;
}
if (!(classDeclaration->classModifier() & ClassDeclarationData::Abstract))
{
foreach (Declaration* member, classDeclaration->internalContext()->localDeclarations())
{
qCDebug(TESTPROVIDER) << "Trying test case declaration" << member;
if (member->isFunctionDeclaration() && member->identifier().toString().startsWith(QLatin1String("test")))
{
const QString caseName = member->identifier().toString();
testCases << caseName;
testCaseDeclarations.insert(caseName, IndexedDeclaration(member));
}
}
if (!testCaseDeclarations.isEmpty())
{
// NOTE: No declarations usually means the class in abstract
// This should be resolved by the classDeclaration->isAbstract() check
// But that always returns false.
ICore::self()->testController()->addTestSuite(new PhpUnitTestSuite(name, url, IndexedDeclaration(classDeclaration), testCases, testCaseDeclarations, project));
return;
}
}
uint steps = 100;
foreach (Declaration* inheriter, DUChainUtils::inheriters(d, steps))
{
processTestCaseDeclaration(inheriter);
}
}
#include "phpunitprovider.moc"
#include "moc_phpunitprovider.cpp"
|