forked from qt-creator/qt-creator
The database is using file path integer ids to handle file paths because otherwise we would save many redundant data. This patch is improving it further with the introduction of a database based file path cache. The entries are now divided in a directory path and file name. This is quite handy for directory based file watching. Change-Id: I03f2e388e43f3d521d6bf8e39dfb95eb2309dc73 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
193 lines
6.1 KiB
C++
193 lines
6.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 "sourcerangecontainer-matcher.h"
|
|
#include "testclangtool.h"
|
|
|
|
#include <refactoringdatabaseinitializer.h>
|
|
#include <sourcerangeextractor.h>
|
|
#include <sourcerangescontainer.h>
|
|
#include <filepathcaching.h>
|
|
|
|
#include <sqlitedatabase.h>
|
|
|
|
#include <clang/Basic/SourceManager.h>
|
|
#include <clang/Lex/Lexer.h>
|
|
|
|
#include <QDir>
|
|
|
|
#include <mutex>
|
|
|
|
using testing::Contains;
|
|
using ::testing::Eq;
|
|
using ::testing::StrEq;
|
|
|
|
using ClangBackEnd::SourceRangeWithTextContainer;
|
|
using ClangBackEnd::SourceRangeExtractor;
|
|
|
|
namespace {
|
|
|
|
class SourceRangeExtractor : public ::testing::Test
|
|
{
|
|
protected:
|
|
void SetUp() override;
|
|
void TearDown() override;
|
|
|
|
protected:
|
|
TestClangTool clangTool{TESTDATA_DIR, "sourcerangeextractor_location.cpp", "", {"cc", "sourcerangeextractor_location.cpp"}};
|
|
ClangBackEnd::SourceRangesContainer sourceRangesContainer;
|
|
const clang::SourceManager &sourceManager{clangTool.sourceManager()};
|
|
Sqlite::Database database{QDir::tempPath() + "/symbol.db"};
|
|
ClangBackEnd::RefactoringDatabaseInitializer<Sqlite::Database> databaseInitializer{database};
|
|
ClangBackEnd::FilePathCaching filePathCache{database};
|
|
ClangBackEnd::SourceRangeExtractor extractor{sourceManager, clangTool.languageOptions(), filePathCache, sourceRangesContainer};
|
|
clang::SourceLocation startLocation = sourceManager.getLocForStartOfFile(sourceManager.getMainFileID());
|
|
clang::SourceLocation endLocation = sourceManager.getLocForStartOfFile(sourceManager.getMainFileID()).getLocWithOffset(4);
|
|
clang::SourceRange sourceRange{startLocation, endLocation};
|
|
clang::SourceRange extendedSourceRange{startLocation, endLocation.getLocWithOffset(5)};
|
|
};
|
|
|
|
using SourceRangeExtractorSlowTest = SourceRangeExtractor;
|
|
|
|
TEST_F(SourceRangeExtractorSlowTest, ExtractSourceRangeContainer)
|
|
{
|
|
SourceRangeWithTextContainer sourceRangeContainer{{1, 1}, 1, 1, 0, 1, 10, 9, Utils::SmallString("int value;")};
|
|
|
|
extractor.addSourceRange(sourceRange);
|
|
|
|
ASSERT_THAT(extractor.sourceRangeWithTextContainers(),
|
|
Contains(IsSourceRangeWithText(1, 1, 1, 10, "int value;")));
|
|
}
|
|
|
|
TEST_F(SourceRangeExtractorSlowTest, ExtendedSourceRange)
|
|
{
|
|
auto range = extractor.extendSourceRangeToLastTokenEnd(sourceRange);
|
|
|
|
ASSERT_THAT(range, extendedSourceRange);
|
|
}
|
|
|
|
TEST_F(SourceRangeExtractorSlowTest, FindStartOfLineInEmptyBuffer)
|
|
{
|
|
clang::StringRef text = "";
|
|
|
|
auto found = ::SourceRangeExtractor::findStartOfLineInBuffer(text, 0);
|
|
|
|
ASSERT_THAT(found, StrEq(""));
|
|
}
|
|
|
|
TEST_F(SourceRangeExtractorSlowTest, FindStartOfLineInBufferInFirstLine)
|
|
{
|
|
clang::StringRef text = "first line";
|
|
|
|
auto found = ::SourceRangeExtractor::findStartOfLineInBuffer(text, 5);
|
|
|
|
ASSERT_THAT(found, StrEq("first line"));
|
|
}
|
|
|
|
TEST_F(SourceRangeExtractorSlowTest, FindStartOfNewLineInBufferInSecondLine)
|
|
{
|
|
clang::StringRef text = "first line\nsecond line";
|
|
|
|
auto found = ::SourceRangeExtractor::findStartOfLineInBuffer(text, 15);
|
|
|
|
ASSERT_THAT(found, StrEq("second line"));
|
|
}
|
|
|
|
TEST_F(SourceRangeExtractorSlowTest, FindStartOfCarriageReturnInBufferInSecondLine)
|
|
{
|
|
clang::StringRef text = "first line\rsecond line";
|
|
|
|
auto found = ::SourceRangeExtractor::findStartOfLineInBuffer(text, 15);
|
|
|
|
ASSERT_THAT(found, StrEq("second line"));
|
|
}
|
|
|
|
TEST_F(SourceRangeExtractorSlowTest, FindStartOfNewLineCarriageReturnInBufferInSecondLine)
|
|
{
|
|
clang::StringRef text = "first line\n\rsecond line";
|
|
|
|
auto found = ::SourceRangeExtractor::findStartOfLineInBuffer(text, 15);
|
|
|
|
ASSERT_THAT(found, StrEq("second line"));
|
|
}
|
|
|
|
TEST_F(SourceRangeExtractorSlowTest, FindEndOfLineInEmptyBuffer)
|
|
{
|
|
clang::StringRef text = "";
|
|
|
|
auto found = ::SourceRangeExtractor::findEndOfLineInBuffer(text, 0);
|
|
|
|
ASSERT_THAT(found, StrEq(""));
|
|
}
|
|
|
|
TEST_F(SourceRangeExtractorSlowTest, FindEndOfLineInBuffer)
|
|
{
|
|
clang::StringRef text = "first line";
|
|
|
|
auto found = ::SourceRangeExtractor::findEndOfLineInBuffer(text, 5);
|
|
|
|
ASSERT_THAT(found, StrEq(""));
|
|
}
|
|
|
|
TEST_F(SourceRangeExtractorSlowTest, FindEndOfLineInBufferInFirstLineWithNewLine)
|
|
{
|
|
clang::StringRef text = "first line\nsecond line\nthird line";
|
|
|
|
auto found = ::SourceRangeExtractor::findEndOfLineInBuffer(text, 15);
|
|
|
|
ASSERT_THAT(found, StrEq("\nthird line"));
|
|
}
|
|
|
|
TEST_F(SourceRangeExtractorSlowTest, FindEndOfLineInBufferInFirstLineWithCarriageReturn)
|
|
{
|
|
clang::StringRef text = "first line\rsecond line\rthird line";
|
|
|
|
auto found = ::SourceRangeExtractor::findEndOfLineInBuffer(text, 15);
|
|
|
|
ASSERT_THAT(found, StrEq("\rthird line"));
|
|
}
|
|
|
|
TEST_F(SourceRangeExtractorSlowTest, EpandText)
|
|
{
|
|
clang::StringRef text = "first line\nsecond line\nthird line\nforth line";
|
|
|
|
auto expandedText = ::SourceRangeExtractor::getExpandedText(text, 15, 25);
|
|
|
|
ASSERT_THAT(expandedText, Eq("second line\nthird line"));
|
|
}
|
|
|
|
void SourceRangeExtractor::SetUp()
|
|
{
|
|
TestGlobal::setSourceManager(&sourceManager);
|
|
}
|
|
|
|
void SourceRangeExtractor::TearDown()
|
|
{
|
|
TestGlobal::setSourceManager(nullptr);
|
|
}
|
|
}
|
|
|