manila-ui/manila_ui/test/api/test_manila.py
Igor Malinovskiy 8fe95c64e8 Add extend support to manila-ui
Add possibility to extend the size of a share through
the standard UI panels.

Depends-On: I1fadd514de4d9ae000cf0921262edd2bb111f5c5
Change-Id: Idc3903f0cac54fabbfed2f43e908e2f8b8c8f3d9
2015-08-03 10:37:12 +03:00

31 lines
1.0 KiB
Python

# Copyright (c) 2015 Mirantis, Inc.
# All Rights Reserved.
#
# 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 manila_ui.api import manila as api
from manila_ui.test import helpers as base
class ManilaApiTests(base.APITestCase):
def test_share_extend(self):
fake_share_id = "fake_id"
new_size = "123"
api.share_extend(self.request, fake_share_id, new_size)
self.manilaclient.shares.extend.assert_called_once_with(
fake_share_id, new_size
)