Files
qt-creator/tests/unit/unittest/symbolscollectormanager-test.cpp
Marco Bubke a86867eb8a Clang: Introduce parallel indexing
Change-Id: I522cb18e6d24b7dbed5d5dfa3a732e5b3b5113bb
Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
2018-09-03 12:13:10 +00:00

81 lines
2.5 KiB
C++

/****************************************************************************
**
** Copyright (C) 2018 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 "mocksymbolscollector.h"
#include <sqlitedatabase.h>
#include <refactoringdatabaseinitializer.h>
#include <symbolscollectormanager.h>
namespace {
class SymbolsCollectorManager : public testing::Test
{
protected:
Sqlite::Database database{":memory:", Sqlite::JournalMode::Memory};
ClangBackEnd::RefactoringDatabaseInitializer<Sqlite::Database> initializer{database};
ClangBackEnd::SymbolsCollectorManager<NiceMock<MockSymbolsCollector>> manager{database};
};
TEST_F(SymbolsCollectorManager, CreateUnsedSystemCollector)
{
manager.unusedSymbolsCollector();
manager.unusedSymbolsCollector();
ASSERT_THAT(manager.collectors(), SizeIs(2));
}
TEST_F(SymbolsCollectorManager, ReuseUnsedSystemCollector)
{
auto &collector = manager.unusedSymbolsCollector();
collector.setIsUsed(false);
manager.unusedSymbolsCollector();
ASSERT_THAT(manager.collectors(), SizeIs(1));
}
TEST_F(SymbolsCollectorManager, AsGetNewUnusedSymbolsCollectorItIsSetUsed)
{
auto &collector = manager.unusedSymbolsCollector();
ASSERT_TRUE(collector.isUsed());
}
TEST_F(SymbolsCollectorManager, AsGetReusedUnusedSymbolsCollectorItIsSetUsed)
{
auto &collector = manager.unusedSymbolsCollector();
collector.setIsUsed(false);
auto &collector2 = manager.unusedSymbolsCollector();
ASSERT_TRUE(collector2.isUsed());
}
}