root/tools/json_schema_compiler/test/callbacks_unittest.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. TEST
  2. TEST

// 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/callbacks.h"

#include "testing/gtest/include/gtest/gtest.h"

using namespace test::api::callbacks;

TEST(JsonSchemaCompilerCallbacksTest, ReturnsObjectResultCreate) {
  ReturnsObject::Results::SomeObject some_object;
  some_object.state = ReturnsObject::Results::SomeObject::STATE_FOO;
  scoped_ptr<base::ListValue> results =
      ReturnsObject::Results::Create(some_object);

  base::DictionaryValue* expected_dict = new base::DictionaryValue();
  expected_dict->SetString("state", "foo");
  base::ListValue expected;
  expected.Append(expected_dict);
  EXPECT_TRUE(results->Equals(&expected));
}

TEST(JsonSchemaCompilerCallbacksTest, ReturnsMultipleResultCreate) {
  ReturnsMultiple::Results::SomeObject some_object;
  some_object.state = ReturnsMultiple::Results::SomeObject::STATE_FOO;
  scoped_ptr<base::ListValue> results =
      ReturnsMultiple::Results::Create(5, some_object);

  base::DictionaryValue* expected_dict = new base::DictionaryValue();
  expected_dict->SetString("state", "foo");
  base::ListValue expected;
  expected.Append(base::Value::CreateIntegerValue(5));
  expected.Append(expected_dict);
  EXPECT_TRUE(results->Equals(&expected));
}

/* [<][>][^][v][top][bottom][index][help] */