2015-10-01 12:45:06 +02:00
|
|
|
/****************************************************************************
|
2015-06-01 18:51:55 +02:00
|
|
|
**
|
2016-01-15 14:55:33 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2015-06-01 18:51:55 +02:00
|
|
|
**
|
|
|
|
** 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
|
2016-01-15 14:55:33 +01:00
|
|
|
** 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.
|
2015-06-01 18:51:55 +02:00
|
|
|
**
|
2016-01-15 14:55:33 +01:00
|
|
|
** 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.
|
2015-06-01 18:51:55 +02:00
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
2016-09-15 17:41:41 +02:00
|
|
|
#include "googletest.h"
|
|
|
|
|
2016-06-29 16:49:56 +02:00
|
|
|
#include "mockclangcodemodelclient.h"
|
2016-09-15 17:41:41 +02:00
|
|
|
#include "processevents-utilities.h"
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2016-06-29 16:49:56 +02:00
|
|
|
#include <clangcodemodelserver.h>
|
2017-12-05 09:42:35 +01:00
|
|
|
#include <tokeninfocontainer.h>
|
2016-06-29 16:49:56 +02:00
|
|
|
#include <clangcodemodelclientproxy.h>
|
|
|
|
#include <clangcodemodelserverproxy.h>
|
2016-09-14 16:16:10 +02:00
|
|
|
#include <clangtranslationunits.h>
|
2016-09-09 14:25:59 +02:00
|
|
|
#include <clangexceptions.h>
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2017-06-15 16:43:37 +02:00
|
|
|
#include <clangcodemodelservermessages.h>
|
2017-06-09 12:19:09 +02:00
|
|
|
|
2018-10-19 10:20:27 +02:00
|
|
|
#include <clangcodemodel/clanguiheaderondiskmanager.h>
|
|
|
|
|
2017-06-09 12:19:09 +02:00
|
|
|
#include <utils/algorithm.h>
|
2018-10-19 10:20:27 +02:00
|
|
|
#include <utils/temporarydirectory.h>
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2016-10-06 12:54:22 +02:00
|
|
|
#include <QCoreApplication>
|
2015-06-01 18:51:55 +02:00
|
|
|
#include <QFile>
|
|
|
|
|
|
|
|
using testing::Property;
|
|
|
|
using testing::Contains;
|
|
|
|
using testing::Not;
|
|
|
|
using testing::Eq;
|
2015-10-13 15:56:41 +02:00
|
|
|
using testing::PrintToString;
|
2015-11-18 17:07:44 +01:00
|
|
|
using testing::_;
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2016-05-31 16:07:09 +02:00
|
|
|
using namespace ClangBackEnd;
|
2015-10-13 15:56:41 +02:00
|
|
|
|
2018-09-25 09:41:32 +02:00
|
|
|
MATCHER_P4(HasDirtyDocument,
|
2015-11-23 13:31:46 +01:00
|
|
|
filePath,
|
|
|
|
documentRevision,
|
2017-05-03 10:10:50 +02:00
|
|
|
isDirty,
|
2015-11-23 13:31:46 +01:00
|
|
|
hasNewDiagnostics,
|
2015-10-13 15:56:41 +02:00
|
|
|
std::string(negation ? "isn't" : "is")
|
2016-09-07 10:42:12 +02:00
|
|
|
+ " document with file path "+ PrintToString(filePath)
|
2015-10-13 15:56:41 +02:00
|
|
|
+ " and document revision " + PrintToString(documentRevision)
|
2017-05-03 10:10:50 +02:00
|
|
|
+ " and isDirty = " + PrintToString(isDirty)
|
2015-11-23 13:31:46 +01:00
|
|
|
+ " and hasNewDiagnostics = " + PrintToString(hasNewDiagnostics)
|
2015-10-13 15:56:41 +02:00
|
|
|
)
|
|
|
|
{
|
2016-09-07 10:42:12 +02:00
|
|
|
auto &&documents = arg.documentsForTestOnly();
|
2015-10-13 15:56:41 +02:00
|
|
|
try {
|
2018-09-25 09:41:32 +02:00
|
|
|
auto document = documents.document(filePath);
|
2015-10-13 15:56:41 +02:00
|
|
|
|
2016-09-07 10:42:12 +02:00
|
|
|
if (document.documentRevision() == documentRevision) {
|
2017-05-03 10:10:50 +02:00
|
|
|
if (document.isDirty() && !isDirty) {
|
2015-11-23 13:31:46 +01:00
|
|
|
*result_listener << "isNeedingReparse is true";
|
|
|
|
return false;
|
2017-05-03 10:10:50 +02:00
|
|
|
} else if (!document.isDirty() && isDirty) {
|
2015-10-13 15:56:41 +02:00
|
|
|
*result_listener << "isNeedingReparse is false";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-11-23 13:31:46 +01:00
|
|
|
return true;
|
2015-10-13 15:56:41 +02:00
|
|
|
}
|
|
|
|
|
2016-09-07 10:42:12 +02:00
|
|
|
*result_listener << "revision number is " << PrintToString(document.documentRevision());
|
2015-10-13 15:56:41 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
} catch (...) {
|
|
|
|
*result_listener << "has no translation unit";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-05 10:50:37 +01:00
|
|
|
MATCHER_P(PartlyContains, token, "")
|
|
|
|
{
|
|
|
|
for (const auto &item: arg) {
|
|
|
|
if (item.types == token.types && item.line == token.line && item.column == token.column
|
|
|
|
&& item.length == token.length) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-01-19 09:18:57 +01:00
|
|
|
static constexpr int AnnotationJobsMultiplier = 2;
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
class ClangCodeModelServer : public ::testing::Test
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
void SetUp() override;
|
2016-05-31 16:07:09 +02:00
|
|
|
void TearDown() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool waitUntilAllJobsFinished(int timeOutInMs = 10000);
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2018-09-25 09:41:32 +02:00
|
|
|
void openDocumentAndWaitForFinished(
|
2018-05-31 15:21:53 +02:00
|
|
|
const Utf8String &filePath, int expectedAnnotationsMessages = AnnotationJobsMultiplier);
|
|
|
|
|
|
|
|
void openDocument(const Utf8String &filePath,
|
|
|
|
int expectedAnnotationsMessages = AnnotationJobsMultiplier);
|
|
|
|
void openDocument(const Utf8String &filePath,
|
2018-09-25 09:41:32 +02:00
|
|
|
const Utf8StringVector &compilationArguments,
|
2018-10-19 10:20:27 +02:00
|
|
|
const Utf8StringVector &headerPaths,
|
2018-05-31 15:21:53 +02:00
|
|
|
int expectedAnnotationsMessages = AnnotationJobsMultiplier);
|
|
|
|
void openDocuments(int expectedAnnotationsMessages);
|
|
|
|
void openDocumentWithUnsavedContent(const Utf8String &filePath, const Utf8String &content);
|
|
|
|
void closeDocument(const Utf8String &filePath);
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2018-10-19 10:20:27 +02:00
|
|
|
void updateUnsavedFile(const Utf8String &filePath, const Utf8String &fileContent);
|
2016-05-31 16:07:09 +02:00
|
|
|
void updateUnsavedContent(const Utf8String &filePath,
|
|
|
|
const Utf8String &fileContent,
|
|
|
|
quint32 revisionNumber);
|
|
|
|
void removeUnsavedFile(const Utf8String &filePath);
|
|
|
|
|
2015-11-25 15:29:28 +01:00
|
|
|
void updateVisibilty(const Utf8String ¤tEditor, const Utf8String &additionalVisibleEditor);
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
void requestAnnotations(const Utf8String &filePath);
|
2017-06-09 12:19:09 +02:00
|
|
|
void requestReferences(quint32 documentRevision = 0);
|
2017-07-28 09:48:13 +02:00
|
|
|
void requestFollowSymbol(quint32 documentRevision = 0);
|
2018-05-31 15:21:53 +02:00
|
|
|
void requestCompletions(const Utf8String &filePath,
|
|
|
|
uint line = 1,
|
2018-09-25 09:41:32 +02:00
|
|
|
uint column = 1);
|
2018-05-31 15:21:53 +02:00
|
|
|
void requestCompletionsInFileA();
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2016-09-14 16:16:10 +02:00
|
|
|
bool isSupportiveTranslationUnitInitialized(const Utf8String &filePath);
|
|
|
|
|
2017-06-09 12:19:09 +02:00
|
|
|
DocumentProcessor documentProcessorForFile(const Utf8String &filePath);
|
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
void expectAnnotations(int count);
|
2016-05-31 16:07:09 +02:00
|
|
|
void expectCompletion(const CodeCompletion &completion);
|
|
|
|
void expectCompletionFromFileA();
|
|
|
|
void expectCompletionFromFileAUnsavedMethodVersion1();
|
|
|
|
void expectCompletionFromFileAUnsavedMethodVersion2();
|
|
|
|
void expectNoCompletionWithUnsavedMethod();
|
2017-06-09 12:19:09 +02:00
|
|
|
void expectReferences();
|
2017-07-28 09:48:13 +02:00
|
|
|
void expectFollowSymbol();
|
2018-05-31 15:21:53 +02:00
|
|
|
void expectAnnotationsForFileBWithSpecificHighlightingMark();
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2015-06-01 18:51:55 +02:00
|
|
|
static const Utf8String unsavedContent(const QString &unsavedFilePath);
|
|
|
|
|
|
|
|
protected:
|
2016-06-29 16:49:56 +02:00
|
|
|
MockClangCodeModelClient mockClangCodeModelClient;
|
|
|
|
ClangBackEnd::ClangCodeModelServer clangServer;
|
2016-09-07 10:42:12 +02:00
|
|
|
const ClangBackEnd::Documents &documents = clangServer.documentsForTestOnly();
|
2016-05-31 16:07:09 +02:00
|
|
|
|
|
|
|
const Utf8String filePathA = Utf8StringLiteral(TESTDATA_DIR"/complete_extractor_function.cpp");
|
|
|
|
const QString filePathAUnsavedVersion1
|
|
|
|
= QStringLiteral(TESTDATA_DIR) + QStringLiteral("/complete_extractor_function_unsaved.cpp");
|
|
|
|
const QString filePathAUnsavedVersion2
|
|
|
|
= QStringLiteral(TESTDATA_DIR) + QStringLiteral("/complete_extractor_function_unsaved_2.cpp");
|
|
|
|
|
|
|
|
const Utf8String filePathB = Utf8StringLiteral(TESTDATA_DIR"/complete_extractor_variable.cpp");
|
2017-06-09 12:19:09 +02:00
|
|
|
const Utf8String filePathC = Utf8StringLiteral(TESTDATA_DIR"/references.cpp");
|
2016-05-31 16:07:09 +02:00
|
|
|
|
|
|
|
const Utf8String aFilePath = Utf8StringLiteral("afile.cpp");
|
|
|
|
const Utf8String anExistingFilePath
|
|
|
|
= Utf8StringLiteral(TESTDATA_DIR"/complete_translationunit_parse_error.cpp");
|
2018-10-19 10:20:27 +02:00
|
|
|
|
|
|
|
const Utf8String uicMainPath = Utf8StringLiteral(TESTDATA_DIR"/uicmain.cpp");
|
2015-06-01 18:51:55 +02:00
|
|
|
};
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
using ClangCodeModelServerSlowTest = ClangCodeModelServer;
|
|
|
|
|
|
|
|
TEST_F(ClangCodeModelServerSlowTest, GetCodeCompletion)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocument(filePathA);
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2016-05-31 16:07:09 +02:00
|
|
|
expectCompletionFromFileA();
|
2018-05-31 15:21:53 +02:00
|
|
|
requestCompletionsInFileA();
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, RequestAnnotations)
|
2015-11-18 17:07:44 +01:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocumentAndWaitForFinished(filePathB);
|
2015-11-18 17:07:44 +01:00
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
expectAnnotationsForFileBWithSpecificHighlightingMark();
|
|
|
|
requestAnnotations(filePathB);
|
2016-05-31 16:07:09 +02:00
|
|
|
}
|
2015-11-18 17:07:44 +01:00
|
|
|
|
2017-06-09 12:19:09 +02:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, RequestReferencesForCurrentDocumentRevision)
|
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocumentAndWaitForFinished(filePathC);
|
2017-06-09 12:19:09 +02:00
|
|
|
|
|
|
|
expectReferences();
|
|
|
|
requestReferences();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ClangCodeModelServerSlowTest, RequestReferencesTakesRevisionFromMessage)
|
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocumentAndWaitForFinished(filePathC);
|
2017-06-09 12:19:09 +02:00
|
|
|
|
|
|
|
requestReferences(/*documentRevision=*/ 99);
|
|
|
|
|
|
|
|
JobRequests &queue = documentProcessorForFile(filePathC).queue();
|
2018-01-08 16:12:41 +01:00
|
|
|
ASSERT_TRUE(Utils::anyOf(queue, [](const JobRequest &request) {
|
|
|
|
return request.documentRevision == 99;
|
|
|
|
}));
|
2017-06-09 12:19:09 +02:00
|
|
|
queue.clear(); // Avoid blocking
|
|
|
|
}
|
|
|
|
|
2017-07-28 09:48:13 +02:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, RequestFollowSymbolForCurrentDocumentRevision)
|
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocumentAndWaitForFinished(filePathC);
|
2017-07-28 09:48:13 +02:00
|
|
|
|
|
|
|
expectFollowSymbol();
|
|
|
|
requestFollowSymbol();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ClangCodeModelServerSlowTest, RequestFollowSymbolTakesRevisionFromMessage)
|
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocumentAndWaitForFinished(filePathC);
|
2017-07-28 09:48:13 +02:00
|
|
|
|
|
|
|
requestFollowSymbol(/*documentRevision=*/ 99);
|
|
|
|
|
|
|
|
JobRequests &queue = documentProcessorForFile(filePathC).queue();
|
2018-01-08 16:12:41 +01:00
|
|
|
ASSERT_TRUE(Utils::anyOf(queue, [](const JobRequest &request) {
|
|
|
|
return request.documentRevision == 99;
|
|
|
|
}));
|
2017-07-28 09:48:13 +02:00
|
|
|
queue.clear(); // Avoid blocking
|
|
|
|
}
|
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, NoInitialAnnotationsForClosedDocument)
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
2018-05-31 15:21:53 +02:00
|
|
|
const int expectedAnnotationsCount = 0;
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocument(filePathA, expectedAnnotationsCount);
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
closeDocument(filePathA);
|
2015-11-18 17:07:44 +01:00
|
|
|
}
|
|
|
|
|
2018-06-05 13:05:47 +02:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, AnnotationsForInitiallyNotVisibleDocument)
|
|
|
|
{
|
|
|
|
const int expectedAnnotationsCount = 2;
|
|
|
|
updateVisibilty(filePathA, filePathA);
|
|
|
|
expectAnnotations(expectedAnnotationsCount);
|
|
|
|
clangServer.documentsOpened( // Open document while another is still visible
|
2018-09-25 09:41:32 +02:00
|
|
|
DocumentsOpenedMessage({FileContainer(filePathB, Utf8String(), false, 1)},
|
2018-06-05 13:05:47 +02:00
|
|
|
filePathA, {filePathA}));
|
|
|
|
clangServer.unsavedFilesUpdated( // Invalidate added jobs
|
|
|
|
UnsavedFilesUpdatedMessage({FileContainer(Utf8StringLiteral("aFile"), Utf8String())}));
|
|
|
|
|
|
|
|
updateVisibilty(filePathB, filePathB);
|
|
|
|
}
|
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, NoAnnotationsForClosedDocument)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2018-05-31 15:21:53 +02:00
|
|
|
const int expectedAnnotationsCount = AnnotationJobsMultiplier; // Only for registration.
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocumentAndWaitForFinished(filePathA, expectedAnnotationsCount);
|
2016-05-31 16:07:09 +02:00
|
|
|
updateUnsavedContent(filePathA, Utf8String(), 1);
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
closeDocument(filePathA);
|
2016-05-31 16:07:09 +02:00
|
|
|
}
|
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, NoInitialAnnotationsForOutdatedDocumentRevision)
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
2018-05-31 15:21:53 +02:00
|
|
|
const int expectedAnnotationsCount = AnnotationJobsMultiplier; // Only for registration.
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocument(filePathA, expectedAnnotationsCount);
|
2016-05-31 16:07:09 +02:00
|
|
|
|
|
|
|
updateUnsavedContent(filePathA, Utf8String(), 1);
|
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, NoCompletionsForClosedDocument)
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
2018-05-31 15:21:53 +02:00
|
|
|
const int expectedAnnotationsCount = AnnotationJobsMultiplier; // Only for registration.
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocumentAndWaitForFinished(filePathA, expectedAnnotationsCount);
|
2018-05-31 15:21:53 +02:00
|
|
|
requestCompletionsInFileA();
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
closeDocument(filePathA);
|
2016-05-31 16:07:09 +02:00
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, GetCodeCompletionForUnsavedFile)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2018-05-31 15:21:53 +02:00
|
|
|
expectAnnotations(AnnotationJobsMultiplier);
|
|
|
|
openDocumentWithUnsavedContent(filePathA, unsavedContent(filePathAUnsavedVersion1));
|
2016-05-31 16:07:09 +02:00
|
|
|
expectCompletionFromFileAUnsavedMethodVersion1();
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
requestCompletionsInFileA();
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, GetNoCodeCompletionAfterRemovingUnsavedFile)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2018-05-31 15:21:53 +02:00
|
|
|
const int expectedAnnotationsCount = 2 * AnnotationJobsMultiplier; // For registration and update/removal.
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocumentAndWaitForFinished(filePathA, expectedAnnotationsCount);
|
2016-05-31 16:07:09 +02:00
|
|
|
removeUnsavedFile(filePathA);
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2016-05-31 16:07:09 +02:00
|
|
|
expectNoCompletionWithUnsavedMethod();
|
2018-05-31 15:21:53 +02:00
|
|
|
requestCompletionsInFileA();
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, GetNewCodeCompletionAfterUpdatingUnsavedFile)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2018-05-31 15:21:53 +02:00
|
|
|
const int expectedAnnotationsCount = 2 * AnnotationJobsMultiplier; // For registration and update/removal.
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocumentAndWaitForFinished(filePathA, expectedAnnotationsCount);
|
2016-05-31 16:07:09 +02:00
|
|
|
updateUnsavedContent(filePathA, unsavedContent(filePathAUnsavedVersion2), 1);
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2016-05-31 16:07:09 +02:00
|
|
|
expectCompletionFromFileAUnsavedMethodVersion2();
|
2018-05-31 15:21:53 +02:00
|
|
|
requestCompletionsInFileA();
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
2018-10-18 14:38:50 +02:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, OpenedDocumentsAreDirty)
|
2015-10-13 15:56:41 +02:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocument(filePathA, AnnotationJobsMultiplier);
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2018-10-18 14:38:50 +02:00
|
|
|
ASSERT_THAT(clangServer, HasDirtyDocument(filePathA, 0U, true, false));
|
2015-10-13 15:56:41 +02:00
|
|
|
}
|
2015-11-23 13:31:46 +01:00
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, SetCurrentAndVisibleEditor)
|
2015-11-25 15:29:28 +01:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocuments(2 * AnnotationJobsMultiplier);
|
|
|
|
ASSERT_TRUE(waitUntilAllJobsFinished());
|
|
|
|
auto functionDocument = documents.document(filePathA);
|
|
|
|
auto variableDocument = documents.document(filePathB);
|
2015-11-25 15:29:28 +01:00
|
|
|
|
2016-05-31 16:07:09 +02:00
|
|
|
updateVisibilty(filePathB, filePathA);
|
2015-11-25 15:29:28 +01:00
|
|
|
|
2016-09-07 10:42:12 +02:00
|
|
|
ASSERT_TRUE(variableDocument.isUsedByCurrentEditor());
|
|
|
|
ASSERT_TRUE(variableDocument.isVisibleInEditor());
|
|
|
|
ASSERT_TRUE(functionDocument.isVisibleInEditor());
|
2015-11-25 15:29:28 +01:00
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, StartCompletionJobFirstOnEditThatTriggersCompletion)
|
2016-09-14 16:16:10 +02:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocument(filePathA, 2 * AnnotationJobsMultiplier);
|
2016-09-14 16:16:10 +02:00
|
|
|
ASSERT_TRUE(waitUntilAllJobsFinished());
|
|
|
|
expectCompletionFromFileA();
|
|
|
|
|
|
|
|
updateUnsavedContent(filePathA, unsavedContent(filePathAUnsavedVersion2), 1);
|
2018-05-31 15:21:53 +02:00
|
|
|
requestCompletionsInFileA();
|
2016-09-14 16:16:10 +02:00
|
|
|
|
|
|
|
const QList<Jobs::RunningJob> jobs = clangServer.runningJobsForTestsOnly();
|
|
|
|
ASSERT_THAT(jobs.size(), Eq(1));
|
2018-05-31 15:21:53 +02:00
|
|
|
ASSERT_THAT(jobs.first().jobRequest.type, Eq(JobRequest::Type::RequestCompletions));
|
2016-09-14 16:16:10 +02:00
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, SupportiveTranslationUnitNotInitializedAfterRegister)
|
2016-09-14 16:16:10 +02:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocument(filePathA, AnnotationJobsMultiplier);
|
2016-09-14 16:16:10 +02:00
|
|
|
|
|
|
|
ASSERT_TRUE(waitUntilAllJobsFinished());
|
|
|
|
ASSERT_FALSE(isSupportiveTranslationUnitInitialized(filePathA));
|
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, SupportiveTranslationUnitIsSetupAfterFirstEdit)
|
2016-09-14 16:16:10 +02:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocument(filePathA, 2 * AnnotationJobsMultiplier);
|
2016-09-14 16:16:10 +02:00
|
|
|
ASSERT_TRUE(waitUntilAllJobsFinished());
|
|
|
|
|
|
|
|
updateUnsavedContent(filePathA, unsavedContent(filePathAUnsavedVersion2), 1);
|
|
|
|
|
|
|
|
ASSERT_TRUE(waitUntilAllJobsFinished());
|
|
|
|
ASSERT_TRUE(isSupportiveTranslationUnitInitialized(filePathA));
|
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, DoNotRunDuplicateJobs)
|
2016-10-06 12:54:22 +02:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocument(filePathA, 3 * AnnotationJobsMultiplier);
|
2016-10-06 12:54:22 +02:00
|
|
|
ASSERT_TRUE(waitUntilAllJobsFinished());
|
|
|
|
updateUnsavedContent(filePathA, unsavedContent(filePathAUnsavedVersion2), 1);
|
|
|
|
ASSERT_TRUE(waitUntilAllJobsFinished());
|
|
|
|
ASSERT_TRUE(isSupportiveTranslationUnitInitialized(filePathA));
|
|
|
|
updateUnsavedContent(filePathA, unsavedContent(filePathAUnsavedVersion2), 2);
|
|
|
|
QCoreApplication::processEvents(); // adds + runs a job
|
|
|
|
updateVisibilty(Utf8String(), Utf8String());
|
|
|
|
|
|
|
|
updateVisibilty(filePathA, filePathA); // triggers adding + runnings job on next processevents()
|
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, OpenDocumentAndEdit)
|
2016-09-14 16:16:10 +02:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocument(filePathA, 4 * AnnotationJobsMultiplier);
|
2016-09-14 16:16:10 +02:00
|
|
|
ASSERT_TRUE(waitUntilAllJobsFinished());
|
|
|
|
|
|
|
|
for (unsigned revision = 1; revision <= 3; ++revision) {
|
|
|
|
updateUnsavedContent(filePathA, unsavedContent(filePathAUnsavedVersion2), revision);
|
|
|
|
ASSERT_TRUE(waitUntilAllJobsFinished());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, IsNotCurrentCurrentAndVisibleEditorAnymore)
|
2015-11-25 15:29:28 +01:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
const int expectedAnnotationsCount = 2 * AnnotationJobsMultiplier;
|
|
|
|
openDocuments(expectedAnnotationsCount);
|
|
|
|
ASSERT_TRUE(waitUntilAllJobsFinished());
|
|
|
|
auto functionDocument = documents.document(filePathA);
|
|
|
|
auto variableDocument = documents.document(filePathB);
|
2016-05-31 16:07:09 +02:00
|
|
|
updateVisibilty(filePathB, filePathA);
|
2015-11-25 15:29:28 +01:00
|
|
|
|
2016-05-31 16:07:09 +02:00
|
|
|
updateVisibilty(filePathB, Utf8String());
|
2015-11-25 15:29:28 +01:00
|
|
|
|
2016-09-07 10:42:12 +02:00
|
|
|
ASSERT_FALSE(functionDocument.isUsedByCurrentEditor());
|
|
|
|
ASSERT_FALSE(functionDocument.isVisibleInEditor());
|
|
|
|
ASSERT_TRUE(variableDocument.isUsedByCurrentEditor());
|
|
|
|
ASSERT_TRUE(variableDocument.isVisibleInEditor());
|
2015-11-25 15:29:28 +01:00
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, TranslationUnitAfterUpdateNeedsReparse)
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocumentAndWaitForFinished(filePathA, 2 * AnnotationJobsMultiplier);
|
2016-05-31 16:07:09 +02:00
|
|
|
|
|
|
|
updateUnsavedContent(filePathA, unsavedContent(filePathAUnsavedVersion1), 1U);
|
2018-09-25 09:41:32 +02:00
|
|
|
ASSERT_THAT(clangServer, HasDirtyDocument(filePathA, 1U, true, true));
|
2016-05-31 16:07:09 +02:00
|
|
|
}
|
|
|
|
|
2018-09-25 09:41:32 +02:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, TakeOverJobsOnDocumentChange)
|
2018-01-05 09:35:00 +01:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocument(filePathC, AnnotationJobsMultiplier);
|
|
|
|
ASSERT_TRUE(waitUntilAllJobsFinished());
|
2018-01-05 09:35:00 +01:00
|
|
|
updateVisibilty(filePathB, filePathB); // Disable processing jobs
|
|
|
|
requestReferences();
|
|
|
|
|
|
|
|
expectReferences();
|
|
|
|
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocument(filePathC, AnnotationJobsMultiplier); // Do not loose jobs
|
2018-01-05 09:35:00 +01:00
|
|
|
updateVisibilty(filePathC, filePathC); // Enable processing jobs
|
|
|
|
}
|
|
|
|
|
2018-10-19 10:20:27 +02:00
|
|
|
TEST_F(ClangCodeModelServerSlowTest, UicHeaderAvailableBeforeParse)
|
|
|
|
{
|
|
|
|
// Write ui file
|
|
|
|
ClangCodeModel::Internal::UiHeaderOnDiskManager uiManager;
|
|
|
|
const QByteArray content = "class UicObject{};";
|
|
|
|
const QString uiHeaderFilePath = uiManager.write("uicheader.h", content);
|
|
|
|
|
|
|
|
// Open document
|
|
|
|
openDocument(uicMainPath,
|
|
|
|
{Utf8StringLiteral("-I"), Utf8String(uiManager.directoryPath())},
|
|
|
|
{uiManager.directoryPath()},
|
|
|
|
AnnotationJobsMultiplier);
|
|
|
|
updateVisibilty(uicMainPath, uicMainPath);
|
|
|
|
ASSERT_TRUE(waitUntilAllJobsFinished());
|
|
|
|
|
|
|
|
// Check
|
|
|
|
ASSERT_THAT(documents.document(uicMainPath).dependedFilePaths(),
|
|
|
|
Contains(uiHeaderFilePath));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ClangCodeModelServerSlowTest, UicHeaderAvailableAfterParse)
|
|
|
|
{
|
|
|
|
ClangCodeModel::Internal::UiHeaderOnDiskManager uiManager;
|
|
|
|
const QString uiHeaderFilePath = uiManager.mapPath("uicheader.h");
|
|
|
|
|
|
|
|
// Open document
|
|
|
|
openDocument(uicMainPath,
|
|
|
|
{Utf8StringLiteral("-I"), Utf8String(uiManager.directoryPath())},
|
|
|
|
{uiManager.directoryPath()},
|
|
|
|
2 * AnnotationJobsMultiplier);
|
|
|
|
updateVisibilty(uicMainPath, uicMainPath);
|
|
|
|
ASSERT_TRUE(waitUntilAllJobsFinished());
|
|
|
|
ASSERT_THAT(documents.document(uicMainPath).dependedFilePaths(),
|
|
|
|
Not(Contains(uiHeaderFilePath)));
|
|
|
|
|
|
|
|
// Write ui file and notify backend
|
|
|
|
const QByteArray content = "class UicObject{};";
|
|
|
|
uiManager.write("uicheader.h", content);
|
|
|
|
updateUnsavedFile(Utf8String(uiHeaderFilePath), Utf8String::fromByteArray(content));
|
|
|
|
|
|
|
|
// Check
|
|
|
|
ASSERT_TRUE(waitUntilAllJobsFinished());
|
|
|
|
ASSERT_THAT(documents.document(uicMainPath).dependedFilePaths(),
|
|
|
|
Contains(uiHeaderFilePath));
|
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
void ClangCodeModelServer::SetUp()
|
2015-11-25 15:29:28 +01:00
|
|
|
{
|
2016-07-04 16:14:42 +02:00
|
|
|
clangServer.setClient(&mockClangCodeModelClient);
|
2018-05-31 15:21:53 +02:00
|
|
|
clangServer.setUpdateAnnotationsTimeOutInMsForTestsOnly(0);
|
2016-10-14 13:05:44 +02:00
|
|
|
clangServer.setUpdateVisibleButNotCurrentDocumentsTimeOutInMsForTestsOnly(0);
|
2016-05-31 16:07:09 +02:00
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
void ClangCodeModelServer::TearDown()
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
|
|
|
ASSERT_TRUE(waitUntilAllJobsFinished());
|
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
bool ClangCodeModelServer::waitUntilAllJobsFinished(int timeOutInMs)
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
|
|
|
const auto noJobsRunningAnymore = [this]() {
|
2016-09-08 15:49:54 +02:00
|
|
|
return clangServer.runningJobsForTestsOnly().isEmpty()
|
|
|
|
&& clangServer.queueSizeForTestsOnly() == 0
|
2016-05-31 16:07:09 +02:00
|
|
|
&& !clangServer.isTimerRunningForTestOnly();
|
|
|
|
};
|
|
|
|
|
2016-09-15 17:41:41 +02:00
|
|
|
return ProcessEventUtilities::processEventsUntilTrue(noJobsRunningAnymore, timeOutInMs);
|
2016-05-31 16:07:09 +02:00
|
|
|
}
|
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
void ClangCodeModelServer::openDocument(const Utf8String &filePath,
|
|
|
|
int expectedAnnotationsMessages)
|
2018-01-10 14:54:45 +01:00
|
|
|
{
|
2018-10-19 10:20:27 +02:00
|
|
|
openDocument(filePath, {}, {}, expectedAnnotationsMessages);
|
2018-01-10 14:54:45 +01:00
|
|
|
}
|
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
void ClangCodeModelServer::openDocument(const Utf8String &filePath,
|
2018-09-25 09:41:32 +02:00
|
|
|
const Utf8StringVector &compilationArguments,
|
2018-10-19 10:20:27 +02:00
|
|
|
const Utf8StringVector &headerPaths,
|
2018-05-31 15:21:53 +02:00
|
|
|
int expectedAnnotationsMessages)
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
2018-10-19 10:20:27 +02:00
|
|
|
const FileContainer fileContainer(filePath, compilationArguments, headerPaths);
|
2018-05-31 15:21:53 +02:00
|
|
|
const DocumentsOpenedMessage message({fileContainer}, filePath, {filePath});
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
expectAnnotations(expectedAnnotationsMessages);
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
clangServer.documentsOpened(message);
|
2016-05-31 16:07:09 +02:00
|
|
|
}
|
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
void ClangCodeModelServer::openDocuments(int expectedAnnotationsMessages)
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
const FileContainer fileContainerA(filePathA);
|
|
|
|
const FileContainer fileContainerB(filePathB);
|
2018-05-31 15:21:53 +02:00
|
|
|
const DocumentsOpenedMessage message({fileContainerA, fileContainerB},
|
|
|
|
filePathA,
|
|
|
|
{filePathA, filePathB});
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
expectAnnotations(expectedAnnotationsMessages);
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
clangServer.documentsOpened(message);
|
2015-11-25 15:29:28 +01:00
|
|
|
}
|
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
void ClangCodeModelServer::expectAnnotations(int count)
|
2015-11-25 15:29:28 +01:00
|
|
|
{
|
2018-05-31 15:21:53 +02:00
|
|
|
EXPECT_CALL(mockClangCodeModelClient, annotations(_)).Times(count);
|
2016-05-31 16:07:09 +02:00
|
|
|
}
|
2015-12-02 13:31:07 +01:00
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
void ClangCodeModelServer::openDocumentWithUnsavedContent(const Utf8String &filePath,
|
|
|
|
const Utf8String &unsavedContent)
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
const FileContainer fileContainer(filePath, unsavedContent, true);
|
2018-05-31 15:21:53 +02:00
|
|
|
const DocumentsOpenedMessage message({fileContainer}, filePath, {filePath});
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
clangServer.documentsOpened(message);
|
2016-05-31 16:07:09 +02:00
|
|
|
}
|
|
|
|
|
2018-09-25 09:41:32 +02:00
|
|
|
void ClangCodeModelServer::requestCompletions(const Utf8String &filePath, uint line, uint column)
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
const RequestCompletionsMessage message(filePath, line, column);
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
clangServer.requestCompletions(message);
|
2016-05-31 16:07:09 +02:00
|
|
|
}
|
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
void ClangCodeModelServer::requestCompletionsInFileA()
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
2018-05-31 15:21:53 +02:00
|
|
|
requestCompletions(filePathA, 20, 1);
|
2016-05-31 16:07:09 +02:00
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
bool ClangCodeModelServer::isSupportiveTranslationUnitInitialized(const Utf8String &filePath)
|
2016-09-14 16:16:10 +02:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
Document document = clangServer.documentsForTestOnly().document(filePath);
|
2016-09-14 16:16:10 +02:00
|
|
|
DocumentProcessor documentProcessor = clangServer.documentProcessors().processor(document);
|
|
|
|
|
|
|
|
return document.translationUnits().size() == 2
|
|
|
|
&& documentProcessor.hasSupportiveTranslationUnit()
|
2017-06-09 12:19:09 +02:00
|
|
|
&& documentProcessor.isSupportiveTranslationUnitInitialized();
|
|
|
|
}
|
|
|
|
|
|
|
|
DocumentProcessor ClangCodeModelServer::documentProcessorForFile(const Utf8String &filePath)
|
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
Document document = clangServer.documentsForTestOnly().document(filePath);
|
2017-06-09 12:19:09 +02:00
|
|
|
DocumentProcessor documentProcessor = clangServer.documentProcessors().processor(document);
|
|
|
|
|
|
|
|
return documentProcessor;
|
2016-09-14 16:16:10 +02:00
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
void ClangCodeModelServer::expectCompletion(const CodeCompletion &completion)
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
|
|
|
EXPECT_CALL(mockClangCodeModelClient,
|
2018-05-31 15:21:53 +02:00
|
|
|
completions(Field(&CompletionsMessage::codeCompletions,
|
2018-04-04 18:25:23 +02:00
|
|
|
Contains(completion))))
|
2016-05-31 16:07:09 +02:00
|
|
|
.Times(1);
|
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
void ClangCodeModelServer::expectCompletionFromFileAUnsavedMethodVersion1()
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
|
|
|
const CodeCompletion completion(Utf8StringLiteral("Method2"),
|
|
|
|
34,
|
2018-08-08 12:47:06 +02:00
|
|
|
CodeCompletion::FunctionDefinitionCompletionKind);
|
2016-05-31 16:07:09 +02:00
|
|
|
|
|
|
|
expectCompletion(completion);
|
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
void ClangCodeModelServer::expectCompletionFromFileAUnsavedMethodVersion2()
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
|
|
|
const CodeCompletion completion(Utf8StringLiteral("Method3"),
|
|
|
|
34,
|
2018-08-08 12:47:06 +02:00
|
|
|
CodeCompletion::FunctionDefinitionCompletionKind);
|
2016-05-31 16:07:09 +02:00
|
|
|
|
|
|
|
expectCompletion(completion);
|
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
void ClangCodeModelServer::expectNoCompletionWithUnsavedMethod()
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
|
|
|
const CodeCompletion completion(Utf8StringLiteral("Method2"),
|
|
|
|
34,
|
|
|
|
CodeCompletion::FunctionCompletionKind);
|
|
|
|
|
|
|
|
EXPECT_CALL(mockClangCodeModelClient,
|
2018-05-31 15:21:53 +02:00
|
|
|
completions(Field(&CompletionsMessage::codeCompletions,
|
2018-04-04 18:25:23 +02:00
|
|
|
Not(Contains(completion)))))
|
2016-05-31 16:07:09 +02:00
|
|
|
.Times(1);
|
|
|
|
}
|
|
|
|
|
2017-06-09 12:19:09 +02:00
|
|
|
void ClangCodeModelServer::expectReferences()
|
|
|
|
{
|
|
|
|
const QVector<ClangBackEnd::SourceRangeContainer> references{{
|
|
|
|
{filePathC, 3, 9},
|
|
|
|
{filePathC, 3, 12}
|
|
|
|
}};
|
|
|
|
|
|
|
|
EXPECT_CALL(mockClangCodeModelClient,
|
|
|
|
references(
|
2018-04-04 18:25:23 +02:00
|
|
|
Field(&ReferencesMessage::references,
|
|
|
|
Eq(references))))
|
2017-06-09 12:19:09 +02:00
|
|
|
.Times(1);
|
|
|
|
}
|
|
|
|
|
2017-07-28 09:48:13 +02:00
|
|
|
void ClangCodeModelServer::expectFollowSymbol()
|
|
|
|
{
|
2018-06-01 10:46:20 +02:00
|
|
|
const ClangBackEnd::FollowSymbolResult classDefinition
|
|
|
|
= ClangBackEnd::SourceRangeContainer({filePathC, 40, 7}, {filePathC, 40, 10});
|
2017-07-28 09:48:13 +02:00
|
|
|
|
|
|
|
EXPECT_CALL(mockClangCodeModelClient,
|
|
|
|
followSymbol(
|
2018-06-01 10:46:20 +02:00
|
|
|
Field(&FollowSymbolMessage::result,
|
2018-04-04 18:25:23 +02:00
|
|
|
Eq(classDefinition))))
|
2017-07-28 09:48:13 +02:00
|
|
|
.Times(1);
|
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
void ClangCodeModelServer::expectCompletionFromFileA()
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
|
|
|
const CodeCompletion completion(Utf8StringLiteral("Function"),
|
|
|
|
34,
|
|
|
|
CodeCompletion::FunctionCompletionKind);
|
|
|
|
|
|
|
|
expectCompletion(completion);
|
|
|
|
}
|
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
void ClangCodeModelServer::requestAnnotations(const Utf8String &filePath)
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
const RequestAnnotationsMessage message(FileContainer{filePath});
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
clangServer.requestAnnotations(message);
|
2016-05-31 16:07:09 +02:00
|
|
|
}
|
|
|
|
|
2017-06-09 12:19:09 +02:00
|
|
|
void ClangCodeModelServer::requestReferences(quint32 documentRevision)
|
|
|
|
{
|
2018-10-19 10:20:27 +02:00
|
|
|
const FileContainer fileContainer{filePathC, {}, {}, documentRevision};
|
2017-06-09 12:19:09 +02:00
|
|
|
const RequestReferencesMessage message{fileContainer, 3, 9};
|
|
|
|
|
|
|
|
clangServer.requestReferences(message);
|
|
|
|
}
|
|
|
|
|
2017-07-28 09:48:13 +02:00
|
|
|
void ClangCodeModelServer::requestFollowSymbol(quint32 documentRevision)
|
|
|
|
{
|
2018-10-19 10:20:27 +02:00
|
|
|
const FileContainer fileContainer{filePathC, {}, {}, documentRevision};
|
2017-10-05 09:54:21 +02:00
|
|
|
const RequestFollowSymbolMessage message{fileContainer, 43, 9};
|
2017-07-28 09:48:13 +02:00
|
|
|
|
|
|
|
clangServer.requestFollowSymbol(message);
|
|
|
|
}
|
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
void ClangCodeModelServer::expectAnnotationsForFileBWithSpecificHighlightingMark()
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
|
|
|
HighlightingTypes types;
|
|
|
|
types.mainHighlightingType = ClangBackEnd::HighlightingType::Function;
|
|
|
|
types.mixinHighlightingTypes.push_back(ClangBackEnd::HighlightingType::Declaration);
|
2016-07-17 00:29:33 +02:00
|
|
|
types.mixinHighlightingTypes.push_back(ClangBackEnd::HighlightingType::FunctionDefinition);
|
2018-01-19 09:18:57 +01:00
|
|
|
const TokenInfoContainer tokenInfo(1, 6, 8, types);
|
2016-05-31 16:07:09 +02:00
|
|
|
EXPECT_CALL(mockClangCodeModelClient,
|
2018-05-31 15:21:53 +02:00
|
|
|
annotations(
|
|
|
|
Field(&AnnotationsMessage::tokenInfos,
|
2018-01-05 10:50:37 +01:00
|
|
|
PartlyContains(tokenInfo)))).Times(AnnotationJobsMultiplier);
|
2016-05-31 16:07:09 +02:00
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
void ClangCodeModelServer::updateUnsavedContent(const Utf8String &filePath,
|
2018-05-31 15:21:53 +02:00
|
|
|
const Utf8String &fileContent,
|
|
|
|
quint32 revisionNumber)
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
const FileContainer fileContainer(filePath, fileContent, true, revisionNumber);
|
2018-05-31 15:21:53 +02:00
|
|
|
const DocumentsChangedMessage message({fileContainer});
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
clangServer.documentsChanged(message);
|
2016-05-31 16:07:09 +02:00
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
void ClangCodeModelServer::removeUnsavedFile(const Utf8String &filePath)
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
2018-10-19 10:20:27 +02:00
|
|
|
const FileContainer fileContainer(filePath, {}, {}, 74);
|
2018-05-31 15:21:53 +02:00
|
|
|
const DocumentsChangedMessage message({fileContainer});
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
clangServer.documentsChanged(message);
|
2016-05-31 16:07:09 +02:00
|
|
|
}
|
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
void ClangCodeModelServer::closeDocument(const Utf8String &filePath)
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
const QVector<FileContainer> fileContainers = {FileContainer(filePath)};
|
2018-05-31 15:21:53 +02:00
|
|
|
const DocumentsClosedMessage message(fileContainers);
|
2016-05-31 16:07:09 +02:00
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
clangServer.documentsClosed(message);
|
2016-05-31 16:07:09 +02:00
|
|
|
}
|
|
|
|
|
2018-10-19 10:20:27 +02:00
|
|
|
void ClangCodeModelServer::updateUnsavedFile(const Utf8String &filePath,
|
|
|
|
const Utf8String &fileContent)
|
|
|
|
{
|
|
|
|
const FileContainer fileContainer(filePath, fileContent, true, 0);
|
|
|
|
const UnsavedFilesUpdatedMessage message({fileContainer});
|
|
|
|
|
|
|
|
clangServer.unsavedFilesUpdated(message);
|
|
|
|
}
|
|
|
|
|
2018-09-25 09:41:32 +02:00
|
|
|
void ClangCodeModelServer::openDocumentAndWaitForFinished(
|
2018-05-31 15:21:53 +02:00
|
|
|
const Utf8String &filePath, int expectedAnnotationsMessages)
|
2016-05-31 16:07:09 +02:00
|
|
|
{
|
2018-09-25 09:41:32 +02:00
|
|
|
openDocument(filePath, expectedAnnotationsMessages);
|
2016-05-31 16:07:09 +02:00
|
|
|
ASSERT_TRUE(waitUntilAllJobsFinished());
|
2015-11-25 15:29:28 +01:00
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
void ClangCodeModelServer::updateVisibilty(const Utf8String ¤tEditor,
|
2018-05-31 15:21:53 +02:00
|
|
|
const Utf8String &additionalVisibleEditor)
|
2015-11-25 15:29:28 +01:00
|
|
|
{
|
2018-05-31 15:21:53 +02:00
|
|
|
const DocumentVisibilityChangedMessage message(currentEditor,
|
|
|
|
{currentEditor, additionalVisibleEditor});
|
2015-11-25 15:29:28 +01:00
|
|
|
|
2018-05-31 15:21:53 +02:00
|
|
|
clangServer.documentVisibilityChanged(message);
|
2015-11-25 15:29:28 +01:00
|
|
|
}
|
|
|
|
|
2017-01-04 11:39:17 +01:00
|
|
|
const Utf8String ClangCodeModelServer::unsavedContent(const QString &unsavedFilePath)
|
2015-11-25 15:29:28 +01:00
|
|
|
{
|
|
|
|
QFile unsavedFileContentFile(unsavedFilePath);
|
2016-05-31 16:07:09 +02:00
|
|
|
const bool isOpen = unsavedFileContentFile.open(QIODevice::ReadOnly | QIODevice::Text);
|
2015-11-25 15:29:28 +01:00
|
|
|
if (!isOpen)
|
|
|
|
ADD_FAILURE() << "File with the unsaved content cannot be opened!";
|
|
|
|
|
|
|
|
return Utf8String::fromByteArray(unsavedFileContentFile.readAll());
|
|
|
|
}
|
|
|
|
|
2016-05-31 16:07:09 +02:00
|
|
|
} // anonymous
|