aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/silversearcher/outputparser_test.cpp
blob: 5a216af705377e3c4d984d4c59eaa2f51c8ff241 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "outputparser_test.h"
#include "silversearcheroutputparser.h"

#include <QtTest>

using namespace Utils;

namespace SilverSearcher {
namespace Internal {

void OutputParserTest::test_data()
{
    QTest::addColumn<QString>("parserOutput");
    QTest::addColumn<FileSearchResultList>("results");

    QTest::addRow("nothing") << QString("\n") << FileSearchResultList();
    QTest::addRow("oneFileOneMatch")
            << QString(":/file/path/to/filename.h\n"
                       "1;1 5:match\n")
            << FileSearchResultList({{"/file/path/to/filename.h", 1, "match", 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")
            << FileSearchResultList({{"/file/path/to/filename1.h", 1, "match", 1, 5, {}},
                                     {"/file/path/to/filename2.h", 2, " match", 2, 5, {}}});
    QTest::addRow("oneFileMultipleMatches")
            << QString(":/file/path/to/filename.h\n"
                       "1;1 5,7 5:match match\n")
            << FileSearchResultList({{"/file/path/to/filename.h", 1, "match match", 1, 5, {}},
                                     {"/file/path/to/filename.h", 1, "match match", 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")
            << FileSearchResultList({{"/file/path/to/filename1.h", 1, "match match", 1, 5, {}},
                                     {"/file/path/to/filename1.h", 1, "match match", 7, 5, {}},
                                     {"/file/path/to/filename2.h", 2, " match match", 2, 5, {}},
                                     {"/file/path/to/filename2.h", 2, " match match", 8, 5, {}}});
}

void OutputParserTest::test()
{
    QFETCH(QString, parserOutput);
    QFETCH(FileSearchResultList, results);
    SilverSearcher::SilverSearcherOutputParser ssop(parserOutput);
    const QList<Utils::FileSearchResult> items = ssop.parse();
    QCOMPARE(items, results);
}

} // namespace Internal
} // namespace SilverSearcher