OSDN Git Service

tests/qapi-schema: Error case tests for features in structs
authorKevin Wolf <kwolf@redhat.com>
Thu, 6 Jun 2019 15:37:59 +0000 (17:37 +0200)
committerMarkus Armbruster <armbru@redhat.com>
Wed, 12 Jun 2019 16:35:26 +0000 (18:35 +0200)
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Message-Id: <20190606153803.5278-4-armbru@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
25 files changed:
tests/Makefile.include
tests/qapi-schema/features-bad-type.err [new file with mode: 0644]
tests/qapi-schema/features-bad-type.exit [new file with mode: 0644]
tests/qapi-schema/features-bad-type.json [new file with mode: 0644]
tests/qapi-schema/features-bad-type.out [new file with mode: 0644]
tests/qapi-schema/features-duplicate-name.err [new file with mode: 0644]
tests/qapi-schema/features-duplicate-name.exit [new file with mode: 0644]
tests/qapi-schema/features-duplicate-name.json [new file with mode: 0644]
tests/qapi-schema/features-duplicate-name.out [new file with mode: 0644]
tests/qapi-schema/features-missing-name.err [new file with mode: 0644]
tests/qapi-schema/features-missing-name.exit [new file with mode: 0644]
tests/qapi-schema/features-missing-name.json [new file with mode: 0644]
tests/qapi-schema/features-missing-name.out [new file with mode: 0644]
tests/qapi-schema/features-name-bad-type.err [new file with mode: 0644]
tests/qapi-schema/features-name-bad-type.exit [new file with mode: 0644]
tests/qapi-schema/features-name-bad-type.json [new file with mode: 0644]
tests/qapi-schema/features-name-bad-type.out [new file with mode: 0644]
tests/qapi-schema/features-no-list.err [new file with mode: 0644]
tests/qapi-schema/features-no-list.exit [new file with mode: 0644]
tests/qapi-schema/features-no-list.json [new file with mode: 0644]
tests/qapi-schema/features-no-list.out [new file with mode: 0644]
tests/qapi-schema/features-unknown-key.err [new file with mode: 0644]
tests/qapi-schema/features-unknown-key.exit [new file with mode: 0644]
tests/qapi-schema/features-unknown-key.json [new file with mode: 0644]
tests/qapi-schema/features-unknown-key.out [new file with mode: 0644]

index 0cd5f46..db750dd 100644 (file)
@@ -378,6 +378,12 @@ qapi-schema += event-boxed-empty.json
 qapi-schema += event-case.json
 qapi-schema += event-member-invalid-dict.json
 qapi-schema += event-nest-struct.json
+qapi-schema += features-bad-type.json
+qapi-schema += features-duplicate-name.json
+qapi-schema += features-missing-name.json
+qapi-schema += features-name-bad-type.json
+qapi-schema += features-no-list.json
+qapi-schema += features-unknown-key.json
 qapi-schema += flat-union-array-branch.json
 qapi-schema += flat-union-bad-base.json
 qapi-schema += flat-union-bad-discriminator.json
diff --git a/tests/qapi-schema/features-bad-type.err b/tests/qapi-schema/features-bad-type.err
new file mode 100644 (file)
index 0000000..5fb95c2
--- /dev/null
@@ -0,0 +1 @@
+tests/qapi-schema/features-bad-type.json:1: Feature of struct FeatureStruct0 requires a string name
diff --git a/tests/qapi-schema/features-bad-type.exit b/tests/qapi-schema/features-bad-type.exit
new file mode 100644 (file)
index 0000000..d00491f
--- /dev/null
@@ -0,0 +1 @@
+1
diff --git a/tests/qapi-schema/features-bad-type.json b/tests/qapi-schema/features-bad-type.json
new file mode 100644 (file)
index 0000000..57db554
--- /dev/null
@@ -0,0 +1,3 @@
+{ 'struct': 'FeatureStruct0',
+  'data': { 'foo': 'int' },
+  'features': [ [ 'a feature cannot be an array' ] ] }
diff --git a/tests/qapi-schema/features-bad-type.out b/tests/qapi-schema/features-bad-type.out
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/tests/qapi-schema/features-duplicate-name.err b/tests/qapi-schema/features-duplicate-name.err
new file mode 100644 (file)
index 0000000..c0a4ccc
--- /dev/null
@@ -0,0 +1 @@
+tests/qapi-schema/features-duplicate-name.json:1: 'foo' (feature of FeatureStruct0) collides with 'foo' (feature of FeatureStruct0)
diff --git a/tests/qapi-schema/features-duplicate-name.exit b/tests/qapi-schema/features-duplicate-name.exit
new file mode 100644 (file)
index 0000000..d00491f
--- /dev/null
@@ -0,0 +1 @@
+1
diff --git a/tests/qapi-schema/features-duplicate-name.json b/tests/qapi-schema/features-duplicate-name.json
new file mode 100644 (file)
index 0000000..29358e6
--- /dev/null
@@ -0,0 +1,3 @@
+{ 'struct': 'FeatureStruct0',
+  'data': { 'foo': 'int' },
+  'features': [ 'foo', 'bar', 'foo' ] }
diff --git a/tests/qapi-schema/features-duplicate-name.out b/tests/qapi-schema/features-duplicate-name.out
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/tests/qapi-schema/features-missing-name.err b/tests/qapi-schema/features-missing-name.err
new file mode 100644 (file)
index 0000000..4f1d271
--- /dev/null
@@ -0,0 +1 @@
+tests/qapi-schema/features-missing-name.json:1: Key 'name' is missing from feature of struct FeatureStruct0
diff --git a/tests/qapi-schema/features-missing-name.exit b/tests/qapi-schema/features-missing-name.exit
new file mode 100644 (file)
index 0000000..d00491f
--- /dev/null
@@ -0,0 +1 @@
+1
diff --git a/tests/qapi-schema/features-missing-name.json b/tests/qapi-schema/features-missing-name.json
new file mode 100644 (file)
index 0000000..2314f97
--- /dev/null
@@ -0,0 +1,3 @@
+{ 'struct': 'FeatureStruct0',
+  'data': { 'foo': 'int' },
+  'features': [ { 'if': 'defined(NAMELESS_FEATURES)' } ] }
diff --git a/tests/qapi-schema/features-missing-name.out b/tests/qapi-schema/features-missing-name.out
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/tests/qapi-schema/features-name-bad-type.err b/tests/qapi-schema/features-name-bad-type.err
new file mode 100644 (file)
index 0000000..8a3eecb
--- /dev/null
@@ -0,0 +1 @@
+tests/qapi-schema/features-name-bad-type.json:1: Feature of struct FeatureStruct0 requires a string name
diff --git a/tests/qapi-schema/features-name-bad-type.exit b/tests/qapi-schema/features-name-bad-type.exit
new file mode 100644 (file)
index 0000000..d00491f
--- /dev/null
@@ -0,0 +1 @@
+1
diff --git a/tests/qapi-schema/features-name-bad-type.json b/tests/qapi-schema/features-name-bad-type.json
new file mode 100644 (file)
index 0000000..b071399
--- /dev/null
@@ -0,0 +1,3 @@
+{ 'struct': 'FeatureStruct0',
+  'data': { 'foo': 'int' },
+  'features': [ { 'name': { 'feature-type': 'object' } } ] }
diff --git a/tests/qapi-schema/features-name-bad-type.out b/tests/qapi-schema/features-name-bad-type.out
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/tests/qapi-schema/features-no-list.err b/tests/qapi-schema/features-no-list.err
new file mode 100644 (file)
index 0000000..61ed686
--- /dev/null
@@ -0,0 +1 @@
+tests/qapi-schema/features-no-list.json:1: Struct 'FeatureStruct0' requires an array for 'features'
diff --git a/tests/qapi-schema/features-no-list.exit b/tests/qapi-schema/features-no-list.exit
new file mode 100644 (file)
index 0000000..d00491f
--- /dev/null
@@ -0,0 +1 @@
+1
diff --git a/tests/qapi-schema/features-no-list.json b/tests/qapi-schema/features-no-list.json
new file mode 100644 (file)
index 0000000..9484fd9
--- /dev/null
@@ -0,0 +1,3 @@
+{ 'struct': 'FeatureStruct0',
+  'data': { 'foo': 'int' },
+  'features': 'bar' }
diff --git a/tests/qapi-schema/features-no-list.out b/tests/qapi-schema/features-no-list.out
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/tests/qapi-schema/features-unknown-key.err b/tests/qapi-schema/features-unknown-key.err
new file mode 100644 (file)
index 0000000..a1d6930
--- /dev/null
@@ -0,0 +1,2 @@
+tests/qapi-schema/features-unknown-key.json:1: Unknown key 'colour' in feature of struct FeatureStruct0
+Valid keys are 'if', 'name'.
diff --git a/tests/qapi-schema/features-unknown-key.exit b/tests/qapi-schema/features-unknown-key.exit
new file mode 100644 (file)
index 0000000..d00491f
--- /dev/null
@@ -0,0 +1 @@
+1
diff --git a/tests/qapi-schema/features-unknown-key.json b/tests/qapi-schema/features-unknown-key.json
new file mode 100644 (file)
index 0000000..134df3b
--- /dev/null
@@ -0,0 +1,3 @@
+{ 'struct': 'FeatureStruct0',
+  'data': { 'foo': 'int' },
+  'features': [ { 'name': 'bar', 'colour': 'red' } ] }
diff --git a/tests/qapi-schema/features-unknown-key.out b/tests/qapi-schema/features-unknown-key.out
new file mode 100644 (file)
index 0000000..e69de29