forked from qt-creator/qt-creator
		
	Change-Id: Ia845c803fce85ad0e29e2cf6b64820b86599bac6 Reviewed-by: David Schulz <david.schulz@qt.io>
		
			
				
	
	
		
			130 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			130 lines
		
	
	
		
			4.2 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 <clangtranslationunitupdater.h>
 | |
| 
 | |
| #include <clang-c/Index.h>
 | |
| 
 | |
| using ClangBackEnd::TranslationUnitUpdater;
 | |
| using ClangBackEnd::TranslationUnitUpdateInput;
 | |
| using ClangBackEnd::TranslationUnitUpdateResult;
 | |
| 
 | |
| using testing::Gt;
 | |
| 
 | |
| namespace {
 | |
| 
 | |
| class TranslationUnitUpdater : public ::testing::Test
 | |
| {
 | |
| protected:
 | |
|     void TearDown() override;
 | |
| 
 | |
|     ::TranslationUnitUpdater createUpdater(const TranslationUnitUpdateInput &input);
 | |
| 
 | |
|     enum ReparseMode { SetReparseNeeded, DoNotSetReparseNeeded };
 | |
|     TranslationUnitUpdateInput createInput(ReparseMode reparseMode = DoNotSetReparseNeeded);
 | |
| 
 | |
| protected:
 | |
|     CXIndex cxIndex = nullptr;
 | |
|     CXTranslationUnit cxTranslationUnit = nullptr;
 | |
| 
 | |
|     Utf8String filePath = Utf8StringLiteral(TESTDATA_DIR"/translationunits.cpp");
 | |
| };
 | |
| 
 | |
| TEST_F(TranslationUnitUpdater, ParsesIfNeeded)
 | |
| {
 | |
|     ::TranslationUnitUpdater updater = createUpdater(createInput());
 | |
| 
 | |
|     TranslationUnitUpdateResult result = updater.update(::TranslationUnitUpdater::UpdateMode::AsNeeded);
 | |
| 
 | |
|     ASSERT_TRUE(cxTranslationUnit);
 | |
|     ASSERT_FALSE(result.hasReparsed());
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnitUpdater, ReparsesIfNeeded)
 | |
| {
 | |
|     ::TranslationUnitUpdater updater = createUpdater(createInput(SetReparseNeeded));
 | |
| 
 | |
|     TranslationUnitUpdateResult result = updater.update(::TranslationUnitUpdater::UpdateMode::AsNeeded);
 | |
| 
 | |
|     ASSERT_TRUE(result.hasReparsed());
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnitUpdater, UpdatesParseTimePoint)
 | |
| {
 | |
|     ::TranslationUnitUpdater updater = createUpdater(createInput());
 | |
|     const std::chrono::steady_clock::time_point now = std::chrono::steady_clock::now();
 | |
| 
 | |
|     TranslationUnitUpdateResult result = updater.update(::TranslationUnitUpdater::UpdateMode::AsNeeded);
 | |
| 
 | |
|     ASSERT_TRUE(result.hasParsed());
 | |
|     ASSERT_THAT(result.parseTimePoint, Gt(now));
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnitUpdater, NotUpdatingParseTimePointForReparseOnly)
 | |
| {
 | |
|     ::TranslationUnitUpdater updater = createUpdater(createInput());
 | |
|     TranslationUnitUpdateResult result = updater.update(::TranslationUnitUpdater::UpdateMode::AsNeeded);
 | |
| 
 | |
|     ::TranslationUnitUpdater reparseUpdater = createUpdater(createInput(SetReparseNeeded));
 | |
|     result = reparseUpdater.update(::TranslationUnitUpdater::UpdateMode::AsNeeded);
 | |
| 
 | |
|     ASSERT_TRUE(result.hasReparsed());
 | |
|     ASSERT_FALSE(result.hasParsed());
 | |
| }
 | |
| 
 | |
| TEST_F(TranslationUnitUpdater, UpdatesDependendOnFilesOnParse)
 | |
| {
 | |
|     ::TranslationUnitUpdater updater = createUpdater(createInput());
 | |
| 
 | |
|     TranslationUnitUpdateResult result = updater.update(::TranslationUnitUpdater::UpdateMode::AsNeeded);
 | |
| 
 | |
|     ASSERT_FALSE(result.dependedOnFilePaths.isEmpty());
 | |
| }
 | |
| 
 | |
| void TranslationUnitUpdater::TearDown()
 | |
| {
 | |
|     clang_disposeIndex(cxIndex);
 | |
| }
 | |
| 
 | |
| ::TranslationUnitUpdater
 | |
| TranslationUnitUpdater::createUpdater(const TranslationUnitUpdateInput &input)
 | |
| {
 | |
|     return ::TranslationUnitUpdater(cxIndex, cxTranslationUnit, input);
 | |
| }
 | |
| 
 | |
| TranslationUnitUpdateInput
 | |
| TranslationUnitUpdater::createInput(ReparseMode reparseMode)
 | |
| {
 | |
|     TranslationUnitUpdateInput updateInput;
 | |
|     updateInput.filePath = filePath;
 | |
|     updateInput.reparseNeeded = reparseMode == SetReparseNeeded;
 | |
| 
 | |
|     return updateInput;
 | |
| }
 | |
| 
 | |
| } // anonymous
 |