summaryrefslogtreecommitdiff
path: root/service/test/unit/config/test_app_factory.py
diff options
context:
space:
mode:
Diffstat (limited to 'service/test/unit/config/test_app_factory.py')
-rw-r--r--service/test/unit/config/test_app_factory.py13
1 files changed, 9 insertions, 4 deletions
diff --git a/service/test/unit/config/test_app_factory.py b/service/test/unit/config/test_app_factory.py
index a42c7c83..b09ffd4c 100644
--- a/service/test/unit/config/test_app_factory.py
+++ b/service/test/unit/config/test_app_factory.py
@@ -13,20 +13,25 @@ class AppFactoryTest(unittest.TestCase):
self.host = host
self.sslkey = sslkey
self.sslcert = sslcert
+ self.home = 'leap_home'
+ @patch('pixelated.config.app_factory.init_app')
@patch('pixelated.config.app_factory.reactor')
- def test_that_create_app_binds_to_tcp_port_if_no_ssl_options(self, reactor_mock):
+ def test_that_create_app_binds_to_tcp_port_if_no_ssl_options(self, reactor_mock, init_app_mock):
app_mock = MagicMock()
+ leap_session = MagicMock()
- create_app(app_mock, AppFactoryTest.MockConfig(12345, '127.0.0.1'))
+ create_app(app_mock, AppFactoryTest.MockConfig(12345, '127.0.0.1'), leap_session)
reactor_mock.listenTCP.assert_called_once_with(12345, ANY, interface='127.0.0.1')
+ @patch('pixelated.config.app_factory.init_app')
@patch('pixelated.config.app_factory.reactor')
- def test_that_create_app_binds_to_ssl_if_ssl_options(self, reactor_mock):
+ def test_that_create_app_binds_to_ssl_if_ssl_options(self, reactor_mock, init_app_mock):
app_mock = MagicMock()
+ leap_session = MagicMock()
pixelated.config.app_factory._ssl_options = lambda _: 'options'
- create_app(app_mock, AppFactoryTest.MockConfig(12345, '127.0.0.1', sslkey="sslkey", sslcert="sslcert"))
+ create_app(app_mock, AppFactoryTest.MockConfig(12345, '127.0.0.1', sslkey="sslkey", sslcert="sslcert"), leap_session)
reactor_mock.listenSSL.assert_called_once_with(12345, ANY, 'options', interface='127.0.0.1')