40e433469d
some of tests use different method of assertTrue(isinstance(A, B)) or assertEqual(type(A), B). The correct way is to use assertIsInstance(A, B) provided by testtools Closes-Bug: #1268480 Change-Id: Ie3b3e49ea3cc4357a65605ad54ff4ee1fbde12c7
99 lines
3.5 KiB
Python
99 lines
3.5 KiB
Python
#
|
|
# 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 import utils
|
|
from novaclient.tests.v1_1 import fakes
|
|
from novaclient.v1_1 import networks
|
|
|
|
|
|
cs = fakes.FakeClient()
|
|
|
|
|
|
class NetworksTest(utils.TestCase):
|
|
|
|
def test_list_networks(self):
|
|
fl = cs.networks.list()
|
|
cs.assert_called('GET', '/os-networks')
|
|
[self.assertIsInstance(f, networks.Network) for f in fl]
|
|
|
|
def test_get_network(self):
|
|
f = cs.networks.get(1)
|
|
cs.assert_called('GET', '/os-networks/1')
|
|
self.assertIsInstance(f, networks.Network)
|
|
|
|
def test_delete(self):
|
|
cs.networks.delete('networkdelete')
|
|
cs.assert_called('DELETE', '/os-networks/networkdelete')
|
|
|
|
def test_create(self):
|
|
f = cs.networks.create(label='foo')
|
|
cs.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_start': 1,
|
|
'vpn_start': 1
|
|
}
|
|
|
|
f = cs.networks.create(**params)
|
|
cs.assert_called('POST', '/os-networks', {'network': params})
|
|
self.assertIsInstance(f, networks.Network)
|
|
|
|
def test_associate_project(self):
|
|
cs.networks.associate_project('networktest')
|
|
cs.assert_called('POST', '/os-networks/add',
|
|
{'id': 'networktest'})
|
|
|
|
def test_associate_host(self):
|
|
cs.networks.associate_host('networktest', 'testHost')
|
|
cs.assert_called('POST', '/os-networks/networktest/action',
|
|
{'associate_host': 'testHost'})
|
|
|
|
def test_disassociate(self):
|
|
cs.networks.disassociate('networkdisassociate')
|
|
cs.assert_called('POST',
|
|
'/os-networks/networkdisassociate/action',
|
|
{'disassociate': None})
|
|
|
|
def test_disassociate_host_only(self):
|
|
cs.networks.disassociate('networkdisassociate', True, False)
|
|
cs.assert_called('POST',
|
|
'/os-networks/networkdisassociate/action',
|
|
{'disassociate_host': None})
|
|
|
|
def test_disassociate_project(self):
|
|
cs.networks.disassociate('networkdisassociate', False, True)
|
|
cs.assert_called('POST',
|
|
'/os-networks/networkdisassociate/action',
|
|
{'disassociate_project': None})
|
|
|
|
def test_add(self):
|
|
cs.networks.add('networkadd')
|
|
cs.assert_called('POST', '/os-networks/add',
|
|
{'id': 'networkadd'})
|