// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "cppmodelmanager_test.h" #include "baseeditordocumentprocessor.h" #include "builtineditordocumentparser.h" #include "cpptoolstestcase.h" #include "editordocumenthandle.h" #include "modelmanagertesthelper.h" #include "projectinfo.h" #include #include #include #include #include #include #include #include #include #include #include #include #define VERIFY_DOCUMENT_REVISION(document, expectedRevision) \ QVERIFY(document); \ QCOMPARE(document->revision(), expectedRevision); using namespace ProjectExplorer; using namespace Utils; using CPlusPlus::Document; // FIXME: Clean up the namespaces using CppEditor::Tests::ModelManagerTestHelper; using CppEditor::Tests::ProjectOpenerAndCloser; using CppEditor::Tests::TemporaryCopiedDir; using CppEditor::Tests::TemporaryDir; using CppEditor::Tests::TestCase; using CppEditor::Internal::Tests::VerifyCleanCppModelManager; Q_DECLARE_METATYPE(CppEditor::ProjectFile) namespace CppEditor::Internal { namespace { inline QString _(const QByteArray &ba) { return QString::fromLatin1(ba, ba.size()); } class MyTestDataDir : public Core::Tests::TestDataDir { public: explicit MyTestDataDir(const QString &dir) : TestDataDir(_(SRCDIR "/../../../tests/cppmodelmanager/") + dir) {} QString includeDir(bool cleaned = true) const { return directory(_("include"), cleaned); } QString frameworksDir(bool cleaned = true) const { return directory(_("frameworks"), cleaned); } FilePath fileFromSourcesDir(const QString &fileName) const { return FilePath::fromString(directory(_("sources"))).pathAppended(fileName); } FilePath filePath(const QString &p) const { return FilePath::fromString(TestDataDir::file(p)); } }; FilePaths toAbsolutePaths(const QStringList &relativePathList, const TemporaryCopiedDir &temporaryDir) { FilePaths result; for (const QString &file : relativePathList) result << temporaryDir.absolutePath(file); return result; } // TODO: When possible, use this helper class in all tests class ProjectCreator { public: explicit ProjectCreator(ModelManagerTestHelper *modelManagerTestHelper) : modelManagerTestHelper(modelManagerTestHelper) {} /// 'files' is expected to be a list of file names that reside in 'dir'. void create(const QString &name, const QString &dir, const QStringList &files) { const MyTestDataDir projectDir(dir); for (const QString &file : files) projectFiles << projectDir.filePath(file); RawProjectPart rpp; rpp.setQtVersion(Utils::QtMajorVersion::Qt5); const ProjectFiles rppFiles = Utils::transform(projectFiles, [](const FilePath &file) { return ProjectFile(file, ProjectFile::classify(file.toString())); }); const auto project = modelManagerTestHelper->createProject( name, Utils::FilePath::fromString(dir).pathAppended(name + ".pro")); const auto part = ProjectPart::create(project->projectFilePath(), rpp, {}, rppFiles); projectInfo = ProjectInfo::create(ProjectUpdateInfo(project, KitInfo(nullptr), {}, {}), {part}); } ModelManagerTestHelper *modelManagerTestHelper; ProjectInfo::ConstPtr projectInfo; FilePaths projectFiles; }; /// Changes a file on the disk and restores its original contents on destruction class FileChangerAndRestorer { public: explicit FileChangerAndRestorer(const Utils::FilePath &filePath) : m_filePath(filePath) { } ~FileChangerAndRestorer() { restoreContents(); } /// Saves the contents also internally so it can be restored on destruction bool readContents(QByteArray *contents) { Utils::FileReader fileReader; const bool isFetchOk = fileReader.fetch(m_filePath); if (isFetchOk) { m_originalFileContents = fileReader.data(); if (contents) *contents = m_originalFileContents; } return isFetchOk; } bool writeContents(const QByteArray &contents) const { return TestCase::writeFile(m_filePath, contents); } private: void restoreContents() const { TestCase::writeFile(m_filePath, m_originalFileContents); } QByteArray m_originalFileContents; const Utils::FilePath m_filePath; }; } // anonymous namespace static ProjectPart::ConstPtr projectPartOfEditorDocument(const FilePath &filePath) { auto *editorDocument = CppModelManager::instance()->cppEditorDocument(filePath); QTC_ASSERT(editorDocument, return ProjectPart::ConstPtr()); return editorDocument->processor()->parser()->projectPartInfo().projectPart; } /// Check: The preprocessor cleans include and framework paths. void ModelManagerTest::testPathsAreClean() { ModelManagerTestHelper helper; CppModelManager *mm = CppModelManager::instance(); const MyTestDataDir testDataDir(_("testdata")); const auto project = helper.createProject(_("test_modelmanager_paths_are_clean"), Utils::FilePath::fromString("blubb.pro")); RawProjectPart rpp; rpp.setQtVersion(Utils::QtMajorVersion::Qt5); rpp.setMacros({ProjectExplorer::Macro("OH_BEHAVE", "-1")}); rpp.setHeaderPaths({HeaderPath::makeUser(testDataDir.includeDir(false)), HeaderPath::makeFramework(testDataDir.frameworksDir(false))}); const auto part = ProjectPart::create(project->projectFilePath(), rpp); const auto pi = ProjectInfo::create(ProjectUpdateInfo(project, KitInfo(nullptr), {}, {}), {part}); mm->updateProjectInfo(pi); ProjectExplorer::HeaderPaths headerPaths = mm->headerPaths(); QCOMPARE(headerPaths.size(), 2); QVERIFY(headerPaths.contains(HeaderPath::makeUser(testDataDir.includeDir()))); QVERIFY(headerPaths.contains(HeaderPath::makeFramework(testDataDir.frameworksDir()))); } /// Check: Frameworks headers are resolved. void ModelManagerTest::testFrameworkHeaders() { if (Utils::HostOsInfo::isWindowsHost()) QSKIP("Can't resolve framework soft links on Windows."); ModelManagerTestHelper helper; CppModelManager *mm = CppModelManager::instance(); const MyTestDataDir testDataDir(_("testdata")); const auto project = helper.createProject(_("test_modelmanager_framework_headers"), Utils::FilePath::fromString("blubb.pro")); RawProjectPart rpp; rpp.setQtVersion(Utils::QtMajorVersion::Qt5); rpp.setMacros({{"OH_BEHAVE", "-1"}}); rpp.setHeaderPaths({HeaderPath::makeUser(testDataDir.includeDir(false)), HeaderPath::makeFramework(testDataDir.frameworksDir(false))}); const FilePath source = testDataDir.fileFromSourcesDir("test_modelmanager_framework_headers.cpp"); const auto part = ProjectPart::create(project->projectFilePath(), rpp, {}, {ProjectFile(source, ProjectFile::CXXSource)}); const auto pi = ProjectInfo::create(ProjectUpdateInfo(project, KitInfo(nullptr), {}, {}), {part}); mm->updateProjectInfo(pi).waitForFinished(); QCoreApplication::processEvents(); QVERIFY(mm->snapshot().contains(source)); Document::Ptr doc = mm->document(source); QVERIFY(!doc.isNull()); CPlusPlus::Namespace *ns = doc->globalNamespace(); QVERIFY(ns); QVERIFY(ns->memberCount() > 0); for (unsigned i = 0, ei = ns->memberCount(); i < ei; ++i) { CPlusPlus::Symbol *s = ns->memberAt(i); QVERIFY(s); QVERIFY(s->name()); const CPlusPlus::Identifier *id = s->name()->asNameId(); QVERIFY(id); QByteArray chars = id->chars(); QVERIFY(chars.startsWith("success")); } } /// QTCREATORBUG-9056 /// Check: If the project configuration changes, all project files and their /// includes have to be reparsed. void ModelManagerTest::testRefreshAlsoIncludesOfProjectFiles() { ModelManagerTestHelper helper; CppModelManager *mm = CppModelManager::instance(); const MyTestDataDir testDataDir(_("testdata")); const FilePath testCpp = testDataDir.fileFromSourcesDir(_("test_modelmanager_refresh.cpp")); const FilePath testHeader = testDataDir.fileFromSourcesDir( _("test_modelmanager_refresh.h")); const auto project = helper.createProject(_("test_modelmanager_refresh_also_includes_of_project_files"), Utils::FilePath::fromString("blubb.pro")); RawProjectPart rpp; rpp.setQtVersion(Utils::QtMajorVersion::Qt5); rpp.setMacros({{"OH_BEHAVE", "-1"}}); rpp.setHeaderPaths({HeaderPath::makeUser(testDataDir.includeDir(false))}); auto part = ProjectPart::create(project->projectFilePath(), rpp, {}, {ProjectFile(testCpp, ProjectFile::CXXSource)}); auto pi = ProjectInfo::create(ProjectUpdateInfo(project, KitInfo(nullptr), {}, {}), {part}); QSet refreshedFiles = helper.updateProjectInfo(pi); QCOMPARE(refreshedFiles.size(), 1); QVERIFY(refreshedFiles.contains(testCpp)); CPlusPlus::Snapshot snapshot = mm->snapshot(); QVERIFY(snapshot.contains(testHeader)); QVERIFY(snapshot.contains(testCpp)); Document::Ptr headerDocumentBefore = snapshot.document(testHeader); const QList macrosInHeaderBefore = headerDocumentBefore->definedMacros(); QCOMPARE(macrosInHeaderBefore.size(), 1); QVERIFY(macrosInHeaderBefore.first().name() == "test_modelmanager_refresh_h"); // Introduce a define that will enable another define once the document is reparsed. rpp.setMacros({{"TEST_DEFINE", "1"}}); part = ProjectPart::create(project->projectFilePath(), rpp, {}, {ProjectFile(testCpp, ProjectFile::CXXSource)}); pi = ProjectInfo::create(ProjectUpdateInfo(project, KitInfo(nullptr), {}, {}), {part}); refreshedFiles = helper.updateProjectInfo(pi); QCOMPARE(refreshedFiles.size(), 1); QVERIFY(refreshedFiles.contains(testCpp)); snapshot = mm->snapshot(); QVERIFY(snapshot.contains(testHeader)); QVERIFY(snapshot.contains(testCpp)); Document::Ptr headerDocumentAfter = snapshot.document(testHeader); const QList macrosInHeaderAfter = headerDocumentAfter->definedMacros(); QCOMPARE(macrosInHeaderAfter.size(), 2); QVERIFY(macrosInHeaderAfter.at(0).name() == "test_modelmanager_refresh_h"); QVERIFY(macrosInHeaderAfter.at(1).name() == "TEST_DEFINE_DEFINED"); } /// QTCREATORBUG-9205 /// Check: When reparsing the same files again, no errors occur /// (The CppSourceProcessor's already seen files are properly cleared!). void ModelManagerTest::testRefreshSeveralTimes() { ModelManagerTestHelper helper; CppModelManager *mm = CppModelManager::instance(); const MyTestDataDir testDataDir(_("testdata_refresh")); const FilePath testHeader1 = testDataDir.filePath("defines.h"); const FilePath testHeader2 = testDataDir.filePath("header.h"); const FilePath testCpp = testDataDir.filePath("source.cpp"); const auto project = helper.createProject(_("test_modelmanager_refresh_several_times"), Utils::FilePath::fromString("blubb.pro")); RawProjectPart rpp; rpp.setQtVersion(Utils::QtMajorVersion::Qt5); const ProjectFiles files = { ProjectFile(testHeader1, ProjectFile::CXXHeader), ProjectFile(testHeader2, ProjectFile::CXXHeader), ProjectFile(testCpp, ProjectFile::CXXSource) }; const auto part = ProjectPart::create(project->projectFilePath(), rpp, {}, files); auto pi = ProjectInfo::create(ProjectUpdateInfo(project, KitInfo(nullptr), {}, {}), {part}); mm->updateProjectInfo(pi); CPlusPlus::Snapshot snapshot; QSet refreshedFiles; Document::Ptr document; ProjectExplorer::Macros macros = {{"FIRST_DEFINE"}}; for (int i = 0; i < 2; ++i) { // Simulate project configuration change by having different defines each time. macros += {"ANOTHER_DEFINE"}; rpp.setMacros(macros); const auto part = ProjectPart::create(project->projectFilePath(), rpp, {}, files); pi = ProjectInfo::create({project, KitInfo(nullptr), {}, {}}, {part}); refreshedFiles = helper.updateProjectInfo(pi); QCOMPARE(refreshedFiles.size(), 3); QVERIFY(refreshedFiles.contains(testHeader1)); QVERIFY(refreshedFiles.contains(testHeader2)); QVERIFY(refreshedFiles.contains(testCpp)); snapshot = mm->snapshot(); QVERIFY(snapshot.contains(testHeader1)); QVERIFY(snapshot.contains(testHeader2)); QVERIFY(snapshot.contains(testCpp)); // No diagnostic messages expected document = snapshot.document(testHeader1); QVERIFY(document->diagnosticMessages().isEmpty()); document = snapshot.document(testHeader2); QVERIFY(document->diagnosticMessages().isEmpty()); document = snapshot.document(testCpp); QVERIFY(document->diagnosticMessages().isEmpty()); } } /// QTCREATORBUG-9581 /// Check: If nothing has changes, nothing should be reindexed. void ModelManagerTest::testRefreshTestForChanges() { ModelManagerTestHelper helper; CppModelManager *mm = CppModelManager::instance(); const MyTestDataDir testDataDir(_("testdata_refresh")); const FilePath testCpp = testDataDir.filePath("source.cpp"); const auto project = helper.createProject(_("test_modelmanager_refresh_2"), Utils::FilePath::fromString("blubb.pro")); RawProjectPart rpp; rpp.setQtVersion(Utils::QtMajorVersion::Qt5); const auto part = ProjectPart::create(project->projectFilePath(), rpp, {}, {ProjectFile(testCpp, ProjectFile::CXXSource)}); const auto pi = ProjectInfo::create({project, KitInfo(nullptr), {}, {}}, {part}); // Reindexing triggers a reparsing thread helper.resetRefreshedSourceFiles(); QFuture firstFuture = mm->updateProjectInfo(pi); QVERIFY(firstFuture.isStarted() || firstFuture.isRunning()); firstFuture.waitForFinished(); const QSet refreshedFiles = helper.waitForRefreshedSourceFiles(); QCOMPARE(refreshedFiles.size(), 1); QVERIFY(refreshedFiles.contains(testCpp)); // No reindexing since nothing has changed QFuture subsequentFuture = mm->updateProjectInfo(pi); QVERIFY(subsequentFuture.isCanceled() && subsequentFuture.isFinished()); } /// Check: (1) Added project files are recognized and parsed. /// Check: (2) Removed project files are recognized and purged from the snapshot. void ModelManagerTest::testRefreshAddedAndPurgeRemoved() { ModelManagerTestHelper helper; CppModelManager *mm = CppModelManager::instance(); const MyTestDataDir testDataDir(_("testdata_refresh")); const FilePath testHeader1 = testDataDir.filePath("header.h"); const FilePath testHeader2 = testDataDir.filePath("defines.h"); const FilePath testCpp = testDataDir.filePath("source.cpp"); const auto project = helper.createProject(_("test_modelmanager_refresh_3"), Utils::FilePath::fromString("blubb.pro")); RawProjectPart rpp; rpp.setQtVersion(Utils::QtMajorVersion::Qt5); const auto part = ProjectPart::create(project->projectFilePath(), rpp, {}, {{testCpp, ProjectFile::CXXSource}, {testHeader1, ProjectFile::CXXHeader}}); auto pi = ProjectInfo::create({project, KitInfo(nullptr), {}, {}}, {part}); CPlusPlus::Snapshot snapshot; QSet refreshedFiles; refreshedFiles = helper.updateProjectInfo(pi); QCOMPARE(refreshedFiles.size(), 2); QVERIFY(refreshedFiles.contains(testHeader1)); QVERIFY(refreshedFiles.contains(testCpp)); snapshot = mm->snapshot(); QVERIFY(snapshot.contains(testHeader1)); QVERIFY(snapshot.contains(testCpp)); // Now add testHeader2 and remove testHeader1 const auto newPart = ProjectPart::create(project->projectFilePath(), rpp, {}, {{testCpp, ProjectFile::CXXSource}, {testHeader2, ProjectFile::CXXHeader}}); pi = ProjectInfo::create({project, KitInfo(nullptr), {}, {}}, {newPart}); refreshedFiles = helper.updateProjectInfo(pi); // Only the added project file was reparsed QCOMPARE(refreshedFiles.size(), 1); QVERIFY(refreshedFiles.contains(testHeader2)); snapshot = mm->snapshot(); QVERIFY(snapshot.contains(testHeader2)); QVERIFY(snapshot.contains(testCpp)); // The removed project file is not anymore in the snapshot QVERIFY(!snapshot.contains(testHeader1)); } /// Check: Timestamp modified files are reparsed if project files are added or removed /// while the project configuration stays the same void ModelManagerTest::testRefreshTimeStampModifiedIfSourcefilesChange() { QFETCH(QString, fileToChange); QFETCH(QStringList, initialProjectFiles); QFETCH(QStringList, finalProjectFiles); TemporaryCopiedDir temporaryDir(MyTestDataDir(QLatin1String("testdata_refresh2")).path()); const FilePath filePath = temporaryDir.absolutePath(fileToChange); const FilePaths initialProjectFilePaths = toAbsolutePaths(initialProjectFiles, temporaryDir); const FilePaths finalProjectFilePaths = toAbsolutePaths(finalProjectFiles, temporaryDir); ModelManagerTestHelper helper; CppModelManager *mm = CppModelManager::instance(); const auto project = helper.createProject(_("test_modelmanager_refresh_timeStampModified"), FilePath::fromString("blubb.pro")); RawProjectPart rpp; rpp.setQtVersion(Utils::QtMajorVersion::Qt5); auto files = Utils::transform(initialProjectFilePaths, [](const FilePath &f) { return ProjectFile(f, ProjectFile::CXXSource); }); auto part = ProjectPart::create(project->projectFilePath(), rpp, {}, files); auto pi = ProjectInfo::create({project, KitInfo(nullptr), {}, {}}, {part}); Document::Ptr document; CPlusPlus::Snapshot snapshot; QSet refreshedFiles; refreshedFiles = helper.updateProjectInfo(pi); QCOMPARE(refreshedFiles.size(), initialProjectFilePaths.size()); snapshot = mm->snapshot(); for (const FilePath &file : initialProjectFilePaths) { QVERIFY(refreshedFiles.contains(file)); QVERIFY(snapshot.contains(file)); } document = snapshot.document(filePath); const QDateTime lastModifiedBefore = document->lastModified(); QCOMPARE(document->globalSymbolCount(), 1); QCOMPARE(document->globalSymbolAt(0)->name()->identifier()->chars(), "someGlobal"); // Modify the file QTest::qSleep(1000); // Make sure the timestamp is different FileChangerAndRestorer fileChangerAndRestorer(filePath); QByteArray originalContents; QVERIFY(fileChangerAndRestorer.readContents(&originalContents)); const QByteArray newFileContentes = originalContents + "\nint addedOtherGlobal;"; QVERIFY(fileChangerAndRestorer.writeContents(newFileContentes)); // Add or remove source file. The configuration stays the same. files = Utils::transform(finalProjectFilePaths, [](const FilePath &f) { return ProjectFile(f, ProjectFile::CXXSource); }); part = ProjectPart::create(project->projectFilePath(), rpp, {}, files); pi = ProjectInfo::create({project, KitInfo(nullptr), {}, {}}, {part}); refreshedFiles = helper.updateProjectInfo(pi); QCOMPARE(refreshedFiles.size(), finalProjectFilePaths.size()); snapshot = mm->snapshot(); for (const FilePath &file : finalProjectFilePaths) { QVERIFY(refreshedFiles.contains(file)); QVERIFY(snapshot.contains(file)); } document = snapshot.document(filePath); const QDateTime lastModifiedAfter = document->lastModified(); QVERIFY(lastModifiedAfter > lastModifiedBefore); QCOMPARE(document->globalSymbolCount(), 2); QCOMPARE(document->globalSymbolAt(0)->name()->identifier()->chars(), "someGlobal"); QCOMPARE(document->globalSymbolAt(1)->name()->identifier()->chars(), "addedOtherGlobal"); } void ModelManagerTest::testRefreshTimeStampModifiedIfSourcefilesChange_data() { QTest::addColumn("fileToChange"); QTest::addColumn("initialProjectFiles"); QTest::addColumn("finalProjectFiles"); const QString testCpp = QLatin1String("source.cpp"); const QString testCpp2 = QLatin1String("source2.cpp"); const QString fileToChange = testCpp; const QStringList projectFiles1 = {testCpp}; const QStringList projectFiles2 = {testCpp, testCpp2}; // Add a file QTest::newRow("case: add project file") << fileToChange << projectFiles1 << projectFiles2; // Remove a file QTest::newRow("case: remove project file") << fileToChange << projectFiles2 << projectFiles1; } /// Check: If a second project is opened, the code model is still aware of /// files of the first project. void ModelManagerTest::testSnapshotAfterTwoProjects() { QSet refreshedFiles; ModelManagerTestHelper helper; ProjectCreator project1(&helper); ProjectCreator project2(&helper); CppModelManager *mm = CppModelManager::instance(); // Project 1 project1.create(_("test_modelmanager_snapshot_after_two_projects.1"), _("testdata_project1"), {"foo.h", "foo.cpp", "main.cpp"}); refreshedFiles = helper.updateProjectInfo(project1.projectInfo); QCOMPARE(refreshedFiles, Utils::toSet(project1.projectFiles)); const int snapshotSizeAfterProject1 = mm->snapshot().size(); for (const FilePath &file : std::as_const(project1.projectFiles)) QVERIFY(mm->snapshot().contains(file)); // Project 2 project2.create(_("test_modelmanager_snapshot_after_two_projects.2"), _("testdata_project2"), {"bar.h", "bar.cpp", "main.cpp"}); refreshedFiles = helper.updateProjectInfo(project2.projectInfo); QCOMPARE(refreshedFiles, Utils::toSet(project2.projectFiles)); const int snapshotSizeAfterProject2 = mm->snapshot().size(); QVERIFY(snapshotSizeAfterProject2 > snapshotSizeAfterProject1); QVERIFY(snapshotSizeAfterProject2 >= snapshotSizeAfterProject1 + project2.projectFiles.size()); for (const FilePath &file : std::as_const(project1.projectFiles)) QVERIFY(mm->snapshot().contains(file)); for (const FilePath &file : std::as_const(project2.projectFiles)) QVERIFY(mm->snapshot().contains(file)); } /// Check: (1) For a project with a *.ui file an AbstractEditorSupport object /// is added for the ui_* file. /// Check: (2) The CppSourceProcessor can successfully resolve the ui_* file /// though it might not be actually generated in the build dir. /// void ModelManagerTest::testExtraeditorsupportUiFiles() { VerifyCleanCppModelManager verify; TemporaryCopiedDir temporaryDir(MyTestDataDir(QLatin1String("testdata_guiproject1")).path()); QVERIFY(temporaryDir.isValid()); const FilePath projectFile = temporaryDir.absolutePath("testdata_guiproject1.pro"); ProjectOpenerAndCloser projects; QVERIFY(projects.open(projectFile, /*configureAsExampleProject=*/ true)); // Check working copy. // An AbstractEditorSupport object should have been added for the ui_* file. CppModelManager *mm = CppModelManager::instance(); WorkingCopy workingCopy = mm->workingCopy(); QCOMPARE(workingCopy.size(), 2); // mm->configurationFileName() and "ui_*.h" QStringList fileNamesInWorkinCopy; const WorkingCopy::Table &elements = workingCopy.elements(); for (auto it = elements.cbegin(), end = elements.cend(); it != end; ++it) fileNamesInWorkinCopy << Utils::FilePath::fromString(it.key().toString()).fileName(); fileNamesInWorkinCopy.sort(); const QString expectedUiHeaderFileName = _("ui_mainwindow.h"); QCOMPARE(fileNamesInWorkinCopy.at(0), mm->configurationFileName().toString()); QCOMPARE(fileNamesInWorkinCopy.at(1), expectedUiHeaderFileName); // Check CppSourceProcessor / includes. // The CppSourceProcessor is expected to find the ui_* file in the working copy. const FilePath fileIncludingTheUiFile = temporaryDir.absolutePath("mainwindow.cpp"); while (!mm->snapshot().document(fileIncludingTheUiFile)) QCoreApplication::processEvents(); const CPlusPlus::Snapshot snapshot = mm->snapshot(); const Document::Ptr document = snapshot.document(fileIncludingTheUiFile); QVERIFY(document); const FilePaths includedFiles = document->includedFiles(); QCOMPARE(includedFiles.size(), 2); QCOMPARE(includedFiles.at(0).fileName(), _("mainwindow.h")); QCOMPARE(includedFiles.at(1).fileName(), _("ui_mainwindow.h")); } /// QTCREATORBUG-9828: Locator shows symbols of closed files /// Check: The garbage collector should be run if the last CppEditor is closed. void ModelManagerTest::testGcIfLastCppeditorClosed() { ModelManagerTestHelper helper; MyTestDataDir testDataDirectory(_("testdata_guiproject1")); const FilePath file = testDataDirectory.filePath("main.cpp"); CppModelManager *mm = CppModelManager::instance(); helper.resetRefreshedSourceFiles(); // Open a file in the editor QCOMPARE(Core::DocumentModel::openedDocuments().size(), 0); Core::IEditor *editor = Core::EditorManager::openEditor(file); QVERIFY(editor); QCOMPARE(Core::DocumentModel::openedDocuments().size(), 1); QVERIFY(mm->isCppEditor(editor)); QVERIFY(mm->workingCopy().contains(file)); // Wait until the file is refreshed helper.waitForRefreshedSourceFiles(); // Close file/editor Core::EditorManager::closeDocuments({editor->document()}, /*askAboutModifiedEditors=*/false); helper.waitForFinishedGc(); // Check: File is removed from the snapshpt QVERIFY(!mm->workingCopy().contains(file)); QVERIFY(!mm->snapshot().contains(file)); } /// Check: Files that are open in the editor are not garbage collected. void ModelManagerTest::testDontGcOpenedFiles() { ModelManagerTestHelper helper; MyTestDataDir testDataDirectory(_("testdata_guiproject1")); const FilePath file = testDataDirectory.filePath("main.cpp"); CppModelManager *mm = CppModelManager::instance(); helper.resetRefreshedSourceFiles(); // Open a file in the editor QCOMPARE(Core::DocumentModel::openedDocuments().size(), 0); Core::IEditor *editor = Core::EditorManager::openEditor(file); QVERIFY(editor); QCOMPARE(Core::DocumentModel::openedDocuments().size(), 1); QVERIFY(mm->isCppEditor(editor)); // Wait until the file is refreshed and check whether it is in the working copy helper.waitForRefreshedSourceFiles(); QVERIFY(mm->workingCopy().contains(file)); // Run the garbage collector mm->GC(); // Check: File is still there QVERIFY(mm->workingCopy().contains(file)); QVERIFY(mm->snapshot().contains(file)); // Close editor Core::EditorManager::closeDocuments({editor->document()}); helper.waitForFinishedGc(); QVERIFY(mm->snapshot().isEmpty()); } namespace { struct EditorCloser { Core::IEditor *editor; explicit EditorCloser(Core::IEditor *editor): editor(editor) {} ~EditorCloser() { if (editor) QVERIFY(TestCase::closeEditorWithoutGarbageCollectorInvocation(editor)); } }; QString nameOfFirstDeclaration(const Document::Ptr &doc) { if (doc && doc->globalNamespace()) { if (CPlusPlus::Symbol *s = doc->globalSymbolAt(0)) { if (CPlusPlus::Declaration *decl = s->asDeclaration()) { if (const CPlusPlus::Name *name = decl->name()) { if (const CPlusPlus::Identifier *identifier = name->identifier()) return QString::fromUtf8(identifier->chars(), identifier->size()); } } } } return QString(); } } void ModelManagerTest::testDefinesPerProject() { ModelManagerTestHelper helper; MyTestDataDir testDataDirectory(_("testdata_defines")); const FilePath main1File = testDataDirectory.filePath("main1.cpp"); const FilePath main2File = testDataDirectory.filePath("main2.cpp"); const FilePath header = testDataDirectory.filePath("header.h"); CppModelManager *mm = CppModelManager::instance(); const auto project = helper.createProject(_("test_modelmanager_defines_per_project"), Utils::FilePath::fromString("blubb.pro")); RawProjectPart rpp1; rpp1.setProjectFileLocation("project1.projectfile"); rpp1.setQtVersion(Utils::QtMajorVersion::None); rpp1.setMacros({{"SUB1"}}); rpp1.setHeaderPaths({HeaderPath::makeUser(testDataDirectory.includeDir(false))}); const auto part1 = ProjectPart::create(project->projectFilePath(), rpp1, {}, {{main1File, ProjectFile::CXXSource}, {header, ProjectFile::CXXHeader}}); RawProjectPart rpp2; rpp2.setProjectFileLocation("project1.projectfile"); rpp2.setQtVersion(Utils::QtMajorVersion::None); rpp2.setMacros({{"SUB2"}}); rpp2.setHeaderPaths({HeaderPath::makeUser(testDataDirectory.includeDir(false))}); const auto part2 = ProjectPart::create(project->projectFilePath(), rpp2, {}, {{main2File, ProjectFile::CXXSource}, {header, ProjectFile::CXXHeader}}); const auto pi = ProjectInfo::create({project, KitInfo(nullptr), {}, {}}, {part1, part2}); helper.updateProjectInfo(pi); QCOMPARE(mm->snapshot().size(), 4); // Open a file in the editor QCOMPARE(Core::DocumentModel::openedDocuments().size(), 0); struct Data { QString firstDeclarationName; FilePath filePath; } d[] = { {_("one"), main1File}, {_("two"), main2File} }; for (auto &i : d) { const QString firstDeclarationName = i.firstDeclarationName; Core::IEditor *editor = Core::EditorManager::openEditor(i.filePath); EditorCloser closer(editor); QVERIFY(editor); QCOMPARE(Core::DocumentModel::openedDocuments().size(), 1); QVERIFY(mm->isCppEditor(editor)); Document::Ptr doc = mm->document(i.filePath); QCOMPARE(nameOfFirstDeclaration(doc), firstDeclarationName); } } void ModelManagerTest::testPrecompiledHeaders() { ModelManagerTestHelper helper; MyTestDataDir testDataDirectory(_("testdata_defines")); const FilePath main1File = testDataDirectory.filePath("main1.cpp"); const FilePath main2File = testDataDirectory.filePath("main2.cpp"); const FilePath header = testDataDirectory.filePath("header.h"); const FilePath pch1File = testDataDirectory.filePath("pch1.h"); const FilePath pch2File = testDataDirectory.filePath("pch2.h"); CppModelManager *mm = CppModelManager::instance(); const auto project = helper.createProject(_("test_modelmanager_defines_per_project_pch"), Utils::FilePath::fromString("blubb.pro")); RawProjectPart rpp1; rpp1.setProjectFileLocation("project1.projectfile"); rpp1.setQtVersion(Utils::QtMajorVersion::None); rpp1.setPreCompiledHeaders({pch1File.toString()}); rpp1.setHeaderPaths({HeaderPath::makeUser(testDataDirectory.includeDir(false))}); const auto part1 = ProjectPart::create(project->projectFilePath(), rpp1, {}, {{main1File, ProjectFile::CXXSource}, {header, ProjectFile::CXXHeader}}); RawProjectPart rpp2; rpp2.setProjectFileLocation("project2.projectfile"); rpp2.setQtVersion(Utils::QtMajorVersion::None); rpp2.setPreCompiledHeaders({pch2File.toString()}); rpp2.setHeaderPaths({HeaderPath::makeUser(testDataDirectory.includeDir(false))}); const auto part2 = ProjectPart::create(project->projectFilePath(), rpp2, {}, {{main2File, ProjectFile::CXXSource}, {header, ProjectFile::CXXHeader}}); const auto pi = ProjectInfo::create({project, KitInfo(nullptr), {}, {}}, {part1, part2}); helper.updateProjectInfo(pi); QCOMPARE(mm->snapshot().size(), 4); // Open a file in the editor QCOMPARE(Core::DocumentModel::openedDocuments().size(), 0); struct Data { QString firstDeclarationName; QString firstClassInPchFile; FilePath filePath; } d[] = { {_("one"), _("ClassInPch1"), main1File}, {_("two"), _("ClassInPch2"), main2File} }; for (auto &i : d) { const QString firstDeclarationName = i.firstDeclarationName; const QByteArray firstClassInPchFile = i.firstClassInPchFile.toUtf8(); const FilePath filePath = i.filePath; Core::IEditor *editor = Core::EditorManager::openEditor(filePath); EditorCloser closer(editor); QVERIFY(editor); QCOMPARE(Core::DocumentModel::openedDocuments().size(), 1); QVERIFY(mm->isCppEditor(editor)); auto parser = BuiltinEditorDocumentParser::get(filePath); QVERIFY(parser); BaseEditorDocumentParser::Configuration config = parser->configuration(); config.usePrecompiledHeaders = true; parser->setConfiguration(config); parser->update({CppModelManager::instance()->workingCopy(), nullptr, Utils::Language::Cxx, false}); // Check if defines from pch are considered Document::Ptr document = mm->document(filePath); QCOMPARE(nameOfFirstDeclaration(document), firstDeclarationName); // Check if declarations from pch are considered CPlusPlus::LookupContext context(document, parser->snapshot()); const CPlusPlus::Identifier *identifier = document->control()->identifier(firstClassInPchFile.data()); const QList results = context.lookup(identifier, document->globalNamespace()); QVERIFY(!results.isEmpty()); QVERIFY(results.first().declaration()->type()->asClassType()); } } void ModelManagerTest::testDefinesPerEditor() { ModelManagerTestHelper helper; MyTestDataDir testDataDirectory(_("testdata_defines")); const FilePath main1File = testDataDirectory.filePath("main1.cpp"); const FilePath main2File = testDataDirectory.filePath("main2.cpp"); const FilePath header = testDataDirectory.filePath("header.h"); CppModelManager *mm = CppModelManager::instance(); const auto project = helper.createProject(_("test_modelmanager_defines_per_editor"), Utils::FilePath::fromString("blubb.pro")); RawProjectPart rpp1; rpp1.setQtVersion(Utils::QtMajorVersion::None); rpp1.setHeaderPaths({HeaderPath::makeUser(testDataDirectory.includeDir(false))}); const auto part1 = ProjectPart::create(project->projectFilePath(), rpp1, {}, {{main1File, ProjectFile::CXXSource}, {header, ProjectFile::CXXHeader}}); RawProjectPart rpp2; rpp2.setQtVersion(Utils::QtMajorVersion::None); rpp2.setHeaderPaths({HeaderPath::makeUser(testDataDirectory.includeDir(false))}); const auto part2 = ProjectPart::create(project->projectFilePath(), rpp2, {}, {{main2File, ProjectFile::CXXSource}, {header, ProjectFile::CXXHeader}}); const auto pi = ProjectInfo::create({project, KitInfo(nullptr), {}, {}}, {part1, part2}); helper.updateProjectInfo(pi); QCOMPARE(mm->snapshot().size(), 4); // Open a file in the editor QCOMPARE(Core::DocumentModel::openedDocuments().size(), 0); struct Data { QString editorDefines; QString firstDeclarationName; } d[] = { {_("#define SUB1\n"), _("one")}, {_("#define SUB2\n"), _("two")} }; for (auto &i : d) { const QString editorDefines = i.editorDefines; const QString firstDeclarationName = i.firstDeclarationName; Core::IEditor *editor = Core::EditorManager::openEditor(main1File); EditorCloser closer(editor); QVERIFY(editor); QCOMPARE(Core::DocumentModel::openedDocuments().size(), 1); QVERIFY(mm->isCppEditor(editor)); const FilePath filePath = editor->document()->filePath(); const auto parser = BaseEditorDocumentParser::get(filePath); BaseEditorDocumentParser::Configuration config = parser->configuration(); config.editorDefines = editorDefines.toUtf8(); parser->setConfiguration(config); parser->update({CppModelManager::instance()->workingCopy(), nullptr, Utils::Language::Cxx, false}); Document::Ptr doc = mm->document(main1File); QCOMPARE(nameOfFirstDeclaration(doc), firstDeclarationName); } } void ModelManagerTest::testUpdateEditorsAfterProjectUpdate() { ModelManagerTestHelper helper; MyTestDataDir testDataDirectory(_("testdata_defines")); const FilePath fileA = testDataDirectory.filePath("main1.cpp"); // content not relevant const FilePath fileB = testDataDirectory.filePath("main2.cpp"); // content not relevant // Open file A in editor Core::IEditor *editorA = Core::EditorManager::openEditor(fileA); QVERIFY(editorA); EditorCloser closerA(editorA); QCOMPARE(Core::DocumentModel::openedDocuments().size(), 1); QVERIFY(TestCase::waitForProcessedEditorDocument(fileA)); ProjectPart::ConstPtr documentAProjectPart = projectPartOfEditorDocument(fileA); QVERIFY(!documentAProjectPart->hasProject()); // Open file B in editor Core::IEditor *editorB = Core::EditorManager::openEditor(fileB); QVERIFY(editorB); EditorCloser closerB(editorB); QCOMPARE(Core::DocumentModel::openedDocuments().size(), 2); QVERIFY(TestCase::waitForProcessedEditorDocument(fileB)); ProjectPart::ConstPtr documentBProjectPart = projectPartOfEditorDocument(fileB); QVERIFY(!documentBProjectPart->hasProject()); // Switch back to document A Core::EditorManager::activateEditor(editorA); // Open/update related project const auto project = helper.createProject(_("test_modelmanager_updateEditorsAfterProjectUpdate"), Utils::FilePath::fromString("blubb.pro")); RawProjectPart rpp; rpp.setQtVersion(Utils::QtMajorVersion::None); const auto part = ProjectPart::create(project->projectFilePath(), rpp, {}, {{fileA, ProjectFile::CXXSource}, {fileB, ProjectFile::CXXSource}}); const auto pi = ProjectInfo::create({project, KitInfo(nullptr), {}, {}}, {part}); helper.updateProjectInfo(pi); // ... and check for updated editor document A QVERIFY(TestCase::waitForProcessedEditorDocument(fileA)); documentAProjectPart = projectPartOfEditorDocument(fileA); QCOMPARE(documentAProjectPart->topLevelProject, pi->projectFilePath()); // Switch back to document B and check if that's updated, too Core::EditorManager::activateEditor(editorB); QVERIFY(TestCase::waitForProcessedEditorDocument(fileB)); documentBProjectPart = projectPartOfEditorDocument(fileB); QCOMPARE(documentBProjectPart->topLevelProject, pi->projectFilePath()); } void ModelManagerTest::testRenameIncludes() { struct ModelManagerGCHelper { ~ModelManagerGCHelper() { CppModelManager::instance()->GC(); } } GCHelper; Q_UNUSED(GCHelper) // do not warn about being unused TemporaryDir tmpDir; QVERIFY(tmpDir.isValid()); const QDir workingDir(tmpDir.path()); const QStringList fileNames = {"foo.h", "foo.cpp", "main.cpp"}; const FilePath oldHeader = FilePath::fromString(workingDir.filePath("foo.h")); const FilePath newHeader = FilePath::fromString(workingDir.filePath("bar.h")); CppModelManager *modelManager = CppModelManager::instance(); const MyTestDataDir testDir(_("testdata_project1")); // Copy test files to a temporary directory QSet sourceFiles; for (const QString &fileName : std::as_const(fileNames)) { const QString &file = workingDir.filePath(fileName); QVERIFY(QFile::copy(testDir.file(fileName), file)); // Saving source file names for the model manager update, // so we can update just the relevant files. if (ProjectFile::classify(file) == ProjectFile::CXXSource) sourceFiles.insert(FilePath::fromString(file)); } // Update the c++ model manager and check for the old includes modelManager->updateSourceFiles(sourceFiles).waitForFinished(); QCoreApplication::processEvents(); CPlusPlus::Snapshot snapshot = modelManager->snapshot(); for (const FilePath &sourceFile : std::as_const(sourceFiles)) { QCOMPARE(snapshot.allIncludesForDocument(sourceFile), QSet{oldHeader}); } // Renaming the header QVERIFY(Core::FileUtils::renameFile(oldHeader, newHeader, Core::HandleIncludeGuards::Yes)); // Update the c++ model manager again and check for the new includes modelManager->updateSourceFiles(sourceFiles).waitForFinished(); QCoreApplication::processEvents(); snapshot = modelManager->snapshot(); for (const FilePath &sourceFile : std::as_const(sourceFiles)) { QCOMPARE(snapshot.allIncludesForDocument(sourceFile), QSet{newHeader}); } } void ModelManagerTest::testRenameIncludesInEditor() { struct ModelManagerGCHelper { ~ModelManagerGCHelper() { CppModelManager::instance()->GC(); } } GCHelper; Q_UNUSED(GCHelper) // do not warn about being unused TemporaryDir tmpDir; QVERIFY(tmpDir.isValid()); const QDir workingDir(tmpDir.path()); const QStringList fileNames = {"baz.h", "baz2.h", "baz3.h", "foo.h", "foo.cpp", "main.cpp"}; const FilePath headerWithPragmaOnce = FilePath::fromString(workingDir.filePath("foo.h")); const FilePath renamedHeaderWithPragmaOnce = FilePath::fromString(workingDir.filePath("bar.h")); const QString headerWithNormalGuard(workingDir.filePath(_("baz.h"))); const QString renamedHeaderWithNormalGuard(workingDir.filePath(_("foobar2000.h"))); const QString headerWithUnderscoredGuard(workingDir.filePath(_("baz2.h"))); const QString renamedHeaderWithUnderscoredGuard(workingDir.filePath(_("foobar4000.h"))); const QString headerWithMalformedGuard(workingDir.filePath(_("baz3.h"))); const QString renamedHeaderWithMalformedGuard(workingDir.filePath(_("foobar5000.h"))); const FilePath mainFile = FilePath::fromString(workingDir.filePath("main.cpp")); CppModelManager *modelManager = CppModelManager::instance(); const MyTestDataDir testDir(_("testdata_project1")); ModelManagerTestHelper helper; helper.resetRefreshedSourceFiles(); // Copy test files to a temporary directory QSet sourceFiles; for (const QString &fileName : fileNames) { const QString &file = workingDir.filePath(fileName); QVERIFY(QFile::copy(testDir.file(fileName), file)); // Saving source file names for the model manager update, // so we can update just the relevant files. if (ProjectFile::classify(file) == ProjectFile::CXXSource) sourceFiles.insert(FilePath::fromString(file)); } // Update the c++ model manager and check for the old includes modelManager->updateSourceFiles(sourceFiles).waitForFinished(); QCoreApplication::processEvents(); CPlusPlus::Snapshot snapshot = modelManager->snapshot(); for (const FilePath &sourceFile : std::as_const(sourceFiles)) { QCOMPARE(snapshot.allIncludesForDocument(sourceFile), QSet{headerWithPragmaOnce}); } // Open a file in the editor QCOMPARE(Core::DocumentModel::openedDocuments().size(), 0); Core::IEditor *editor = Core::EditorManager::openEditor(mainFile); QVERIFY(editor); EditorCloser editorCloser(editor); Utils::ExecuteOnDestruction saveAllFiles([](){ Core::DocumentManager::saveAllModifiedDocumentsSilently(); }); QCOMPARE(Core::DocumentModel::openedDocuments().size(), 1); QVERIFY(modelManager->isCppEditor(editor)); QVERIFY(modelManager->workingCopy().contains(mainFile)); // Test the renaming of a header file where a pragma once guard is present QVERIFY(Core::FileUtils::renameFile(headerWithPragmaOnce, renamedHeaderWithPragmaOnce, Core::HandleIncludeGuards::Yes)); // Test the renaming the header with include guard: // The contents should match the foobar2000.h in the testdata_project2 project QVERIFY(Core::FileUtils::renameFile(Utils::FilePath::fromString(headerWithNormalGuard), Utils::FilePath::fromString(renamedHeaderWithNormalGuard), Core::HandleIncludeGuards::Yes)); const MyTestDataDir testDir2(_("testdata_project2")); QFile foobar2000Header(testDir2.file("foobar2000.h")); QVERIFY(foobar2000Header.open(QFile::ReadOnly | QFile::Text)); const auto foobar2000HeaderContents = foobar2000Header.readAll(); foobar2000Header.close(); QFile renamedHeader(renamedHeaderWithNormalGuard); QVERIFY(renamedHeader.open(QFile::ReadOnly | QFile::Text)); auto renamedHeaderContents = renamedHeader.readAll(); renamedHeader.close(); QCOMPARE(renamedHeaderContents, foobar2000HeaderContents); // Test the renaming the header with underscore pre/suffixed include guard: // The contents should match the foobar2000.h in the testdata_project2 project QVERIFY( Core::FileUtils::renameFile(Utils::FilePath::fromString(headerWithUnderscoredGuard), Utils::FilePath::fromString(renamedHeaderWithUnderscoredGuard), Core::HandleIncludeGuards::Yes)); QFile foobar4000Header(testDir2.file("foobar4000.h")); QVERIFY(foobar4000Header.open(QFile::ReadOnly | QFile::Text)); const auto foobar4000HeaderContents = foobar4000Header.readAll(); foobar4000Header.close(); renamedHeader.setFileName(renamedHeaderWithUnderscoredGuard); QVERIFY(renamedHeader.open(QFile::ReadOnly | QFile::Text)); renamedHeaderContents = renamedHeader.readAll(); renamedHeader.close(); QCOMPARE(renamedHeaderContents, foobar4000HeaderContents); // test the renaming of a header with a malformed guard to verify we do not make // accidental refactors renamedHeader.setFileName(headerWithMalformedGuard); QVERIFY(renamedHeader.open(QFile::ReadOnly | QFile::Text)); auto originalMalformedGuardContents = renamedHeader.readAll(); renamedHeader.close(); QVERIFY(Core::FileUtils::renameFile(Utils::FilePath::fromString(headerWithMalformedGuard), Utils::FilePath::fromString(renamedHeaderWithMalformedGuard), Core::HandleIncludeGuards::Yes)); renamedHeader.setFileName(renamedHeaderWithMalformedGuard); QVERIFY(renamedHeader.open(QFile::ReadOnly | QFile::Text)); renamedHeaderContents = renamedHeader.readAll(); renamedHeader.close(); QCOMPARE(renamedHeaderContents, originalMalformedGuardContents); // Update the c++ model manager again and check for the new includes TestCase::waitForProcessedEditorDocument(mainFile); modelManager->updateSourceFiles(sourceFiles).waitForFinished(); QCoreApplication::processEvents(); snapshot = modelManager->snapshot(); for (const FilePath &sourceFile : std::as_const(sourceFiles)) { QCOMPARE(snapshot.allIncludesForDocument(sourceFile), QSet{renamedHeaderWithPragmaOnce}); } } void ModelManagerTest::testDocumentsAndRevisions() { TestCase helper; // Index two files const MyTestDataDir testDir(_("testdata_project1")); const FilePath filePath1 = testDir.filePath(QLatin1String("foo.h")); const FilePath filePath2 = testDir.filePath(QLatin1String("foo.cpp")); const QSet filesToIndex = {filePath1,filePath2}; QVERIFY(TestCase::parseFiles(filesToIndex)); CppModelManager *modelManager = CppModelManager::instance(); VERIFY_DOCUMENT_REVISION(modelManager->document(filePath1), 1U); VERIFY_DOCUMENT_REVISION(modelManager->document(filePath2), 1U); // Open editor for file 1 TextEditor::BaseTextEditor *editor1; QVERIFY(helper.openCppEditor(filePath1, &editor1)); helper.closeEditorAtEndOfTestCase(editor1); QVERIFY(TestCase::waitForProcessedEditorDocument(filePath1)); VERIFY_DOCUMENT_REVISION(modelManager->document(filePath1), 2U); VERIFY_DOCUMENT_REVISION(modelManager->document(filePath2), 1U); // Index again QVERIFY(TestCase::parseFiles(filesToIndex)); VERIFY_DOCUMENT_REVISION(modelManager->document(filePath1), 3U); VERIFY_DOCUMENT_REVISION(modelManager->document(filePath2), 2U); // Open editor for file 2 TextEditor::BaseTextEditor *editor2; QVERIFY(helper.openCppEditor(filePath2, &editor2)); helper.closeEditorAtEndOfTestCase(editor2); QVERIFY(TestCase::waitForProcessedEditorDocument(filePath2)); VERIFY_DOCUMENT_REVISION(modelManager->document(filePath1), 3U); VERIFY_DOCUMENT_REVISION(modelManager->document(filePath2), 3U); // Index again QVERIFY(TestCase::parseFiles(filesToIndex)); VERIFY_DOCUMENT_REVISION(modelManager->document(filePath1), 4U); VERIFY_DOCUMENT_REVISION(modelManager->document(filePath2), 4U); } } // CppEditor::Internal