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
|
/*
SPDX-FileCopyrightText: 2006 Hamish Rodda <rodda@kde.org>
SPDX-FileCopyrightText: 2008 Niko Sams <niko.sams@gmail.com>
SPDX-License-Identifier: LGPL-2.0-only
*/
#ifndef DUCHAINTESTBASE_H
#define DUCHAINTESTBASE_H
#include <QObject>
#include <QByteArray>
#include <QTest>
#include <language/duchain/duchain.h>
#include <language/duchain/duchainlock.h>
#include <tests/testhelpers.h>
#include "../completion/item.h"
namespace KDevelop
{
class TopDUContext;
}
namespace Php
{
/**
* Manage pointer to TopDUContexts and release them properly, even if a test fails
*/
struct DUChainReleaser {
DUChainReleaser(KDevelop::TopDUContext* top) : m_top(top) {}
~DUChainReleaser() {
KDevelop::DUChainWriteLocker lock(KDevelop::DUChain::lock());
KDevelop::DUChain::self()->removeDocumentChain(m_top);
}
KDevelop::TopDUContext* m_top;
};
class DUChainTestBase : public QObject
{
Q_OBJECT
public:
enum DumpArea {
DumpNone = 0,
DumpAST = 1,
DumpDUChain = 2,
DumpType = 4,
DumpAll = 7
};
Q_DECLARE_FLAGS(DumpAreas, DumpArea)
public Q_SLOTS:
void initTestCase();
void cleanupTestCase();
protected:
KDevelop::TopDUContext* parse(const QByteArray& unit,
DUChainTestBase::DumpAreas dump = DumpAreas(DumpAll),
QUrl url = {}, KDevelop::TopDUContext* update = nullptr);
KDevelop::TopDUContext* parseAdditionalFile(const KDevelop::IndexedString& fileName, const QByteArray& contents);
KDevelop::CompletionTreeItemPointer searchDeclaration(QList<KDevelop::CompletionTreeItemPointer> items, KDevelop::Declaration* declaration);
bool hasImportedParentContext(KDevelop::TopDUContext* top, KDevelop::DUContext* lookingFor);
};
Q_DECLARE_OPERATORS_FOR_FLAGS(DUChainTestBase::DumpAreas)
}
#endif
|