summaryrefslogtreecommitdiff
path: root/service/test/unit/config/test_app_factory.py
diff options
context:
space:
mode:
authorDuda Dornelles <dudassdornelles@gmail.com>2015-01-22 10:25:40 -0200
committerPixpoa pairing <pixpoapairing@pixelated-project.org>2015-01-22 10:42:48 -0200
commita8274b633a62262e65c7d013e61a54541ce07bf8 (patch)
treeab3172f3fd1ffe9311bd5f1f2b0ccc139bbc14d1 /service/test/unit/config/test_app_factory.py
parent137f1f103cf1bfb76c7e62f2ee9df21d2d1f6223 (diff)
#224 renaming tests so they get caught by trial runner
Diffstat (limited to 'service/test/unit/config/test_app_factory.py')
-rw-r--r--service/test/unit/config/test_app_factory.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/service/test/unit/config/test_app_factory.py b/service/test/unit/config/test_app_factory.py
new file mode 100644
index 00000000..a42c7c83
--- /dev/null
+++ b/service/test/unit/config/test_app_factory.py
@@ -0,0 +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_tcp_port_if_no_ssl_options(self, reactor_mock):
+ app_mock = MagicMock()
+
+ 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')