cinder/cinder/tests/functional/api_sample_tests/test_volume_manage_extensio...

37 lines
1.4 KiB
Python

# 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.
from cinder.tests.functional.api_sample_tests import fakes
from cinder.tests.functional import api_samples_test_base
FAKE_HOST = 'hostname@backend'
class VolumeActionsSampleJsonTest(api_samples_test_base.ApiSampleTestBase):
sample_dir = "volume_manage_extensions"
def setUp(self):
super(VolumeActionsSampleJsonTest, self).setUp()
self.subs = {
'host': FAKE_HOST
}
self.stub_out("cinder.api.contrib.volume_manage."
"VolumeManageController.create",
fakes.stub_manage_existing)
def test_manage_existing(self):
response = self._do_post('os-volume-manage',
'volume-manage-request',
subs=self.subs)
self._verify_response('volume-manage-response',
{}, response, 202)