indices.exists_type

This commit is contained in:
Honza Kral
2013-06-16 16:20:03 +02:00
parent ae506f639b
commit e19853f1ba
3 changed files with 50 additions and 12 deletions
+20 -12
View File
@@ -59,19 +59,27 @@ class YamlTestCase(TestCase):
def run_is(self, action, transform=None):
""" Match part of last response to test data. """
self.assertEquals(1, len(action))
path, expected = list(action.items())[0]
# fetch the possibly nested value from last_response
value = self.last_response
for step in path.split('.'):
if step.isdigit():
step = int(step)
self.assertIsInstance(value, list)
self.assertGreater(len(value), step)
else:
self.assertIn(step, value)
value = value[step]
# matching part of the reponse dict
if isinstance(action, dict):
self.assertEquals(1, len(action))
path, expected = list(action.items())[0]
# fetch the possibly nested value from last_response
value = self.last_response
for step in path.split('.'):
if step.isdigit():
step = int(step)
self.assertIsInstance(value, list)
self.assertGreater(len(value), step)
else:
self.assertIn(step, value)
value = value[step]
# matching the entire response
else:
value = self.last_response
expected = action
# sometimes we need to transform the json value before comparing
if transform:
@@ -29,3 +29,17 @@
indices.get_mapping:
index: test
- length: { test: 0 }
---
"Test type exists":
- do:
indices.exists_type:
index: test
type: test-type
- is: true
---
"Test type doesn't exists":
- do:
indices.exists_type:
index: test
type: not-test-type
- is: false