aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/query/streaming/same_element_query_node_test.cpp
blob: ece6dc551b21e63831ccb8041e813f43c5c95eb6 (plain) (blame)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include <vespa/searchlib/query/streaming/same_element_query_node.h>
#include <vespa/searchlib/query/streaming/queryterm.h>
#include <vespa/searchlib/query/tree/querybuilder.h>
#include <vespa/searchlib/query/tree/simplequery.h>
#include <vespa/searchlib/query/tree/stackdumpcreator.h>
#include <vespa/vespalib/gtest/gtest.h>

using search::query::QueryBuilder;
using search::query::Node;
using search::query::SimpleQueryNodeTypes;
using search::query::StackDumpCreator;
using search::query::Weight;
using search::streaming::HitList;
using search::streaming::Query;
using search::streaming::QueryNode;
using search::streaming::QueryNodeResultFactory;
using search::streaming::QueryTerm;
using search::streaming::QueryTermList;
using search::streaming::SameElementQueryNode;

namespace {

class AllowRewrite : public QueryNodeResultFactory
{
public:
    explicit AllowRewrite(vespalib::stringref index) noexcept : _allowedIndex(index) {}
    bool allow_float_terms_rewrite(vespalib::stringref index) const noexcept override { return index == _allowedIndex; }
private:
    vespalib::string _allowedIndex;
};

}

TEST(SameElementQueryNodeTest, a_unhandled_sameElement_stack)
{
    const char * stack = "\022\002\026xyz_abcdefghij_xyzxyzxQ\001\vxxxxxx_name\034xxxxxx_xxxx_xxxxxxx_xxxxxxxxE\002\005delta\b<0.00393";
    vespalib::stringref stackDump(stack);
    EXPECT_EQ(85u, stackDump.size());
    AllowRewrite empty("");
    const Query q(empty, stackDump);
    EXPECT_TRUE(q.valid());
    const QueryNode & root = q.getRoot();
    auto sameElement = dynamic_cast<const SameElementQueryNode *>(&root);
    EXPECT_TRUE(sameElement != nullptr);
    EXPECT_EQ(2u, sameElement->size());
    EXPECT_EQ("xyz_abcdefghij_xyzxyzx", sameElement->getIndex());
    auto term0 = dynamic_cast<const QueryTerm *>((*sameElement)[0].get());
    EXPECT_TRUE(term0 != nullptr);
    auto term1 = dynamic_cast<const QueryTerm *>((*sameElement)[1].get());
    EXPECT_TRUE(term1 != nullptr);
}

namespace {
    void verifyQueryTermNode(const vespalib::string & index, const QueryNode *node) {
        EXPECT_TRUE(dynamic_cast<const QueryTerm *>(node) != nullptr);
        EXPECT_EQ(index, node->getIndex());
    }
}

TEST(SameElementQueryNodeTest, test_same_element_evaluate)
{
    QueryBuilder<SimpleQueryNodeTypes> builder;
    builder.addSameElement(3, "field", 0, Weight(0));
    {
        builder.addStringTerm("a", "f1", 0, Weight(0));
        builder.addStringTerm("b", "f2", 1, Weight(0));
        builder.addStringTerm("c", "f3", 2, Weight(0));
    }
    Node::UP node = builder.build();
    vespalib::string stackDump = StackDumpCreator::create(*node);
    QueryNodeResultFactory empty;
    Query q(empty, stackDump);
    auto * sameElem = dynamic_cast<SameElementQueryNode *>(&q.getRoot());
    EXPECT_TRUE(sameElem != nullptr);
    EXPECT_EQ("field", sameElem->getIndex());
    EXPECT_EQ(3u, sameElem->size());
    verifyQueryTermNode("field.f1", (*sameElem)[0].get());
    verifyQueryTermNode("field.f2", (*sameElem)[1].get());
    verifyQueryTermNode("field.f3", (*sameElem)[2].get());

    QueryTermList terms;
    q.getLeaves(terms);
    EXPECT_EQ(3u, terms.size());
    for (QueryTerm * qt : terms) {
        qt->resizeFieldId(3);
    }

    // field 0
    terms[0]->add(0, 0, 10, 1);
    terms[0]->add(0, 1, 20, 2);
    terms[0]->add(0, 2, 30, 3);
    terms[0]->add(0, 3, 40, 4);
    terms[0]->add(0, 4, 50, 5);
    terms[0]->add(0, 5, 60, 6);

    terms[1]->add(1, 0, 70, 7);
    terms[1]->add(1, 1, 80, 8);
    terms[1]->add(1, 2, 90, 9);
    terms[1]->add(1, 4, 100, 10);
    terms[1]->add(1, 5, 110, 11);
    terms[1]->add(1, 6, 120, 12);

    terms[2]->add(2, 0, 130, 13);
    terms[2]->add(2, 2, 140, 14);
    terms[2]->add(2, 4, 150, 15);
    terms[2]->add(2, 5, 160, 16);
    terms[2]->add(2, 6, 170, 17);
    HitList hits;
    sameElem->evaluateHits(hits);
    EXPECT_EQ(4u, hits.size());
    EXPECT_EQ(2u, hits[0].field_id());
    EXPECT_EQ(0u, hits[0].element_id());
    EXPECT_EQ(130, hits[0].element_weight());
    EXPECT_EQ(0u, hits[0].position());

    EXPECT_EQ(2u, hits[1].field_id());
    EXPECT_EQ(2u, hits[1].element_id());
    EXPECT_EQ(140, hits[1].element_weight());
    EXPECT_EQ(0u, hits[1].position());

    EXPECT_EQ(2u, hits[2].field_id());
    EXPECT_EQ(4u, hits[2].element_id());
    EXPECT_EQ(150, hits[2].element_weight());
    EXPECT_EQ(0u, hits[2].position());

    EXPECT_EQ(2u, hits[3].field_id());
    EXPECT_EQ(5u, hits[3].element_id());
    EXPECT_EQ(160, hits[3].element_weight());
    EXPECT_EQ(0u, hits[3].position());
    EXPECT_TRUE(sameElem->evaluate());
}

GTEST_MAIN_RUN_ALL_TESTS()