summaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/attribute/document_field_populator/document_field_populator_test.cpp
blob: 24de9d3bd47daff739764ead1f704393947e5575 (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/log/log.h>
LOG_SETUP("document_field_populator_test");
#include <vespa/vespalib/testkit/testapp.h>

#include <vespa/searchcommon/common/schema.h>
#include <vespa/searchcore/proton/attribute/document_field_populator.h>
#include <vespa/searchlib/attribute/attributefactory.h>
#include <vespa/searchlib/attribute/integerbase.h>
#include <vespa/searchlib/index/docbuilder.h>
#include <vespa/vespalib/util/stringfmt.h>

using namespace document;
using namespace proton;
using namespace search;
using namespace search::index;

typedef search::attribute::Config AVConfig;
typedef search::attribute::BasicType AVBasicType;

Schema::AttributeField
createAttributeField()
{
    return Schema::AttributeField("a1", Schema::DataType::INT32);
}

Schema
createSchema()
{
    Schema schema;
    schema.addAttributeField(createAttributeField());
    return schema;
}

struct DocContext
{
    Schema _schema;
    DocBuilder _builder;
    DocContext()
        : _schema(createSchema()),
          _builder(_schema)
    {
    }
    Document::UP create(uint32_t id) {
        vespalib::string docId =
                vespalib::make_string("id:searchdocument:searchdocument::%u", id);
        return _builder.startDocument(docId).endDocument();
    }
};

struct Fixture
{
    AttributeVector::SP _attr;
    IntegerAttribute &_intAttr;
    DocumentFieldPopulator _pop;
    DocContext _ctx;
    Fixture()
        : _attr(search::AttributeFactory::createAttribute("a1", AVConfig(AVBasicType::INT32))),
          _intAttr(dynamic_cast<IntegerAttribute &>(*_attr)),
          _pop("a1", _attr, "test"),
          _ctx()
    {
        _intAttr.addDocs(2);
        _intAttr.update(1, 100);
        _intAttr.commit();
    }
};

TEST_F("require that document field is populated based on attribute content", Fixture)
{
    // NOTE: DocumentFieldRetriever (used by DocumentFieldPopulator) is fully tested
    // with all data types in searchcore/src/tests/proton/server/documentretriever_test.cpp.
    {
        Document::UP doc = f._ctx.create(1);
        f._pop.handleExisting(1, *doc);
        EXPECT_EQUAL(100, doc->getValue("a1")->getAsInt());
    }
}

TEST_MAIN()
{
    TEST_RUN_ALL();
}