// 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 "fileandtokenactions_test.h" #include "cppeditorplugin.h" #include "cppeditorwidget.h" #include "cppquickfix.h" #include "cppquickfixassistant.h" #include "cppquickfixes.h" #include "cppinsertvirtualmethods.h" #include "cppmodelmanager.h" #include "cpptoolsreuse.h" #include "cpptoolstestcase.h" #include "cppworkingcopy.h" #include "projectinfo.h" #include #include #include #include #include #include #include #include #include #include #include #include #include /*! Tests for executing "test actions" for (1) each file of each loaded project (file actions) or e.g. "Switch Header/Source" (2) each word/token of each file of each loaded project (token actions) e.g. "Trigger and perform all Quick Fixes" Purpose: Detect corner cases for which Qt Creator crashes or outputs QTC_ASSERTS. Correct behavior is *not* tested. Prerequisites: These tests depend on the projects that are loaded on startup of Qt Creator. Make sure to load the test projects via command line or the session manager. The test projects must be properly configured for a Kit. */ using namespace Core; using namespace CPlusPlus; using namespace TextEditor; using namespace Utils; namespace CppEditor::Internal::Tests { namespace { class TestActionsTestCase : public CppEditor::Tests::TestCase { public: class AbstractAction { public: /// Every Action is expected to undo its changes. virtual void run(CppEditorWidget *editorWidget) = 0; virtual ~AbstractAction() {} }; typedef QSharedPointer ActionPointer; typedef QList Actions; public: /// Run the given fileActions for each file and the given tokenActions for each token. /// The cursor is positioned on the very first character of each token. TestActionsTestCase(const Actions &tokenActions = Actions(), const Actions &fileActions = Actions()); /// Simulate pressing ESC, which will close popups, search results pane, etc... /// This works only if the Qt Creator window is active. static void escape(); /// Undoing changes static void undoChangesInDocument(TextDocument *editorDocument); static void undoChangesInAllEditorWidgets(); /// Execute actions for the current cursor position of editorWidget. static void executeActionsOnEditorWidget(CppEditorWidget *editorWidget, Actions actions); private: /// Move word camel case wise from current cursor position until given token (not included) /// and execute the tokenActions for each new position. static void moveWordCamelCaseToToken(TranslationUnit *translationUnit, const Token &token, BaseTextEditor *editor, const Actions &tokenActions); static void undoAllChangesAndCloseAllEditors(); }; typedef TestActionsTestCase::Actions Actions; typedef TestActionsTestCase::ActionPointer ActionPointer; Actions singleAction(const ActionPointer &action) { return Actions() << action; } static bool waitUntilAProjectIsLoaded(int timeOutInMs = 30000) { QElapsedTimer timer; timer.start(); while (timer.elapsed() < timeOutInMs) { if (!CppModelManager::instance()->projectInfos().isEmpty()) return true; QCoreApplication::processEvents(); QThread::msleep(20); } return false; } TestActionsTestCase::TestActionsTestCase(const Actions &tokenActions, const Actions &fileActions) : CppEditor::Tests::TestCase(/*runGarbageCollector=*/false) { QVERIFY(succeededSoFar()); if (Utils::qtcEnvironmentVariable("QTC_TEST_WAIT_FOR_LOADED_PROJECT") != "1") QSKIP("Environment variable QTC_TEST_WAIT_FOR_LOADED_PROJECT=1 not set."); QVERIFY(waitUntilAProjectIsLoaded()); // Collect files to process FilePaths filesToOpen; QList > projects; const QList projectInfos = m_modelManager->projectInfos(); for (const ProjectInfo::ConstPtr &info : projectInfos) { qDebug() << "Project" << info->projectFilePath().toUserOutput() << "- files to process:" << info->sourceFiles().size(); const QSet sourceFiles = info->sourceFiles(); for (const FilePath &sourceFile : sourceFiles) filesToOpen << sourceFile; } Utils::sort(filesToOpen); // Process all files from the projects for (const FilePath &filePath : std::as_const(filesToOpen)) { // Skip e.g. "" if (!filePath.exists()) continue; qDebug() << " --" << filePath; // Clean up undoAllChangesAndCloseAllEditors(); // Open editor QCOMPARE(DocumentModel::openedDocuments().size(), 0); BaseTextEditor *editor; CppEditorWidget *editorWidget; QVERIFY(openCppEditor(filePath, &editor, &editorWidget)); QCOMPARE(DocumentModel::openedDocuments().size(), 1); QVERIFY(m_modelManager->isCppEditor(editor)); QVERIFY(m_modelManager->workingCopy().get(filePath)); // Rehighlight waitForRehighlightedSemanticDocument(editorWidget); // Run all file actions executeActionsOnEditorWidget(editorWidget, fileActions); if (tokenActions.empty()) continue; const Snapshot snapshot = globalSnapshot(); Document::Ptr document = snapshot.preprocessedDocument( editorWidget->document()->toPlainText().toUtf8(), filePath); QVERIFY(document); document->parse(); TranslationUnit *translationUnit = document->translationUnit(); QVERIFY(translationUnit); QVERIFY(translationUnit->tokenCount() >= 2); // First invalid token included // Move word camel case wise from the top until the first user visible token editor->gotoLine(1); const Token token = translationUnit->tokenAt(1); moveWordCamelCaseToToken(translationUnit, token, editor, tokenActions); // Move token wise through the document // translationUnit->tokenAt(0) is the invalid token, so start with 1. for (unsigned i = 1, ei = translationUnit->tokenCount(); i < ei; ++i) { const Token token = translationUnit->tokenAt(i); if (token.kind() == T_EOF_SYMBOL) continue; if (token.expanded()) { // Move word camel case wise until first not expanded token unsigned j = i + 1; for (; translationUnit->tokenAt(j).expanded() && j < ei; ++j) ; if (j == ei) { if (j == i + 1) break; else // All tokens are expanded until end j = j - 1; } const Token token = translationUnit->tokenAt(j); moveWordCamelCaseToToken(translationUnit, token, editor, tokenActions); i = j - 1; // Continue with next not expanded token } else { // Position the cursor on the token int line, column; translationUnit->getPosition(token.utf16charsBegin(), &line, &column); editor->gotoLine(line, column - 1); QApplication::processEvents(); // Run all token actions executeActionsOnEditorWidget(editorWidget, tokenActions); } } // for tokens } // for files // Clean up undoAllChangesAndCloseAllEditors(); } void TestActionsTestCase::escape() { if (QWidget *w = QApplication::focusWidget()) QTest::keyClick(w, Qt::Key_Escape); } void TestActionsTestCase::undoChangesInDocument(TextDocument *editorDocument) { QTextDocument * const document = editorDocument->document(); QVERIFY(document); while (document->isUndoAvailable()) document->undo(); } void TestActionsTestCase::undoChangesInAllEditorWidgets() { const QList documents = DocumentModel::openedDocuments(); for (IDocument *document : documents) { TextDocument *baseTextDocument = qobject_cast(document); undoChangesInDocument(baseTextDocument); } } void TestActionsTestCase::executeActionsOnEditorWidget(CppEditorWidget *editorWidget, TestActionsTestCase::Actions actions) { for (const ActionPointer &action : std::as_const(actions)) action->run(editorWidget); QApplication::processEvents(); } void TestActionsTestCase::moveWordCamelCaseToToken(TranslationUnit *translationUnit, const Token &token, BaseTextEditor *editor, const Actions &tokenActions) { QVERIFY(translationUnit); QVERIFY(editor); CppEditorWidget *editorWidget = dynamic_cast(editor->editorWidget()); QVERIFY(editorWidget); int line, column; translationUnit->getPosition(token.utf16charsBegin(), &line, &column); while (editor->currentLine() < (int) line || (editor->currentLine() == (int) line && editor->currentColumn() < (int) column)) { editorWidget->gotoNextWordCamelCase(); QApplication::processEvents(); // Run all token actions executeActionsOnEditorWidget(editorWidget, tokenActions); } } void TestActionsTestCase::undoAllChangesAndCloseAllEditors() { undoChangesInAllEditorWidgets(); EditorManager::closeAllEditors(/*askAboutModifiedEditors =*/ false); QApplication::processEvents(); QCOMPARE(DocumentModel::openedDocuments().size(), 0); } class NoOpTokenAction : public TestActionsTestCase::AbstractAction { public: /// Do nothing on each token void run(CppEditorWidget *) {} }; class FollowSymbolUnderCursorTokenAction : public TestActionsTestCase::AbstractAction { public: /// Follow symbol under cursor /// Warning: May block if file does not exist (e.g. a not generated ui_* file). void run(CppEditorWidget *editorWidget); }; void FollowSymbolUnderCursorTokenAction::run(CppEditorWidget *editorWidget) { // Follow link IEditor *editorBefore = EditorManager::currentEditor(); const int originalLine = editorBefore->currentLine(); const int originalColumn = editorBefore->currentColumn(); editorWidget->openLinkUnderCursor(); TestActionsTestCase::escape(); QApplication::processEvents(); // Go back IEditor *editorAfter = EditorManager::currentEditor(); if (editorAfter != editorBefore) EditorManager::goBackInNavigationHistory(); else editorBefore->gotoLine(originalLine, originalColumn); QApplication::processEvents(); } class SwitchDeclarationDefinitionTokenAction : public TestActionsTestCase::AbstractAction { public: /// Switch Declaration/Definition on each token void run(CppEditorWidget *); }; void SwitchDeclarationDefinitionTokenAction::run(CppEditorWidget *) { // Switch Declaration/Definition IEditor *editorBefore = EditorManager::currentEditor(); const int originalLine = editorBefore->currentLine(); const int originalColumn = editorBefore->currentColumn(); CppEditorPlugin::instance()->switchDeclarationDefinition(); QApplication::processEvents(); // Go back IEditor *editorAfter = EditorManager::currentEditor(); if (editorAfter != editorBefore) EditorManager::goBackInNavigationHistory(); else editorBefore->gotoLine(originalLine, originalColumn); QApplication::processEvents(); } class FindUsagesTokenAction : public TestActionsTestCase::AbstractAction { public: /// Find Usages on each token void run(CppEditorWidget *editor); }; void FindUsagesTokenAction::run(CppEditorWidget *editor) { editor->findUsages(); QApplication::processEvents(); } class RenameSymbolUnderCursorTokenAction : public TestActionsTestCase::AbstractAction { public: /// Rename Symbol Under Cursor on each token (Renaming is not applied) void run(CppEditorWidget *); }; void RenameSymbolUnderCursorTokenAction::run(CppEditorWidget *) { CppEditorPlugin::instance()->renameSymbolUnderCursor(); QApplication::processEvents(); } class OpenTypeHierarchyTokenAction : public TestActionsTestCase::AbstractAction { public: /// Open Type Hierarchy on each token void run(CppEditorWidget *); }; void OpenTypeHierarchyTokenAction::run(CppEditorWidget *) { CppEditorPlugin::instance()->openTypeHierarchy(); QApplication::processEvents(); } class InvokeCompletionTokenAction : public TestActionsTestCase::AbstractAction { public: /// Invoke completion menu on each token. /// Warning: May create tool tip artefacts if focus is lost. void run(CppEditorWidget *editorWidget); }; void InvokeCompletionTokenAction::run(CppEditorWidget *editorWidget) { // Invoke assistant and wait until it is finished QEventLoop loop; QObject::connect(editorWidget, &TextEditorWidget::assistFinished, &loop, &QEventLoop::quit); editorWidget->invokeAssist(Completion); loop.exec(); // Close the completion popup widget QApplication::processEvents(); editorWidget->abortAssist(); // An alternative way to close the completion pop up is to give the editor widget the focus. // This works only if the Qt Creator window is always the active window. // editorWidget->setFocus(); QApplication::processEvents(); TestActionsTestCase::undoChangesInDocument(editorWidget->textDocument()); } class RunAllQuickFixesTokenAction : public TestActionsTestCase::AbstractAction { public: /// Trigger all Quick Fixes and apply the matching ones void run(CppEditorWidget *editorWidget); }; // TODO: Some QuickFixes operate on selections. void RunAllQuickFixesTokenAction::run(CppEditorWidget *editorWidget) { // Calling editorWidget->invokeAssist(QuickFix) would be not enough // since we also want to execute the ones that match. CppQuickFixInterface qfi(editorWidget, ExplicitlyInvoked); // This guard is important since the Quick Fixes expect to get a non-empty path(). if (qfi.path().isEmpty()) return; for (CppQuickFixFactory *cppQuickFixFactory : CppQuickFixFactory::cppQuickFixFactories()) { QuickFixOperations operations; // Some Quick Fixes pop up a dialog and are therefore inappropriate for this test. // Where possible, use a guiless version of the factory. if (qobject_cast(cppQuickFixFactory)) { QScopedPointer factoryProducingGuiLessOperations; factoryProducingGuiLessOperations.reset(InsertVirtualMethods::createTestFactory()); factoryProducingGuiLessOperations->match(qfi, operations); } else { cppQuickFixFactory->match(qfi, operations); } for (QuickFixOperation::Ptr operation : std::as_const(operations)) { qDebug() << " -- Performing Quick Fix" << operation->description(); operation->perform(); TestActionsTestCase::escape(); TestActionsTestCase::undoChangesInAllEditorWidgets(); QApplication::processEvents(); } } } class SwitchHeaderSourceFileAction : public TestActionsTestCase::AbstractAction { public: void run(CppEditorWidget *); }; void SwitchHeaderSourceFileAction::run(CppEditorWidget *) { // Switch Header/Source IEditor *editorBefore = EditorManager::currentEditor(); CppModelManager::switchHeaderSource(false); QApplication::processEvents(); // Go back IEditor *editorAfter = EditorManager::currentEditor(); if (editorAfter != editorBefore) EditorManager::goBackInNavigationHistory(); QApplication::processEvents(); } } // anonymous namespace void FileAndTokenActionsTest::testOpenEachFile() { TestActionsTestCase(); } void FileAndTokenActionsTest::testSwitchHeaderSourceOnEachFile() { TestActionsTestCase(Actions(), singleAction(ActionPointer(new SwitchHeaderSourceFileAction))); } void FileAndTokenActionsTest::testMoveTokenWiseThroughEveryFile() { TestActionsTestCase(singleAction(ActionPointer(new NoOpTokenAction))); } /// May block if file does not exist (e.g. a not generated ui_* file). void FileAndTokenActionsTest::testMoveTokenWiseThroughEveryFileAndFollowSymbol() { TestActionsTestCase(singleAction(ActionPointer(new FollowSymbolUnderCursorTokenAction))); } void FileAndTokenActionsTest::testMoveTokenWiseThroughEveryFileAndSwitchDeclarationDefinition() { TestActionsTestCase(singleAction(ActionPointer(new SwitchDeclarationDefinitionTokenAction))); } void FileAndTokenActionsTest::testMoveTokenWiseThroughEveryFileAndFindUsages() { TestActionsTestCase(singleAction(ActionPointer(new FindUsagesTokenAction))); } void FileAndTokenActionsTest::testMoveTokenWiseThroughEveryFileAndRenameUsages() { TestActionsTestCase(singleAction(ActionPointer(new RenameSymbolUnderCursorTokenAction))); } void FileAndTokenActionsTest::testMoveTokenWiseThroughEveryFileAndOpenTypeHierarchy() { TestActionsTestCase(singleAction(ActionPointer(new OpenTypeHierarchyTokenAction))); } void FileAndTokenActionsTest::testMoveTokenWiseThroughEveryFileAndInvokeCompletion() { TestActionsTestCase(singleAction(ActionPointer(new InvokeCompletionTokenAction))); } void FileAndTokenActionsTest::testMoveTokenWiseThroughEveryFileAndTriggerQuickFixes() { TestActionsTestCase(singleAction(ActionPointer(new RunAllQuickFixesTokenAction))); } } // namespace CppEditor::Internal::Tests