"Fossies" - the Fresh Open Source Software Archive 
Member "zun-7.0.0/zun/tests/policy_fixture.py" (14 Apr 2021, 1123 Bytes) of package /linux/misc/openstack/zun-7.0.0.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Python source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
See also the latest
Fossies "Diffs" side-by-side code changes report for "policy_fixture.py":
6.0.0_vs_7.0.0.
1 # Licensed under the Apache License, Version 2.0 (the "License"); you may
2 # not use this file except in compliance with the License. You may obtain
3 # a copy of the License at
4 #
5 # http://www.apache.org/licenses/LICENSE-2.0
6 #
7 # Unless required by applicable law or agreed to in writing, software
8 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
9 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
10 # License for the specific language governing permissions and limitations
11 # under the License.
12
13 import fixtures
14 from oslo_policy import _parser
15 from oslo_policy import opts as policy_opts
16
17 from zun.common import policy as zun_policy
18 import zun.conf
19
20
21 CONF = zun.conf.CONF
22
23
24 class PolicyFixture(fixtures.Fixture):
25
26 def _setUp(self):
27 CONF(args=[], project='zun')
28 policy_opts.set_defaults(CONF)
29 zun_policy._ENFORCER = None
30 self.addCleanup(zun_policy.init().clear)
31
32 def set_rules(self, rules):
33 policy = zun_policy._ENFORCER
34 policy.set_rules({k: _parser.parse_rule(v)
35 for k, v in rules.items()})