forked from qt-creator/qt-creator
99 lines
3.1 KiB
C++
99 lines
3.1 KiB
C++
|
|
/****************************************************************************
|
||
|
|
**
|
||
|
|
** 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"
|
||
|
|
|
||
|
|
#include <includecollector.h>
|
||
|
|
#include <stringcache.h>
|
||
|
|
|
||
|
|
using testing::AllOf;
|
||
|
|
using testing::Contains;
|
||
|
|
using testing::Not;
|
||
|
|
using testing::ElementsAre;
|
||
|
|
using testing::UnorderedElementsAre;
|
||
|
|
|
||
|
|
namespace {
|
||
|
|
|
||
|
|
class IncludeCollector : public ::testing::Test
|
||
|
|
{
|
||
|
|
protected:
|
||
|
|
void SetUp();
|
||
|
|
uint id(const Utils::SmallString &path);
|
||
|
|
|
||
|
|
protected:
|
||
|
|
ClangBackEnd::StringCache<Utils::SmallString> filePathCache;
|
||
|
|
ClangBackEnd::IncludeCollector collector{filePathCache};
|
||
|
|
};
|
||
|
|
|
||
|
|
TEST_F(IncludeCollector, IncludesExternalHeader)
|
||
|
|
{
|
||
|
|
collector.collectIncludes();
|
||
|
|
|
||
|
|
ASSERT_THAT(collector.takeIncludeIds(),
|
||
|
|
AllOf(Contains(id("includecollector_external1.h")),
|
||
|
|
Contains(id("../data/includecollector_external2.h"))));
|
||
|
|
}
|
||
|
|
|
||
|
|
TEST_F(IncludeCollector, DoesNotIncludesInternalHeader)
|
||
|
|
{
|
||
|
|
collector.collectIncludes();
|
||
|
|
|
||
|
|
ASSERT_THAT(collector.takeIncludeIds(), Not(Contains(id("includecollector_header1.h"))));
|
||
|
|
}
|
||
|
|
|
||
|
|
TEST_F(IncludeCollector, NoDuplicate)
|
||
|
|
{
|
||
|
|
collector.collectIncludes();
|
||
|
|
|
||
|
|
ASSERT_THAT(collector.takeIncludeIds(),
|
||
|
|
UnorderedElementsAre(id("includecollector_external1.h"),
|
||
|
|
id("../data/includecollector_external2.h")));
|
||
|
|
}
|
||
|
|
|
||
|
|
TEST_F(IncludeCollector, IncludesAreSorted)
|
||
|
|
{
|
||
|
|
collector.collectIncludes();
|
||
|
|
|
||
|
|
ASSERT_THAT(collector.takeIncludeIds(),
|
||
|
|
ElementsAre(id("includecollector_external1.h"),
|
||
|
|
id("../data/includecollector_external2.h")));
|
||
|
|
}
|
||
|
|
|
||
|
|
void IncludeCollector::SetUp()
|
||
|
|
{
|
||
|
|
collector.addFile(TESTDATA_DIR, "includecollector_main.cpp", "", {"cc", "includecollector_main.cpp"});
|
||
|
|
collector.addFile(TESTDATA_DIR, "includecollector_main2.cpp", "", {"cc", "includecollector_main2.cpp"});
|
||
|
|
|
||
|
|
collector.setExcludedIncludes({TESTDATA_DIR "/includecollector_header1.h",
|
||
|
|
TESTDATA_DIR "/includecollector_header2.h"});
|
||
|
|
}
|
||
|
|
|
||
|
|
uint IncludeCollector::id(const Utils::SmallString &path)
|
||
|
|
{
|
||
|
|
return filePathCache.stringId(path);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|