/usr/lib/python2.6/site-packages/novaclient/tests/unit/v2
NameSizeModeActions
contrib/-0755rm
fakes.py855770644editdlrm
fakes.pyc899350644editdlrm
testfile.txt50644editdlrm
test_agents.py39940644editdlrm
test_agents.pyc40190644editdlrm
test_aggregates.py57570644editdlrm
test_aggregates.pyc57000644editdlrm
test_auth.py142960644editdlrm
test_auth.pyc130670644editdlrm
test_availability_zone.py39130644editdlrm
test_availability_zone.pyc41270644editdlrm
test_certs.py13800644editdlrm
test_certs.pyc15490644editdlrm
test_client.py15340644editdlrm
test_client.pyc14920644editdlrm
test_cloudpipe.py17570644editdlrm
test_cloudpipe.pyc20760644editdlrm
test_fixed_ips.py17850644editdlrm
test_fixed_ips.pyc20830644editdlrm
test_flavors.py89190644editdlrm
test_flavors.pyc109880644editdlrm
test_flavor_access.py23810644editdlrm
test_flavor_access.pyc28280644editdlrm
test_floating_ips.py22750644editdlrm
test_floating_ips.pyc27200644editdlrm
test_floating_ips_bulk.py30940644editdlrm
test_floating_ips_bulk.pyc34660644editdlrm
test_floating_ip_dns.py35290644editdlrm
test_floating_ip_dns.pyc43130644editdlrm
test_floating_ip_pools.py12370644editdlrm
test_floating_ip_pools.pyc12300644editdlrm
test_fping.py22420644editdlrm
test_fping.pyc30200644editdlrm
test_hosts.py31440644editdlrm
test_hosts.pyc44450644editdlrm
test_hypervisors.py61710644editdlrm
test_hypervisors.pyc59140644editdlrm
test_images.py25510644editdlrm
test_images.pyc37130644editdlrm
test_keypairs.py39410644editdlrm
test_keypairs.pyc53570644editdlrm
test_limits.py31600644editdlrm
test_limits.pyc30660644editdlrm
test_networks.py40360644editdlrm
test_networks.pyc52570644editdlrm
test_quotas.py22920644editdlrm
test_quotas.pyc28760644editdlrm
test_quota_classes.py14210644editdlrm
test_quota_classes.pyc17130644editdlrm
test_security_groups.py31350644editdlrm
test_security_groups.pyc41160644editdlrm
test_security_group_rules.py35730644editdlrm
test_security_group_rules.pyc36530644editdlrm
test_servers.py310140644editdlrm
test_servers.pyc367560644editdlrm
test_server_groups.py27690644editdlrm
test_server_groups.pyc32400644editdlrm
test_server_migrations.py34330644editdlrm
test_server_migrations.pyc47070644editdlrm
test_services.py51260644editdlrm
test_services.pyc66430644editdlrm
test_shell.py1108870644editdlrm
test_shell.pyc1379010644editdlrm
test_usage.py19030644editdlrm
test_usage.pyc25780644editdlrm
test_versions.py36490644editdlrm
test_versions.pyc37700644editdlrm
test_volumes.py40210644editdlrm
test_volumes.pyc51360644editdlrm
__init__.py00644editdlrm
__init__.pyc1630644editdlrm
Edit: /usr/lib/python2.6/site-packages/novaclient/tests/unit/v2/test_networks.py (4036B)
# # 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 novaclient.tests.unit.fixture_data import client from novaclient.tests.unit.fixture_data import networks as data from novaclient.tests.unit import utils from novaclient.v2 import networks class NetworksTest(utils.FixturedTestCase): client_fixture_class = client.V1 data_fixture_class = data.Fixture def test_list_networks(self): fl = self.cs.networks.list() self.assert_called('GET', '/os-networks') for f in fl: self.assertIsInstance(f, networks.Network) def test_get_network(self): f = self.cs.networks.get(1) self.assert_called('GET', '/os-networks/1') self.assertIsInstance(f, networks.Network) def test_delete(self): self.cs.networks.delete('networkdelete') self.assert_called('DELETE', '/os-networks/networkdelete') def test_create(self): f = self.cs.networks.create(label='foo') self.assert_called('POST', '/os-networks', {'network': {'label': 'foo'}}) self.assertIsInstance(f, networks.Network) def test_create_allparams(self): params = { 'label': 'bar', 'bridge': 'br0', 'bridge_interface': 'int0', 'cidr': '192.0.2.0/24', 'cidr_v6': '2001:DB8::/32', 'dns1': '1.1.1.1', 'dns2': '1.1.1.2', 'fixed_cidr': '198.51.100.0/24', 'gateway': '192.0.2.1', 'gateway_v6': '2001:DB8::1', 'multi_host': 'T', 'priority': '1', 'project_id': '1', 'vlan': 5, 'vlan_start': 1, 'vpn_start': 1, 'mtu': 1500, 'enable_dhcp': 'T', 'dhcp_server': '1920.2.2', 'share_address': 'T', 'allowed_start': '192.0.2.10', 'allowed_end': '192.0.2.20', } f = self.cs.networks.create(**params) self.assert_called('POST', '/os-networks', {'network': params}) self.assertIsInstance(f, networks.Network) def test_associate_project(self): self.cs.networks.associate_project('networktest') self.assert_called('POST', '/os-networks/add', {'id': 'networktest'}) def test_associate_host(self): self.cs.networks.associate_host('networktest', 'testHost') self.assert_called('POST', '/os-networks/networktest/action', {'associate_host': 'testHost'}) def test_disassociate(self): self.cs.networks.disassociate('networkdisassociate') self.assert_called('POST', '/os-networks/networkdisassociate/action', {'disassociate': None}) def test_disassociate_host_only(self): self.cs.networks.disassociate('networkdisassociate', True, False) self.assert_called('POST', '/os-networks/networkdisassociate/action', {'disassociate_host': None}) def test_disassociate_project(self): self.cs.networks.disassociate('networkdisassociate', False, True) self.assert_called('POST', '/os-networks/networkdisassociate/action', {'disassociate_project': None}) def test_add(self): self.cs.networks.add('networkadd') self.assert_called('POST', '/os-networks/add', {'id': 'networkadd'})