Merge "Improving Unit Test coverage of k8s_manifest"

This commit is contained in:
Jenkins 2015-05-27 13:59:32 +00:00 committed by Gerrit Code Review
commit fe745434a8
2 changed files with 31 additions and 7 deletions

View File

@ -50,7 +50,8 @@ def parse(manifest_str):
raise ValueError(msg)
else:
if manifest is None:
manifest = {}
msg = _("'manifest' can't be empty")
raise ValueError(msg)
if not isinstance(manifest, dict):
raise ValueError(_('The manifest is not a JSON object '

View File

@ -19,13 +19,15 @@ from magnum.tests import base
class K8sManifestTestCase(base.TestCase):
def test_parse_with_json(self):
port = 6379
containerPort = 6380
json_str = '''
{
"id": "redis-master",
"kind": "Service",
"apiVersion": "v1beta1",
"port": 6379,
"containerPort": 6379,
"port": %d,
"containerPort": %d,
"selector": {
"name": "redis-master"
},
@ -33,27 +35,48 @@ class K8sManifestTestCase(base.TestCase):
"name": "redis-master"
}
}
'''
''' % (port, containerPort)
manifest = k8s_manifest.parse(json_str)
self.assertIsInstance(manifest, dict)
self.assertEqual(port, manifest['port'])
self.assertEqual(containerPort, manifest['containerPort'])
def test_parse_with_yaml(self):
port = 6389
containerPort = 6380
yaml_str = '''
id: redis-master
kind: Service
port: 6379
containerPort: 6379
port: %d
containerPort: %d
selector:
name: redis-master
labels:
name: redis-master
'''
''' % (port, containerPort)
manifest = k8s_manifest.parse(yaml_str)
self.assertIsInstance(manifest, dict)
self.assertEqual(port, manifest['port'])
self.assertEqual(containerPort, manifest['containerPort'])
def test_parse_invalid_value(self):
invalid_str = 'aoa89**'
self.assertRaises(ValueError, k8s_manifest.parse, invalid_str)
def test_parse_empty_value(self):
empty_str = ''
self.assertRaises(ValueError, k8s_manifest.parse, empty_str)
def test_parse_empty_yaml_response(self):
blank_str = ' '
self.assertRaises(ValueError, k8s_manifest.parse, blank_str)
def test_parse_yaml_error(self):
invalid_str = "}invalid: y'm'l3!"
self.assertRaises(ValueError, k8s_manifest.parse, invalid_str)