forked from qt-creator/qt-creator
		
	Change-Id: I37ce70c06f98d6bc5f359f9fe34fd73a1cc51795 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
		
			
				
	
	
		
			201 lines
		
	
	
		
			6.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			201 lines
		
	
	
		
			6.7 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 "dummyclangipcclient.h"
 | |
| #include "processevents-utilities.h"
 | |
| 
 | |
| #include <clangbackend_global.h>
 | |
| #include <clangdocuments.h>
 | |
| #include <clangexceptions.h>
 | |
| #include <clangsupportivetranslationunitinitializer.h>
 | |
| #include <clangtranslationunit.h>
 | |
| #include <clangtranslationunits.h>
 | |
| #include <utf8string.h>
 | |
| 
 | |
| #include <clang-c/Index.h>
 | |
| 
 | |
| #include <memory>
 | |
| 
 | |
| using namespace ClangBackEnd;
 | |
| 
 | |
| using testing::Eq;
 | |
| 
 | |
| namespace {
 | |
| 
 | |
| class SupportiveTranslationUnitInitializer : public ::testing::Test
 | |
| {
 | |
| protected:
 | |
|     void SetUp() override;
 | |
|     void parse();
 | |
|     Jobs::RunningJob createRunningJob(JobRequest::Type type) const;
 | |
| 
 | |
|     void assertNoJobIsRunningAndEmptyQueue();
 | |
|     void assertSingleJobRunningAndEmptyQueue();
 | |
| 
 | |
|     bool waitUntilJobChainFinished(int timeOutInMs = 10000) const;
 | |
| 
 | |
| protected:
 | |
|     Utf8String filePath{Utf8StringLiteral(TESTDATA_DIR"/translationunits.cpp")};
 | |
| 
 | |
|     UnsavedFiles unsavedFiles;
 | |
|     const QVector<FileContainer> fileContainer{FileContainer(filePath)};
 | |
|     Documents documents{unsavedFiles};
 | |
|     Document document{documents.create(fileContainer).front()};
 | |
|     DummyIpcClient dummyClientInterface;
 | |
| 
 | |
|     Jobs jobs{documents, unsavedFiles, dummyClientInterface};
 | |
| 
 | |
|     ClangBackEnd::SupportiveTranslationUnitInitializer initializer{document, jobs};
 | |
| };
 | |
| 
 | |
| using SupportiveTranslationUnitInitializerSlowTest = SupportiveTranslationUnitInitializer;
 | |
| 
 | |
| TEST_F(SupportiveTranslationUnitInitializer, HasInitiallyNotInitializedState)
 | |
| {
 | |
|     ASSERT_THAT(initializer.state(), Eq(ClangBackEnd::SupportiveTranslationUnitInitializer::State::NotInitialized));
 | |
| }
 | |
| 
 | |
| TEST_F(SupportiveTranslationUnitInitializer, StartInitializingAbortsIfDocumentIsClosed)
 | |
| {
 | |
|     documents.remove({FileContainer(filePath)});
 | |
| 
 | |
|     initializer.startInitializing();
 | |
| 
 | |
|     assertNoJobIsRunningAndEmptyQueue();
 | |
|     ASSERT_THAT(initializer.state(), Eq(ClangBackEnd::SupportiveTranslationUnitInitializer::State::Aborted));
 | |
| }
 | |
| 
 | |
| TEST_F(SupportiveTranslationUnitInitializerSlowTest, StartInitializingAddsTranslationUnit)
 | |
| {
 | |
|     initializer.startInitializing();
 | |
| 
 | |
|     ASSERT_THAT(document.translationUnits().size(), Eq(2));
 | |
|     ASSERT_FALSE(document.translationUnits().areAllTranslationUnitsParsed());
 | |
| }
 | |
| 
 | |
| TEST_F(SupportiveTranslationUnitInitializerSlowTest, StartInitializingStartsJob)
 | |
| {
 | |
|     initializer.startInitializing();
 | |
| 
 | |
|     assertSingleJobRunningAndEmptyQueue();
 | |
|     const Jobs::RunningJob runningJob = jobs.runningJobs().first();
 | |
|     ASSERT_THAT(runningJob.jobRequest.type, JobRequest::Type::ParseSupportiveTranslationUnit);
 | |
| }
 | |
| 
 | |
| TEST_F(SupportiveTranslationUnitInitializerSlowTest, Abort)
 | |
| {
 | |
|     initializer.startInitializing();
 | |
|     assertSingleJobRunningAndEmptyQueue();
 | |
| 
 | |
|     initializer.abort();
 | |
| 
 | |
|     ASSERT_THAT(initializer.state(),
 | |
|                 Eq(ClangBackEnd::SupportiveTranslationUnitInitializer::State::Aborted));
 | |
|     ASSERT_FALSE(jobs.jobFinishedCallback());
 | |
| }
 | |
| 
 | |
| TEST_F(SupportiveTranslationUnitInitializer, CheckIfParseJobFinishedAbortsIfDocumentIsClosed)
 | |
| {
 | |
|     documents.remove({FileContainer(filePath)});
 | |
|     initializer.setState(ClangBackEnd::SupportiveTranslationUnitInitializer::State::WaitingForParseJob);
 | |
|     const Jobs::RunningJob runningJob = createRunningJob(JobRequest::Type::ParseSupportiveTranslationUnit);
 | |
| 
 | |
|     initializer.checkIfParseJobFinished(runningJob);
 | |
| 
 | |
|     assertNoJobIsRunningAndEmptyQueue();
 | |
|     ASSERT_THAT(initializer.state(), Eq(ClangBackEnd::SupportiveTranslationUnitInitializer::State::Aborted));
 | |
| }
 | |
| 
 | |
| TEST_F(SupportiveTranslationUnitInitializerSlowTest, CheckIfParseJobFinishedStartsJob)
 | |
| {
 | |
|     parse();
 | |
|     initializer.setState(ClangBackEnd::SupportiveTranslationUnitInitializer::State::WaitingForParseJob);
 | |
|     Jobs::RunningJob runningJob = createRunningJob(JobRequest::Type::ParseSupportiveTranslationUnit);
 | |
| 
 | |
|     initializer.checkIfParseJobFinished(runningJob);
 | |
|     jobs.process();
 | |
| 
 | |
|     ASSERT_THAT(jobs.runningJobs(), IsEmpty());
 | |
|     ASSERT_THAT(jobs.queue(), IsEmpty());
 | |
| }
 | |
| 
 | |
| TEST_F(SupportiveTranslationUnitInitializerSlowTest, FullRun)
 | |
| {
 | |
|     parse();
 | |
|     initializer.startInitializing();
 | |
| 
 | |
|     waitUntilJobChainFinished();
 | |
|     ASSERT_THAT(initializer.state(), Eq(ClangBackEnd::SupportiveTranslationUnitInitializer::State::Initialized));
 | |
| }
 | |
| 
 | |
| void SupportiveTranslationUnitInitializer::SetUp()
 | |
| {
 | |
|     documents.setVisibleInEditors({filePath});
 | |
|     documents.setUsedByCurrentEditor(filePath);
 | |
| 
 | |
|     const auto isDocumentClosed = [this](const Utf8String &filePath) {
 | |
|         return !documents.hasDocument(filePath);
 | |
|     };
 | |
|     initializer.setIsDocumentClosedChecker(isDocumentClosed);
 | |
| }
 | |
| 
 | |
| void SupportiveTranslationUnitInitializer::parse()
 | |
| {
 | |
|     document.parse();
 | |
| }
 | |
| 
 | |
| Jobs::RunningJob SupportiveTranslationUnitInitializer::createRunningJob(JobRequest::Type type) const
 | |
| {
 | |
|     const JobRequest jobRequest = jobs.createJobRequest(document,
 | |
|                                                         type,
 | |
|                                                         PreferredTranslationUnit::LastUninitialized);
 | |
|     return Jobs::RunningJob{jobRequest, Utf8String(), QFuture<void>()};
 | |
| }
 | |
| 
 | |
| void SupportiveTranslationUnitInitializer::assertNoJobIsRunningAndEmptyQueue()
 | |
| {
 | |
|     ASSERT_TRUE(jobs.runningJobs().isEmpty());
 | |
|     ASSERT_TRUE(jobs.queue().isEmpty());
 | |
| }
 | |
| 
 | |
| void SupportiveTranslationUnitInitializer::assertSingleJobRunningAndEmptyQueue()
 | |
| {
 | |
|     ASSERT_THAT(jobs.runningJobs().size(), Eq(1));
 | |
|     ASSERT_TRUE(jobs.queue().isEmpty());
 | |
| }
 | |
| 
 | |
| bool SupportiveTranslationUnitInitializer::waitUntilJobChainFinished(int timeOutInMs) const
 | |
| {
 | |
|     const auto noJobsRunningAnymore = [this]() {
 | |
|         return jobs.runningJobs().isEmpty() && jobs.queue().isEmpty();
 | |
|     };
 | |
| 
 | |
|     return ProcessEventUtilities::processEventsUntilTrue(noJobsRunningAnymore, timeOutInMs);
 | |
| }
 | |
| 
 | |
| } // anonymous namespace
 |