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

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

Issue 682493002: Remove the dependency on json schema compiler. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 2 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/any.json ('k') | tools/json_schema_compiler/test/arrays.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/json_schema_compiler/test/any_unittest.cc
diff --git a/tools/json_schema_compiler/test/any_unittest.cc b/tools/json_schema_compiler/test/any_unittest.cc
deleted file mode 100644
index d10a3eb4ef486c1881933103600602094dceb08a..0000000000000000000000000000000000000000
--- a/tools/json_schema_compiler/test/any_unittest.cc
+++ /dev/null
@@ -1,59 +0,0 @@
-// 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 "testing/gtest/include/gtest/gtest.h"
-#include "tools/json_schema_compiler/test/any.h"
-
-using namespace test::api::any;
-
-TEST(JsonSchemaCompilerAnyTest, AnyTypePopulate) {
- {
- AnyType any_type;
- scoped_ptr<base::DictionaryValue> any_type_value(
- new base::DictionaryValue());
- any_type_value->SetString("any", "value");
- EXPECT_TRUE(AnyType::Populate(*any_type_value, &any_type));
- scoped_ptr<base::Value> any_type_to_value(any_type.ToValue());
- EXPECT_TRUE(any_type_value->Equals(any_type_to_value.get()));
- }
- {
- AnyType any_type;
- scoped_ptr<base::DictionaryValue> any_type_value(
- new base::DictionaryValue());
- any_type_value->SetInteger("any", 5);
- EXPECT_TRUE(AnyType::Populate(*any_type_value, &any_type));
- scoped_ptr<base::Value> any_type_to_value(any_type.ToValue());
- EXPECT_TRUE(any_type_value->Equals(any_type_to_value.get()));
- }
-}
-
-TEST(JsonSchemaCompilerAnyTest, OptionalAnyParamsCreate) {
- {
- scoped_ptr<base::ListValue> params_value(new base::ListValue());
- scoped_ptr<OptionalAny::Params> params(
- OptionalAny::Params::Create(*params_value));
- EXPECT_TRUE(params.get());
- EXPECT_FALSE(params->any_name.get());
- }
- {
- scoped_ptr<base::ListValue> params_value(new base::ListValue());
- scoped_ptr<base::Value> param(new base::StringValue("asdf"));
- params_value->Append(param->DeepCopy());
- scoped_ptr<OptionalAny::Params> params(
- OptionalAny::Params::Create(*params_value));
- ASSERT_TRUE(params);
- ASSERT_TRUE(params->any_name);
- EXPECT_TRUE(params->any_name->Equals(param.get()));
- }
- {
- scoped_ptr<base::ListValue> params_value(new base::ListValue());
- scoped_ptr<base::Value> param(new base::FundamentalValue(true));
- params_value->Append(param->DeepCopy());
- scoped_ptr<OptionalAny::Params> params(
- OptionalAny::Params::Create(*params_value));
- ASSERT_TRUE(params);
- ASSERT_TRUE(params->any_name);
- EXPECT_TRUE(params->any_name->Equals(param.get()));
- }
-}
« no previous file with comments | « tools/json_schema_compiler/test/any.json ('k') | tools/json_schema_compiler/test/arrays.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698