1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
# 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 unittest import mock
from oslo_config import cfg
from oslo_db.sqlalchemy import models
import sqlalchemy as sa
from sqlalchemy import orm
from neutron_lib.api import attributes
from neutron_lib import context
from neutron_lib.db import utils
from neutron_lib import exceptions as n_exc
from neutron_lib.tests import _base as base
class ModelBaseV2(orm.DeclarativeBase, models.ModelBase):
pass
class FakePort(ModelBaseV2):
__tablename__ = 'fakeports'
port_id = sa.Column(sa.String(36), primary_key=True)
name = sa.Column(sa.String(64))
status = sa.Column(sa.String(16), nullable=False)
class FakeRouter(ModelBaseV2):
__tablename__ = 'fakerouters'
router_id = sa.Column(sa.String(36), primary_key=True)
gw_port_id = sa.Column(sa.String(36), sa.ForeignKey(FakePort.port_id))
gw_port = orm.relationship(FakePort, lazy='joined')
class TestUtilsLegacyPolicies(base.BaseTestCase):
def setUp(self):
cfg.CONF.set_override('enforce_scope', False, group='oslo_policy')
super().setUp()
def test_get_sort_dirs(self):
sorts = [(1, True), (2, False), (3, True)]
self.assertEqual(['asc', 'desc', 'asc'],
utils.get_sort_dirs(sorts))
def test_get_sort_dirs_reversed(self):
sorts = [(1, True), (2, False), (3, True)]
self.assertEqual(['desc', 'asc', 'desc'],
utils.get_sort_dirs(sorts, page_reverse=True))
def test_get_and_validate_sort_keys(self):
sorts = [('name', False), ('status', True)]
self.assertEqual(['name', 'status'],
utils.get_and_validate_sort_keys(sorts, FakePort))
def test_get_and_validate_sort_keys_bad_key_fails(self):
sorts = [('master', True)]
self.assertRaises(n_exc.BadRequest,
utils.get_and_validate_sort_keys, sorts, FakePort)
def test_get_and_validate_sort_keys_by_relationship_fails(self):
sorts = [('gw_port', True)]
self.assertRaises(n_exc.BadRequest,
utils.get_and_validate_sort_keys, sorts, FakeRouter)
def test_get_marker_obj(self):
plugin = mock.Mock()
plugin._get_myr.return_value = 'obj'
obj = utils.get_marker_obj(plugin, 'ctx', 'myr', 10, mock.ANY)
self.assertEqual('obj', obj)
plugin._get_myr.assert_called_once_with('ctx', mock.ANY)
def test_get_marker_obj_no_limit_and_marker(self):
self.assertIsNone(utils.get_marker_obj(
mock.Mock(), 'ctx', 'myr', 0, mock.ANY))
self.assertIsNone(utils.get_marker_obj(
mock.Mock(), 'ctx', 'myr', 10, None))
@mock.patch.object(attributes, 'populate_project_info')
def test_resource_fields(self, mock_populate):
r = {
'name': 'n',
'id': '1',
'desc': None
}
utils.resource_fields(r, ['name'])
mock_populate.assert_called_once_with({'name': 'n'})
def test_model_query_scope_is_project_admin(self):
ctx = context.Context(
project_id='some project',
is_admin=True,
is_advsvc=False)
model = mock.Mock(project_id='project')
self.assertFalse(
utils.model_query_scope_is_project(ctx, model))
# Ensure that project_id isn't mocked
del model.project_id
self.assertFalse(
utils.model_query_scope_is_project(ctx, model))
def test_model_query_scope_is_project_advsvc(self):
ctx = context.Context(
project_id='some project',
is_admin=False,
is_advsvc=True)
model = mock.Mock(project_id='project')
self.assertFalse(
utils.model_query_scope_is_project(ctx, model))
# Ensure that project_id isn't mocked
del model.project_id
self.assertFalse(
utils.model_query_scope_is_project(ctx, model))
def test_model_query_scope_is_project_service_role(self):
ctx = context.Context(
project_id='some project',
is_admin=False,
roles=['service'])
model = mock.Mock(project_id='project')
self.assertFalse(
utils.model_query_scope_is_project(ctx, model))
# Ensure that project_id isn't mocked
del model.project_id
self.assertFalse(
utils.model_query_scope_is_project(ctx, model))
def test_model_query_scope_is_project_regular_user(self):
ctx = context.Context(
project_id='some project',
is_admin=False,
is_advsvc=False)
model = mock.Mock(project_id='project')
self.assertTrue(
utils.model_query_scope_is_project(ctx, model))
# Ensure that project_id isn't mocked
del model.project_id
self.assertFalse(
utils.model_query_scope_is_project(ctx, model))
def test_model_query_scope_is_project_system_scope(self):
ctx = context.Context(system_scope='all')
model = mock.Mock(project_id='project')
self.assertTrue(
utils.model_query_scope_is_project(ctx, model))
# Ensure that project_id isn't mocked
del model.project_id
self.assertFalse(
utils.model_query_scope_is_project(ctx, model))
class TestUtilsWithScopeEnforcement(TestUtilsLegacyPolicies):
def setUp(self):
super().setUp()
cfg.CONF.set_override('enforce_scope', True, group='oslo_policy')
|