summaryrefslogtreecommitdiff
path: root/service/test/unit/runserver_test.py
blob: eed21a6cc43ff3ac1bedbfb927a661cde4a5f3fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#
# 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 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_config_file_can_be_specified_on_command_line(self):
        orig_config = pixelated.runserver.app.config
        try:
            when(reactor_manager).start_reactor().thenReturn(None)
            when(app_factory).create_app().thenReturn(None)
            pixelated.runserver.app.config = mock(dict)
            pixelated.runserver.app.config.__setitem__ = 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