summaryrefslogtreecommitdiffstats
path: root/tools/json_schema_compiler/test/callbacks_unittest.cc
blob: 001e977bf07a74c1a75105bbe18972acdae2cdbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// 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(new base::FundamentalValue(5));
  expected.Append(expected_dict);
  EXPECT_TRUE(results->Equals(&expected));
}