| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  | /****************************************************************************
 | 
					
						
							|  |  |  | ** | 
					
						
							| 
									
										
										
										
											2014-01-08 12:00:22 +01:00
										 |  |  | ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  | ** Contact: http://www.qt-project.org/legal
 | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ** 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 Digia.  For licensing terms and | 
					
						
							| 
									
										
										
										
											2014-10-01 13:21:18 +02:00
										 |  |  | ** conditions see http://www.qt.io/licensing.  For further information
 | 
					
						
							|  |  |  | ** use the contact form at http://www.qt.io/contact-us.
 | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  | ** | 
					
						
							|  |  |  | ** GNU Lesser General Public License Usage | 
					
						
							|  |  |  | ** Alternatively, this file may be used under the terms of the GNU Lesser | 
					
						
							| 
									
										
										
										
											2014-10-01 13:21:18 +02:00
										 |  |  | ** General Public License version 2.1 or version 3 as published by the Free | 
					
						
							|  |  |  | ** Software Foundation and appearing in the file LICENSE.LGPLv21 and | 
					
						
							|  |  |  | ** LICENSE.LGPLv3 included in the packaging of this file.  Please review the | 
					
						
							|  |  |  | ** following information to ensure the GNU Lesser General Public License | 
					
						
							|  |  |  | ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
 | 
					
						
							|  |  |  | ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  | ** | 
					
						
							|  |  |  | ** In addition, as a special exception, Digia gives you certain additional | 
					
						
							|  |  |  | ** rights.  These rights are described in the Digia Qt LGPL Exception | 
					
						
							|  |  |  | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ****************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "cpptoolstestcase.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-09 17:09:45 +01:00
										 |  |  | #include "cppworkingcopy.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  | #include <coreplugin/editormanager/editormanager.h>
 | 
					
						
							| 
									
										
										
										
											2014-12-09 13:01:44 +01:00
										 |  |  | #include <projectexplorer/projectexplorer.h>
 | 
					
						
							|  |  |  | #include <projectexplorer/session.h>
 | 
					
						
							| 
									
										
										
										
											2014-09-26 09:14:03 +02:00
										 |  |  | #include <texteditor/texteditor.h>
 | 
					
						
							| 
									
										
										
										
											2014-09-19 12:32:43 +02:00
										 |  |  | #include <texteditor/codeassist/iassistproposal.h>
 | 
					
						
							|  |  |  | #include <texteditor/codeassist/iassistproposalmodel.h>
 | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <cplusplus/CppDocument.h>
 | 
					
						
							|  |  |  | #include <utils/fileutils.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QtTest>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-09 13:01:44 +01:00
										 |  |  | using namespace ProjectExplorer; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-17 13:54:52 +01:00
										 |  |  | static bool closeEditorsWithoutGarbageCollectorInvocation(const QList<Core::IEditor *> &editors) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-09-15 00:12:27 +02:00
										 |  |  |     CppTools::CppModelManager::instance()->enableGarbageCollector(false); | 
					
						
							| 
									
										
										
										
											2013-12-17 13:54:52 +01:00
										 |  |  |     const bool closeEditorsSucceeded = Core::EditorManager::closeEditors(editors, false); | 
					
						
							| 
									
										
										
										
											2014-09-15 00:12:27 +02:00
										 |  |  |     CppTools::CppModelManager::instance()->enableGarbageCollector(true); | 
					
						
							| 
									
										
										
										
											2013-12-17 13:54:52 +01:00
										 |  |  |     return closeEditorsSucceeded; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-04 14:59:50 +02:00
										 |  |  | static bool snapshotContains(const CPlusPlus::Snapshot &snapshot, const QSet<QString> &filePaths) | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     foreach (const QString &filePath, filePaths) { | 
					
						
							|  |  |  |         if (!snapshot.contains(filePath)) { | 
					
						
							|  |  |  |             const QString warning = QLatin1String("Missing file in snapshot: ") + filePath; | 
					
						
							|  |  |  |             QWARN(qPrintable(warning)); | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace CppTools { | 
					
						
							|  |  |  | namespace Tests { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TestDocument::TestDocument(const QByteArray &fileName, const QByteArray &source, char cursorMarker) | 
					
						
							| 
									
										
										
										
											2014-05-08 13:21:42 -04:00
										 |  |  |     : m_fileName(QString::fromUtf8(fileName)) | 
					
						
							|  |  |  |     , m_source(QString::fromUtf8(source)) | 
					
						
							|  |  |  |     , m_cursorMarker(cursorMarker) | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  | {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QString TestDocument::filePath() const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-12-09 18:42:15 +01:00
										 |  |  |     if (!m_baseDirectory.isEmpty()) | 
					
						
							|  |  |  |         return QDir::cleanPath(m_baseDirectory + QLatin1Char('/') + m_fileName); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-08 13:21:42 -04:00
										 |  |  |     if (!QFileInfo(m_fileName).isAbsolute()) | 
					
						
							|  |  |  |         return QDir::tempPath() + QLatin1Char('/') + m_fileName; | 
					
						
							| 
									
										
										
										
											2014-12-09 18:42:15 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-08 13:21:42 -04:00
										 |  |  |     return m_fileName; | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool TestDocument::writeToDisk() const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-05-08 13:21:42 -04:00
										 |  |  |     return TestCase::writeFile(filePath(), m_source.toUtf8()); | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TestCase::TestCase(bool runGarbageCollector) | 
					
						
							| 
									
										
										
										
											2014-09-15 00:12:27 +02:00
										 |  |  |     : m_modelManager(CppModelManager::instance()) | 
					
						
							| 
									
										
										
										
											2013-12-30 19:44:42 +01:00
										 |  |  |     , m_succeededSoFar(false) | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  |     , m_runGarbageCollector(runGarbageCollector) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_runGarbageCollector) | 
					
						
							|  |  |  |         QVERIFY(garbageCollectGlobalSnapshot()); | 
					
						
							| 
									
										
										
										
											2013-12-30 19:44:42 +01:00
										 |  |  |     m_succeededSoFar = true; | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TestCase::~TestCase() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-12-17 13:54:52 +01:00
										 |  |  |     QVERIFY(closeEditorsWithoutGarbageCollectorInvocation(m_editorsToClose)); | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  |     QCoreApplication::processEvents(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (m_runGarbageCollector) | 
					
						
							|  |  |  |         QVERIFY(garbageCollectGlobalSnapshot()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-30 19:44:42 +01:00
										 |  |  | bool TestCase::succeededSoFar() const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return m_succeededSoFar; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-19 11:39:06 -03:00
										 |  |  | bool TestCase::openBaseTextEditor(const QString &fileName, TextEditor::BaseTextEditor **editor) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     typedef TextEditor::BaseTextEditor BTEditor; | 
					
						
							|  |  |  |     if (BTEditor *e = qobject_cast<BTEditor *>(Core::EditorManager::openEditor(fileName))) { | 
					
						
							|  |  |  |         if (editor) { | 
					
						
							|  |  |  |             *editor = e; | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  | CPlusPlus::Snapshot TestCase::globalSnapshot() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-09-15 00:12:27 +02:00
										 |  |  |     return CppModelManager::instance()->snapshot(); | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool TestCase::garbageCollectGlobalSnapshot() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-09-15 00:12:27 +02:00
										 |  |  |     CppModelManager::instance()->GC(); | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  |     return globalSnapshot().isEmpty(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-04 14:59:50 +02:00
										 |  |  | bool TestCase::parseFiles(const QSet<QString> &filePaths) | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2014-09-15 00:12:27 +02:00
										 |  |  |     CppModelManager::instance()->updateSourceFiles(filePaths).waitForFinished(); | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  |     QCoreApplication::processEvents(); | 
					
						
							|  |  |  |     const CPlusPlus::Snapshot snapshot = globalSnapshot(); | 
					
						
							|  |  |  |     if (snapshot.isEmpty()) { | 
					
						
							|  |  |  |         QWARN("After parsing: snapshot is empty."); | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!snapshotContains(snapshot, filePaths)) { | 
					
						
							|  |  |  |         QWARN("After parsing: snapshot does not contain all expected files."); | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool TestCase::parseFiles(const QString &filePath) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-09-04 14:59:50 +02:00
										 |  |  |     return parseFiles(QSet<QString>() << filePath); | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void TestCase::closeEditorAtEndOfTestCase(Core::IEditor *editor) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (editor && !m_editorsToClose.contains(editor)) | 
					
						
							|  |  |  |         m_editorsToClose.append(editor); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-17 13:54:52 +01:00
										 |  |  | bool TestCase::closeEditorWithoutGarbageCollectorInvocation(Core::IEditor *editor) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return closeEditorsWithoutGarbageCollectorInvocation(QList<Core::IEditor *>() << editor); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  | CPlusPlus::Document::Ptr TestCase::waitForFileInGlobalSnapshot(const QString &filePath) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return waitForFilesInGlobalSnapshot(QStringList(filePath)).first(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QList<CPlusPlus::Document::Ptr> TestCase::waitForFilesInGlobalSnapshot( | 
					
						
							|  |  |  |         const QStringList &filePaths) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QList<CPlusPlus::Document::Ptr> result; | 
					
						
							|  |  |  |     foreach (const QString &filePath, filePaths) { | 
					
						
							|  |  |  |         forever { | 
					
						
							|  |  |  |             if (CPlusPlus::Document::Ptr document = globalSnapshot().document(filePath)) { | 
					
						
							|  |  |  |                 result.append(document); | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             QCoreApplication::processEvents(); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-09 13:01:44 +01:00
										 |  |  | bool TestCase::waitUntilCppModelManagerIsAwareOf(Project *project, int timeOut) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!project) | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     QTime t; | 
					
						
							|  |  |  |     t.start(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     CppModelManager *modelManager = CppModelManager::instance(); | 
					
						
							|  |  |  |     forever { | 
					
						
							|  |  |  |         if (modelManager->projectInfo(project).isValid()) | 
					
						
							|  |  |  |             return true; | 
					
						
							|  |  |  |         if (t.elapsed() > timeOut) | 
					
						
							|  |  |  |             return false; | 
					
						
							|  |  |  |         QCoreApplication::processEvents(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  | bool TestCase::writeFile(const QString &filePath, const QByteArray &contents) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     Utils::FileSaver saver(filePath); | 
					
						
							|  |  |  |     if (!saver.write(contents) || !saver.finalize()) { | 
					
						
							|  |  |  |         const QString warning = QLatin1String("Failed to write file to disk: ") + filePath; | 
					
						
							|  |  |  |         QWARN(qPrintable(warning)); | 
					
						
							|  |  |  |         return false; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-09 17:09:45 +01:00
										 |  |  | ProjectOpenerAndCloser::ProjectOpenerAndCloser(bool waitForFinishedGcOnDestruction) | 
					
						
							|  |  |  |     : m_waitForFinishedGcOnDestruction(waitForFinishedGcOnDestruction) | 
					
						
							|  |  |  |     , m_gcFinished(false) | 
					
						
							| 
									
										
										
										
											2014-12-09 13:01:44 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     QVERIFY(!SessionManager::hasProjects()); | 
					
						
							| 
									
										
										
										
											2014-12-09 17:09:45 +01:00
										 |  |  |     if (m_waitForFinishedGcOnDestruction) { | 
					
						
							|  |  |  |         CppModelManager *mm = CppModelManager::instance(); | 
					
						
							|  |  |  |         connect(mm, &CppModelManager::gcFinished, this, &ProjectOpenerAndCloser::onGcFinished); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-12-09 13:01:44 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ProjectOpenerAndCloser::~ProjectOpenerAndCloser() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     foreach (Project *project, m_openProjects) | 
					
						
							|  |  |  |         ProjectExplorerPlugin::unloadProject(project); | 
					
						
							| 
									
										
										
										
											2014-12-09 17:09:45 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (m_waitForFinishedGcOnDestruction) { | 
					
						
							|  |  |  |         m_gcFinished = false; | 
					
						
							|  |  |  |         while (!m_gcFinished) | 
					
						
							|  |  |  |             QCoreApplication::processEvents(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-12-09 13:01:44 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-09 17:09:45 +01:00
										 |  |  | ProjectInfo ProjectOpenerAndCloser::open(const QString &projectFile, bool configureAsExampleProject) | 
					
						
							| 
									
										
										
										
											2014-12-09 13:01:44 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     QString error; | 
					
						
							|  |  |  |     Project *project = ProjectExplorerPlugin::openProject(projectFile, &error); | 
					
						
							|  |  |  |     if (!error.isEmpty()) | 
					
						
							|  |  |  |         qWarning() << error; | 
					
						
							|  |  |  |     if (!project) | 
					
						
							|  |  |  |         return ProjectInfo(); | 
					
						
							|  |  |  |     m_openProjects.append(project); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-09 17:09:45 +01:00
										 |  |  |     if (configureAsExampleProject) | 
					
						
							|  |  |  |         project->configureAsExampleProject(QStringList()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-09 13:01:44 +01:00
										 |  |  |     if (TestCase::waitUntilCppModelManagerIsAwareOf(project)) | 
					
						
							|  |  |  |         return CppModelManager::instance()->projectInfo(project); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return ProjectInfo(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-09 17:09:45 +01:00
										 |  |  | void ProjectOpenerAndCloser::onGcFinished() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     m_gcFinished = true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-09 18:42:15 +01:00
										 |  |  | TemporaryDir::TemporaryDir() | 
					
						
							| 
									
										
										
										
											2015-01-07 15:14:04 +01:00
										 |  |  |     : m_temporaryDir(QFileInfo(QDir::tempPath()).canonicalFilePath() | 
					
						
							|  |  |  |                         + QLatin1String("/qtcreator-tests-XXXXXX")) | 
					
						
							| 
									
										
										
										
											2014-12-09 13:01:44 +01:00
										 |  |  |     , m_isValid(m_temporaryDir.isValid()) | 
					
						
							| 
									
										
										
										
											2014-12-09 18:42:15 +01:00
										 |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QString TemporaryDir::createFile(const QByteArray &relativePath, const QByteArray &contents) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const QString relativePathString = QString::fromUtf8(relativePath); | 
					
						
							|  |  |  |     if (relativePathString.isEmpty() || QFileInfo(relativePathString).isAbsolute()) | 
					
						
							|  |  |  |         return QString(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const QString filePath = m_temporaryDir.path() + QLatin1Char('/') + relativePathString; | 
					
						
							|  |  |  |     if (!TestCase::writeFile(filePath, contents)) | 
					
						
							|  |  |  |         return QString(); | 
					
						
							|  |  |  |     return filePath; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TemporaryCopiedDir::TemporaryCopiedDir(const QString &sourceDirPath) | 
					
						
							| 
									
										
										
										
											2014-12-09 13:01:44 +01:00
										 |  |  | { | 
					
						
							|  |  |  |     if (!m_isValid) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!sourceDirPath.isEmpty()) { | 
					
						
							|  |  |  |         QFileInfo fi(sourceDirPath); | 
					
						
							|  |  |  |         if (!fi.exists() || !fi.isReadable()) { | 
					
						
							|  |  |  |             m_isValid = false; | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (!Utils::FileUtils::copyRecursively(Utils::FileName::fromString(sourceDirPath), | 
					
						
							|  |  |  |                                                Utils::FileName::fromString(path()))) { | 
					
						
							|  |  |  |             m_isValid = false; | 
					
						
							|  |  |  |             return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QString TemporaryCopiedDir::absolutePath(const QByteArray &relativePath) const | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return m_temporaryDir.path() + QLatin1Char('/') + QString::fromUtf8(relativePath); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-13 12:59:24 -04:00
										 |  |  | FileWriterAndRemover::FileWriterAndRemover(const QString &filePath, const QByteArray &contents) | 
					
						
							|  |  |  |     : m_filePath(filePath) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-10-24 10:28:28 +02:00
										 |  |  |     if (QFileInfo::exists(filePath)) { | 
					
						
							| 
									
										
										
										
											2014-06-13 12:59:24 -04:00
										 |  |  |         const QString warning = QString::fromLatin1( | 
					
						
							|  |  |  |             "Will not overwrite existing file: \"%1\"." | 
					
						
							|  |  |  |             " If this file is left over due to a(n) abort/crash, please remove manually.") | 
					
						
							|  |  |  |                 .arg(m_filePath); | 
					
						
							|  |  |  |         QWARN(qPrintable(warning)); | 
					
						
							|  |  |  |         m_writtenSuccessfully = false; | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         m_writtenSuccessfully = TestCase::writeFile(filePath, contents); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | FileWriterAndRemover::~FileWriterAndRemover() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (m_writtenSuccessfully && !QFile::remove(m_filePath)) { | 
					
						
							|  |  |  |         const QString warning = QLatin1String("Failed to remove file from disk: ") + m_filePath; | 
					
						
							|  |  |  |         QWARN(qPrintable(warning)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-19 12:32:43 +02:00
										 |  |  | IAssistProposalScopedPointer::IAssistProposalScopedPointer(TextEditor::IAssistProposal *proposal) | 
					
						
							|  |  |  |     : d(proposal) | 
					
						
							|  |  |  | {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | IAssistProposalScopedPointer::~IAssistProposalScopedPointer() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (d && d->model()) | 
					
						
							|  |  |  |         delete d->model(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-09 17:09:45 +01:00
										 |  |  | void VerifyCleanCppModelManager::verify() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     CppModelManager *mm = CppModelManager::instance(); | 
					
						
							|  |  |  |     QVERIFY(mm); | 
					
						
							|  |  |  |     QVERIFY(mm->projectInfos().isEmpty()); | 
					
						
							|  |  |  |     QVERIFY(mm->headerPaths().isEmpty()); | 
					
						
							|  |  |  |     QVERIFY(mm->definedMacros().isEmpty()); | 
					
						
							|  |  |  |     QVERIFY(mm->projectFiles().isEmpty()); | 
					
						
							|  |  |  |     QVERIFY(mm->snapshot().isEmpty()); | 
					
						
							|  |  |  |     QCOMPARE(mm->workingCopy().size(), 1); | 
					
						
							|  |  |  |     QVERIFY(mm->workingCopy().contains(mm->configurationFileName())); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-16 16:02:45 +01:00
										 |  |  | } // namespace Tests
 | 
					
						
							|  |  |  | } // namespace CppTools
 |