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

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

Issue 9309044: Supporting more APIs with json_schema_compiler (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rework, add a couple of tests 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
« no previous file with comments | « tools/json_schema_compiler/test/choices.json ('k') | tools/json_schema_compiler/test/crossref.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/json_schema_compiler/test/choices_unittest.cc
diff --git a/tools/json_schema_compiler/test/choices_unittest.cc b/tools/json_schema_compiler/test/choices_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..32bab698422db61d03df7d22da77faaf7ff2b755
--- /dev/null
+++ b/tools/json_schema_compiler/test/choices_unittest.cc
@@ -0,0 +1,135 @@
+// 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/choices.h"
+
+#include "testing/gtest/include/gtest/gtest.h"
+
+using namespace test::api::choices;
+
+TEST(JsonSchemaCompilerChoicesTest, TakesIntegersParamsCreate) {
+ {
+ scoped_ptr<ListValue> params_value(new ListValue());
+ params_value->Append(Value::CreateBooleanValue(true));
+ scoped_ptr<TakesIntegers::Params> params(
+ TakesIntegers::Params::Create(*params_value));
+ EXPECT_FALSE(params.get());
+ }
+ {
+ scoped_ptr<ListValue> params_value(new ListValue());
+ params_value->Append(Value::CreateIntegerValue(6));
+ scoped_ptr<TakesIntegers::Params> params(
+ TakesIntegers::Params::Create(*params_value));
+ EXPECT_TRUE(params.get());
+ EXPECT_EQ(TakesIntegers::Params::NUMS_INTEGER, params->nums_type);
+ EXPECT_FALSE(params->nums_array.get());
+ EXPECT_EQ(6, *params->nums_integer);
+ }
+ {
+ scoped_ptr<ListValue> params_value(new ListValue());
+ scoped_ptr<ListValue> integers(new ListValue());
+ integers->Append(Value::CreateIntegerValue(6));
+ integers->Append(Value::CreateIntegerValue(8));
+ params_value->Append(integers.release());
+ scoped_ptr<TakesIntegers::Params> params(
+ TakesIntegers::Params::Create(*params_value));
+ EXPECT_TRUE(params.get());
+ EXPECT_EQ(TakesIntegers::Params::NUMS_ARRAY, params->nums_type);
+ EXPECT_EQ(2UL, (*params->nums_array).size());
+ EXPECT_EQ(6, (*params->nums_array)[0]);
+ EXPECT_EQ(8, (*params->nums_array)[1]);
+ }
+}
+
+TEST(JsonSchemaCompilerChoicesTest, ObjectWithChoicesParamsCreate) {
+ {
+ scoped_ptr<DictionaryValue> object_param(new DictionaryValue());
+ object_param->SetWithoutPathExpansion("strings",
+ Value::CreateStringValue("asdf"));
+ scoped_ptr<ListValue> params_value(new ListValue());
+ params_value->Append(object_param.release());
+ scoped_ptr<ObjectWithChoices::Params> params(
+ ObjectWithChoices::Params::Create(*params_value));
+ EXPECT_TRUE(params.get());
+ EXPECT_EQ(ObjectWithChoices::Params::StringInfo::STRINGS_STRING,
+ params->string_info.strings_type);
+ EXPECT_EQ("asdf", *params->string_info.strings_string);
+ }
+ {
+ scoped_ptr<DictionaryValue> object_param(new DictionaryValue());
+ object_param->SetWithoutPathExpansion("strings",
+ Value::CreateStringValue("asdf"));
+ object_param->SetWithoutPathExpansion("integers",
+ Value::CreateIntegerValue(6));
+ scoped_ptr<ListValue> params_value(new ListValue());
+ params_value->Append(object_param.release());
+ scoped_ptr<ObjectWithChoices::Params> params(
+ ObjectWithChoices::Params::Create(*params_value));
+ EXPECT_TRUE(params.get());
+ EXPECT_EQ(ObjectWithChoices::Params::StringInfo::STRINGS_STRING,
+ params->string_info.strings_type);
+ EXPECT_EQ("asdf", *params->string_info.strings_string);
+ EXPECT_EQ(ObjectWithChoices::Params::StringInfo::INTEGERS_INTEGER,
+ params->string_info.integers_type);
+ EXPECT_EQ(6, *params->string_info.integers_integer);
+ }
+}
+
+TEST(JsonSchemaCompilerChoicesTest, ObjectWithChoicesParamsCreateFail) {
+ {
+ scoped_ptr<DictionaryValue> object_param(new DictionaryValue());
+ object_param->SetWithoutPathExpansion("strings",
+ Value::CreateIntegerValue(5));
+ scoped_ptr<ListValue> params_value(new ListValue());
+ params_value->Append(object_param.release());
+ scoped_ptr<ObjectWithChoices::Params> params(
+ ObjectWithChoices::Params::Create(*params_value));
+ EXPECT_FALSE(params.get());
+ }
+ {
+ scoped_ptr<DictionaryValue> object_param(new DictionaryValue());
+ object_param->SetWithoutPathExpansion("strings",
+ Value::CreateStringValue("asdf"));
+ object_param->SetWithoutPathExpansion("integers",
+ Value::CreateStringValue("asdf"));
+ scoped_ptr<ListValue> params_value(new ListValue());
+ params_value->Append(object_param.release());
+ scoped_ptr<ObjectWithChoices::Params> params(
+ ObjectWithChoices::Params::Create(*params_value));
+ EXPECT_FALSE(params.get());
+ }
+ {
+ scoped_ptr<DictionaryValue> object_param(new DictionaryValue());
+ object_param->SetWithoutPathExpansion("integers",
+ Value::CreateIntegerValue(6));
+ scoped_ptr<ListValue> params_value(new ListValue());
+ params_value->Append(object_param.release());
+ scoped_ptr<ObjectWithChoices::Params> params(
+ ObjectWithChoices::Params::Create(*params_value));
+ EXPECT_FALSE(params.get());
+ }
+}
+
+TEST(JsonSchemaCompilerChoicesTest, ReturnChoices) {
+ {
+ std::vector<int> integers;
+ integers.push_back(1);
+ integers.push_back(2);
+ scoped_ptr<Value> array_result(ReturnChoices::Result::Create(integers));
+ ListValue* list = NULL;
+ EXPECT_TRUE(array_result->GetAsList(&list));
+ EXPECT_EQ(2UL, list->GetSize());
+ int temp;
+ EXPECT_TRUE(list->GetInteger(0, &temp));
+ EXPECT_EQ(1, temp);
+ EXPECT_TRUE(list->GetInteger(1, &temp));
+ EXPECT_EQ(2, temp);
+ }
+ {
+ scoped_ptr<Value> single_result(ReturnChoices::Result::Create(5));
+ int temp;
+ EXPECT_TRUE(single_result->GetAsInteger(&temp));
+ EXPECT_EQ(5, temp);
+ }
+}
« no previous file with comments | « tools/json_schema_compiler/test/choices.json ('k') | tools/json_schema_compiler/test/crossref.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698