summaryrefslogtreecommitdiff
path: root/service/test/unit/config/test_app_factory.py
diff options
context:
space:
mode:
authorDuda Dornelles <dudassdornelles@gmail.com>2015-01-27 16:08:03 -0200
committerPixpoa pairing <pixpoapairing@pixelated-project.org>2015-01-27 16:08:03 -0200
commit26b85d8e523f2b6aafbe18132efcd617ae892228 (patch)
tree0dbdf0cef276aef577d028391543e3f3c5354160 /service/test/unit/config/test_app_factory.py
parent4713741e6cbd9ad7fe20925120f6e25bc6b538e7 (diff)
#237 #232 #196 syncing user data once before starting the UA. Displaying a loading screen in the meantime. The initial sync will make sure the user has a single key pair
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')