buffet: Add support for 'default' properties in CDD
The internals of supporting optional command parameters/state
properties was built into buffet earlier, but this was not exposed
in JSON reading/writing routines, so it was impossible to use this
feature.
Added JSON serialization/deserialization code and unit tests
to verify the operation.
BUG=brillo:357
TEST=`FEATURES=test emerge-link buffet`
Change-Id: I29c8d3d7c0894a9c837e73d0fdb16bafdfadfeca
Reviewed-on: https://chromium-review.googlesource.com/253070
Trybot-Ready: Alex Vakulenko <avakulenko@chromium.org>
Tested-by: Alex Vakulenko <avakulenko@chromium.org>
Reviewed-by: Christopher Wiley <wiley@chromium.org>
Commit-Queue: Alex Vakulenko <avakulenko@chromium.org>
diff --git a/buffet/commands/object_schema.cc b/buffet/commands/object_schema.cc
index 41e7639..6437262 100644
--- a/buffet/commands/object_schema.cc
+++ b/buffet/commands/object_schema.cc
@@ -236,6 +236,18 @@
commands::attributes::kOneOf_Enum, &list))
return DetectArrayType(list, base_schema);
+ // If we have "default", try to use it for type detection.
+ if (dict->Get(commands::attributes::kDefault, &value)) {
+ if (value->IsType(base::Value::TYPE_DOUBLE))
+ return PropType::GetTypeStringFromType(ValueType::Double);
+ if (value->IsType(base::Value::TYPE_INTEGER))
+ return PropType::GetTypeStringFromType(ValueType::Int);
+ if (value->IsType(base::Value::TYPE_BOOLEAN))
+ return PropType::GetTypeStringFromType(ValueType::Boolean);
+ if (value->IsType(base::Value::TYPE_STRING))
+ return PropType::GetTypeStringFromType(ValueType::String);
+ }
+
return std::string();
}