OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/common/json_schema_validator_unittest_base.h" | 5 #include "chrome/common/json_schema/json_schema_validator_unittest_base.h" |
6 | 6 |
7 #include <cfloat> | 7 #include <cfloat> |
8 #include <cmath> | 8 #include <cmath> |
9 #include <limits> | 9 #include <limits> |
10 | 10 |
11 #include "base/file_util.h" | 11 #include "base/file_util.h" |
12 #include "base/json/json_file_value_serializer.h" | 12 #include "base/json/json_file_value_serializer.h" |
13 #include "base/logging.h" | 13 #include "base/logging.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "base/path_service.h" | 15 #include "base/path_service.h" |
16 #include "base/stringprintf.h" | 16 #include "base/stringprintf.h" |
17 #include "base/values.h" | 17 #include "base/values.h" |
18 #include "chrome/common/chrome_paths.h" | 18 #include "chrome/common/chrome_paths.h" |
19 #include "chrome/common/json_schema_constants.h" | 19 #include "chrome/common/json_schema/json_schema_constants.h" |
20 #include "chrome/common/json_schema_validator.h" | 20 #include "chrome/common/json_schema/json_schema_validator.h" |
21 | 21 |
22 namespace schema = json_schema_constants; | 22 namespace schema = json_schema_constants; |
23 | 23 |
24 namespace { | 24 namespace { |
25 | 25 |
26 #define TEST_SOURCE base::StringPrintf("%s:%i", __FILE__, __LINE__) | 26 #define TEST_SOURCE base::StringPrintf("%s:%i", __FILE__, __LINE__) |
27 | 27 |
28 base::Value* LoadValue(const std::string& filename) { | 28 base::Value* LoadValue(const std::string& filename) { |
29 base::FilePath path; | 29 base::FilePath path; |
30 PathService::Get(chrome::DIR_TEST_DATA, &path); | 30 PathService::Get(chrome::DIR_TEST_DATA, &path); |
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
669 schema->SetString(schema::kType, schema::kNull); | 669 schema->SetString(schema::kType, schema::kNull); |
670 ExpectNotValid(TEST_SOURCE, | 670 ExpectNotValid(TEST_SOURCE, |
671 scoped_ptr<base::Value>( | 671 scoped_ptr<base::Value>( |
672 new base::FundamentalValue(false)).get(), | 672 new base::FundamentalValue(false)).get(), |
673 schema.get(), NULL, "", | 673 schema.get(), NULL, "", |
674 JSONSchemaValidator::FormatErrorMessage( | 674 JSONSchemaValidator::FormatErrorMessage( |
675 JSONSchemaValidator::kInvalidType, | 675 JSONSchemaValidator::kInvalidType, |
676 schema::kNull, | 676 schema::kNull, |
677 schema::kBoolean)); | 677 schema::kBoolean)); |
678 } | 678 } |
OLD | NEW |