summaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/attribute/imported_attributes_repo
diff options
context:
space:
mode:
authorGeir Storli <geirst@yahoo-inc.com>2017-02-27 13:32:00 +0000
committerGeir Storli <geirst@yahoo-inc.com>2017-02-28 10:22:57 +0000
commitf2d97a48d76da03964aa3de50fa32663df7508eb (patch)
tree0d122e6b3e02627b67bdc75c080697a654bda5ee /searchcore/src/tests/proton/attribute/imported_attributes_repo
parentea4ebed48dfb76cbe833092c5a13fc0281379de9 (diff)
Change ImportedAttributesRepo to keep instances of ImportedAttributeVector.
Diffstat (limited to 'searchcore/src/tests/proton/attribute/imported_attributes_repo')
-rw-r--r--searchcore/src/tests/proton/attribute/imported_attributes_repo/imported_attributes_repo_test.cpp44
1 files changed, 20 insertions, 24 deletions
diff --git a/searchcore/src/tests/proton/attribute/imported_attributes_repo/imported_attributes_repo_test.cpp b/searchcore/src/tests/proton/attribute/imported_attributes_repo/imported_attributes_repo_test.cpp
index f44004a3a2e..f37fd2c47cb 100644
--- a/searchcore/src/tests/proton/attribute/imported_attributes_repo/imported_attributes_repo_test.cpp
+++ b/searchcore/src/tests/proton/attribute/imported_attributes_repo/imported_attributes_repo_test.cpp
@@ -4,46 +4,42 @@
LOG_SETUP("imported_attributes_repo_test");
#include <vespa/vespalib/testkit/testapp.h>
+#include <vespa/searchcommon/attribute/basictype.h>
#include <vespa/searchcommon/attribute/iattributevector.h>
#include <vespa/searchcore/proton/attribute/imported_attributes_repo.h>
-#include <vespa/searchlib/attribute/not_implemented_attribute.h>
-#include <vespa/searchcommon/attribute/basictype.h>
+#include <vespa/searchlib/attribute/imported_attribute_vector.h>
+#include <vespa/searchlib/attribute/reference_attribute.h>
using proton::ImportedAttributesRepo;
+using search::AttributeVector;
using search::attribute::BasicType;
using search::attribute::Config;
-using search::attribute::IAttributeVector;
-using search::NotImplementedAttribute;
+using search::attribute::ImportedAttributeVector;
+using search::attribute::ReferenceAttribute;
-struct MyAttributeVector : public NotImplementedAttribute {
-private:
- virtual void onCommit() override {}
- virtual void onUpdateStat() override {}
-
-public:
- MyAttributeVector(const vespalib::string &name)
- : NotImplementedAttribute(name, Config(BasicType::NONE))
- {}
- static IAttributeVector::SP create(const vespalib::string &name) {
- return std::make_shared<MyAttributeVector>(name);
- }
-};
+ImportedAttributeVector::SP
+createAttr(const vespalib::string &name)
+{
+ return std::make_shared<ImportedAttributeVector>(name,
+ ReferenceAttribute::SP(),
+ AttributeVector::SP());
+}
struct Fixture {
ImportedAttributesRepo repo;
Fixture() : repo() {}
- void add(IAttributeVector::SP attr) {
+ void add(ImportedAttributeVector::SP attr) {
repo.add(attr->getName(), attr);
}
- IAttributeVector::SP get(const vespalib::string &name) const {
+ ImportedAttributeVector::SP get(const vespalib::string &name) const {
return repo.get(name);
}
};
TEST_F("require that attributes can be added and retrieved", Fixture)
{
- IAttributeVector::SP fooAttr = MyAttributeVector::create("foo");
- IAttributeVector::SP barAttr = MyAttributeVector::create("bar");
+ ImportedAttributeVector::SP fooAttr = createAttr("foo");
+ ImportedAttributeVector::SP barAttr = createAttr("bar");
f.add(fooAttr);
f.add(barAttr);
EXPECT_EQUAL(2u, f.repo.size());
@@ -53,8 +49,8 @@ TEST_F("require that attributes can be added and retrieved", Fixture)
TEST_F("require that attribute can be replaced", Fixture)
{
- IAttributeVector::SP attr1 = MyAttributeVector::create("foo");
- IAttributeVector::SP attr2 = MyAttributeVector::create("foo");
+ ImportedAttributeVector::SP attr1 = createAttr("foo");
+ ImportedAttributeVector::SP attr2 = createAttr("foo");
f.add(attr1);
f.add(attr2);
EXPECT_EQUAL(1u, f.repo.size());
@@ -63,7 +59,7 @@ TEST_F("require that attribute can be replaced", Fixture)
TEST_F("require that not-found attribute returns nullptr", Fixture)
{
- IAttributeVector *notFound = nullptr;
+ ImportedAttributeVector *notFound = nullptr;
EXPECT_EQUAL(f.get("not_found").get(), notFound);
}