1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/values.h"
6 #include "components/json_schema/json_schema_validator.h"
7 #include "components/json_schema/json_schema_validator_unittest_base.h"
8 #include "testing/gtest/include/gtest/gtest.h"
10 class JSONSchemaValidatorCPPTest
: public JSONSchemaValidatorTestBase
{
12 JSONSchemaValidatorCPPTest() : JSONSchemaValidatorTestBase() {}
15 void ExpectValid(const std::string
& test_source
,
16 base::Value
* instance
,
17 base::DictionaryValue
* schema
,
18 base::ListValue
* types
) override
{
19 JSONSchemaValidator
validator(schema
, types
);
20 if (validator
.Validate(instance
))
23 for (size_t i
= 0; i
< validator
.errors().size(); ++i
) {
24 ADD_FAILURE() << test_source
<< ": "
25 << validator
.errors()[i
].path
<< ": "
26 << validator
.errors()[i
].message
;
30 void ExpectNotValid(const std::string
& test_source
,
31 base::Value
* instance
,
32 base::DictionaryValue
* schema
,
33 base::ListValue
* types
,
34 const std::string
& expected_error_path
,
35 const std::string
& expected_error_message
) override
{
36 JSONSchemaValidator
validator(schema
, types
);
37 if (validator
.Validate(instance
)) {
38 ADD_FAILURE() << test_source
;
42 ASSERT_EQ(1u, validator
.errors().size()) << test_source
;
43 EXPECT_EQ(expected_error_path
, validator
.errors()[0].path
) << test_source
;
44 EXPECT_EQ(expected_error_message
, validator
.errors()[0].message
)
49 TEST_F(JSONSchemaValidatorCPPTest
, Test
) {
53 TEST(JSONSchemaValidator
, IsValidSchema
) {
55 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema("", &error
));
56 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema("\0", &error
));
57 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema("string", &error
));
58 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema("\"string\"", &error
));
59 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema("[]", &error
));
60 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema("{}", &error
));
61 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema(
62 "{ \"type\": 123 }", &error
));
63 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema(
64 "{ \"type\": \"invalid\" }", &error
));
65 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema(
67 " \"type\": \"object\","
68 " \"properties\": []" // Invalid properties type.
70 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema(
72 " \"type\": \"string\","
73 " \"maxLength\": -1" // Must be >= 0.
75 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema(
77 " \"type\": \"string\","
78 " \"enum\": [ {} ]" // "enum" dict values must contain "name".
80 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema(
82 " \"type\": \"string\","
83 " \"enum\": [ { \"name\": {} } ]" // "enum" name must be a simple value.
85 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema(
87 " \"type\": \"array\","
88 " \"items\": [ 123 ]," // "items" must contain a schema or schemas.
90 EXPECT_TRUE(JSONSchemaValidator::IsValidSchema(
91 "{ \"type\": \"object\" }", &error
)) << error
;
92 EXPECT_TRUE(JSONSchemaValidator::IsValidSchema(
93 "{ \"type\": [\"object\", \"array\"] }", &error
)) << error
;
94 EXPECT_TRUE(JSONSchemaValidator::IsValidSchema(
96 " \"type\": [\"object\", \"array\"],"
98 " \"string-property\": {"
99 " \"type\": \"string\","
101 " \"maxLength\": 100,"
102 " \"title\": \"The String Policy\","
103 " \"description\": \"This policy controls the String widget.\""
105 " \"integer-property\": {"
106 " \"type\": \"number\","
107 " \"minimum\": 1000.0,"
108 " \"maximum\": 9999.0"
110 " \"enum-property\": {"
111 " \"type\": \"integer\","
112 " \"enum\": [0, 1, {\"name\": 10}, 100]"
114 " \"items-property\": {"
115 " \"type\": \"array\","
117 " \"type\": \"string\""
120 " \"items-list-property\": {"
121 " \"type\": \"array\","
123 " { \"type\": \"string\" },"
124 " { \"type\": \"integer\" }"
128 " \"additionalProperties\": {"
131 "}", &error
)) << error
;
132 EXPECT_TRUE(JSONSchemaValidator::IsValidSchema(
134 " \"type\": \"object\","
135 " \"patternProperties\": {"
136 " \".\": { \"type\": \"any\" },"
137 " \"foo\": { \"type\": \"any\" },"
138 " \"^foo$\": { \"type\": \"any\" },"
139 " \"foo+\": { \"type\": \"any\" },"
140 " \"foo?\": { \"type\": \"any\" },"
141 " \"fo{2,4}\": { \"type\": \"any\" },"
142 " \"(left)|(right)\": { \"type\": \"any\" }"
144 "}", &error
)) << error
;
145 EXPECT_TRUE(JSONSchemaValidator::IsValidSchema(
147 " \"type\": \"object\","
148 " \"unknown attribute\": \"that should just be ignored\""
150 JSONSchemaValidator::OPTIONS_IGNORE_UNKNOWN_ATTRIBUTES
,
152 EXPECT_FALSE(JSONSchemaValidator::IsValidSchema(
154 " \"type\": \"object\","
155 " \"unknown attribute\": \"that will cause a failure\""
156 "}", 0, &error
)) << error
;