Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(210)

Unified Diff: tools/json_schema_compiler/test/error_generation.json

Issue 22228002: Add optional schema compiler error messages (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Synced up to latest master. Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/json_schema_compiler/model.py ('k') | tools/json_schema_compiler/test/error_generation_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/json_schema_compiler/test/error_generation.json
diff --git a/tools/json_schema_compiler/test/error_generation.json b/tools/json_schema_compiler/test/error_generation.json
new file mode 100644
index 0000000000000000000000000000000000000000..b0478a96c0bfca85ea1a5bbd3eed5d61c86a85fe
--- /dev/null
+++ b/tools/json_schema_compiler/test/error_generation.json
@@ -0,0 +1,118 @@
+[
+ {
+ "namespace": "error_generation",
+ "description": "Generates ALL the errors.",
+ "compiler_options": {
+ "generate_error_messages": true
+ },
+ "types": [
+ {
+ "id": "TestType",
+ "type": "object",
+ "properties": {
+ "string": {
+ "type": "string",
+ "description": "Some string."
+ }
+ }
+ },
+ {
+ "id": "ChoiceType",
+ "type": "object",
+ "properties": {
+ "integers": {
+ "choices": [
+ {"type": "array", "items": {"type": "integer", "minimum": 0}},
+ {"type": "integer"}
+ ]
+ }
+ }
+ },
+ {
+ "id": "ObjectType",
+ "type": "object",
+ "properties": {
+ "otherType": {
+ "$ref": "error_generation.TestType",
+ "optional": true
+ }
+ }
+ },
+ {
+ "id": "Enumeration",
+ "type": "string",
+ "enum": ["one", "two", "three"]
+ },
+ {
+ "id": "HasEnumeration",
+ "type": "object",
+ "properties": {
+ "enumeration": {
+ "$ref": "Enumeration"
+ }
+ }
+ },
+ {
+ "id": "BinaryData",
+ "type": "object",
+ "properties": {
+ "data": {
+ "type" : "binary"
+ }
+ }
+ },
+ {
+ "id": "ArrayObject",
+ "type": "object",
+ "properties": {
+ "TheArray": {
+ "type": "array",
+ "items": {"type": "string"},
+ "optional": true,
+ "description": "Expecting a list?"
+ }
+ }
+ }
+ ],
+ "functions": [
+ {
+ "name": "testString",
+ "type": "function",
+ "description": "Takes a string. Or not.",
+ "parameters": [
+ {
+ "name": "str",
+ "type": "string",
+ "optional": true
+ }
+ ]
+ },
+ {
+ "name": "testFunction",
+ "type": "function",
+ "description": "Specifies a number of parameters.",
+ "parameters": [
+ {
+ "name": "num",
+ "type": "integer"
+ }
+ ]
+ },
+ {
+ "name": "testTypeInObject",
+ "type": "function",
+ "description": "Takes a TestType.",
+ "parameters": [
+ {
+ "name": "paramObject",
+ "type": "object",
+ "properties": {
+ "testType": {"$ref": "error_generation.TestType", "optional": true},
+ "boolean": {"type": "boolean"}
+ }
+ }
+ ]
+ }
+ ]
+ }
+]
« no previous file with comments | « tools/json_schema_compiler/model.py ('k') | tools/json_schema_compiler/test/error_generation_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698