| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | /****************************************************************************
 | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ** Copyright (C) 2017 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 "mockfilepathstorage.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <filepathcache.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | using ClangBackEnd::FilePathId; | 
					
						
							|  |  |  | using Cache = ClangBackEnd::FilePathCache<NiceMock<MockFilePathStorage>>; | 
					
						
							|  |  |  | using ClangBackEnd::FilePathId; | 
					
						
							| 
									
										
										
										
											2017-11-16 17:48:53 +01:00
										 |  |  | using NFP = ClangBackEnd::FilePath; | 
					
						
							|  |  |  | using ClangBackEnd::FilePathView; | 
					
						
							| 
									
										
										
										
											2018-11-06 19:02:00 +01:00
										 |  |  | using ClangBackEnd::Sources::SourceNameAndDirectoryId; | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | class FilePathCache : public testing::Test | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | protected: | 
					
						
							| 
									
										
										
										
											2018-11-06 19:02:00 +01:00
										 |  |  |     void SetUp() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         ON_CALL(mockStorage, fetchDirectoryId(Eq("/path/to"))) | 
					
						
							|  |  |  |                 .WillByDefault(Return(5)); | 
					
						
							|  |  |  |         ON_CALL(mockStorage, fetchDirectoryId(Eq("/path2/to"))) | 
					
						
							|  |  |  |                 .WillByDefault(Return(6)); | 
					
						
							|  |  |  |         ON_CALL(mockStorage, fetchSourceId(5, Eq("file.cpp"))) | 
					
						
							|  |  |  |                 .WillByDefault(Return(42)); | 
					
						
							|  |  |  |         ON_CALL(mockStorage, fetchSourceId(5, Eq("file2.cpp"))) | 
					
						
							|  |  |  |                 .WillByDefault(Return(63)); | 
					
						
							|  |  |  |         ON_CALL(mockStorage, fetchSourceId(6, Eq("file.cpp"))) | 
					
						
							|  |  |  |                 .WillByDefault(Return(72)); | 
					
						
							|  |  |  |         ON_CALL(mockStorage, fetchDirectoryPath(5)) | 
					
						
							|  |  |  |                 .WillByDefault(Return(Utils::PathString("/path/to"))); | 
					
						
							|  |  |  |         ON_CALL(mockStorage, fetchSourceNameAndDirectoryId(42)) | 
					
						
							|  |  |  |                 .WillByDefault(Return(SourceNameAndDirectoryId("file.cpp", 5))); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | protected: | 
					
						
							|  |  |  |     NiceMock<MockFilePathStorage> mockStorage; | 
					
						
							|  |  |  |     Cache cache{mockStorage}; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_F(FilePathCache, FilePathIdWithOutAnyEntryCallDirectoryId) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     EXPECT_CALL(mockStorage, fetchDirectoryId(Eq("/path/to"))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-16 17:48:53 +01:00
										 |  |  |     cache.filePathId(FilePathView("/path/to/file.cpp")); | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_F(FilePathCache, FilePathIdWithOutAnyEntryCalls) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     EXPECT_CALL(mockStorage, fetchSourceId(5, Eq("file.cpp"))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-16 17:48:53 +01:00
										 |  |  |     cache.filePathId(FilePathView("/path/to/file.cpp")); | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-17 13:52:33 +01:00
										 |  |  | TEST_F(FilePathCache, FilePathIdOfFilePathIdWithOutAnyEntry) | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-11-16 17:48:53 +01:00
										 |  |  |     auto filePathId = cache.filePathId(FilePathView("/path/to/file.cpp")); | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-17 13:52:33 +01:00
										 |  |  |     ASSERT_THAT(filePathId.filePathId, 42); | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_F(FilePathCache,  IfEntryExistsDontCallInStrorage) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-11-16 17:48:53 +01:00
										 |  |  |     cache.filePathId(FilePathView("/path/to/file.cpp")); | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     EXPECT_CALL(mockStorage, fetchDirectoryId(Eq("/path/to"))).Times(0); | 
					
						
							|  |  |  |     EXPECT_CALL(mockStorage, fetchSourceId(5, Eq("file.cpp"))).Times(0); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-16 17:48:53 +01:00
										 |  |  |     cache.filePathId(FilePathView("/path/to/file.cpp")); | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_F(FilePathCache,  IfDirectoryEntryExistsDontCallFetchDirectoryIdButStillCallFetchSourceId) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-11-16 17:48:53 +01:00
										 |  |  |     cache.filePathId(FilePathView("/path/to/file2.cpp")); | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     EXPECT_CALL(mockStorage, fetchDirectoryId(Eq("/path/to"))).Times(0); | 
					
						
							|  |  |  |     EXPECT_CALL(mockStorage, fetchSourceId(5, Eq("file.cpp"))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-16 17:48:53 +01:00
										 |  |  |     cache.filePathId(FilePathView("/path/to/file.cpp")); | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-17 13:52:33 +01:00
										 |  |  | TEST_F(FilePathCache, GetFilePathIdWithCachedValue) | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-11-16 17:48:53 +01:00
										 |  |  |     cache.filePathId(FilePathView("/path/to/file.cpp")); | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-16 17:48:53 +01:00
										 |  |  |     auto filePathId = cache.filePathId(FilePathView("/path/to/file.cpp")); | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-17 13:52:33 +01:00
										 |  |  |     ASSERT_THAT(filePathId.filePathId, 42); | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-17 13:52:33 +01:00
										 |  |  | TEST_F(FilePathCache, GetFilePathIdWithDirectoryIdCached) | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2017-11-16 17:48:53 +01:00
										 |  |  |     cache.filePathId(FilePathView("/path/to/file.cpp")); | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-16 17:48:53 +01:00
										 |  |  |     auto filePathId = cache.filePathId(FilePathView("/path/to/file2.cpp")); | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-17 13:52:33 +01:00
										 |  |  |     ASSERT_THAT(filePathId.filePathId, 63); | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_F(FilePathCache, ThrowForGettingAFilePathWithAnInvalidId) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     FilePathId filePathId; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ASSERT_THROW(cache.filePath(filePathId), ClangBackEnd::NoFilePathForInvalidFilePathId); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_F(FilePathCache, GetAFilePath) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-11-16 17:48:53 +01:00
										 |  |  |     FilePathId filePathId = cache.filePathId(FilePathView("/path/to/file.cpp")); | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     auto filePath = cache.filePath(filePathId); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-16 17:48:53 +01:00
										 |  |  |     ASSERT_THAT(filePath, Eq(FilePathView{"/path/to/file.cpp"})); | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_F(FilePathCache, GetAFilePathWithCachedFilePathId) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-06 19:02:00 +01:00
										 |  |  |     FilePathId filePathId{42}; | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     auto filePath = cache.filePath(filePathId); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-16 17:48:53 +01:00
										 |  |  |     ASSERT_THAT(filePath, Eq(FilePathView{"/path/to/file.cpp"})); | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-27 14:23:42 +02:00
										 |  |  | TEST_F(FilePathCache, FileNamesAreUniqueForEveryDirectory) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     FilePathId filePathId = cache.filePathId(FilePathView("/path/to/file.cpp")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     FilePathId filePath2Id = cache.filePathId(FilePathView("/path2/to/file.cpp")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ASSERT_THAT(filePath2Id.filePathId, Ne(filePathId.filePathId)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_F(FilePathCache, DuplicateFilePathsAreEqual) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     FilePathId filePath1Id = cache.filePathId(FilePathView("/path/to/file.cpp")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     FilePathId filePath2Id = cache.filePathId(FilePathView("/path/to/file.cpp")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ASSERT_THAT(filePath2Id, Eq(filePath1Id)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-21 11:43:59 +02:00
										 |  |  | } |