diff options
author | Duda Dornelles <ddornell@thoughtworks.com> | 2014-12-04 17:09:58 -0200 |
---|---|---|
committer | Duda Dornelles <ddornell@thoughtworks.com> | 2014-12-04 17:10:57 -0200 |
commit | 796cdf7cfcf5a010503531ccce02de9192e1d9e1 (patch) | |
tree | 453daa758379a1edd608834c42ba319c1dd17141 /service/test/unit/config | |
parent | bc51867f1cfc13185681b01e2dd8f48f0f7fdeb9 (diff) |
removing unused test and fixing another one
Diffstat (limited to 'service/test/unit/config')
-rw-r--r-- | service/test/unit/config/__init__.py | 0 | ||||
-rw-r--r-- | service/test/unit/config/app_factory_test.py | 21 |
2 files changed, 19 insertions, 2 deletions
diff --git a/service/test/unit/config/__init__.py b/service/test/unit/config/__init__.py new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/service/test/unit/config/__init__.py diff --git a/service/test/unit/config/app_factory_test.py b/service/test/unit/config/app_factory_test.py index 5adf3722..29739ab1 100644 --- a/service/test/unit/config/app_factory_test.py +++ b/service/test/unit/config/app_factory_test.py @@ -1,15 +1,32 @@ import unittest from mock import patch, MagicMock, ANY +import pixelated from pixelated.config.app_factory import create_app class AppFactoryTest(unittest.TestCase): + class MockConfig: + def __init__(self, port, host, sslkey=None, sslcert=None): + self.port = port + self.host = host + self.sslkey = sslkey + self.sslcert = sslcert + @patch('pixelated.config.app_factory.reactor') - def test_that_create_app_binds_to_port(self, reactor_mock): + def test_that_create_app_binds_to_tcp_port_if_no_ssl_options(self, reactor_mock): app_mock = MagicMock() - create_app(app_mock, '127.0.0.1', 12345) + create_app(app_mock, AppFactoryTest.MockConfig(12345, '127.0.0.1')) reactor_mock.listenTCP.assert_called_once_with(12345, ANY, interface='127.0.0.1') + + @patch('pixelated.config.app_factory.reactor') + def test_that_create_app_binds_to_ssl_if_ssl_options(self, reactor_mock): + app_mock = MagicMock() + pixelated.config.app_factory._ssl_options = lambda _: 'options' + + create_app(app_mock, AppFactoryTest.MockConfig(12345, '127.0.0.1', sslkey="sslkey", sslcert="sslcert")) + + reactor_mock.listenSSL.assert_called_once_with(12345, ANY, 'options', interface='127.0.0.1') |