/usr/lib/python2.6/site-packages/openstack/tests/unit/compute/v2
NameSizeModeActions
test_availability_zone.py14990644editdlrm
test_availability_zone.pyc16570644editdlrm
test_extension.py19320644editdlrm
test_extension.pyc20580644editdlrm
test_flavor.py28230644editdlrm
test_flavor.pyc27680644editdlrm
test_hypervisor.py14400644editdlrm
test_hypervisor.pyc15960644editdlrm
test_image.py32870644editdlrm
test_image.pyc33650644editdlrm
test_keypair.py15400644editdlrm
test_keypair.pyc16240644editdlrm
test_limits.py57320644editdlrm
test_limits.pyc54550644editdlrm
test_metadata.py31240644editdlrm
test_metadata.pyc31370644editdlrm
test_proxy.py152130644editdlrm
test_proxy.pyc195210644editdlrm
test_server.py99380644editdlrm
test_server.pyc102020644editdlrm
test_server_group.py16960644editdlrm
test_server_group.pyc18400644editdlrm
test_server_interface.py20220644editdlrm
test_server_interface.pyc20740644editdlrm
test_server_ip.py40600644editdlrm
test_server_ip.pyc35980644editdlrm
__init__.py00644editdlrm
__init__.pyc1650644editdlrm
Edit: /usr/lib/python2.6/site-packages/openstack/tests/unit/compute/v2/test_server_group.py (1696B)
# 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 testtools from openstack.compute.v2 import server_group EXAMPLE = { 'id': 'IDENTIFIER', 'name': 'test', 'members': ['server1', 'server2'], 'metadata': {'k': 'v'}, 'policies': ['anti-affinity'], } class TestServerGroup(testtools.TestCase): def test_basic(self): sot = server_group.ServerGroup() self.assertEqual('server_group', sot.resource_key) self.assertEqual('server_groups', sot.resources_key) self.assertEqual('/os-server-groups', sot.base_path) self.assertEqual('compute', sot.service.service_type) self.assertTrue(sot.allow_create) self.assertTrue(sot.allow_retrieve) self.assertFalse(sot.allow_update) self.assertTrue(sot.allow_delete) self.assertTrue(sot.allow_list) def test_make_it(self): sot = server_group.ServerGroup(EXAMPLE) self.assertEqual(EXAMPLE['id'], sot.id) self.assertEqual(EXAMPLE['name'], sot.name) self.assertEqual(EXAMPLE['members'], sot.member_ids) self.assertEqual(EXAMPLE['metadata'], sot.metadata) self.assertEqual(EXAMPLE['policies'], sot.policies)