/usr/lib/python2.6/site-packages/keystoneauth1/tests/unit/loading
NameSizeModeActions
test_cli.py73530644editdlrm
test_cli.pyc83370644editdlrm
test_conf.py79220644editdlrm
test_conf.pyc73120644editdlrm
test_generic.py20070644editdlrm
test_generic.pyc20400644editdlrm
test_loading.py16390644editdlrm
test_loading.pyc18860644editdlrm
test_session.py35720644editdlrm
test_session.pyc55080644editdlrm
test_v3.py24330644editdlrm
test_v3.pyc25480644editdlrm
utils.py29310644editdlrm
utils.pyc57060644editdlrm
__init__.py00644editdlrm
__init__.pyc1670644editdlrm
Edit: /usr/lib/python2.6/site-packages/keystoneauth1/tests/unit/loading/test_loading.py (1639B)
# 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 uuid from testtools import matchers from keystoneauth1 import exceptions from keystoneauth1 import loading from keystoneauth1.tests.unit.loading import utils class LoadingTests(utils.TestCase): def test_required_values(self): opts = [loading.Opt('a', required=False), loading.Opt('b', required=True)] Plugin, Loader = utils.create_plugin(opts=opts) l = Loader() v = uuid.uuid4().hex p1 = l.load_from_options(b=v) self.assertEqual(v, p1['b']) e = self.assertRaises(exceptions.MissingRequiredOptions, l.load_from_options, a=v) self.assertEqual(1, len(e.options)) for o in e.options: self.assertIsInstance(o, loading.Opt) self.assertEqual('b', e.options[0].name) def test_loaders(self): loaders = loading.get_available_plugin_loaders() self.assertThat(len(loaders), matchers.GreaterThan(0)) for l in loaders.values(): self.assertIsInstance(l, loading.BaseLoader)