bf1fc58e5d
Since commit[1] had renamed kuryr utils to kuryr-libnetwork utils, but there are some duplicate codes between lib and libnetwork repo. [1] https://review.openstack.org/#/c/337350 Change-Id: I3dbf737b2a3e23b91a756cc5ff39ff7bbf5a818c Closes-Bug: #1618012
38 lines
1.4 KiB
Python
38 lines
1.4 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.
|
|
|
|
|
|
import ddt
|
|
|
|
from kuryr.lib import utils as lib_utils
|
|
from kuryr_libnetwork.tests.unit import base
|
|
from kuryr_libnetwork import utils
|
|
|
|
|
|
@ddt.ddt
|
|
class TestKuryrUtils(base.TestKuryrBase):
|
|
"""Unit tests for utilities."""
|
|
|
|
@ddt.data(lib_utils.get_hash(), '51c75a2515d4' '51c75a')
|
|
def test_get_sandbox_key(self, fake_container_id):
|
|
sandbox_key = utils.get_sandbox_key(fake_container_id)
|
|
expected = '/'.join([lib_utils.DOCKER_NETNS_BASE,
|
|
fake_container_id[:12]])
|
|
self.assertEqual(expected, sandbox_key)
|
|
|
|
def test_get_port_name(self):
|
|
fake_docker_endpoint_id = lib_utils.get_hash()
|
|
generated_neutron_port_name = utils.get_neutron_port_name(
|
|
fake_docker_endpoint_id)
|
|
self.assertIn(lib_utils.PORT_POSTFIX, generated_neutron_port_name)
|
|
self.assertIn(fake_docker_endpoint_id, generated_neutron_port_name)
|