Merge "Return updated volume type after updating"

This commit is contained in:
Jenkins 2016-02-11 06:34:46 +00:00 committed by Gerrit Code Review
commit 3237994972
2 changed files with 45 additions and 2 deletions

View File

@ -2458,9 +2458,8 @@ def volume_type_update(context, volume_type_id, values):
volume_type_ref.update(values)
volume_type_ref.save(session=session)
volume_type = volume_type_get(context, volume_type_id)
return volume_type
return volume_type_ref
@require_context

View File

@ -0,0 +1,44 @@
# Copyright 2016 Intel Corp.
#
# 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.
"""Tests for volume type."""
from oslo_config import cfg
from cinder import context
from cinder import db
from cinder import test
from cinder.volume import volume_types
CONF = cfg.CONF
class VolumeTypeTestCase(test.TestCase):
"""Test cases for volume type."""
def setUp(self):
super(VolumeTypeTestCase, self).setUp()
self.ctxt = context.RequestContext(user_id='user_id',
project_id='project_id',
is_admin = True)
def test_volume_type_update(self):
vol_type_ref = volume_types.create(self.ctxt, 'fake volume type')
updates = dict(name = 'test_volume_type_update',
description = None,
is_public = None)
updated_vol_type = db.volume_type_update(
self.ctxt, vol_type_ref.id, updates)
self.assertEqual('test_volume_type_update', updated_vol_type.name)
volume_types.destroy(self.ctxt, vol_type_ref.id)