forked from qt-creator/qt-creator
		
	This simplifies UnsavedFiles and makes TemporaryModifiedUnsavedFiles useless. Change-Id: I1896f971215ed22ce7aa7bf21b16381862b7469d Reviewed-by: Marco Bubke <marco.bubke@theqtcompany.com>
		
			
				
	
	
		
			183 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			183 lines
		
	
	
		
			6.6 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 "gtest/gtest.h"
 | |
| #include "gmock/gmock-matchers.h"
 | |
| #include "gmock/gmock.h"
 | |
| #include "gtest-qt-printing.h"
 | |
| 
 | |
| #include <filecontainer.h>
 | |
| #include <unsavedfiles.h>
 | |
| #include <unsavedfile.h>
 | |
| 
 | |
| #include <QVector>
 | |
| 
 | |
| using ClangBackEnd::UnsavedFile;
 | |
| using ClangBackEnd::UnsavedFiles;
 | |
| using ClangBackEnd::FileContainer;
 | |
| 
 | |
| using ::testing::Gt;
 | |
| using ::testing::IsNull;
 | |
| using ::testing::NotNull;
 | |
| using ::testing::PrintToString;
 | |
| 
 | |
| namespace {
 | |
| 
 | |
| bool operator==(const ClangBackEnd::FileContainer &fileContainer, const CXUnsavedFile &cxUnsavedFile)
 | |
| {
 | |
|     return fileContainer.filePath() == Utf8String::fromUtf8(cxUnsavedFile.Filename)
 | |
|             && fileContainer.unsavedFileContent() == Utf8String(cxUnsavedFile.Contents, cxUnsavedFile.Length);
 | |
| }
 | |
| 
 | |
| bool fileContainersContainsItemMatchingToCxUnsavedFile(const QVector<FileContainer> &fileContainers, const CXUnsavedFile &cxUnsavedFile)
 | |
| {
 | |
|     for (const FileContainer &fileContainer : fileContainers)
 | |
|         if (fileContainer == cxUnsavedFile)
 | |
|             return true;
 | |
| 
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| MATCHER_P(HasUnsavedFiles, fileContainers, "")
 | |
| {
 | |
|     ClangBackEnd::UnsavedFiles unsavedFiles = arg;
 | |
|     if (unsavedFiles.count() != uint(fileContainers.size())) {
 | |
|         *result_listener << "unsaved count is " << unsavedFiles.count() << " and not " << fileContainers.size();
 | |
|         return false;
 | |
|     }
 | |
| 
 | |
|     for (uint i = 0, to = unsavedFiles.count(); i < to; ++i) {
 | |
|         CXUnsavedFile *cxUnsavedFile = unsavedFiles.cxUnsavedFiles() + i;
 | |
|         if (!fileContainersContainsItemMatchingToCxUnsavedFile(fileContainers, *cxUnsavedFile))
 | |
|             return false;
 | |
|     }
 | |
| 
 | |
|     return true;
 | |
| }
 | |
| 
 | |
| MATCHER_P3(IsUnsavedFile, fileName, contents, contentsLength,
 | |
|           std::string(negation ? "isn't" : "is")
 | |
|           + " file name " + PrintToString(fileName)
 | |
|           + ", contents " + PrintToString(contents)
 | |
|           + ", contents length " + PrintToString(contentsLength))
 | |
| {
 | |
|     CXUnsavedFile unsavedFile = arg.cxUnsavedFile;
 | |
| 
 | |
|     return fileName == unsavedFile.Filename
 | |
|         && contents == unsavedFile.Contents
 | |
|         && size_t(contentsLength) == unsavedFile.Length;
 | |
| }
 | |
| 
 | |
| class UnsavedFiles : public ::testing::Test
 | |
| {
 | |
| protected:
 | |
|     ::UnsavedFiles unsavedFiles;
 | |
|     Utf8String filePath{Utf8StringLiteral("file.cpp")};
 | |
|     Utf8String projectPartId{Utf8StringLiteral("projectPartId")};
 | |
| 
 | |
|     Utf8String unsavedContent1{Utf8StringLiteral("foo")};
 | |
|     Utf8String unsavedContent2{Utf8StringLiteral("bar")};
 | |
| };
 | |
| 
 | |
| TEST_F(UnsavedFiles, DoNothingForUpdateIfFileHasNoUnsavedContent)
 | |
| {
 | |
|     QVector<FileContainer> fileContainers({FileContainer(filePath, projectPartId)});
 | |
| 
 | |
|     unsavedFiles.createOrUpdate(fileContainers);
 | |
| 
 | |
|     ASSERT_THAT(unsavedFiles, HasUnsavedFiles(QVector<FileContainer>()));
 | |
| }
 | |
| 
 | |
| TEST_F(UnsavedFiles, AddUnsavedFileForUpdateWithUnsavedContent)
 | |
| {
 | |
|     QVector<FileContainer> fileContainers({FileContainer(filePath, projectPartId),
 | |
|                                            FileContainer(filePath, projectPartId, unsavedContent1, true)});
 | |
|     unsavedFiles.createOrUpdate(fileContainers);
 | |
| 
 | |
|     ASSERT_THAT(unsavedFiles, HasUnsavedFiles(QVector<FileContainer>({FileContainer(filePath, projectPartId, unsavedContent1, true)})));
 | |
| }
 | |
| 
 | |
| TEST_F(UnsavedFiles, RemoveUnsavedFileForUpdateWithUnsavedContent)
 | |
| {
 | |
|     QVector<FileContainer> fileContainers({FileContainer(filePath, projectPartId, unsavedContent1, true),
 | |
|                                            FileContainer(filePath, projectPartId)});
 | |
| 
 | |
|     unsavedFiles.createOrUpdate(fileContainers);
 | |
| 
 | |
|     ASSERT_THAT(unsavedFiles, HasUnsavedFiles(QVector<FileContainer>()));
 | |
| }
 | |
| 
 | |
| TEST_F(UnsavedFiles, ExchangeUnsavedFileForUpdateWithUnsavedContent)
 | |
| {
 | |
|     QVector<FileContainer> fileContainers({FileContainer(filePath, projectPartId, unsavedContent1, true),
 | |
|                                            FileContainer(filePath, projectPartId, unsavedContent2, true)});
 | |
|     unsavedFiles.createOrUpdate(fileContainers);
 | |
| 
 | |
|     ASSERT_THAT(unsavedFiles, HasUnsavedFiles(QVector<FileContainer>({FileContainer(filePath, projectPartId, unsavedContent2, true)})));
 | |
| }
 | |
| 
 | |
| TEST_F(UnsavedFiles, TimeStampIsUpdatedAsUnsavedFilesChanged)
 | |
| {
 | |
|     QVector<FileContainer> fileContainers({FileContainer(filePath, projectPartId, unsavedContent1, true),
 | |
|                                            FileContainer(filePath, projectPartId, unsavedContent2, true)});
 | |
|     auto lastChangeTimePoint = unsavedFiles.lastChangeTimePoint();
 | |
| 
 | |
|     unsavedFiles.createOrUpdate(fileContainers);
 | |
| 
 | |
|     ASSERT_THAT(unsavedFiles.lastChangeTimePoint(), Gt(lastChangeTimePoint));
 | |
| }
 | |
| 
 | |
| TEST_F(UnsavedFiles, RemoveUnsavedFiles)
 | |
| {
 | |
|     QVector<FileContainer> fileContainers({FileContainer(filePath, projectPartId, unsavedContent1, true)});
 | |
|     unsavedFiles.createOrUpdate(fileContainers);
 | |
| 
 | |
|     unsavedFiles.remove(fileContainers);
 | |
| 
 | |
|     ASSERT_THAT(unsavedFiles, HasUnsavedFiles(QVector<FileContainer>()));
 | |
| }
 | |
| 
 | |
| TEST_F(UnsavedFiles, FindUnsavedFile)
 | |
| {
 | |
|     QVector<FileContainer> fileContainers({FileContainer(filePath, projectPartId, unsavedContent1, true)});
 | |
|     unsavedFiles.createOrUpdate(fileContainers);
 | |
| 
 | |
|     UnsavedFile &unsavedFile = unsavedFiles.unsavedFile(filePath);
 | |
| 
 | |
|     ASSERT_THAT(unsavedFile, IsUnsavedFile(filePath, unsavedContent1, unsavedContent1.byteSize()));
 | |
| }
 | |
| 
 | |
| TEST_F(UnsavedFiles, FindNoUnsavedFile)
 | |
| {
 | |
|     QVector<FileContainer> fileContainers({FileContainer(filePath, projectPartId, unsavedContent1, true)});
 | |
|     unsavedFiles.createOrUpdate(fileContainers);
 | |
| 
 | |
|     UnsavedFile &unsavedFile = unsavedFiles.unsavedFile(Utf8StringLiteral("nonExistingFilePath.cpp"));
 | |
| 
 | |
|     ASSERT_THAT(unsavedFile, IsUnsavedFile(Utf8String(), Utf8String(), 0UL));
 | |
| }
 | |
| 
 | |
| }
 |