/opt/imh-python/lib/python3.9/site-packages/openstack/tests/unit
NameSizeModeActions
accelerator/-0755rm
baremetal/-0755rm
baremetal_introspection/-0755rm
block_storage/-0755rm
cloud/-0755rm
clustering/-0755rm
compute/-0755rm
config/-0755rm
database/-0755rm
dns/-0755rm
fake/-0755rm
fixtures/-0755rm
identity/-0755rm
image/-0755rm
instance_ha/-0755rm
key_manager/-0755rm
load_balancer/-0755rm
message/-0755rm
network/-0755rm
object_store/-0755rm
orchestration/-0755rm
workflow/-0755rm
__pycache__/-0755rm
base.py329540644editdlrm
fakes.py12730644editdlrm
test_connection.py174500644editdlrm
test_exceptions.py78850644editdlrm
test_format.py17680644editdlrm
test_hacking.py27290644editdlrm
test_microversions.py37550644editdlrm
test_missing_version.py15570644editdlrm
test_placement_rest.py37180644editdlrm
test_proxy.py229800644editdlrm
test_proxy_base.py119820644editdlrm
test_proxy_base2.py108830644editdlrm
test_resource.py1079680644editdlrm
test_stats.py92480644editdlrm
test_utils.py84640644editdlrm
__init__.py00644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/openstack/tests/unit/test_format.py (1768B)
# 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 openstack.tests.unit import base from openstack import format class TestBoolStrFormatter(base.TestCase): def test_deserialize(self): self.assertTrue(format.BoolStr.deserialize(True)) self.assertTrue(format.BoolStr.deserialize('True')) self.assertTrue(format.BoolStr.deserialize('TRUE')) self.assertTrue(format.BoolStr.deserialize('true')) self.assertFalse(format.BoolStr.deserialize(False)) self.assertFalse(format.BoolStr.deserialize('False')) self.assertFalse(format.BoolStr.deserialize('FALSE')) self.assertFalse(format.BoolStr.deserialize('false')) self.assertRaises(ValueError, format.BoolStr.deserialize, None) self.assertRaises(ValueError, format.BoolStr.deserialize, '') self.assertRaises(ValueError, format.BoolStr.deserialize, 'INVALID') def test_serialize(self): self.assertEqual('true', format.BoolStr.serialize(True)) self.assertEqual('false', format.BoolStr.serialize(False)) self.assertRaises(ValueError, format.BoolStr.serialize, None) self.assertRaises(ValueError, format.BoolStr.serialize, '') self.assertRaises(ValueError, format.BoolStr.serialize, 'True')