aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/silversearcher/silversearcherparser_test.cpp
blob: b23002e191ef9a04144c9d3fd98b837f31b1c823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// 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 "silversearcherparser.h"
#include "silversearcherparser_test.h"

#include <QtTest>

using namespace Utils;

namespace SilverSearcher {
namespace Internal {

SearchResultItem searchResult(const FilePath &fileName, const QString &matchingLine,
                              int lineNumber, int matchStart, int matchLength)
{
    SearchResultItem result;
    result.setFilePath(fileName);
    result.setLineText(matchingLine);
    result.setMainRange(lineNumber, matchStart, matchLength);
    result.setUseTextEditorFont(true);
    return result;
}

void OutputParserTest::test_data()
{
    QTest::addColumn<QString>("input");
    QTest::addColumn<SearchResultItems>("results");

    QTest::addRow("nothing") << QString("\n") << SearchResultItems();
    QTest::addRow("oneFileOneMatch")
        << QString(":/file/path/to/filename.h\n"
                   "1;1 5:match\n")
        << SearchResultItems{searchResult("/file/path/to/filename.h", "match", 1, 1, 5)};
    QTest::addRow("multipleFilesWithOneMatch")
        << QString(":/file/path/to/filename1.h\n"
                   "1;1 5:match\n"
                   "\n"
                   ":/file/path/to/filename2.h\n"
                   "2;2 5: match\n")
        << SearchResultItems{searchResult("/file/path/to/filename1.h", "match", 1, 1, 5),
                             searchResult("/file/path/to/filename2.h", " match", 2, 2, 5)};
    QTest::addRow("oneFileMultipleMatches")
        << QString(":/file/path/to/filename.h\n"
                   "1;1 5,7 5:match match\n")
        << SearchResultItems{searchResult("/file/path/to/filename.h", "match match", 1, 1, 5),
                             searchResult("/file/path/to/filename.h", "match match", 1, 7, 5)};
    QTest::addRow("multipleFilesWithMultipleMatches")
        << QString(":/file/path/to/filename1.h\n"
                   "1;1 5,7 5:match match\n"
                   "\n"
                   ":/file/path/to/filename2.h\n"
                   "2;2 5,8 5: match match\n")
        << SearchResultItems{searchResult("/file/path/to/filename1.h", "match match", 1, 1, 5),
                             searchResult("/file/path/to/filename1.h", "match match", 1, 7, 5),
                             searchResult("/file/path/to/filename2.h", " match match", 2, 2, 5),
                             searchResult("/file/path/to/filename2.h", " match match", 2, 8, 5)};
}

void OutputParserTest::test()
{
    QFETCH(QString, input);
    QFETCH(SearchResultItems, results);
    const SearchResultItems items = SilverSearcher::parse(input);
    QCOMPARE(items, results);
}

} // namespace Internal
} // namespace SilverSearcher