2017-08-21 12:00:27 +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-09-21 11:43:59 +02:00
|
|
|
#include "mockfilepathcaching.h"
|
2018-02-20 12:43:05 +01:00
|
|
|
#include "mocksqlitedatabase.h"
|
2017-08-21 12:00:27 +02:00
|
|
|
|
|
|
|
|
#include <storagesqlitestatementfactory.h>
|
|
|
|
|
#include <symbolstorage.h>
|
|
|
|
|
#include <sqlitedatabase.h>
|
|
|
|
|
|
|
|
|
|
#include <storagesqlitestatementfactory.h>
|
|
|
|
|
|
2018-02-06 11:16:29 +01:00
|
|
|
#include <utils/optional.h>
|
|
|
|
|
|
2017-08-21 12:00:27 +02:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
using Utils::PathString;
|
2018-02-14 18:49:25 +01:00
|
|
|
using ClangBackEnd::FilePathId;
|
2017-09-21 11:43:59 +02:00
|
|
|
using ClangBackEnd::FilePathCachingInterface;
|
2017-08-21 12:00:27 +02:00
|
|
|
using ClangBackEnd::SymbolEntries;
|
|
|
|
|
using ClangBackEnd::SymbolEntry;
|
|
|
|
|
using ClangBackEnd::SourceLocationEntries;
|
|
|
|
|
using ClangBackEnd::SourceLocationEntry;
|
|
|
|
|
using ClangBackEnd::StorageSqliteStatementFactory;
|
2018-02-14 18:49:25 +01:00
|
|
|
using ClangBackEnd::SymbolIndex;
|
2017-08-21 12:00:27 +02:00
|
|
|
using ClangBackEnd::SymbolType;
|
2018-03-22 17:46:43 +01:00
|
|
|
using ClangBackEnd::SymbolKind;
|
2017-09-18 10:21:45 +02:00
|
|
|
using Sqlite::Database;
|
|
|
|
|
using Sqlite::Table;
|
2017-08-21 12:00:27 +02:00
|
|
|
|
2018-02-20 12:43:05 +01:00
|
|
|
using StatementFactory = StorageSqliteStatementFactory<MockSqliteDatabase>;
|
2017-08-21 12:00:27 +02:00
|
|
|
using Storage = ClangBackEnd::SymbolStorage<StatementFactory>;
|
|
|
|
|
|
|
|
|
|
class SymbolStorage : public testing::Test
|
|
|
|
|
{
|
|
|
|
|
protected:
|
2017-09-21 11:43:59 +02:00
|
|
|
MockFilePathCaching filePathCache;
|
2018-01-22 14:21:01 +01:00
|
|
|
NiceMock<MockSqliteDatabase> mockDatabase;
|
2017-08-21 12:00:27 +02:00
|
|
|
StatementFactory statementFactory{mockDatabase};
|
|
|
|
|
MockSqliteWriteStatement &insertSymbolsToNewSymbolsStatement = statementFactory.insertSymbolsToNewSymbolsStatement;
|
|
|
|
|
MockSqliteWriteStatement &insertLocationsToNewLocationsStatement = statementFactory.insertLocationsToNewLocationsStatement;
|
|
|
|
|
MockSqliteReadStatement &selectNewSourceIdsStatement = statementFactory.selectNewSourceIdsStatement;
|
|
|
|
|
MockSqliteWriteStatement &addNewSymbolsToSymbolsStatement = statementFactory.addNewSymbolsToSymbolsStatement;
|
|
|
|
|
MockSqliteWriteStatement &syncNewSymbolsFromSymbolsStatement = statementFactory.syncNewSymbolsFromSymbolsStatement;
|
|
|
|
|
MockSqliteWriteStatement &syncSymbolsIntoNewLocationsStatement = statementFactory.syncSymbolsIntoNewLocationsStatement;
|
|
|
|
|
MockSqliteWriteStatement &deleteAllLocationsFromUpdatedFilesStatement = statementFactory.deleteAllLocationsFromUpdatedFilesStatement;
|
|
|
|
|
MockSqliteWriteStatement &insertNewLocationsInLocationsStatement = statementFactory.insertNewLocationsInLocationsStatement;
|
|
|
|
|
MockSqliteWriteStatement &deleteNewSymbolsTableStatement = statementFactory.deleteNewSymbolsTableStatement;
|
|
|
|
|
MockSqliteWriteStatement &deleteNewLocationsTableStatement = statementFactory.deleteNewLocationsTableStatement;
|
2018-01-24 19:06:58 +01:00
|
|
|
MockSqliteWriteStatement &insertProjectPartStatement = statementFactory.insertProjectPartStatement;
|
|
|
|
|
MockSqliteWriteStatement &updateProjectPartStatement = statementFactory.updateProjectPartStatement;
|
|
|
|
|
MockSqliteReadStatement &getProjectPartIdStatement = statementFactory.getProjectPartIdStatement;
|
|
|
|
|
MockSqliteWriteStatement &deleteAllProjectPartsSourcesWithProjectPartIdStatement = statementFactory.deleteAllProjectPartsSourcesWithProjectPartIdStatement;
|
|
|
|
|
MockSqliteWriteStatement &insertProjectPartSourcesStatement = statementFactory.insertProjectPartSourcesStatement;
|
2018-01-25 15:20:47 +01:00
|
|
|
MockSqliteWriteStatement &insertIntoNewUsedMacrosStatement = statementFactory.insertIntoNewUsedMacrosStatement;
|
|
|
|
|
MockSqliteWriteStatement &syncNewUsedMacrosStatement = statementFactory.syncNewUsedMacrosStatement;
|
|
|
|
|
MockSqliteWriteStatement &deleteOutdatedUsedMacrosStatement = statementFactory.deleteOutdatedUsedMacrosStatement;
|
|
|
|
|
MockSqliteWriteStatement &deleteNewUsedMacrosTableStatement = statementFactory.deleteNewUsedMacrosTableStatement;
|
2018-02-01 18:29:45 +01:00
|
|
|
MockSqliteWriteStatement &insertFileStatuses = statementFactory.insertFileStatuses;
|
2018-01-30 18:41:45 +01:00
|
|
|
MockSqliteWriteStatement &insertIntoNewSourceDependenciesStatement = statementFactory.insertIntoNewSourceDependenciesStatement;
|
|
|
|
|
MockSqliteWriteStatement &syncNewSourceDependenciesStatement = statementFactory.syncNewSourceDependenciesStatement;
|
|
|
|
|
MockSqliteWriteStatement &deleteOutdatedSourceDependenciesStatement = statementFactory.deleteOutdatedSourceDependenciesStatement;
|
|
|
|
|
MockSqliteWriteStatement &deleteNewSourceDependenciesStatement = statementFactory.deleteNewSourceDependenciesStatement;
|
2018-02-08 12:48:46 +01:00
|
|
|
MockSqliteReadStatement &getProjectPartArtefactsBySourceId = statementFactory.getProjectPartArtefactsBySourceId;
|
|
|
|
|
MockSqliteReadStatement &getProjectPartArtefactsByProjectPartName = statementFactory.getProjectPartArtefactsByProjectPartName;
|
2018-02-08 17:49:02 +01:00
|
|
|
MockSqliteReadStatement &getLowestLastModifiedTimeOfDependencies = statementFactory.getLowestLastModifiedTimeOfDependencies;
|
2018-02-20 12:43:05 +01:00
|
|
|
MockSqliteReadStatement &getPrecompiledHeader = statementFactory.getPrecompiledHeader;
|
|
|
|
|
|
2018-03-22 17:46:43 +01:00
|
|
|
SymbolEntries symbolEntries{{1, {"functionUSR", "function", SymbolKind::Function}},
|
|
|
|
|
{2, {"function2USR", "function2", SymbolKind::Function}}};
|
2017-09-21 11:43:59 +02:00
|
|
|
SourceLocationEntries sourceLocations{{1, {1, 3}, {42, 23}, SymbolType::Declaration},
|
|
|
|
|
{2, {1, 4}, {7, 11}, SymbolType::Declaration}};
|
2018-02-08 12:48:46 +01:00
|
|
|
ClangBackEnd::ProjectPartArtefact artefact{"[\"-DFOO\"]", "{\"FOO\":\"1\"}", "[\"/includes\"]", 74};
|
2017-08-21 12:00:27 +02:00
|
|
|
Storage storage{statementFactory, filePathCache};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
TEST_F(SymbolStorage, CreateAndFillTemporaryLocationsTable)
|
|
|
|
|
{
|
|
|
|
|
InSequence sequence;
|
|
|
|
|
|
2018-02-14 18:49:25 +01:00
|
|
|
EXPECT_CALL(insertLocationsToNewLocationsStatement, write(TypedEq<SymbolIndex>(1), TypedEq<int>(42), TypedEq<int>(23), TypedEq<int>(3)));
|
|
|
|
|
EXPECT_CALL(insertLocationsToNewLocationsStatement, write(TypedEq<SymbolIndex>(2), TypedEq<int>(7), TypedEq<int>(11), TypedEq<int>(4)));
|
2017-08-21 12:00:27 +02:00
|
|
|
|
|
|
|
|
storage.fillTemporaryLocationsTable(sourceLocations);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(SymbolStorage, AddNewSymbolsToSymbols)
|
|
|
|
|
{
|
|
|
|
|
EXPECT_CALL(addNewSymbolsToSymbolsStatement, execute());
|
|
|
|
|
|
|
|
|
|
storage.addNewSymbolsToSymbols();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(SymbolStorage, SyncNewSymbolsFromSymbols)
|
|
|
|
|
{
|
|
|
|
|
EXPECT_CALL(syncNewSymbolsFromSymbolsStatement, execute());
|
|
|
|
|
|
|
|
|
|
storage.syncNewSymbolsFromSymbols();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(SymbolStorage, SyncSymbolsIntoNewLocations)
|
|
|
|
|
{
|
|
|
|
|
EXPECT_CALL(syncSymbolsIntoNewLocationsStatement, execute());
|
|
|
|
|
|
|
|
|
|
storage.syncSymbolsIntoNewLocations();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(SymbolStorage, DeleteAllLocationsFromUpdatedFiles)
|
|
|
|
|
{
|
|
|
|
|
EXPECT_CALL(deleteAllLocationsFromUpdatedFilesStatement, execute());
|
|
|
|
|
|
|
|
|
|
storage.deleteAllLocationsFromUpdatedFiles();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(SymbolStorage, InsertNewLocationsInLocations)
|
|
|
|
|
{
|
|
|
|
|
EXPECT_CALL(insertNewLocationsInLocationsStatement, execute());
|
|
|
|
|
|
|
|
|
|
storage.insertNewLocationsInLocations();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(SymbolStorage, DropNewSymbolsTable)
|
|
|
|
|
{
|
|
|
|
|
EXPECT_CALL(deleteNewSymbolsTableStatement, execute());
|
|
|
|
|
|
|
|
|
|
storage.deleteNewSymbolsTable();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(SymbolStorage, DropNewLocationsTable)
|
|
|
|
|
{
|
|
|
|
|
EXPECT_CALL(deleteNewLocationsTableStatement, execute());
|
|
|
|
|
|
|
|
|
|
storage.deleteNewLocationsTable();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(SymbolStorage, AddSymbolsAndSourceLocationsCallsWrite)
|
|
|
|
|
{
|
|
|
|
|
InSequence sequence;
|
|
|
|
|
|
2018-01-30 13:31:14 +01:00
|
|
|
EXPECT_CALL(insertSymbolsToNewSymbolsStatement, write(An<uint>(), An<Utils::SmallStringView>(), _)).Times(2);
|
2018-02-14 18:49:25 +01:00
|
|
|
EXPECT_CALL(insertLocationsToNewLocationsStatement, write(TypedEq<SymbolIndex>(1), TypedEq<int>(42), TypedEq<int>(23), TypedEq<int>(3)));
|
|
|
|
|
EXPECT_CALL(insertLocationsToNewLocationsStatement, write(TypedEq<SymbolIndex>(2), TypedEq<int>(7), TypedEq<int>(11), TypedEq<int>(4)));
|
2017-08-21 12:00:27 +02:00
|
|
|
EXPECT_CALL(addNewSymbolsToSymbolsStatement, execute());
|
|
|
|
|
EXPECT_CALL(syncNewSymbolsFromSymbolsStatement, execute());
|
|
|
|
|
EXPECT_CALL(syncSymbolsIntoNewLocationsStatement, execute());
|
|
|
|
|
EXPECT_CALL(deleteAllLocationsFromUpdatedFilesStatement, execute());
|
|
|
|
|
EXPECT_CALL(insertNewLocationsInLocationsStatement, execute());
|
|
|
|
|
EXPECT_CALL(deleteNewSymbolsTableStatement, execute());
|
|
|
|
|
EXPECT_CALL(deleteNewLocationsTableStatement, execute());
|
|
|
|
|
|
|
|
|
|
storage.addSymbolsAndSourceLocations(symbolEntries, sourceLocations);
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-22 14:21:01 +01:00
|
|
|
TEST_F(SymbolStorage, ConvertStringsToJson)
|
|
|
|
|
{
|
|
|
|
|
Utils::SmallStringVector strings{"foo", "bar", "foo"};
|
|
|
|
|
|
|
|
|
|
auto jsonText = storage.toJson(strings);
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(jsonText, Eq("[\"foo\",\"bar\",\"foo\"]"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(SymbolStorage, InsertProjectPart)
|
|
|
|
|
{
|
|
|
|
|
InSequence sequence;
|
|
|
|
|
ON_CALL(mockDatabase, lastInsertedRowId()).WillByDefault(Return(1));
|
|
|
|
|
|
|
|
|
|
EXPECT_CALL(mockDatabase, setLastInsertedRowId(-1));
|
2018-01-29 12:07:15 +01:00
|
|
|
EXPECT_CALL(insertProjectPartStatement,
|
|
|
|
|
write(TypedEq<Utils::SmallStringView>("project"),
|
|
|
|
|
TypedEq<Utils::SmallStringView>("[\"foo\"]"),
|
2018-02-08 12:48:46 +01:00
|
|
|
TypedEq<Utils::SmallStringView>("{\"FOO\":\"1\"}"),
|
|
|
|
|
TypedEq<Utils::SmallStringView>("[\"/includes\"]")));
|
2018-01-22 14:21:01 +01:00
|
|
|
EXPECT_CALL(mockDatabase, lastInsertedRowId());
|
|
|
|
|
|
2018-02-08 12:48:46 +01:00
|
|
|
storage.insertOrUpdateProjectPart("project", {"foo"}, {{"FOO", "1"}}, {"/includes"});
|
2018-01-22 14:21:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(SymbolStorage, UpdateProjectPart)
|
|
|
|
|
{
|
|
|
|
|
InSequence sequence;
|
|
|
|
|
ON_CALL(mockDatabase, lastInsertedRowId()).WillByDefault(Return(-1));
|
|
|
|
|
|
|
|
|
|
EXPECT_CALL(mockDatabase, setLastInsertedRowId(-1));
|
2018-01-29 12:07:15 +01:00
|
|
|
EXPECT_CALL(insertProjectPartStatement,
|
|
|
|
|
write(TypedEq<Utils::SmallStringView>("project"),
|
|
|
|
|
TypedEq<Utils::SmallStringView>("[\"foo\"]"),
|
2018-02-08 12:48:46 +01:00
|
|
|
TypedEq<Utils::SmallStringView>("{\"FOO\":\"1\"}"),
|
|
|
|
|
TypedEq<Utils::SmallStringView>("[\"/includes\"]")));
|
2018-01-22 14:21:01 +01:00
|
|
|
EXPECT_CALL(mockDatabase, lastInsertedRowId());
|
2018-01-29 12:07:15 +01:00
|
|
|
EXPECT_CALL(updateProjectPartStatement,
|
|
|
|
|
write(TypedEq<Utils::SmallStringView>("[\"foo\"]"),
|
2018-02-06 19:03:14 +01:00
|
|
|
TypedEq<Utils::SmallStringView>("{\"FOO\":\"1\"}"),
|
2018-02-20 12:43:05 +01:00
|
|
|
TypedEq<Utils::SmallStringView>("[\"/includes\"]"),
|
|
|
|
|
TypedEq<Utils::SmallStringView>("project")));
|
2018-01-22 14:21:01 +01:00
|
|
|
|
2018-02-08 12:48:46 +01:00
|
|
|
storage.insertOrUpdateProjectPart("project", {"foo"}, {{"FOO", "1"}}, {"/includes"});
|
2018-01-22 14:21:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(SymbolStorage, UpdateProjectPartSources)
|
2017-08-21 12:00:27 +02:00
|
|
|
{
|
2018-01-22 14:21:01 +01:00
|
|
|
InSequence sequence;
|
|
|
|
|
|
2018-01-24 19:06:58 +01:00
|
|
|
EXPECT_CALL(getProjectPartIdStatement, valueReturnInt32(TypedEq<Utils::SmallStringView>("project"))).WillRepeatedly(Return(42));
|
|
|
|
|
EXPECT_CALL(deleteAllProjectPartsSourcesWithProjectPartIdStatement, write(TypedEq<int>(42)));
|
|
|
|
|
EXPECT_CALL(insertProjectPartSourcesStatement, write(TypedEq<int>(42), TypedEq<int>(1)));
|
|
|
|
|
EXPECT_CALL(insertProjectPartSourcesStatement, write(TypedEq<int>(42), TypedEq<int>(2)));
|
2018-01-22 14:21:01 +01:00
|
|
|
|
|
|
|
|
storage.updateProjectPartSources("project", {{1, 1}, {1, 2}});
|
2017-08-21 12:00:27 +02:00
|
|
|
}
|
2018-01-22 14:21:01 +01:00
|
|
|
|
2018-01-25 15:20:47 +01:00
|
|
|
TEST_F(SymbolStorage, InsertOrUpdateUsedMacros)
|
2018-01-24 18:06:15 +01:00
|
|
|
{
|
|
|
|
|
InSequence sequence;
|
|
|
|
|
|
2018-04-04 22:45:43 +03:00
|
|
|
EXPECT_CALL(insertIntoNewUsedMacrosStatement, write(TypedEq<uint>(42u), TypedEq<Utils::SmallStringView>("FOO")));
|
|
|
|
|
EXPECT_CALL(insertIntoNewUsedMacrosStatement, write(TypedEq<uint>(43u), TypedEq<Utils::SmallStringView>("BAR")));
|
2018-01-25 15:20:47 +01:00
|
|
|
EXPECT_CALL(syncNewUsedMacrosStatement, execute());
|
|
|
|
|
EXPECT_CALL(deleteOutdatedUsedMacrosStatement, execute());
|
|
|
|
|
EXPECT_CALL(deleteNewUsedMacrosTableStatement, execute());
|
2018-01-24 18:06:15 +01:00
|
|
|
|
2018-01-25 15:20:47 +01:00
|
|
|
storage.insertOrUpdateUsedMacros({{"FOO", {1, 42}}, {"BAR", {1, 43}}});
|
2018-01-24 18:06:15 +01:00
|
|
|
}
|
2018-01-22 14:21:01 +01:00
|
|
|
|
2018-02-01 18:29:45 +01:00
|
|
|
TEST_F(SymbolStorage, InsertFileStatuses)
|
2018-01-30 13:31:14 +01:00
|
|
|
{
|
2018-02-14 18:49:25 +01:00
|
|
|
EXPECT_CALL(insertFileStatuses, write(TypedEq<int>(42), TypedEq<off_t>(1), TypedEq<time_t>(2), TypedEq<bool>(false)));
|
|
|
|
|
EXPECT_CALL(insertFileStatuses, write(TypedEq<int>(43), TypedEq<off_t>(4), TypedEq<time_t>(5), TypedEq<bool>(true)));
|
2018-01-30 13:31:14 +01:00
|
|
|
|
2018-02-14 18:49:25 +01:00
|
|
|
storage.insertFileStatuses({{{1, 42}, 1, 2, false}, {{1, 43}, 4, 5, true}});
|
2018-01-30 13:31:14 +01:00
|
|
|
}
|
|
|
|
|
|
2018-01-30 18:41:45 +01:00
|
|
|
TEST_F(SymbolStorage, InsertOrUpdateSourceDependencies)
|
|
|
|
|
{
|
|
|
|
|
InSequence sequence;
|
|
|
|
|
|
|
|
|
|
EXPECT_CALL(insertIntoNewSourceDependenciesStatement, write(TypedEq<int>(42), TypedEq<int>(1)));
|
|
|
|
|
EXPECT_CALL(insertIntoNewSourceDependenciesStatement, write(TypedEq<int>(42), TypedEq<int>(2)));
|
|
|
|
|
EXPECT_CALL(syncNewSourceDependenciesStatement, execute());
|
|
|
|
|
EXPECT_CALL(deleteOutdatedSourceDependenciesStatement, execute());
|
|
|
|
|
EXPECT_CALL(deleteNewSourceDependenciesStatement, execute());
|
|
|
|
|
|
|
|
|
|
storage.insertOrUpdateSourceDependencies({{{1, 42}, {1, 1}}, {{1, 42}, {1, 2}}});
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-06 19:03:14 +01:00
|
|
|
TEST_F(SymbolStorage, FetchProjectPartArtefactBySourceIdCallsValueInStatement)
|
2018-02-06 11:16:29 +01:00
|
|
|
{
|
2018-02-08 12:48:46 +01:00
|
|
|
EXPECT_CALL(getProjectPartArtefactsBySourceId, valueReturnProjectPartArtefact(1))
|
2018-02-06 11:16:29 +01:00
|
|
|
.WillRepeatedly(Return(artefact));
|
|
|
|
|
|
|
|
|
|
storage.fetchProjectPartArtefact({2, 1});
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-06 19:03:14 +01:00
|
|
|
TEST_F(SymbolStorage, FetchProjectPartArtefactBySourceIdReturnArtefact)
|
2018-02-06 11:16:29 +01:00
|
|
|
{
|
2018-02-08 12:48:46 +01:00
|
|
|
EXPECT_CALL(getProjectPartArtefactsBySourceId, valueReturnProjectPartArtefact(1))
|
2018-02-06 11:16:29 +01:00
|
|
|
.WillRepeatedly(Return(artefact));
|
|
|
|
|
|
|
|
|
|
auto result = storage.fetchProjectPartArtefact({2, 1});
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(result, Eq(artefact));
|
|
|
|
|
}
|
2018-02-07 16:18:16 +01:00
|
|
|
|
|
|
|
|
TEST_F(SymbolStorage, FetchProjectPartArtefactByProjectNameCallsValueInStatement)
|
|
|
|
|
{
|
2018-02-08 12:48:46 +01:00
|
|
|
EXPECT_CALL(getProjectPartArtefactsBySourceId, valueReturnProjectPartArtefact(1))
|
2018-02-07 16:18:16 +01:00
|
|
|
.WillRepeatedly(Return(artefact));
|
|
|
|
|
|
|
|
|
|
storage.fetchProjectPartArtefact({2, 1});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(SymbolStorage, FetchProjectPartArtefactByProjectNameReturnArtefact)
|
|
|
|
|
{
|
2018-02-08 12:48:46 +01:00
|
|
|
EXPECT_CALL(getProjectPartArtefactsBySourceId, valueReturnProjectPartArtefact(1))
|
2018-02-07 16:18:16 +01:00
|
|
|
.WillRepeatedly(Return(artefact));
|
|
|
|
|
|
|
|
|
|
auto result = storage.fetchProjectPartArtefact({2, 1});
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(result, Eq(artefact));
|
|
|
|
|
}
|
2018-02-08 17:49:02 +01:00
|
|
|
|
|
|
|
|
TEST_F(SymbolStorage, FetchLowestLastModifiedTimeIfNoModificationTimeExists)
|
|
|
|
|
{
|
|
|
|
|
EXPECT_CALL(getLowestLastModifiedTimeOfDependencies, valueReturnInt64(Eq(1)));
|
|
|
|
|
|
|
|
|
|
auto lowestLastModified = storage.fetchLowestLastModifiedTime({1, 1});
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(lowestLastModified, Eq(0));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(SymbolStorage, FetchLowestLastModifiedTime)
|
|
|
|
|
{
|
|
|
|
|
EXPECT_CALL(getLowestLastModifiedTimeOfDependencies, valueReturnInt64(Eq(21)))
|
|
|
|
|
.WillRepeatedly(Return(12));
|
|
|
|
|
|
|
|
|
|
auto lowestLastModified = storage.fetchLowestLastModifiedTime({1, 21});
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(lowestLastModified, Eq(12));
|
|
|
|
|
}
|
2018-02-20 12:43:05 +01:00
|
|
|
TEST_F(SymbolStorage, FetchPrecompiledHeaderCallsValueInStatement)
|
|
|
|
|
{
|
|
|
|
|
EXPECT_CALL(getPrecompiledHeader, valueReturnProjectPartPch(Eq(25)));
|
|
|
|
|
|
|
|
|
|
storage.fetchPrecompiledHeader(25);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(SymbolStorage, FetchPrecompiledHeader)
|
|
|
|
|
{
|
|
|
|
|
ClangBackEnd::ProjectPartPch pch{"", "/path/to/pch", 131};
|
|
|
|
|
EXPECT_CALL(getPrecompiledHeader, valueReturnProjectPartPch(Eq(25)))
|
|
|
|
|
.WillRepeatedly(Return(pch));
|
|
|
|
|
|
|
|
|
|
auto precompiledHeader = storage.fetchPrecompiledHeader(25);
|
|
|
|
|
|
|
|
|
|
ASSERT_THAT(precompiledHeader.value(), Eq(pch));
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-08 17:49:02 +01:00
|
|
|
|
|
|
|
|
|
2017-08-21 12:00:27 +02:00
|
|
|
}
|
|
|
|
|
|