Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(889)

Unified Diff: tools/json_schema_compiler/test/objects_unittest.cc

Issue 9456007: Add wider support to json_schema_compiler (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: reupload Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/json_schema_compiler/test/objects_unittest.cc
diff --git a/tools/json_schema_compiler/test/objects_unittest.cc b/tools/json_schema_compiler/test/objects_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..b0ed54f1ceaf32d22635701e086d1dd7b514e933
--- /dev/null
+++ b/tools/json_schema_compiler/test/objects_unittest.cc
@@ -0,0 +1,59 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "tools/json_schema_compiler/test/objects.h"
+
+#include "testing/gtest/include/gtest/gtest.h"
+
+using namespace test::api::objects;
+
+TEST(JsonSchemaCompilerObjectsTest, ObjectParamParamsCreate) {
+ {
+ scoped_ptr<ListValue> strings(new ListValue());
+ strings->Append(Value::CreateStringValue("one"));
+ strings->Append(Value::CreateStringValue("two"));
+ scoped_ptr<DictionaryValue> info_value(new DictionaryValue());
+ info_value->Set("strings", strings.release());
+ info_value->Set("integer", Value::CreateIntegerValue(5));
+ info_value->Set("boolean", Value::CreateBooleanValue(true));
+
+ scoped_ptr<ListValue> params_value(new ListValue());
+ params_value->Append(info_value.release());
+ scoped_ptr<ObjectParam::Params> params(
+ ObjectParam::Params::Create(*params_value));
+ EXPECT_TRUE(params.get());
+ EXPECT_EQ((size_t) 2, params->info.strings.size());
+ EXPECT_EQ("one", params->info.strings[0]);
+ EXPECT_EQ("two", params->info.strings[1]);
+ EXPECT_EQ(5, params->info.integer);
+ EXPECT_TRUE(params->info.boolean);
+ }
+ {
+ scoped_ptr<ListValue> strings(new ListValue());
+ strings->Append(Value::CreateStringValue("one"));
+ strings->Append(Value::CreateStringValue("two"));
+ scoped_ptr<DictionaryValue> info_value(new DictionaryValue());
+ info_value->Set("strings", strings.release());
+ info_value->Set("integer", Value::CreateIntegerValue(5));
+
+ scoped_ptr<ListValue> params_value(new ListValue());
+ params_value->Append(info_value.release());
+ scoped_ptr<ObjectParam::Params> params(
+ ObjectParam::Params::Create(*params_value));
+ EXPECT_FALSE(params.get());
+ }
+}
+
+TEST(JsonSchemaCompilerObjectsTest, ReturnsObjectResultCreate) {
+ scoped_ptr<ReturnsObject::Result::Info> info(
+ new ReturnsObject::Result::Info());
+ info->state = ReturnsObject::Result::Info::STATE_FOO;
+ scoped_ptr<Value> result_value(
+ ReturnsObject::Result::Create(*info));
+ DictionaryValue* result_dict = NULL;
+ EXPECT_TRUE(result_value->GetAsDictionary(&result_dict));
+ std::string state;
+ EXPECT_TRUE(result_dict->GetString("state", &state));
+ EXPECT_EQ("foo", state);
+}
« no previous file with comments | « tools/json_schema_compiler/test/objects.json ('k') | tools/json_schema_compiler/test/simple_api_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698