/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://www.qt.io/licensing. For further information ** use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #include "cpptoolsplugin.h" #include "cppmodelmanager.h" #include "cpptoolstestcase.h" #include "typehierarchybuilder.h" #include #include #include #include #include #include using namespace CPlusPlus; using namespace CppTools; using namespace CppTools::Internal; Q_DECLARE_METATYPE(QList) namespace { QString toString(const TypeHierarchy &hierarchy, int indent = 0) { Symbol *symbol = hierarchy.symbol(); QString result = QString(indent, QLatin1Char(' ')) + Overview().prettyName(symbol->name()) + QLatin1Char('\n'); QList sortedHierarchy = hierarchy.hierarchy(); Overview oo; Utils::sort(sortedHierarchy, [&oo](const TypeHierarchy &h1, const TypeHierarchy &h2) -> bool { return oo.prettyName(h1.symbol()->name()) < oo.prettyName(h2.symbol()->name()); }); foreach (TypeHierarchy childHierarchy, sortedHierarchy) result += toString(childHierarchy, indent + 2); return result; } class FindFirstClassInDocument: private SymbolVisitor { public: FindFirstClassInDocument() : m_clazz(0) {} Class *operator()(const Document::Ptr &document) { accept(document->globalNamespace()); return m_clazz; } private: bool preVisit(Symbol *symbol) { if (m_clazz) return false; if (Class *c = symbol->asClass()) { m_clazz = c; return false; } return true; } private: Class *m_clazz; }; class TypeHierarchyBuilderTestCase : public CppTools::Tests::TestCase { public: TypeHierarchyBuilderTestCase(const QList &documents, const QString &expectedHierarchy) { QVERIFY(succeededSoFar()); Tests::TemporaryDir temporaryDir; QVERIFY(temporaryDir.isValid()); QList documents_ = documents; // Write files QSet filePaths; for (int i = 0, size = documents_.size(); i < size; ++i) { documents_[i].setBaseDirectory(temporaryDir.path()); QVERIFY(documents_[i].writeToDisk()); filePaths << documents_[i].filePath(); } // Parse files QVERIFY(parseFiles(filePaths)); const Snapshot snapshot = globalSnapshot(); // Get class for which to generate the hierarchy const Document::Ptr firstDocument = snapshot.document(documents_.first().filePath()); QVERIFY(firstDocument); QVERIFY(firstDocument->diagnosticMessages().isEmpty()); Class *clazz = FindFirstClassInDocument()(firstDocument); QVERIFY(clazz); // Generate and compare hierarchies TypeHierarchyBuilder typeHierarchyBuilder(clazz, snapshot); const TypeHierarchy hierarchy = typeHierarchyBuilder.buildDerivedTypeHierarchy(); const QString actualHierarchy = toString(hierarchy); // Uncomment for updating/generating reference data: // qDebug() << actualHierarchy; QCOMPARE(actualHierarchy, expectedHierarchy); } }; } // anonymous namespace void CppToolsPlugin::test_typehierarchy_data() { QTest::addColumn >("documents"); QTest::addColumn("expectedHierarchy"); typedef Tests::TestDocument TestDocument; QTest::newRow("basic-single-document") << (QList() << TestDocument("a.h", "class A {};\n" "class B : public A {};\n" "class C1 : public B {};\n" "class C2 : public B {};\n" "class D : public C1 {};\n")) << QString::fromLatin1( "A\n" " B\n" " C1\n" " D\n" " C2\n" ); QTest::newRow("basic-multiple-documents") << (QList() << TestDocument("a.h", "class A {};") << TestDocument("b.h", "#include \"a.h\"\n" "class B : public A {};") << TestDocument("c1.h", "#include \"b.h\"\n" "class C1 : public B {};") << TestDocument("c2.h", "#include \"b.h\"\n" "class C2 : public B {};") << TestDocument("d.h", "#include \"c1.h\"\n" "class D : public C1 {};")) << QString::fromLatin1( "A\n" " B\n" " C1\n" " D\n" " C2\n" ); } void CppToolsPlugin::test_typehierarchy() { QFETCH(QList, documents); QFETCH(QString, expectedHierarchy); TypeHierarchyBuilderTestCase(documents, expectedHierarchy); }