forked from qt-creator/qt-creator
		
	We now support source file and not only header files and the file path is now automatically added to the end. This removes quite some clutter. Change-Id: I74eabd262e6c7e5f4d523e3a3cd194bd3efe1ef3 Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
		
			
				
	
	
		
			193 lines
		
	
	
		
			6.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			193 lines
		
	
	
		
			6.0 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"}};
 | 
						|
    ClangBackEnd::SourceRangesContainer sourceRangesContainer;
 | 
						|
    const clang::SourceManager &sourceManager{clangTool.sourceManager()};
 | 
						|
    Sqlite::Database database{":memory:", Sqlite::JournalMode::Memory};
 | 
						|
    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, 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);
 | 
						|
}
 | 
						|
}
 | 
						|
 |