aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/attribute/attribute_aspect_delayer
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@yahoo-inc.com>2017-04-20 11:48:05 +0000
committerTor Egge <Tor.Egge@yahoo-inc.com>2017-04-20 11:48:05 +0000
commit6fbea2541823e0edb26bbdbab0631fb924d9ea94 (patch)
treebfdbccb2301408ac1333d4fcb00d51826692e8f2 /searchcore/src/tests/proton/attribute/attribute_aspect_delayer
parent0c4c061e0a034f614eee8ea1697eea413d11e854 (diff)
Remove unneeded hideFromReading/hideFromWriting flags.
Diffstat (limited to 'searchcore/src/tests/proton/attribute/attribute_aspect_delayer')
-rw-r--r--searchcore/src/tests/proton/attribute/attribute_aspect_delayer/attribute_aspect_delayer_test.cpp16
1 files changed, 7 insertions, 9 deletions
diff --git a/searchcore/src/tests/proton/attribute/attribute_aspect_delayer/attribute_aspect_delayer_test.cpp b/searchcore/src/tests/proton/attribute/attribute_aspect_delayer/attribute_aspect_delayer_test.cpp
index 93a63a9900d..7d5153e31cf 100644
--- a/searchcore/src/tests/proton/attribute/attribute_aspect_delayer/attribute_aspect_delayer_test.cpp
+++ b/searchcore/src/tests/proton/attribute/attribute_aspect_delayer/attribute_aspect_delayer_test.cpp
@@ -45,8 +45,6 @@ ostream &operator<<(ostream &os, const Config &cfg)
ostream &operator<<(ostream &os, const proton::AttributeSpec &spec)
{
os << "{name=" << spec.getName();
- os << ", hideFromReading=" << boolStr(spec.getHideFromReading());
- os << ", hideFromWriting=" << boolStr(spec.getHideFromWriting());
os << ", " << spec.getConfig();
os << "}";
return os;
@@ -236,7 +234,7 @@ TEST_F("require that empty specs is OK", Fixture)
TEST_F("require that simple attribute specs is OK", Fixture)
{
f.setup(attrCfg({make_int32_sv_cfg()}), smCfg({make_attribute_override("a")}));
- TEST_DO(f.assertSpecs({AttributeSpec("a", int32_sv, false, false)}));
+ TEST_DO(f.assertSpecs({AttributeSpec("a", int32_sv)}));
TEST_DO(f.assertAttributeConfig({make_int32_sv_cfg()}));
TEST_DO(f.assertSummarymapConfig({make_attribute_override("a")}));
}
@@ -245,7 +243,7 @@ TEST_F("require that adding attribute aspect is delayed if field type is unchang
{
f.addFields({"a"});
f.setup(attrCfg({}), smCfg({}), attrCfg({make_int32_sv_cfg()}), smCfg({make_attribute_override("a")}));
- TEST_DO(f.assertSpecs({AttributeSpec("a", int32_sv, false, true)}));
+ TEST_DO(f.assertSpecs({}));
TEST_DO(f.assertAttributeConfig({}));
TEST_DO(f.assertSummarymapConfig({}));
}
@@ -254,7 +252,7 @@ TEST_F("require that adding attribute aspect is delayed if field type is unchang
{
f.addFields({"a"});
f.setup(attrCfg({}), smCfg({}), attrCfg({make_int32_sv_cfg()}), smCfg({make_geopos_override("a")}));
- TEST_DO(f.assertSpecs({AttributeSpec("a", int32_sv, false, true)}));
+ TEST_DO(f.assertSpecs({}));
TEST_DO(f.assertAttributeConfig({}));
TEST_DO(f.assertSummarymapConfig({make_geopos_override("a")}));
}
@@ -262,7 +260,7 @@ TEST_F("require that adding attribute aspect is delayed if field type is unchang
TEST_F("require that adding attribute is not delayed if field type changed", Fixture)
{
f.setup(attrCfg({}), smCfg({}), attrCfg({make_int32_sv_cfg()}), smCfg({make_attribute_override("a")}));
- TEST_DO(f.assertSpecs({AttributeSpec("a", int32_sv, false, false)}));
+ TEST_DO(f.assertSpecs({AttributeSpec("a", int32_sv)}));
TEST_DO(f.assertAttributeConfig({make_int32_sv_cfg()}));
TEST_DO(f.assertSummarymapConfig({make_attribute_override("a")}));
}
@@ -271,7 +269,7 @@ TEST_F("require that removing attribute aspect is delayed if field type is uncha
{
f.addFields({"a"});
f.setup(attrCfg({make_int32_sv_cfg()}), smCfg({make_attribute_override("a")}), attrCfg({}), smCfg({}));
- TEST_DO(f.assertSpecs({AttributeSpec("a", int32_sv, true, false)}));
+ TEST_DO(f.assertSpecs({AttributeSpec("a", int32_sv)}));
TEST_DO(f.assertAttributeConfig({make_int32_sv_cfg()}));
TEST_DO(f.assertSummarymapConfig({make_attribute_override("a")}));
}
@@ -280,7 +278,7 @@ TEST_F("require that removing attribute aspect is delayed if field type is uncha
{
f.addFields({"a"});
f.setup(attrCfg({make_int32_sv_cfg()}), smCfg({make_geopos_override("a")}), attrCfg({}), smCfg({}));
- TEST_DO(f.assertSpecs({AttributeSpec("a", int32_sv, true, false)}));
+ TEST_DO(f.assertSpecs({AttributeSpec("a", int32_sv)}));
TEST_DO(f.assertAttributeConfig({make_int32_sv_cfg()}));
TEST_DO(f.assertSummarymapConfig({}));
}
@@ -371,7 +369,7 @@ TEST_F("require that fast access flag change is not delayed, true->false edge, s
f.addFields({"a"});
f.addOldIndexField("a");
f.setup(attrCfg({make_fa(make_string_sv_cfg())}), smCfg({make_attribute_override("a")}), attrCfg({make_string_sv_cfg()}), smCfg({make_attribute_override("a")}));
- TEST_DO(f.assertSpecs({AttributeSpec("a", string_sv, false, false)}));
+ TEST_DO(f.assertSpecs({AttributeSpec("a", string_sv)}));
TEST_DO(f.assertAttributeConfig({make_string_sv_cfg()}));
TEST_DO(f.assertSummarymapConfig({make_attribute_override("a")}));
}