summaryrefslogtreecommitdiffstats
path: root/tools/json_schema_compiler/test/error_generation_unittest.cc
blob: 3d5659502085605e40b5e51209decee811e7007e (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
// Copyright 2013 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/error_generation.h"

#include "base/json/json_writer.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "tools/json_schema_compiler/test/test_util.h"

using namespace test::api::error_generation;
using base::FundamentalValue;
using json_schema_compiler::test_util::Dictionary;
using json_schema_compiler::test_util::List;

template <typename T>
std::string GetPopulateError(const base::Value& value) {
  std::string error;
  T test_type;
  T::Populate(value, &test_type, &error);
  return error;
}

// GenerateTypePopulate errors

TEST(JsonSchemaCompilerErrorTest, RequiredPropertyPopulate) {
  {
    scoped_ptr<DictionaryValue> value = Dictionary(
        "string", new StringValue("bling"));
    EXPECT_EQ("", GetPopulateError<TestType>(*value));
  }
  {
    scoped_ptr<base::BinaryValue> value(new base::BinaryValue());
    EXPECT_EQ("expected dictionary, got binary",
        GetPopulateError<TestType>(*value));
  }
}

TEST(JsonSchemaCompilerErrorTest, UnexpectedTypePopulation) {
  {
    scoped_ptr<base::ListValue> value(new base::ListValue());
    EXPECT_EQ("", GetPopulateError<ChoiceType::Integers>(*value));
  }
  {
    scoped_ptr<base::BinaryValue> value(new base::BinaryValue());
    EXPECT_EQ("expected integers or integer, got binary",
        GetPopulateError<ChoiceType::Integers>(*value));
  }
}

// GenerateTypePopulateProperty errors

TEST(JsonSchemaCompilerErrorTest, TypeIsRequired) {
  {
    scoped_ptr<DictionaryValue> value = Dictionary(
        "integers", new FundamentalValue(5));
    EXPECT_EQ("", GetPopulateError<ChoiceType>(*value));
  }
  {
    scoped_ptr<base::DictionaryValue> value(new base::DictionaryValue());
    EXPECT_EQ("'integers' is required",
        GetPopulateError<ChoiceType>(*value));
  }
}

// GenerateParamsCheck errors

TEST(JsonSchemaCompilerErrorTest, TooManyParameters) {
  {
    scoped_ptr<base::ListValue> params_value = List(
        new FundamentalValue(5));
    EXPECT_TRUE(TestFunction::Params::Create(*params_value));
  }
  {
    scoped_ptr<base::ListValue> params_value = List(
        new FundamentalValue(5),
        new FundamentalValue(5));
    std::string error;
    EXPECT_FALSE(TestFunction::Params::Create(*params_value, &error));
    EXPECT_EQ("expected 1 arguments, got 2", error);
  }
}

// GenerateFunctionParamsCreate errors

TEST(JsonSchemaCompilerErrorTest, ParamIsRequired) {
  {
    scoped_ptr<base::ListValue> params_value = List(
        new FundamentalValue(5));
    EXPECT_TRUE(TestFunction::Params::Create(*params_value));
  }
  {
    scoped_ptr<base::ListValue> params_value = List(
        Value::CreateNullValue());
    std::string error;
    EXPECT_FALSE(TestFunction::Params::Create(*params_value, &error));
    EXPECT_EQ("'num' is required", error);
  }
}

// GeneratePopulateVariableFromValue errors

TEST(JsonSchemaCompilerErrorTest, WrongPropertyValueType) {
  {
    scoped_ptr<DictionaryValue> value = Dictionary(
      "string", new StringValue("yes"));
    EXPECT_EQ("", GetPopulateError<TestType>(*value));
  }
  {
    scoped_ptr<DictionaryValue> value = Dictionary(
        "string", new FundamentalValue(1.1));
    EXPECT_EQ("'string': expected string, got number",
        GetPopulateError<TestType>(*value));
  }
}

TEST(JsonSchemaCompilerErrorTest, WrongParameterCreationType) {
  {
    scoped_ptr<base::ListValue> params_value = List(
        new StringValue("Yeah!"));
    EXPECT_TRUE(TestString::Params::Create(*params_value));
  }
  {
    scoped_ptr<base::ListValue> params_value = List(
        new FundamentalValue(5));
    std::string error;
    EXPECT_FALSE(TestTypeInObject::Params::Create(*params_value, &error));
    EXPECT_EQ("'paramObject': expected dictionary, got integer", error);
  }
}

TEST(JsonSchemaCompilerErrorTest, WrongTypeValueType) {
  {
    scoped_ptr<base::DictionaryValue> value(new base::DictionaryValue());
    EXPECT_EQ("", GetPopulateError<ObjectType>(*value));
  }
  {
    scoped_ptr<DictionaryValue> value = Dictionary(
        "otherType", new FundamentalValue(1.1));
    EXPECT_EQ("'otherType': expected dictionary, got number",
        GetPopulateError<ObjectType>(*value));
  }
}

TEST(JsonSchemaCompilerErrorTest, UnableToPopulateArray) {
  {
    scoped_ptr<base::ListValue> params_value = List(
        new FundamentalValue(5));
    EXPECT_EQ("", GetPopulateError<ChoiceType::Integers>(*params_value));
  }
  {
    scoped_ptr<base::ListValue> params_value = List(
        new FundamentalValue(5),
        new FundamentalValue(false));
    EXPECT_EQ("unable to populate array 'integers'",
        GetPopulateError<ChoiceType::Integers>(*params_value));
  }
}

TEST(JsonSchemaCompilerErrorTest, BinaryTypeExpected) {
  {
    scoped_ptr<DictionaryValue> value = Dictionary(
        "data", new base::BinaryValue());
    EXPECT_EQ("", GetPopulateError<BinaryData>(*value));
  }
  {
    scoped_ptr<DictionaryValue> value = Dictionary(
        "data", new FundamentalValue(1.1));
    EXPECT_EQ("'data': expected binary, got number",
        GetPopulateError<BinaryData>(*value));
  }
}

TEST(JsonSchemaCompilerErrorTest, ListExpected) {
  {
    scoped_ptr<DictionaryValue> value = Dictionary(
        "TheArray", new base::ListValue());
    EXPECT_EQ("", GetPopulateError<ArrayObject>(*value));
  }
  {
    scoped_ptr<DictionaryValue> value = Dictionary(
        "TheArray", new FundamentalValue(5));
    EXPECT_EQ("'TheArray': expected list, got integer",
        GetPopulateError<ArrayObject>(*value));
  }
}

// GenerateStringToEnumConversion errors

TEST(JsonSchemaCompilerErrorTest, BadEnumValue) {
  {
    scoped_ptr<DictionaryValue> value = Dictionary(
        "enumeration", new StringValue("one"));
    EXPECT_EQ("", GetPopulateError<HasEnumeration>(*value));
  }
  {
    scoped_ptr<DictionaryValue> value = Dictionary(
        "enumeration", new StringValue("bad sauce"));
    EXPECT_EQ("'enumeration': expected \"one\" or \"two\" or \"three\", "
              "got \"bad sauce\"",
        GetPopulateError<HasEnumeration>(*value));
  }
}