
Currently, form of share type extra specs update does not allow several valid cases for set/unset operations. So, fix them and cover with unit tests. Change-Id: I446a7226a3154f7d475115560fe343142311973b Closes-Bug: #1481903
51 lines
1.5 KiB
Python
51 lines
1.5 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.
|
|
|
|
import os
|
|
|
|
from django.utils import unittest
|
|
import mock
|
|
|
|
from manila_ui import api
|
|
from manila_ui.test.test_data import utils
|
|
from openstack_dashboard.test import helpers
|
|
|
|
|
|
def create_stubs(stubs_to_create={}):
|
|
return helpers.create_stubs(stubs_to_create)
|
|
|
|
|
|
class ManilaTestsMixin(object):
|
|
def _setup_test_data(self):
|
|
super(ManilaTestsMixin, self)._setup_test_data()
|
|
utils.load_test_data(self)
|
|
|
|
|
|
@unittest.skipIf(os.environ.get('SKIP_UNITTESTS', False),
|
|
"The SKIP_UNITTESTS env variable is set.")
|
|
class TestCase(ManilaTestsMixin, helpers.TestCase):
|
|
pass
|
|
|
|
|
|
class BaseAdminViewTests(ManilaTestsMixin, helpers.BaseAdminViewTests):
|
|
pass
|
|
|
|
|
|
class APITestCase(ManilaTestsMixin, helpers.APITestCase):
|
|
|
|
def setUp(self):
|
|
super(APITestCase, self).setUp()
|
|
self.manilaclient = mock.Mock()
|
|
self._original_manilaclient = api.manila.manilaclient
|
|
api.manila.manilaclient = lambda request: self.manilaclient
|