3290b8343c
* Remove sanity check errors. * More linting. * Forgot to update places. * Remove choices which aren't provided in argspec.
22 lines
770 B
Python
22 lines
770 B
Python
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import unittest
|
|
|
|
from ansible.modules.cloud.docker.docker_container import TaskParameters
|
|
|
|
|
|
class TestTaskParameters(unittest.TestCase):
|
|
"""Unit tests for TaskParameters."""
|
|
|
|
def test_parse_exposed_ports_tcp_udp(self):
|
|
"""
|
|
Ensure _parse_exposed_ports does not cancel ports with the same
|
|
number but different protocol.
|
|
"""
|
|
task_params = TaskParameters.__new__(TaskParameters)
|
|
task_params.exposed_ports = None
|
|
result = task_params._parse_exposed_ports([80, '443', '443/udp'])
|
|
self.assertTrue((80, 'tcp') in result)
|
|
self.assertTrue((443, 'tcp') in result)
|
|
self.assertTrue((443, 'udp') in result)
|