From 22400e39f7724f2c48c3f2378aaeabb85d4cbf70 Mon Sep 17 00:00:00 2001 From: Sergii Turivnyi Date: Tue, 12 Jul 2016 12:22:58 -0400 Subject: [PATCH] Add Negative tests for cinder volume create command Negative tests for the cinder CLI commands which check actions with volume create command like create volume without arguments or with incorrect arguments and check that correct error message raised. Partial-Bug: #1602592 Change-Id: Ic51842aeb50758171751ecb9bf162add187f963e --- .../functional/test_volume_create_cli.py | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 cinderclient/tests/functional/test_volume_create_cli.py diff --git a/cinderclient/tests/functional/test_volume_create_cli.py b/cinderclient/tests/functional/test_volume_create_cli.py new file mode 100644 index 000000000..8c7ed71ee --- /dev/null +++ b/cinderclient/tests/functional/test_volume_create_cli.py @@ -0,0 +1,38 @@ +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + +import six +import ddt + +from tempest.lib import exceptions + +from cinderclient.tests.functional import base + + +@ddt.ddt +class CinderVolumeNegativeTests(base.ClientTestBase): + """Check of cinder volume create commands.""" + + @ddt.data( + ('', (r'Size is a required parameter')), + ('-1', (r'Invalid volume size provided for create request')), + ('0', (r'Invalid input received')), + ('size', (r'invalid int value')), + ('0.2', (r'invalid int value')), + ('2 GB', (r'unrecognized arguments')), + ('999999999', (r'VolumeSizeExceedsAvailableQuota')), + ) + @ddt.unpack + def test_volume_create_with_incorrect_size(self, value, ex_text): + + six.assertRaisesRegex(self, exceptions.CommandFailed, ex_text, + self.object_create, 'volume', params=value)