summaryrefslogtreecommitdiff
path: root/service/test/unit/runserver_test.py
diff options
context:
space:
mode:
authorDuda Dornelles <ddornell@thoughtworks.com>2014-10-15 16:39:32 +0200
committerDuda Dornelles <ddornell@thoughtworks.com>2014-10-15 16:39:37 +0200
commitb2334df7a677047749d411dda4cd4cd58474ee8a (patch)
treecc0b28ce9d55d9c68f9a284ebdfdccec47fbcab0 /service/test/unit/runserver_test.py
parentc526bab6a5cc91182481d2565b0e762a66572bef (diff)
getting rid of "pixelated" in the names of many classes - redundant
Diffstat (limited to 'service/test/unit/runserver_test.py')
-rw-r--r--service/test/unit/runserver_test.py59
1 files changed, 59 insertions, 0 deletions
diff --git a/service/test/unit/runserver_test.py b/service/test/unit/runserver_test.py
new file mode 100644
index 00000000..1e735bf7
--- /dev/null
+++ b/service/test/unit/runserver_test.py
@@ -0,0 +1,59 @@
+#
+# Copyright (c) 2014 ThoughtWorks, Inc.
+#
+# Pixelated is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# Pixelated is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
+
+import unittest
+import sys
+
+import pixelated.runserver
+from mockito import *
+import crochet
+import pixelated.config.reactor_manager as reactor_manager
+import pixelated.adapter.mail
+import os
+import pixelated.config.app_factory as app_factory
+
+
+class RunserverTest(unittest.TestCase):
+
+ def test_that_default_config_file_is_home_dot_pixelated(self):
+ orig_config = pixelated.runserver.app.config
+ try:
+ when(crochet).setup().thenReturn(None)
+ when(reactor_manager).start_reactor().thenReturn(None)
+ when(app_factory).create_app().thenReturn(None)
+ pixelated.runserver.app.config = mock()
+
+ sys.argv = ['/tmp/does_not_exist']
+ pixelated.runserver.setup()
+
+ verify(pixelated.runserver.app.config).from_pyfile(os.path.join(os.environ['HOME'], '.pixelated'))
+ finally:
+ pixelated.runserver.app.config = orig_config
+
+ def test_that_config_file_can_be_specified_on_command_line(self):
+ orig_config = pixelated.runserver.app.config
+ try:
+ when(crochet).setup().thenReturn(None)
+ when(reactor_manager).start_reactor().thenReturn(None)
+ when(app_factory).create_app().thenReturn(None)
+ pixelated.runserver.app.config = mock()
+
+ sys.argv = ['/tmp/does_not_exist', '--config', '/tmp/some/config/file']
+ pixelated.runserver.setup()
+
+ verify(pixelated.runserver.app.config).from_pyfile('/tmp/some/config/file')
+ finally:
+ pixelated.runserver.app.config = orig_config