summaryrefslogtreecommitdiff
path: root/property_service
diff options
context:
space:
mode:
authorTom Cherry <tomcherry@google.com>2017-12-12 17:29:39 -0800
committerTom Cherry <tomcherry@google.com>2017-12-12 17:33:55 -0800
commit8cc596208c0ed7e9b44df8c629b3ef4f6bec3bea (patch)
tree93a0aa1e74aa835aad6584f827effefd1cdbc790 /property_service
parentc47dd6b5c04683acc505b1235c8626032e438155 (diff)
downloadcore-8cc596208c0ed7e9b44df8c629b3ef4f6bec3bea.tar.gz
Add an extra set of test cases for libpropertyinfoparser
Test to ensure that exact matches and prefix matches at the root level work. Test: these test cases Change-Id: Idb296329c4c4f1bb1ba336b5cb12d5761239fbf8
Diffstat (limited to 'property_service')
-rw-r--r--property_service/libpropertyinfoserializer/property_info_serializer_test.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/property_service/libpropertyinfoserializer/property_info_serializer_test.cpp b/property_service/libpropertyinfoserializer/property_info_serializer_test.cpp
index b7a103e14..5fa3463e1 100644
--- a/property_service/libpropertyinfoserializer/property_info_serializer_test.cpp
+++ b/property_service/libpropertyinfoserializer/property_info_serializer_test.cpp
@@ -129,6 +129,7 @@ TEST(propertyinfoserializer, GetPropertyInfo) {
{"test.test2.", "6th", "6th", false}, {"test.test", "5th", "5th", true},
{"test.test1", "3rd", "3rd", true}, {"test.test2", "7th", "7th", true},
{"test.test3", "3rd", "3rd", true}, {"this.is.a.long.string", "4th", "4th", true},
+ {"testoneword", "8th", "8th", true}, {"testwordprefix", "9th", "9th", false},
};
auto serialized_trie = std::string();
@@ -229,6 +230,22 @@ TEST(propertyinfoserializer, GetPropertyInfo) {
property_info_area->GetPropertyInfo("test.test2.a", &context, &schema);
EXPECT_STREQ("6th", context);
EXPECT_STREQ("6th", schema);
+
+ property_info_area->GetPropertyInfo("testoneword", &context, &schema);
+ EXPECT_STREQ("8th", context);
+ EXPECT_STREQ("8th", schema);
+
+ property_info_area->GetPropertyInfo("testwordprefix", &context, &schema);
+ EXPECT_STREQ("9th", context);
+ EXPECT_STREQ("9th", schema);
+
+ property_info_area->GetPropertyInfo("testwordprefixblah", &context, &schema);
+ EXPECT_STREQ("9th", context);
+ EXPECT_STREQ("9th", schema);
+
+ property_info_area->GetPropertyInfo("testwordprefix.blah", &context, &schema);
+ EXPECT_STREQ("9th", context);
+ EXPECT_STREQ("9th", schema);
}
TEST(propertyinfoserializer, RealProperties) {