How to use the gokart.slack.SlackAPI function in gokart

To help you get started, we’ve selected a few gokart examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github m3dev / gokart / test / slack / test_slack_api.py View on Github external
def test_initialization_with_invalid_token(self, patch):
        def _channels_list(method, http_verb="POST", params={}):
            assert method == 'channels.list'
            return {'ok': False, 'error': 'error_reason'}

        mock_client = MagicMock()
        mock_client.api_call = MagicMock(side_effect=_channels_list)
        patch.return_value = mock_client

        with self.assertRaises(gokart.slack.slack_api.ChannelListNotLoadedError):
            gokart.slack.SlackAPI(token='invalid', channel='test', to_user='test user')
github m3dev / gokart / test / slack / test_slack_api.py View on Github external
def test_send_snippet_with_invalid_token(self, patch):
        def _api_call(*args, **kwargs):
            if args[0] == 'channels.list':
                return {'ok': True, 'channels': [{'name': 'valid', 'id': 'valid_id'}], 'response_metadata': {'next_cursor': ''}}
            if args[0] == 'files.upload':
                return {'ok': False, 'error': 'error_reason'}
            assert False

        mock_client = MagicMock()
        mock_client.api_call = MagicMock(side_effect=_api_call)
        patch.return_value = mock_client

        with self.assertRaises(gokart.slack.slack_api.FileNotUploadedError):
            api = gokart.slack.SlackAPI(token='valid', channel='valid', to_user='test user')
            api.send_snippet(comment='test', title='title', content='content')
github m3dev / gokart / test / slack / test_slack_api.py View on Github external
def test_invalid_channel(self, patch):
        def _channels_list(method, http_verb="POST", params={}):
            assert method == 'channels.list'
            return {'ok': True, 'channels': [{'name': 'valid', 'id': 'valid_id'}], 'response_metadata': {'next_cursor': ''}}

        mock_client = MagicMock()
        mock_client.api_call = MagicMock(side_effect=_channels_list)
        patch.return_value = mock_client

        with self.assertRaises(gokart.slack.slack_api.ChannelNotFoundError):
            gokart.slack.SlackAPI(token='valid', channel='invalid_channel', to_user='test user')