2017-08-02 16:00:55 +02:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
|
|
|
** Copyright (C) 2017 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-10-26 13:23:27 +02:00
|
|
|
#include "mockclangpathwatcher.h"
|
2017-08-02 16:00:55 +02:00
|
|
|
#include "mocksymbolscollector.h"
|
|
|
|
#include "mocksymbolstorage.h"
|
2018-01-22 14:21:01 +01:00
|
|
|
#include "mockfilepathcaching.h"
|
|
|
|
#include "mocksqlitetransactionbackend.h"
|
2017-08-02 16:00:55 +02:00
|
|
|
|
|
|
|
#include <symbolindexer.h>
|
|
|
|
#include <updatepchprojectpartsmessage.h>
|
|
|
|
#include <projectpartcontainerv2.h>
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
using Utils::PathString;
|
2018-02-06 19:03:14 +01:00
|
|
|
using ClangBackEnd::CompilerMacro;
|
2018-02-01 18:29:45 +01:00
|
|
|
using ClangBackEnd::FileStatuses;
|
2018-02-07 16:18:16 +01:00
|
|
|
using ClangBackEnd::FilePathId;
|
2018-01-22 14:21:01 +01:00
|
|
|
using ClangBackEnd::FilePathIds;
|
|
|
|
using ClangBackEnd::FilePathView;
|
2017-08-02 16:00:55 +02:00
|
|
|
using ClangBackEnd::V2::ProjectPartContainer;
|
|
|
|
using ClangBackEnd::V2::ProjectPartContainers;
|
2017-08-17 12:44:52 +02:00
|
|
|
using ClangBackEnd::V2::FileContainers;
|
2017-08-02 16:00:55 +02:00
|
|
|
using ClangBackEnd::SymbolEntries;
|
|
|
|
using ClangBackEnd::SymbolEntry;
|
2018-01-31 14:14:34 +01:00
|
|
|
using ClangBackEnd::SourceDependencies;
|
2017-08-02 16:00:55 +02:00
|
|
|
using ClangBackEnd::SourceLocationEntries;
|
|
|
|
using ClangBackEnd::SourceLocationEntry;
|
|
|
|
using ClangBackEnd::SymbolType;
|
2018-01-25 15:20:47 +01:00
|
|
|
using ClangBackEnd::UsedMacros;
|
2017-08-02 16:00:55 +02:00
|
|
|
|
2018-01-22 14:21:01 +01:00
|
|
|
MATCHER_P2(IsFileId, directoryId, fileNameId,
|
|
|
|
std::string(negation ? "isn't " : "is ")
|
|
|
|
+ PrintToString(ClangBackEnd::FilePathId(directoryId, fileNameId)))
|
|
|
|
{
|
|
|
|
return arg == ClangBackEnd::FilePathId(directoryId, fileNameId);
|
|
|
|
}
|
|
|
|
|
2017-08-02 16:00:55 +02:00
|
|
|
class SymbolIndexer : public testing::Test
|
|
|
|
{
|
|
|
|
protected:
|
2017-12-27 13:19:21 +01:00
|
|
|
void SetUp()
|
|
|
|
{
|
|
|
|
ON_CALL(mockCollector, symbols()).WillByDefault(ReturnRef(symbolEntries));
|
|
|
|
ON_CALL(mockCollector, sourceLocations()).WillByDefault(ReturnRef(sourceLocations));
|
2018-01-22 14:21:01 +01:00
|
|
|
ON_CALL(mockCollector, sourceFiles()).WillByDefault(ReturnRef(sourceFileIds));
|
2018-01-25 15:20:47 +01:00
|
|
|
ON_CALL(mockCollector, usedMacros()).WillByDefault(ReturnRef(usedMacros));
|
2018-02-01 18:29:45 +01:00
|
|
|
ON_CALL(mockCollector, fileStatuses()).WillByDefault(ReturnRef(fileStatus));
|
2018-01-31 14:14:34 +01:00
|
|
|
ON_CALL(mockCollector, sourceDependencies()).WillByDefault(ReturnRef(sourceDependencies));
|
2018-02-07 16:18:16 +01:00
|
|
|
ON_CALL(mockStorage, fetchProjectPartArtefact(A<FilePathId>())).WillByDefault(Return(artefact));
|
2017-12-27 13:19:21 +01:00
|
|
|
}
|
2017-08-02 16:00:55 +02:00
|
|
|
|
|
|
|
protected:
|
2018-01-22 14:21:01 +01:00
|
|
|
ClangBackEnd::FilePathId main1PathId{1, 1};
|
|
|
|
ClangBackEnd::FilePathId main2PathId{1, 2};
|
|
|
|
ClangBackEnd::FilePathId header2PathId{1, 12};
|
|
|
|
ClangBackEnd::FilePathId header1PathId{1, 11};
|
2017-08-02 16:00:55 +02:00
|
|
|
PathString generatedFileName = "includecollector_generated_file.h";
|
2018-01-22 14:21:01 +01:00
|
|
|
ClangBackEnd::FilePathId generatedFilePathId{1, 21};
|
2017-08-02 16:00:55 +02:00
|
|
|
ProjectPartContainer projectPart1{"project1",
|
|
|
|
{"-I", TESTDATA_DIR, "-Wno-pragma-once-outside-header"},
|
2018-02-07 16:11:28 +01:00
|
|
|
{{"BAR", "1"}, {"FOO", "1"}},
|
2018-01-22 14:21:01 +01:00
|
|
|
{header1PathId},
|
|
|
|
{main1PathId}};
|
2017-08-02 16:00:55 +02:00
|
|
|
ProjectPartContainer projectPart2{"project2",
|
|
|
|
{"-I", TESTDATA_DIR, "-x", "c++-header", "-Wno-pragma-once-outside-header"},
|
2018-02-07 16:11:28 +01:00
|
|
|
{{"BAR", "1"}, {"FOO", "0"}},
|
2018-01-22 14:21:01 +01:00
|
|
|
{header2PathId},
|
|
|
|
{main2PathId}};
|
2017-08-17 12:44:52 +02:00
|
|
|
FileContainers unsaved{{{TESTDATA_DIR, "query_simplefunction.h"},
|
|
|
|
"void f();",
|
|
|
|
{}}};
|
2017-08-02 16:00:55 +02:00
|
|
|
SymbolEntries symbolEntries{{1, {"function", "function"}}};
|
2017-09-21 11:43:59 +02:00
|
|
|
SourceLocationEntries sourceLocations{{1, {1, 1}, {42, 23}, SymbolType::Declaration}};
|
2018-01-22 14:21:01 +01:00
|
|
|
FilePathIds sourceFileIds{{1, 1}, {42, 23}};
|
2018-01-25 15:20:47 +01:00
|
|
|
UsedMacros usedMacros{{"Foo", {1, 1}}};
|
2018-02-01 18:29:45 +01:00
|
|
|
FileStatuses fileStatus{{{1, 2}, 3, 4}};
|
2018-01-31 14:14:34 +01:00
|
|
|
SourceDependencies sourceDependencies{{{1, 1}, {1, 2}}, {{1, 1}, {1, 3}}};
|
2018-02-07 16:11:28 +01:00
|
|
|
ClangBackEnd::ProjectPartArtefact artefact{"[\"-DFOO\"]", "{\"FOO\":\"1\",\"BAR\":\"1\"}", 74};
|
2018-01-22 14:21:01 +01:00
|
|
|
NiceMock<MockSqliteTransactionBackend> mockSqliteTransactionBackend;
|
2017-08-02 16:00:55 +02:00
|
|
|
NiceMock<MockSymbolsCollector> mockCollector;
|
|
|
|
NiceMock<MockSymbolStorage> mockStorage;
|
2017-10-26 13:23:27 +02:00
|
|
|
NiceMock<MockClangPathWatcher> mockPathWatcher;
|
2018-01-22 14:21:01 +01:00
|
|
|
NiceMock<MockFilePathCaching> mockFilePathCaching;
|
|
|
|
ClangBackEnd::SymbolIndexer indexer{mockCollector, mockStorage, mockPathWatcher, mockFilePathCaching, mockSqliteTransactionBackend};
|
2017-08-02 16:00:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
TEST_F(SymbolIndexer, UpdateProjectPartsCallsAddFilesInCollector)
|
|
|
|
{
|
2018-01-22 14:21:01 +01:00
|
|
|
EXPECT_CALL(mockCollector, addFiles(projectPart1.sourcePathIds(), projectPart1.arguments()));
|
2017-08-02 16:00:55 +02:00
|
|
|
|
2017-08-17 12:44:52 +02:00
|
|
|
indexer.updateProjectParts({projectPart1}, Utils::clone(unsaved));
|
2017-08-02 16:00:55 +02:00
|
|
|
}
|
|
|
|
|
2017-12-13 12:04:19 +01:00
|
|
|
TEST_F(SymbolIndexer, UpdateProjectPartsCallsClearInCollector)
|
|
|
|
{
|
2018-01-22 14:21:01 +01:00
|
|
|
EXPECT_CALL(mockCollector, clear()).Times(2);
|
2017-12-13 12:04:19 +01:00
|
|
|
|
2018-01-22 14:21:01 +01:00
|
|
|
indexer.updateProjectParts({projectPart1, projectPart2}, Utils::clone(unsaved));
|
2017-12-13 12:04:19 +01:00
|
|
|
}
|
|
|
|
|
2017-08-02 16:00:55 +02:00
|
|
|
TEST_F(SymbolIndexer, UpdateProjectPartsCallsAddFilesInCollectorForEveryProjectPart)
|
|
|
|
{
|
2018-01-22 14:21:01 +01:00
|
|
|
EXPECT_CALL(mockCollector, addFiles(_, _)).Times(2);
|
2017-08-02 16:00:55 +02:00
|
|
|
|
2017-08-17 12:44:52 +02:00
|
|
|
indexer.updateProjectParts({projectPart1, projectPart2}, Utils::clone(unsaved));
|
2017-08-02 16:00:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SymbolIndexer, UpdateProjectPartsDoesNotCallAddFilesInCollectorForEmptyEveryProjectParts)
|
|
|
|
{
|
|
|
|
EXPECT_CALL(mockCollector, addFiles(_, _))
|
|
|
|
.Times(0);
|
|
|
|
|
2017-08-17 12:44:52 +02:00
|
|
|
indexer.updateProjectParts({}, {});
|
2017-08-02 16:00:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SymbolIndexer, UpdateProjectPartsCallscollectSymbolsInCollector)
|
|
|
|
{
|
2018-01-22 14:21:01 +01:00
|
|
|
EXPECT_CALL(mockCollector, collectSymbols()).Times(2);;
|
2017-08-02 16:00:55 +02:00
|
|
|
|
2018-01-22 14:21:01 +01:00
|
|
|
indexer.updateProjectParts({projectPart1, projectPart2}, Utils::clone(unsaved));
|
2017-08-02 16:00:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SymbolIndexer, UpdateProjectPartsCallsSymbolsInCollector)
|
|
|
|
{
|
2018-01-22 14:21:01 +01:00
|
|
|
EXPECT_CALL(mockCollector, symbols()).Times(2);
|
2017-08-02 16:00:55 +02:00
|
|
|
|
2018-01-22 14:21:01 +01:00
|
|
|
indexer.updateProjectParts({projectPart1, projectPart2}, Utils::clone(unsaved));
|
2017-08-02 16:00:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SymbolIndexer, UpdateProjectPartsCallsSourceLocationsInCollector)
|
|
|
|
{
|
2018-01-22 14:21:01 +01:00
|
|
|
EXPECT_CALL(mockCollector, sourceLocations()).Times(2);
|
2017-08-02 16:00:55 +02:00
|
|
|
|
2018-01-22 14:21:01 +01:00
|
|
|
indexer.updateProjectParts({projectPart1, projectPart2}, Utils::clone(unsaved));
|
2017-08-17 12:44:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SymbolIndexer, UpdateProjectPartsCallsAddUnsavedFilesInCollector)
|
|
|
|
{
|
2018-01-22 14:21:01 +01:00
|
|
|
EXPECT_CALL(mockCollector, addUnsavedFiles(unsaved)).Times(2);
|
2017-08-17 12:44:52 +02:00
|
|
|
|
2018-01-22 14:21:01 +01:00
|
|
|
indexer.updateProjectParts({projectPart1, projectPart2}, Utils::clone(unsaved));
|
2017-08-02 16:00:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SymbolIndexer, UpdateProjectPartsCallsAddSymbolsAndSourceLocationsInStorage)
|
|
|
|
{
|
2018-01-22 14:21:01 +01:00
|
|
|
EXPECT_CALL(mockSqliteTransactionBackend, immediateBegin()).Times(2);
|
|
|
|
EXPECT_CALL(mockStorage, addSymbolsAndSourceLocations(symbolEntries, sourceLocations)).Times(2);
|
|
|
|
EXPECT_CALL(mockSqliteTransactionBackend, commit()).Times(2);
|
2017-08-02 16:00:55 +02:00
|
|
|
|
2018-01-22 14:21:01 +01:00
|
|
|
indexer.updateProjectParts({projectPart1, projectPart2}, Utils::clone(unsaved));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SymbolIndexer, UpdateProjectPartsCallsUpdateProjectPartsInStorage)
|
|
|
|
{
|
2018-01-29 12:07:15 +01:00
|
|
|
EXPECT_CALL(mockStorage, insertOrUpdateProjectPart(Eq("project1"),
|
|
|
|
ElementsAre("-I", TESTDATA_DIR, "-Wno-pragma-once-outside-header"),
|
2018-02-07 16:11:28 +01:00
|
|
|
ElementsAre(CompilerMacro{"BAR", "1"}, CompilerMacro{"FOO", "1"})));
|
2018-01-29 12:07:15 +01:00
|
|
|
EXPECT_CALL(mockStorage, insertOrUpdateProjectPart(Eq("project2"),
|
|
|
|
ElementsAre("-I", TESTDATA_DIR, "-x", "c++-header", "-Wno-pragma-once-outside-header"),
|
2018-02-07 16:11:28 +01:00
|
|
|
ElementsAre(CompilerMacro{"BAR", "1"}, CompilerMacro{"FOO", "0"})));
|
2018-01-22 14:21:01 +01:00
|
|
|
|
|
|
|
indexer.updateProjectParts({projectPart1, projectPart2}, Utils::clone(unsaved));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SymbolIndexer, UpdateProjectPartsCallsUpdateProjectPartSources)
|
|
|
|
{
|
2018-02-06 11:16:29 +01:00
|
|
|
EXPECT_CALL(mockStorage, updateProjectPartSources(TypedEq<Utils::SmallStringView>("project1"), ElementsAre(IsFileId(1, 1), IsFileId(42, 23))));
|
|
|
|
EXPECT_CALL(mockStorage, updateProjectPartSources(TypedEq<Utils::SmallStringView>("project2"), ElementsAre(IsFileId(1, 1), IsFileId(42, 23))));
|
2018-01-22 14:21:01 +01:00
|
|
|
|
|
|
|
indexer.updateProjectParts({projectPart1, projectPart2}, Utils::clone(unsaved));
|
2017-08-02 16:00:55 +02:00
|
|
|
}
|
|
|
|
|
2018-01-25 15:20:47 +01:00
|
|
|
TEST_F(SymbolIndexer, UpdateProjectPartsCallsInsertOrUpdateUsedMacros)
|
2018-01-23 18:08:17 +01:00
|
|
|
{
|
2018-01-25 15:20:47 +01:00
|
|
|
EXPECT_CALL(mockStorage, insertOrUpdateUsedMacros(Eq(usedMacros)))
|
2018-01-23 18:08:17 +01:00
|
|
|
.Times(2);
|
|
|
|
|
|
|
|
indexer.updateProjectParts({projectPart1, projectPart2}, Utils::clone(unsaved));
|
|
|
|
}
|
|
|
|
|
2018-02-01 18:29:45 +01:00
|
|
|
TEST_F(SymbolIndexer, UpdateProjectPartsCallsInsertFileStatuses)
|
2018-01-30 14:02:48 +01:00
|
|
|
{
|
2018-02-01 18:29:45 +01:00
|
|
|
EXPECT_CALL(mockStorage, insertFileStatuses(Eq(fileStatus)))
|
2018-01-30 14:02:48 +01:00
|
|
|
.Times(2);
|
|
|
|
|
|
|
|
indexer.updateProjectParts({projectPart1, projectPart2}, Utils::clone(unsaved));
|
|
|
|
}
|
|
|
|
|
2018-01-31 14:14:34 +01:00
|
|
|
TEST_F(SymbolIndexer, UpdateProjectPartsCallsInsertOrUpdateSourceDependencies)
|
|
|
|
{
|
|
|
|
EXPECT_CALL(mockStorage, insertOrUpdateSourceDependencies(Eq(sourceDependencies)))
|
|
|
|
.Times(2);
|
|
|
|
|
|
|
|
indexer.updateProjectParts({projectPart1, projectPart2}, Utils::clone(unsaved));
|
|
|
|
}
|
|
|
|
|
2018-02-07 16:18:16 +01:00
|
|
|
TEST_F(SymbolIndexer, UpdateProjectPartsCallsFetchProjectPartArtefacts)
|
|
|
|
{
|
|
|
|
EXPECT_CALL(mockStorage, fetchProjectPartArtefact(TypedEq<Utils::SmallStringView>(projectPart1.projectPartId())));
|
|
|
|
EXPECT_CALL(mockStorage, fetchProjectPartArtefact(TypedEq<Utils::SmallStringView>(projectPart2.projectPartId())));
|
|
|
|
|
|
|
|
indexer.updateProjectParts({projectPart1, projectPart2}, Utils::clone(unsaved));
|
|
|
|
}
|
|
|
|
|
2017-08-02 16:00:55 +02:00
|
|
|
TEST_F(SymbolIndexer, UpdateProjectPartsCallsInOrder)
|
|
|
|
{
|
2017-12-13 12:04:19 +01:00
|
|
|
InSequence s;
|
|
|
|
|
|
|
|
EXPECT_CALL(mockCollector, clear());
|
2018-02-07 16:18:16 +01:00
|
|
|
EXPECT_CALL(mockStorage, fetchProjectPartArtefact(TypedEq<Utils::SmallStringView>(projectPart1.projectPartId())));
|
2017-08-02 16:00:55 +02:00
|
|
|
EXPECT_CALL(mockCollector, addFiles(_, _));
|
2017-08-17 12:44:52 +02:00
|
|
|
EXPECT_CALL(mockCollector, addUnsavedFiles(unsaved));
|
2017-08-02 16:00:55 +02:00
|
|
|
EXPECT_CALL(mockCollector, collectSymbols());
|
2018-01-22 14:21:01 +01:00
|
|
|
EXPECT_CALL(mockSqliteTransactionBackend, immediateBegin());
|
2017-08-02 16:00:55 +02:00
|
|
|
EXPECT_CALL(mockStorage, addSymbolsAndSourceLocations(symbolEntries, sourceLocations));
|
2018-02-06 19:03:14 +01:00
|
|
|
EXPECT_CALL(mockStorage, insertOrUpdateProjectPart(Eq(projectPart1.projectPartId()), Eq(projectPart1.arguments()), Eq(projectPart1.compilerMacros())));
|
2018-02-06 11:16:29 +01:00
|
|
|
EXPECT_CALL(mockStorage, updateProjectPartSources(TypedEq<Utils::SmallStringView>(projectPart1.projectPartId()), Eq(sourceFileIds)));
|
2018-01-25 15:20:47 +01:00
|
|
|
EXPECT_CALL(mockStorage, insertOrUpdateUsedMacros(Eq(usedMacros)));
|
2018-02-01 18:29:45 +01:00
|
|
|
EXPECT_CALL(mockStorage, insertFileStatuses(Eq(fileStatus)));
|
2018-01-31 14:14:34 +01:00
|
|
|
EXPECT_CALL(mockStorage, insertOrUpdateSourceDependencies(Eq(sourceDependencies)));
|
2018-01-22 14:21:01 +01:00
|
|
|
EXPECT_CALL(mockSqliteTransactionBackend, commit());
|
2017-08-02 16:00:55 +02:00
|
|
|
|
2017-08-17 12:44:52 +02:00
|
|
|
indexer.updateProjectParts({projectPart1}, Utils::clone(unsaved));
|
2017-08-02 16:00:55 +02:00
|
|
|
}
|
|
|
|
|
2017-12-27 13:20:24 +01:00
|
|
|
TEST_F(SymbolIndexer, CallSetNotifier)
|
|
|
|
{
|
|
|
|
EXPECT_CALL(mockPathWatcher, setNotifier(_));
|
|
|
|
|
2018-01-22 14:21:01 +01:00
|
|
|
ClangBackEnd::SymbolIndexer indexer{mockCollector, mockStorage, mockPathWatcher, mockFilePathCaching, mockSqliteTransactionBackend};
|
2017-12-27 13:20:24 +01:00
|
|
|
}
|
2017-08-02 16:00:55 +02:00
|
|
|
|
2018-02-06 11:16:29 +01:00
|
|
|
TEST_F(SymbolIndexer, PathChangedCallsFetchProjectPartArtefactInStorage)
|
|
|
|
{
|
|
|
|
EXPECT_CALL(mockStorage, fetchProjectPartArtefact(sourceFileIds[0]));
|
|
|
|
EXPECT_CALL(mockStorage, fetchProjectPartArtefact(sourceFileIds[1]));
|
|
|
|
|
|
|
|
indexer.pathsChanged(sourceFileIds);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SymbolIndexer, UpdateChangedPathCallsInOrder)
|
|
|
|
{
|
|
|
|
InSequence s;
|
|
|
|
|
|
|
|
EXPECT_CALL(mockCollector, clear());
|
|
|
|
EXPECT_CALL(mockStorage, fetchProjectPartArtefact(sourceFileIds[0]));
|
|
|
|
EXPECT_CALL(mockCollector, addFiles(ElementsAre(sourceFileIds[0]), Eq(artefact.compilerArguments)));
|
|
|
|
EXPECT_CALL(mockCollector, collectSymbols());
|
|
|
|
EXPECT_CALL(mockSqliteTransactionBackend, immediateBegin());
|
|
|
|
EXPECT_CALL(mockStorage, addSymbolsAndSourceLocations(symbolEntries, sourceLocations));
|
|
|
|
EXPECT_CALL(mockStorage, updateProjectPartSources(artefact.projectPartId, Eq(sourceFileIds)));
|
|
|
|
EXPECT_CALL(mockStorage, insertOrUpdateUsedMacros(Eq(usedMacros)));
|
|
|
|
EXPECT_CALL(mockStorage, insertFileStatuses(Eq(fileStatus)));
|
|
|
|
EXPECT_CALL(mockStorage, insertOrUpdateSourceDependencies(Eq(sourceDependencies)));
|
|
|
|
EXPECT_CALL(mockSqliteTransactionBackend, commit());
|
|
|
|
|
|
|
|
indexer.updateChangedPath(sourceFileIds[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SymbolIndexer, HandleEmptyOptionalInUpdateChangedPath)
|
|
|
|
{
|
2018-02-07 16:18:16 +01:00
|
|
|
ON_CALL(mockStorage, fetchProjectPartArtefact(A<FilePathId>()))
|
|
|
|
.WillByDefault(Return(Utils::optional<ClangBackEnd::ProjectPartArtefact>()));
|
2018-02-06 11:16:29 +01:00
|
|
|
|
|
|
|
EXPECT_CALL(mockCollector, clear());
|
|
|
|
EXPECT_CALL(mockStorage, fetchProjectPartArtefact(sourceFileIds[0]));
|
|
|
|
EXPECT_CALL(mockCollector, addFiles(_, _)).Times(0);
|
|
|
|
EXPECT_CALL(mockCollector, collectSymbols()).Times(0);
|
|
|
|
EXPECT_CALL(mockSqliteTransactionBackend, immediateBegin()).Times(0);
|
|
|
|
EXPECT_CALL(mockStorage, addSymbolsAndSourceLocations(_, _)).Times(0);
|
|
|
|
EXPECT_CALL(mockStorage, updateProjectPartSources(An<int>(), _)).Times(0);
|
|
|
|
EXPECT_CALL(mockStorage, insertOrUpdateUsedMacros(_)).Times(0);
|
|
|
|
EXPECT_CALL(mockStorage, insertFileStatuses(_)).Times(0);
|
|
|
|
EXPECT_CALL(mockStorage, insertOrUpdateSourceDependencies(_)).Times(0);
|
|
|
|
EXPECT_CALL(mockSqliteTransactionBackend, commit()).Times(0);
|
|
|
|
|
|
|
|
indexer.updateChangedPath(sourceFileIds[0]);
|
|
|
|
}
|
|
|
|
|
2018-02-07 16:18:16 +01:00
|
|
|
TEST_F(SymbolIndexer, CompilerMacrosAreNotDifferent)
|
|
|
|
{
|
|
|
|
ON_CALL(mockStorage, fetchProjectPartArtefact(An<Utils::SmallStringView>())).WillByDefault(Return(artefact));
|
|
|
|
|
|
|
|
auto areDifferent = indexer.compilerMacrosAreDifferent(projectPart1);
|
|
|
|
|
|
|
|
ASSERT_FALSE(areDifferent);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SymbolIndexer, CompilerMacrosAreDifferent)
|
|
|
|
{
|
|
|
|
ON_CALL(mockStorage, fetchProjectPartArtefact(An<Utils::SmallStringView>())).WillByDefault(Return(artefact));
|
|
|
|
|
|
|
|
auto areDifferent = indexer.compilerMacrosAreDifferent(projectPart2);
|
|
|
|
|
|
|
|
ASSERT_TRUE(areDifferent);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(SymbolIndexer, DontReparseInUpdateProjectPartsIfDefinesAreTheSame)
|
|
|
|
{
|
|
|
|
ON_CALL(mockStorage, fetchProjectPartArtefact(An<Utils::SmallStringView>())).WillByDefault(Return(artefact));
|
|
|
|
|
|
|
|
EXPECT_CALL(mockCollector, clear());
|
|
|
|
EXPECT_CALL(mockStorage, fetchProjectPartArtefact(TypedEq<Utils::SmallStringView>(projectPart1.projectPartId())));
|
|
|
|
EXPECT_CALL(mockCollector, addFiles(_, _)).Times(0);
|
|
|
|
EXPECT_CALL(mockCollector, collectSymbols()).Times(0);
|
|
|
|
EXPECT_CALL(mockSqliteTransactionBackend, immediateBegin()).Times(0);
|
|
|
|
EXPECT_CALL(mockStorage, addSymbolsAndSourceLocations(_, _)).Times(0);
|
|
|
|
EXPECT_CALL(mockStorage, updateProjectPartSources(An<int>(), _)).Times(0);
|
|
|
|
EXPECT_CALL(mockStorage, insertOrUpdateUsedMacros(_)).Times(0);
|
|
|
|
EXPECT_CALL(mockStorage, insertFileStatuses(_)).Times(0);
|
|
|
|
EXPECT_CALL(mockStorage, insertOrUpdateSourceDependencies(_)).Times(0);
|
|
|
|
EXPECT_CALL(mockSqliteTransactionBackend, commit()).Times(0);
|
|
|
|
|
|
|
|
indexer.updateProjectPart(std::move(projectPart1), {});
|
|
|
|
}
|
|
|
|
|
2017-08-02 16:00:55 +02:00
|
|
|
}
|