Merge "Reset the policy after loading extensions"
This commit is contained in:
commit
5388e8b974
@ -32,6 +32,7 @@ from neutron.common import exceptions
|
|||||||
import neutron.extensions
|
import neutron.extensions
|
||||||
from neutron.manager import NeutronManager
|
from neutron.manager import NeutronManager
|
||||||
from neutron.openstack.common import log as logging
|
from neutron.openstack.common import log as logging
|
||||||
|
from neutron import policy
|
||||||
from neutron import wsgi
|
from neutron import wsgi
|
||||||
|
|
||||||
|
|
||||||
@ -401,6 +402,7 @@ class ExtensionManager(object):
|
|||||||
self.path = path
|
self.path = path
|
||||||
self.extensions = {}
|
self.extensions = {}
|
||||||
self._load_all_extensions()
|
self._load_all_extensions()
|
||||||
|
policy.reset()
|
||||||
|
|
||||||
def get_resources(self):
|
def get_resources(self):
|
||||||
"""Returns a list of ResourceExtension objects."""
|
"""Returns a list of ResourceExtension objects."""
|
||||||
|
@ -36,6 +36,7 @@ from neutron.manager import NeutronManager
|
|||||||
from neutron.openstack.common.notifier import api as notifer_api
|
from neutron.openstack.common.notifier import api as notifer_api
|
||||||
from neutron.openstack.common import policy as common_policy
|
from neutron.openstack.common import policy as common_policy
|
||||||
from neutron.openstack.common import uuidutils
|
from neutron.openstack.common import uuidutils
|
||||||
|
from neutron import policy
|
||||||
from neutron import quota
|
from neutron import quota
|
||||||
from neutron.tests import base
|
from neutron.tests import base
|
||||||
from neutron.tests.unit import testlib_api
|
from neutron.tests.unit import testlib_api
|
||||||
@ -1058,6 +1059,7 @@ class JSONV2TestCase(APIv2TestBase, testlib_api.WebTestCase):
|
|||||||
def test_get_keystone_strip_admin_only_attribute(self):
|
def test_get_keystone_strip_admin_only_attribute(self):
|
||||||
tenant_id = _uuid()
|
tenant_id = _uuid()
|
||||||
# Inject rule in policy engine
|
# Inject rule in policy engine
|
||||||
|
policy.init()
|
||||||
common_policy._rules['get_network:name'] = common_policy.parse_rule(
|
common_policy._rules['get_network:name'] = common_policy.parse_rule(
|
||||||
"rule:admin_only")
|
"rule:admin_only")
|
||||||
res = self._test_get(tenant_id, tenant_id, 200)
|
res = self._test_get(tenant_id, tenant_id, 200)
|
||||||
|
Loading…
Reference in New Issue
Block a user