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
|
/*
SPDX-FileCopyrightText: 2020 Milian Wolff <mail@milianw.de>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include <QTest>
#include <QObject>
#include <QVersionNumber>
#include <QLoggingCategory>
#include <QDir>
#include <QJsonObject>
#include <tests/autotestshell.h>
#include <tests/testcore.h>
#include <interfaces/iproject.h>
#include <interfaces/iprojectcontroller.h>
#include <interfaces/iprojectfilemanager.h>
#include <interfaces/ibuildsystemmanager.h>
#include <interfaces/iprojectbuilder.h>
#include <project/projectmodel.h>
#include <KJob>
#include <cmakefileapi.h>
#include <cmakeutils.h>
#include <cmakeprojectdata.h>
#include <testhelpers.h>
using namespace KDevelop;
class TestCMakeFileApi : public QObject
{
Q_OBJECT
private Q_SLOTS:
void initTestCase()
{
QLoggingCategory::setFilterRules(QStringLiteral("default.debug=true\nkdevelop.projectmanagers.cmake.debug=true\n"));
if (!CMake::FileApi::supported(CMake::findExecutable())) {
QSKIP("cmake exe doesn't support file API");
}
AutoTestShell::init({"KDevCMakeManager", "KDevCMakeBuilder", "KDevMakeBuilder", "KDevStandardOutputView"});
TestCore::initialize();
}
void cleanupTestCase()
{
TestCore::shutdown();
}
void testConfigure()
{
auto project = loadProject(QStringLiteral("single_subdirectory"));
QVERIFY(project);
auto bsm = project->buildSystemManager();
const auto buildPath = bsm->buildDirectory(project->projectItem());
const auto buildDir = buildPath.toLocalFile();
QVERIFY(!buildDir.isEmpty());
QVERIFY(QDir(buildDir).removeRecursively());
auto builder = bsm->builder();
auto configureJob = builder->configure(project);
QVERIFY(configureJob);
QVERIFY(configureJob->exec());
const auto index = CMake::FileApi::findReplyIndexFile(buildDir);
QVERIFY(index.isValid());
QVERIFY(!index.isOutdated());
const auto projectData = CMake::FileApi::parseReplyIndexFile(index, project->path(), buildPath);
QVERIFY(projectData.compilationData.isValid);
QCOMPARE(projectData.targets.size(), 1);
const auto subDirPath = Path(project->path(), "subdir");
QVERIFY(projectData.targets.contains(subDirPath));
const auto targets = projectData.targets[subDirPath];
QCOMPARE(targets.size(), 1);
const auto target = targets.first();
QCOMPARE(target.name, QLatin1String("foo"));
QCOMPARE(target.type, CMakeTarget::Executable);
const auto buildSubDirPath = Path(buildPath, "subdir");
QCOMPARE(target.artifacts, {Path(buildSubDirPath, "foo")});
const auto fooSrcPath = Path(subDirPath, "foo.cpp");
QCOMPARE(target.sources, {fooSrcPath});
QCOMPARE(projectData.compilationData.files.size(), 1);
QVERIFY(projectData.compilationData.files.contains(fooSrcPath));
const auto srcInfo = projectData.compilationData.files[fooSrcPath];
QCOMPARE(srcInfo.language, QLatin1String("CXX"));
QCOMPARE(srcInfo.includes.size(), 3);
QVERIFY(srcInfo.includes.contains(buildPath));
QVERIFY(srcInfo.includes.contains(buildSubDirPath));
QVERIFY(srcInfo.includes.contains(subDirPath));
QVERIFY(projectData.cmakeFiles.contains(Path(project->path(), "CMakeLists.txt")));
QVERIFY(projectData.cmakeFiles.contains(Path(subDirPath, "CMakeLists.txt")));
QCOMPARE(projectData.cmakeFiles.size(), 2);
QVERIFY(!projectData.isOutdated);
}
};
QTEST_MAIN(TestCMakeFileApi)
#include "test_cmakefileapi.moc"
|