2017-01-30 11:24:46 +01:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
|
|
|
|
**
|
|
|
|
|
** 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 The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "googletest.h"
|
|
|
|
|
|
2017-01-31 14:21:05 +01:00
|
|
|
#include "fakeprocess.h"
|
2018-01-22 14:21:01 +01:00
|
|
|
|
2017-01-31 14:21:05 +01:00
|
|
|
#include "mockpchgeneratornotifier.h"
|
2017-01-30 11:24:46 +01:00
|
|
|
#include "testenvironment.h"
|
|
|
|
|
|
2018-01-22 14:21:01 +01:00
|
|
|
#include <refactoringdatabaseinitializer.h>
|
|
|
|
|
#include <filepathcaching.h>
|
2017-01-30 11:24:46 +01:00
|
|
|
#include <pchcreator.h>
|
2017-01-31 14:21:05 +01:00
|
|
|
#include <pchgenerator.h>
|
2017-01-30 11:24:46 +01:00
|
|
|
|
2018-01-22 14:21:01 +01:00
|
|
|
#include <sqlitedatabase.h>
|
|
|
|
|
|
2017-01-30 11:24:46 +01:00
|
|
|
#include <QFileInfo>
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
2017-09-21 11:43:59 +02:00
|
|
|
using ClangBackEnd::FilePathId;
|
2017-01-30 11:24:46 +01:00
|
|
|
using ClangBackEnd::IdPaths;
|
|
|
|
|
using ClangBackEnd::ProjectPartPch;
|
|
|
|
|
using ClangBackEnd::V2::ProjectPartContainer;
|
2017-02-01 13:43:28 +01:00
|
|
|
using ClangBackEnd::V2::FileContainer;
|
2017-02-16 18:25:19 +01:00
|
|
|
using ClangBackEnd::FilePath;
|
2018-03-28 16:00:10 +02:00
|
|
|
using ClangBackEnd::FilePathIds;
|
2017-11-16 17:48:53 +01:00
|
|
|
using ClangBackEnd::FilePathView;
|
|
|
|
|
|
2017-02-01 13:43:28 +01:00
|
|
|
using Utils::PathString;
|
2017-01-30 11:24:46 +01:00
|
|
|
using Utils::SmallString;
|
|
|
|
|
|
2017-08-29 12:54:10 +02:00
|
|
|
using UnitTests::EndsWith;
|
2017-01-30 11:24:46 +01:00
|
|
|
|
|
|
|
|
class PchCreator: public ::testing::Test
|
|
|
|
|
{
|
|
|
|
|
protected:
|
2018-01-22 14:21:01 +01:00
|
|
|
ClangBackEnd::FilePathId id(ClangBackEnd::FilePathView path)
|
|
|
|
|
{
|
|
|
|
|
return filePathCache.filePathId(path);
|
|
|
|
|
}
|
2017-01-30 11:24:46 +01:00
|
|
|
|
|
|
|
|
protected:
|
2018-01-22 14:21:01 +01:00
|
|
|
Sqlite::Database database{":memory:", Sqlite::JournalMode::Memory};
|
|
|
|
|
ClangBackEnd::RefactoringDatabaseInitializer<Sqlite::Database> databaseInitializer{database};
|
|
|
|
|
ClangBackEnd::FilePathCaching filePathCache{database};
|
2017-11-16 17:48:53 +01:00
|
|
|
FilePath main1Path = TESTDATA_DIR "/includecollector_main3.cpp";
|
|
|
|
|
FilePath main2Path = TESTDATA_DIR "/includecollector_main2.cpp";
|
|
|
|
|
FilePath header1Path = TESTDATA_DIR "/includecollector_header1.h";
|
|
|
|
|
FilePath header2Path = TESTDATA_DIR "/includecollector_header2.h";
|
|
|
|
|
Utils::SmallStringView generatedFileName = "includecollector_generated_file.h";
|
|
|
|
|
FilePath generatedFilePath = TESTDATA_DIR "/includecollector_generated_file.h";
|
2017-01-30 11:24:46 +01:00
|
|
|
ProjectPartContainer projectPart1{"project1",
|
|
|
|
|
{"-I", TESTDATA_DIR, "-Wno-pragma-once-outside-header"},
|
2018-02-06 19:03:14 +01:00
|
|
|
{{"DEFINE", "1"}},
|
2018-02-08 12:48:46 +01:00
|
|
|
{"/includes"},
|
2018-01-22 14:21:01 +01:00
|
|
|
{id(header1Path)},
|
|
|
|
|
{id(main1Path)}};
|
2017-01-30 11:24:46 +01:00
|
|
|
ProjectPartContainer projectPart2{"project2",
|
|
|
|
|
{"-I", TESTDATA_DIR, "-x", "c++-header", "-Wno-pragma-once-outside-header"},
|
2018-02-06 19:03:14 +01:00
|
|
|
{{"DEFINE", "1"}},
|
2018-02-08 12:48:46 +01:00
|
|
|
{"/includes"},
|
2018-01-22 14:21:01 +01:00
|
|
|
{id(header2Path)},
|
|
|
|
|
{id(main2Path)}};
|
2017-01-30 11:24:46 +01:00
|
|
|
TestEnvironment environment;
|
2017-11-16 17:48:53 +01:00
|
|
|
FileContainer generatedFile{{TESTDATA_DIR, generatedFileName}, "#pragma once", {}};
|
2017-01-31 14:21:05 +01:00
|
|
|
NiceMock<MockPchGeneratorNotifier> mockPchGeneratorNotifier;
|
|
|
|
|
ClangBackEnd::PchGenerator<FakeProcess> generator{environment, &mockPchGeneratorNotifier};
|
2017-01-30 11:24:46 +01:00
|
|
|
ClangBackEnd::PchCreator creator{{projectPart1.clone(),projectPart2.clone()},
|
|
|
|
|
environment,
|
2017-01-31 14:21:05 +01:00
|
|
|
filePathCache,
|
2017-02-01 13:43:28 +01:00
|
|
|
&generator,
|
|
|
|
|
{generatedFile}};
|
2017-01-30 11:24:46 +01:00
|
|
|
};
|
|
|
|
|
using PchCreatorSlowTest = PchCreator;
|
|
|
|
|
using PchCreatorVerySlowTest = PchCreator;
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreator, CreateGlobalHeaderPaths)
|
|
|
|
|
{
|
|
|
|
|
auto filePaths = creator.generateGlobalHeaderPaths();
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(filePaths,
|
2017-02-01 13:43:28 +01:00
|
|
|
UnorderedElementsAre(header1Path, header2Path, generatedFilePath));
|
2017-01-30 11:24:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreator, CreateGlobalSourcePaths)
|
|
|
|
|
{
|
|
|
|
|
auto filePaths = creator.generateGlobalSourcePaths();
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(filePaths,
|
|
|
|
|
UnorderedElementsAre(main1Path, main2Path));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreator, CreateGlobalHeaderAndSourcePaths)
|
|
|
|
|
{
|
|
|
|
|
auto filePaths = creator.generateGlobalHeaderAndSourcePaths();
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(filePaths,
|
2017-02-01 13:43:28 +01:00
|
|
|
UnorderedElementsAre(main1Path, main2Path, header1Path, header2Path, generatedFilePath));
|
2017-01-30 11:24:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreator, CreateGlobalArguments)
|
|
|
|
|
{
|
|
|
|
|
auto arguments = creator.generateGlobalArguments();
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(arguments, ElementsAre("-I", TESTDATA_DIR, "-Wno-pragma-once-outside-header", "-I", TESTDATA_DIR, "-x" , "c++-header", "-Wno-pragma-once-outside-header"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreator, CreateGlobalCommandLine)
|
|
|
|
|
{
|
|
|
|
|
auto arguments = creator.generateGlobalCommandLine();
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(arguments, ElementsAre(environment.clangCompilerPath(), "-I", TESTDATA_DIR, "-Wno-pragma-once-outside-header", "-I", TESTDATA_DIR, "-x" , "c++-header", "-Wno-pragma-once-outside-header"));
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-31 14:21:05 +01:00
|
|
|
TEST_F(PchCreatorVerySlowTest, CreateGlobalPchIncludes)
|
2017-01-30 11:24:46 +01:00
|
|
|
{
|
|
|
|
|
auto includeIds = creator.generateGlobalPchIncludeIds();
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(includeIds,
|
2017-02-16 18:25:19 +01:00
|
|
|
AllOf(Contains(id(TESTDATA_DIR "/includecollector_external3.h")),
|
|
|
|
|
Contains(id(TESTDATA_DIR "/includecollector_external1.h")),
|
|
|
|
|
Contains(id(TESTDATA_DIR "/includecollector_external2.h"))));
|
2017-01-30 11:24:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreatorVerySlowTest, CreateGlobalPchFileContent)
|
|
|
|
|
{
|
|
|
|
|
auto content = creator.generateGlobalPchHeaderFileContent();
|
|
|
|
|
|
2017-08-29 12:54:10 +02:00
|
|
|
ASSERT_THAT(std::string(content),
|
2017-02-16 18:25:19 +01:00
|
|
|
AllOf(HasSubstr("#include \"" TESTDATA_DIR "/includecollector_external3.h\"\n"),
|
|
|
|
|
HasSubstr("#include \"" TESTDATA_DIR "/includecollector_external1.h\"\n"),
|
|
|
|
|
HasSubstr("#include \"" TESTDATA_DIR "/includecollector_external2.h\"\n")));
|
2017-01-30 11:24:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreatorVerySlowTest, CreateGlobalPchHeaderFile)
|
|
|
|
|
{
|
|
|
|
|
auto file = creator.generateGlobalPchHeaderFile();
|
|
|
|
|
file->open(QIODevice::ReadOnly);
|
|
|
|
|
|
|
|
|
|
auto content = file->readAll();
|
|
|
|
|
|
2017-02-16 18:25:19 +01:00
|
|
|
ASSERT_THAT(content.toStdString(),
|
|
|
|
|
AllOf(HasSubstr("#include \"" TESTDATA_DIR "/includecollector_external3.h\"\n"),
|
|
|
|
|
HasSubstr("#include \"" TESTDATA_DIR "/includecollector_external1.h\"\n"),
|
|
|
|
|
HasSubstr("#include \"" TESTDATA_DIR "/includecollector_external2.h\"\n")));
|
2017-01-30 11:24:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreator, ConvertToQStringList)
|
|
|
|
|
{
|
|
|
|
|
auto arguments = creator.convertToQStringList({"-I", TESTDATA_DIR});
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(arguments, ElementsAre(QString("-I"), QString(TESTDATA_DIR)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreator, CreateGlobalPchCompilerArguments)
|
|
|
|
|
{
|
|
|
|
|
auto arguments = creator.generateGlobalPchCompilerArguments();
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(arguments, ElementsAre("-x","c++-header", "-Xclang", "-emit-pch", "-o", EndsWith(".pch"), EndsWith(".h")));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreator, CreateGlobalClangCompilerArguments)
|
|
|
|
|
{
|
|
|
|
|
auto arguments = creator.generateGlobalClangCompilerArguments();
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(arguments, AllOf(Contains("-Wno-pragma-once-outside-header"),
|
|
|
|
|
Contains("-emit-pch"),
|
|
|
|
|
Contains("-o"),
|
|
|
|
|
Not(Contains(environment.clangCompilerPath()))));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreator, CreateProjectPartCommandLine)
|
|
|
|
|
{
|
|
|
|
|
auto commandLine = creator.generateProjectPartCommandLine(projectPart1);
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(commandLine, ElementsAre(environment.clangCompilerPath(), "-I", TESTDATA_DIR, "-Wno-pragma-once-outside-header"));
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-01 13:43:28 +01:00
|
|
|
TEST_F(PchCreator, CreateProjectPartHeaders)
|
|
|
|
|
{
|
|
|
|
|
auto includeIds = creator.generateProjectPartHeaders(projectPart1);
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(includeIds, UnorderedElementsAre(header1Path, generatedFilePath));
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-30 11:24:46 +01:00
|
|
|
TEST_F(PchCreator, CreateProjectPartHeaderAndSources)
|
|
|
|
|
{
|
|
|
|
|
auto includeIds = creator.generateProjectPartHeaderAndSourcePaths(projectPart1);
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(includeIds, UnorderedElementsAre(main1Path, header1Path));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreatorSlowTest, CreateProjectPartPchIncludes)
|
|
|
|
|
{
|
2018-03-28 16:00:10 +02:00
|
|
|
using IncludePair = decltype(creator.generateProjectPartPchIncludes(projectPart1));
|
|
|
|
|
|
2017-01-30 11:24:46 +01:00
|
|
|
auto includeIds = creator.generateProjectPartPchIncludes(projectPart1);
|
|
|
|
|
|
2017-02-16 18:25:19 +01:00
|
|
|
ASSERT_THAT(includeIds,
|
2018-03-28 16:00:10 +02:00
|
|
|
AllOf(
|
|
|
|
|
Field(&IncludePair::first,
|
|
|
|
|
AllOf(Contains(id(TESTDATA_DIR "/includecollector_external1.h")),
|
|
|
|
|
Contains(id(TESTDATA_DIR "/includecollector_external2.h")),
|
|
|
|
|
Contains(id(TESTDATA_DIR "/includecollector_header2.h")))),
|
|
|
|
|
Field(&IncludePair::second,
|
|
|
|
|
AllOf(Contains(id(TESTDATA_DIR "/includecollector_external1.h")),
|
|
|
|
|
Contains(id(TESTDATA_DIR "/includecollector_external2.h"))))));
|
2017-01-30 11:24:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreatorSlowTest, CreateProjectPartPchFileContent)
|
|
|
|
|
{
|
2018-03-28 16:00:10 +02:00
|
|
|
FilePathIds topExternalIncludes;
|
|
|
|
|
std::tie(std::ignore, topExternalIncludes) = creator.generateProjectPartPchIncludes(projectPart1);
|
2017-01-30 11:24:46 +01:00
|
|
|
|
2018-03-28 16:00:10 +02:00
|
|
|
auto content = creator.generatePchIncludeFileContent(topExternalIncludes);
|
2017-01-30 11:24:46 +01:00
|
|
|
|
2017-08-29 12:54:10 +02:00
|
|
|
ASSERT_THAT(std::string(content),
|
2017-02-16 18:25:19 +01:00
|
|
|
AllOf(HasSubstr("#include \"" TESTDATA_DIR "/includecollector_header2.h\"\n"),
|
|
|
|
|
HasSubstr("#include \"" TESTDATA_DIR "/includecollector_external1.h\"\n"),
|
|
|
|
|
HasSubstr("#include \"" TESTDATA_DIR "/includecollector_external2.h\"\n")));
|
2017-01-30 11:24:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreatorSlowTest, CreateProjectPartPchIncludeFile)
|
|
|
|
|
{
|
2018-03-28 16:00:10 +02:00
|
|
|
FilePathIds topExternalIncludes;
|
|
|
|
|
std::tie(std::ignore, topExternalIncludes) = creator.generateProjectPartPchIncludes(projectPart1);
|
|
|
|
|
auto content = creator.generatePchIncludeFileContent(topExternalIncludes);
|
2017-01-30 11:24:46 +01:00
|
|
|
auto pchIncludeFilePath = creator.generateProjectPathPchHeaderFilePath(projectPart1);
|
2017-02-16 18:25:19 +01:00
|
|
|
auto file = creator.generateFileWithContent(pchIncludeFilePath, content);
|
2017-01-30 11:24:46 +01:00
|
|
|
file->open(QIODevice::ReadOnly);
|
|
|
|
|
|
|
|
|
|
auto fileContent = file->readAll();
|
|
|
|
|
|
2017-02-16 18:25:19 +01:00
|
|
|
ASSERT_THAT(fileContent.toStdString(),
|
|
|
|
|
AllOf(HasSubstr("#include \"" TESTDATA_DIR "/includecollector_header2.h\"\n"),
|
|
|
|
|
HasSubstr("#include \"" TESTDATA_DIR "/includecollector_external1.h\"\n"),
|
|
|
|
|
HasSubstr("#include \"" TESTDATA_DIR "/includecollector_external2.h\"\n")));
|
2017-01-30 11:24:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreator, CreateProjectPartPchCompilerArguments)
|
|
|
|
|
{
|
|
|
|
|
auto arguments = creator.generateProjectPartPchCompilerArguments(projectPart1);
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(arguments, AllOf(Contains("-x"),
|
|
|
|
|
Contains("c++-header"),
|
|
|
|
|
// Contains("-Xclang"),
|
|
|
|
|
// Contains("-include-pch"),
|
|
|
|
|
// Contains("-Xclang"),
|
|
|
|
|
// Contains(EndsWith(".pch")),
|
|
|
|
|
Contains("-Xclang"),
|
|
|
|
|
Contains("-emit-pch"),
|
|
|
|
|
Contains("-o"),
|
|
|
|
|
Contains(EndsWith(".pch"))));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreator, CreateProjectPartClangCompilerArguments)
|
|
|
|
|
{
|
|
|
|
|
auto arguments = creator.generateProjectPartClangCompilerArguments(projectPart1);
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(arguments, AllOf(Contains(TESTDATA_DIR),
|
|
|
|
|
Contains("-emit-pch"),
|
|
|
|
|
Contains("-o"),
|
|
|
|
|
Not(Contains(environment.clangCompilerPath()))));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreatorVerySlowTest, ProjectPartPchsExistsAfterCreation)
|
|
|
|
|
{
|
|
|
|
|
creator.generateGlobalPch();
|
|
|
|
|
|
|
|
|
|
creator.generateProjectPartPch(projectPart1);
|
|
|
|
|
|
2017-08-29 12:54:10 +02:00
|
|
|
ASSERT_TRUE(QFileInfo::exists(QString(creator.generateProjectPathPchHeaderFilePath(projectPart1))));
|
2017-01-30 11:24:46 +01:00
|
|
|
}
|
|
|
|
|
|
2017-02-16 18:25:19 +01:00
|
|
|
TEST_F(PchCreatorVerySlowTest, DISABLED_CreatePartPchs)
|
2017-01-30 11:24:46 +01:00
|
|
|
{
|
|
|
|
|
creator.generateGlobalPch();
|
|
|
|
|
|
2017-01-31 14:21:05 +01:00
|
|
|
auto includePaths = creator.generateProjectPartPch(projectPart1);
|
2017-01-30 11:24:46 +01:00
|
|
|
|
2018-04-08 01:20:42 +03:00
|
|
|
ASSERT_THAT(includePaths.id, projectPart1.projectPartId);
|
2017-09-21 11:43:59 +02:00
|
|
|
ASSERT_THAT(includePaths.filePathIds,
|
|
|
|
|
AllOf(Contains(FilePathId{1, 1}),
|
|
|
|
|
Contains(FilePathId{1, 2}),
|
|
|
|
|
Contains(FilePathId{1, 3})));
|
2017-01-30 11:24:46 +01:00
|
|
|
}
|
|
|
|
|
|
2017-01-31 14:21:05 +01:00
|
|
|
TEST_F(PchCreatorVerySlowTest, IncludesForCreatePchsForProjectParts)
|
2017-01-30 11:24:46 +01:00
|
|
|
{
|
|
|
|
|
creator.generatePchs();
|
|
|
|
|
|
2017-01-31 14:21:05 +01:00
|
|
|
ASSERT_THAT(creator.takeProjectsIncludes(),
|
|
|
|
|
ElementsAre(Field(&IdPaths::id, "project1"),
|
|
|
|
|
Field(&IdPaths::id, "project2")));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreatorVerySlowTest, ProjectPartPchsForCreatePchsForProjectParts)
|
|
|
|
|
{
|
|
|
|
|
EXPECT_CALL(mockPchGeneratorNotifier,
|
|
|
|
|
taskFinished(ClangBackEnd::TaskFinishStatus::Successfully,
|
2018-02-15 14:29:20 +01:00
|
|
|
Field(&ProjectPartPch::projectPartId, "project1")));
|
2017-01-31 14:21:05 +01:00
|
|
|
EXPECT_CALL(mockPchGeneratorNotifier,
|
|
|
|
|
taskFinished(ClangBackEnd::TaskFinishStatus::Successfully,
|
2018-02-15 14:29:20 +01:00
|
|
|
Field(&ProjectPartPch::projectPartId, "project2")));
|
2017-01-31 14:21:05 +01:00
|
|
|
|
|
|
|
|
creator.generatePchs();
|
2017-01-30 11:24:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreatorVerySlowTest, IdPathsForCreatePchsForProjectParts)
|
|
|
|
|
{
|
|
|
|
|
creator.generatePchs();
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(creator.takeProjectsIncludes(),
|
|
|
|
|
ElementsAre(AllOf(Field(&IdPaths::id, "project1"),
|
2017-09-21 11:43:59 +02:00
|
|
|
Field(&IdPaths::filePathIds, AllOf(Contains(id(TESTDATA_DIR "/includecollector_header2.h")),
|
2017-02-16 18:25:19 +01:00
|
|
|
Contains(id(TESTDATA_DIR "/includecollector_external1.h")),
|
|
|
|
|
Contains(id(TESTDATA_DIR "/includecollector_external2.h"))))),
|
2017-01-30 11:24:46 +01:00
|
|
|
AllOf(Field(&IdPaths::id, "project2"),
|
2017-09-21 11:43:59 +02:00
|
|
|
Field(&IdPaths::filePathIds, AllOf(Contains(id(TESTDATA_DIR "/includecollector_external1.h")),
|
2017-02-16 18:25:19 +01:00
|
|
|
Contains(id(TESTDATA_DIR "/includecollector_external3.h")),
|
|
|
|
|
Contains(id(TESTDATA_DIR "/includecollector_header1.h")),
|
|
|
|
|
Contains(id(TESTDATA_DIR "/includecollector_external2.h")))))));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(PchCreator, CreateProjectPartHeaderAndSourcesContent)
|
|
|
|
|
{
|
|
|
|
|
auto content = creator.generateProjectPartHeaderAndSourcesContent(projectPart1);
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(content, Eq("#include \"" TESTDATA_DIR "/includecollector_header1.h\"\n"
|
|
|
|
|
"#include \"" TESTDATA_DIR "/includecollector_main3.cpp\"\n"));
|
2017-01-30 11:24:46 +01:00
|
|
|
}
|
|
|
|
|
|
2017-09-21 11:43:59 +02:00
|
|
|
|
2017-01-30 11:24:46 +01:00
|
|
|
}
|