forked from qt-creator/qt-creator
123 lines
4.5 KiB
C++
123 lines
4.5 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 "mockpchmanagernotifier.h"
|
|
#include "mockpchmanagerserver.h"
|
|
#include "mockprecompiledheaderstorage.h"
|
|
#include "mockprogressmanager.h"
|
|
#include "mockprojectpartsstorage.h"
|
|
|
|
#include <pchmanagerclient.h>
|
|
#include <pchmanagerprojectupdater.h>
|
|
|
|
#include <clangindexingsettingsmanager.h>
|
|
#include <filepathcaching.h>
|
|
#include <precompiledheadersupdatedmessage.h>
|
|
#include <progressmessage.h>
|
|
#include <refactoringdatabaseinitializer.h>
|
|
#include <removegeneratedfilesmessage.h>
|
|
#include <removeprojectpartsmessage.h>
|
|
#include <updategeneratedfilesmessage.h>
|
|
#include <updateprojectpartsmessage.h>
|
|
|
|
namespace {
|
|
|
|
using ClangBackEnd::PrecompiledHeadersUpdatedMessage;
|
|
|
|
class PchManagerClient : public ::testing::Test
|
|
{
|
|
protected:
|
|
NiceMock<MockProgressManager> mockPchCreationProgressManager;
|
|
NiceMock<MockProgressManager> mockDependencyCreationProgressManager;
|
|
ClangPchManager::PchManagerClient client{mockPchCreationProgressManager,
|
|
mockDependencyCreationProgressManager};
|
|
NiceMock<MockPchManagerServer> mockPchManagerServer;
|
|
NiceMock<MockProjectPartsStorage> mockProjectPartsStorage;
|
|
NiceMock<MockPchManagerNotifier> mockPchManagerNotifier{client};
|
|
Sqlite::Database database{":memory:", Sqlite::JournalMode::Memory};
|
|
ClangBackEnd::RefactoringDatabaseInitializer<Sqlite::Database> initializer{database};
|
|
ClangBackEnd::FilePathCaching filePathCache{database};
|
|
ClangPchManager::ClangIndexingSettingsManager settingsManager;
|
|
ClangPchManager::PchManagerProjectUpdater projectUpdater{mockPchManagerServer,
|
|
client,
|
|
filePathCache,
|
|
mockProjectPartsStorage,
|
|
settingsManager};
|
|
ClangBackEnd::ProjectPartId projectPartId{1};
|
|
PrecompiledHeadersUpdatedMessage message{projectPartId};
|
|
ClangBackEnd::ProjectPartId projectPartId2{2};
|
|
PrecompiledHeadersUpdatedMessage message2{projectPartId2};
|
|
};
|
|
|
|
TEST_F(PchManagerClient, NotifierAttached)
|
|
{
|
|
MockPchManagerNotifier notifier(client);
|
|
|
|
ASSERT_THAT(client.notifiers(), Contains(¬ifier));
|
|
}
|
|
|
|
TEST_F(PchManagerClient, NotifierDetached)
|
|
{
|
|
MockPchManagerNotifier *notifierPointer = nullptr;
|
|
|
|
{
|
|
MockPchManagerNotifier notifier(client);
|
|
notifierPointer = ¬ifier;
|
|
}
|
|
|
|
ASSERT_THAT(client.notifiers(), Not(Contains(notifierPointer)));
|
|
}
|
|
|
|
TEST_F(PchManagerClient, Update)
|
|
{
|
|
EXPECT_CALL(mockPchManagerNotifier, precompiledHeaderUpdated(projectPartId));
|
|
|
|
client.precompiledHeadersUpdated(message.clone());
|
|
}
|
|
|
|
TEST_F(PchManagerClient, Remove)
|
|
{
|
|
EXPECT_CALL(mockPchManagerNotifier, precompiledHeaderRemoved(projectPartId)).Times(2);
|
|
|
|
projectUpdater.removeProjectParts({projectPartId, projectPartId});
|
|
}
|
|
|
|
TEST_F(PchManagerClient, SetPchCreationProgress)
|
|
{
|
|
EXPECT_CALL(mockPchCreationProgressManager, setProgress(10, 20));
|
|
|
|
client.progress({ClangBackEnd::ProgressType::PrecompiledHeader, 10, 20});
|
|
}
|
|
|
|
TEST_F(PchManagerClient, SetDependencyCreationProgress)
|
|
{
|
|
EXPECT_CALL(mockDependencyCreationProgressManager, setProgress(30, 40));
|
|
|
|
client.progress({ClangBackEnd::ProgressType::DependencyCreation, 30, 40});
|
|
}
|
|
} // namespace
|