| 
									
										
										
										
											2017-01-31 11:14:54 +01:00
										 |  |  | /****************************************************************************
 | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ** 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"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-13 17:35:00 +01:00
										 |  |  | #include "mocktimer.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <changedfilepathcompressor.h>
 | 
					
						
							|  |  |  | #include <filepathcaching.h>
 | 
					
						
							|  |  |  | #include <refactoringdatabaseinitializer.h>
 | 
					
						
							| 
									
										
										
										
											2017-01-31 11:14:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | using testing::ElementsAre; | 
					
						
							|  |  |  | using testing::Invoke; | 
					
						
							|  |  |  | using testing::IsEmpty; | 
					
						
							|  |  |  | using testing::NiceMock; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-16 17:48:53 +01:00
										 |  |  | using ClangBackEnd::FilePath; | 
					
						
							| 
									
										
										
										
											2017-12-13 17:35:00 +01:00
										 |  |  | using ClangBackEnd::FilePathId; | 
					
						
							| 
									
										
										
										
											2017-11-16 17:48:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-31 11:14:54 +01:00
										 |  |  | class ChangedFilePathCompressor : public testing::Test | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | protected: | 
					
						
							| 
									
										
										
										
											2017-12-13 17:35:00 +01:00
										 |  |  |     void SetUp() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2017-12-14 11:37:19 +01:00
										 |  |  |         compressor.setCallback(mockCompressorCallback.AsStdFunction()); | 
					
						
							| 
									
										
										
										
											2017-12-13 17:35:00 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     FilePathId filePathId(const QString &filePath) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         Utils::SmallString utf8FilePath{filePath}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return filePathCache.filePathId(ClangBackEnd::FilePathView{utf8FilePath}); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-01-31 11:14:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							| 
									
										
										
										
											2017-12-13 17:35:00 +01:00
										 |  |  |     Sqlite::Database database{":memory:", Sqlite::JournalMode::Memory}; | 
					
						
							|  |  |  |     ClangBackEnd::RefactoringDatabaseInitializer<Sqlite::Database> initializer{database}; | 
					
						
							|  |  |  |     ClangBackEnd::FilePathCaching filePathCache{database}; | 
					
						
							| 
									
										
										
										
											2017-12-14 11:37:19 +01:00
										 |  |  |     NiceMock<MockFunction<void (const ClangBackEnd::FilePathIds &filePathIds)>> mockCompressorCallback; | 
					
						
							| 
									
										
										
										
											2017-12-13 17:35:00 +01:00
										 |  |  |     ClangBackEnd::ChangedFilePathCompressor<NiceMock<MockTimer>> compressor{filePathCache}; | 
					
						
							|  |  |  |     NiceMock<MockTimer> &mockTimer = compressor.timer(); | 
					
						
							| 
									
										
										
										
											2017-01-31 11:14:54 +01:00
										 |  |  |     QString filePath1{"filePath1"}; | 
					
						
							|  |  |  |     QString filePath2{"filePath2"}; | 
					
						
							| 
									
										
										
										
											2017-12-14 11:37:19 +01:00
										 |  |  |     FilePathId filePathId1 = filePathId(filePath1); | 
					
						
							|  |  |  |     FilePathId filePathId2 = filePathId(filePath2); | 
					
						
							| 
									
										
										
										
											2017-01-31 11:14:54 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_F(ChangedFilePathCompressor, AddFilePath) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-12-13 17:35:00 +01:00
										 |  |  |     compressor.addFilePath(filePath1); | 
					
						
							| 
									
										
										
										
											2017-01-31 11:14:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-13 17:35:00 +01:00
										 |  |  |     ASSERT_THAT(compressor.takeFilePathIds(), ElementsAre(filePathId(filePath1))); | 
					
						
							| 
									
										
										
										
											2017-01-31 11:14:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_F(ChangedFilePathCompressor, NoFilePathsAferTakenThem) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-12-13 17:35:00 +01:00
										 |  |  |     compressor.addFilePath(filePath1); | 
					
						
							| 
									
										
										
										
											2017-01-31 11:14:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-13 17:35:00 +01:00
										 |  |  |     compressor.takeFilePathIds(); | 
					
						
							| 
									
										
										
										
											2017-01-31 11:14:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-13 17:35:00 +01:00
										 |  |  |     ASSERT_THAT(compressor.takeFilePathIds(), IsEmpty()); | 
					
						
							| 
									
										
										
										
											2017-01-31 11:14:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_F(ChangedFilePathCompressor, CallRestartTimerAfterAddingPath) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-12-13 17:35:00 +01:00
										 |  |  |     EXPECT_CALL(mockTimer, start(20)); | 
					
						
							| 
									
										
										
										
											2017-01-31 11:14:54 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-13 17:35:00 +01:00
										 |  |  |     compressor.addFilePath(filePath1); | 
					
						
							| 
									
										
										
										
											2017-01-31 11:14:54 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_F(ChangedFilePathCompressor, CallTimeOutAfterAddingPath) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-12-14 11:37:19 +01:00
										 |  |  |     EXPECT_CALL(mockCompressorCallback, Call(ElementsAre(filePathId1, filePathId2))); | 
					
						
							| 
									
										
										
										
											2017-01-31 11:14:54 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     compressor.addFilePath(filePath1); | 
					
						
							|  |  |  |     compressor.addFilePath(filePath2); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-14 11:37:19 +01:00
										 |  |  | TEST_F(ChangedFilePathCompressor, RemoveDuplicates) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     EXPECT_CALL(mockCompressorCallback, Call(ElementsAre(filePathId1, filePathId2))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     compressor.addFilePath(filePath1); | 
					
						
							|  |  |  |     compressor.addFilePath(filePath2); | 
					
						
							|  |  |  |     compressor.addFilePath(filePath1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-31 11:14:54 +01:00
										 |  |  | } |