Пример #1
0
    def test_running(self):
        '''
        Test to ensure the named service is running.
        '''
        name = 'wsgi_server'

        ret = {'name': name,
               'changes': {},
               'result': True,
               'comment': ''}

        comt = ('Supervisord module not activated.'
                ' Do you need to install supervisord?')
        ret.update({'comment': comt, 'result': False})
        self.assertDictEqual(supervisord.running(name), ret)

        mock = MagicMock(return_value={name: {'state': 'running'}})
        with patch.dict(supervisord.__salt__, {'supervisord.status': mock}):
            with patch.dict(supervisord.__opts__, {'test': True}):
                comt = ('Service wsgi_server is already running')
                ret.update({'comment': comt, 'result': True})
                self.assertDictEqual(supervisord.running(name), ret)

            with patch.dict(supervisord.__opts__, {'test': False}):
                comt = ('Not starting already running service: wsgi_server')
                ret.update({'comment': comt})
                self.assertDictEqual(supervisord.running(name), ret)
Пример #2
0
def test_running():
    """
    Test to ensure the named service is running.
    """
    name = "wsgi_server"

    ret = {"name": name, "changes": {}, "result": True, "comment": ""}

    comt = "Supervisord module not activated. Do you need to install supervisord?"
    ret.update({"comment": comt, "result": False})
    assert supervisord.running(name) == ret

    mock = MagicMock(return_value={name: {"state": "running"}})
    with patch.dict(supervisord.__salt__, {"supervisord.status": mock}):
        with patch.dict(supervisord.__opts__, {"test": True}):
            comt = "Service wsgi_server is already running"
            ret.update({"comment": comt, "result": True})
            assert supervisord.running(name) == ret

        with patch.dict(supervisord.__opts__, {"test": False}):
            comt = "Not starting already running service: wsgi_server"
            ret.update({"comment": comt})
            assert supervisord.running(name) == ret
Пример #3
0
    def test_running(self):
        """
        Test to ensure the named service is running.
        """
        name = "wsgi_server"

        ret = {"name": name, "changes": {}, "result": True, "comment": ""}

        comt = "Supervisord module not activated." " Do you need to install supervisord?"
        ret.update({"comment": comt, "result": False})
        self.assertDictEqual(supervisord.running(name), ret)

        mock = MagicMock(return_value={name: {"state": "running"}})
        with patch.dict(supervisord.__salt__, {"supervisord.status": mock}):
            with patch.dict(supervisord.__opts__, {"test": True}):
                comt = "Service wsgi_server is already running"
                ret.update({"comment": comt, "result": True})
                self.assertDictEqual(supervisord.running(name), ret)

            with patch.dict(supervisord.__opts__, {"test": False}):
                comt = "Not starting already running service: wsgi_server"
                ret.update({"comment": comt})
                self.assertDictEqual(supervisord.running(name), ret)