
Since we've dropped support for Python 2.7, it's time to look at the bright future that Python 3.x will bring and stop forcing compatibility with older versions. This patch removes the six library from requirements, not looking back. Change-Id: Ib546f16965475c32b2f8caabd560e2c7d382ac5a
131 lines
5.3 KiB
Python
131 lines
5.3 KiB
Python
# Copyright 2013 Hewlett-Packard Development Company, L.P.
|
|
# All Rights Reserved.
|
|
#
|
|
# 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.
|
|
|
|
"""Tests for manipulating Ports via the DB API"""
|
|
|
|
from oslo_utils import uuidutils
|
|
|
|
from ironic.common import exception
|
|
from ironic.tests.unit.db import base
|
|
from ironic.tests.unit.db import utils as db_utils
|
|
|
|
|
|
class DbPortTestCase(base.DbTestCase):
|
|
|
|
def setUp(self):
|
|
# This method creates a port for every test and
|
|
# replaces a test for creating a port.
|
|
super(DbPortTestCase, self).setUp()
|
|
self.node = db_utils.create_test_node()
|
|
self.portgroup = db_utils.create_test_portgroup(node_id=self.node.id)
|
|
self.port = db_utils.create_test_port(node_id=self.node.id,
|
|
portgroup_id=self.portgroup.id)
|
|
|
|
def test_get_port_by_id(self):
|
|
res = self.dbapi.get_port_by_id(self.port.id)
|
|
self.assertEqual(self.port.address, res.address)
|
|
|
|
def test_get_port_by_uuid(self):
|
|
res = self.dbapi.get_port_by_uuid(self.port.uuid)
|
|
self.assertEqual(self.port.id, res.id)
|
|
|
|
def test_get_port_by_address(self):
|
|
res = self.dbapi.get_port_by_address(self.port.address)
|
|
self.assertEqual(self.port.id, res.id)
|
|
|
|
def test_get_port_list(self):
|
|
uuids = []
|
|
for i in range(1, 6):
|
|
port = db_utils.create_test_port(uuid=uuidutils.generate_uuid(),
|
|
address='52:54:00:cf:2d:4%s' % i)
|
|
uuids.append(str(port.uuid))
|
|
# Also add the uuid for the port created in setUp()
|
|
uuids.append(str(self.port.uuid))
|
|
res = self.dbapi.get_port_list()
|
|
res_uuids = [r.uuid for r in res]
|
|
self.assertCountEqual(uuids, res_uuids)
|
|
|
|
def test_get_port_list_sorted(self):
|
|
uuids = []
|
|
for i in range(1, 6):
|
|
port = db_utils.create_test_port(uuid=uuidutils.generate_uuid(),
|
|
address='52:54:00:cf:2d:4%s' % i)
|
|
uuids.append(str(port.uuid))
|
|
# Also add the uuid for the port created in setUp()
|
|
uuids.append(str(self.port.uuid))
|
|
res = self.dbapi.get_port_list(sort_key='uuid')
|
|
res_uuids = [r.uuid for r in res]
|
|
self.assertEqual(sorted(uuids), res_uuids)
|
|
|
|
self.assertRaises(exception.InvalidParameterValue,
|
|
self.dbapi.get_port_list, sort_key='foo')
|
|
|
|
def test_get_ports_by_node_id(self):
|
|
res = self.dbapi.get_ports_by_node_id(self.node.id)
|
|
self.assertEqual(self.port.address, res[0].address)
|
|
|
|
def test_get_ports_by_node_id_that_does_not_exist(self):
|
|
self.assertEqual([], self.dbapi.get_ports_by_node_id(99))
|
|
|
|
def test_get_ports_by_portgroup_id(self):
|
|
res = self.dbapi.get_ports_by_portgroup_id(self.portgroup.id)
|
|
self.assertEqual(self.port.address, res[0].address)
|
|
|
|
def test_get_ports_by_portgroup_id_that_does_not_exist(self):
|
|
self.assertEqual([], self.dbapi.get_ports_by_portgroup_id(99))
|
|
|
|
def test_destroy_port(self):
|
|
self.dbapi.destroy_port(self.port.id)
|
|
self.assertRaises(exception.PortNotFound,
|
|
self.dbapi.destroy_port, self.port.id)
|
|
|
|
def test_update_port(self):
|
|
old_address = self.port.address
|
|
new_address = 'ff.ee.dd.cc.bb.aa'
|
|
|
|
self.assertNotEqual(old_address, new_address)
|
|
|
|
res = self.dbapi.update_port(self.port.id, {'address': new_address})
|
|
self.assertEqual(new_address, res.address)
|
|
|
|
def test_update_port_uuid(self):
|
|
self.assertRaises(exception.InvalidParameterValue,
|
|
self.dbapi.update_port, self.port.id,
|
|
{'uuid': ''})
|
|
|
|
def test_update_port_duplicated_address(self):
|
|
address1 = self.port.address
|
|
address2 = 'aa-bb-cc-11-22-33'
|
|
port2 = db_utils.create_test_port(uuid=uuidutils.generate_uuid(),
|
|
node_id=self.node.id,
|
|
address=address2)
|
|
self.assertRaises(exception.MACAlreadyExists,
|
|
self.dbapi.update_port, port2.id,
|
|
{'address': address1})
|
|
|
|
def test_create_port_duplicated_address(self):
|
|
self.assertRaises(exception.MACAlreadyExists,
|
|
db_utils.create_test_port,
|
|
uuid=uuidutils.generate_uuid(),
|
|
node_id=self.node.id,
|
|
address=self.port.address)
|
|
|
|
def test_create_port_duplicated_uuid(self):
|
|
self.assertRaises(exception.PortAlreadyExists,
|
|
db_utils.create_test_port,
|
|
uuid=self.port.uuid,
|
|
node_id=self.node.id,
|
|
address='aa-bb-cc-33-11-22')
|