mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-18 09:51:41 +00:00
Reformat everything.
This commit is contained in:
parent
3f2213791a
commit
340ff8586d
1008 changed files with 61301 additions and 58309 deletions
|
|
@ -8,11 +8,15 @@ import json
|
|||
import pytest
|
||||
from unittest.mock import Mock, patch
|
||||
from ansible_collections.community.general.plugins.modules import slack
|
||||
from ansible_collections.community.internal_test_tools.tests.unit.plugins.modules.utils import AnsibleExitJson, AnsibleFailJson, ModuleTestCase, set_module_args
|
||||
from ansible_collections.community.internal_test_tools.tests.unit.plugins.modules.utils import (
|
||||
AnsibleExitJson,
|
||||
AnsibleFailJson,
|
||||
ModuleTestCase,
|
||||
set_module_args,
|
||||
)
|
||||
|
||||
|
||||
class TestSlackModule(ModuleTestCase):
|
||||
|
||||
def setUp(self):
|
||||
super().setUp()
|
||||
self.module = slack
|
||||
|
|
@ -22,7 +26,7 @@ class TestSlackModule(ModuleTestCase):
|
|||
|
||||
@pytest.fixture
|
||||
def fetch_url_mock(self, mocker):
|
||||
return mocker.patch('ansible.module_utils.notification.slack.fetch_url')
|
||||
return mocker.patch("ansible.module_utils.notification.slack.fetch_url")
|
||||
|
||||
def test_without_required_parameters(self):
|
||||
"""Failure must occurs when all parameters are missing"""
|
||||
|
|
@ -32,66 +36,55 @@ class TestSlackModule(ModuleTestCase):
|
|||
|
||||
def test_invalid_old_token(self):
|
||||
"""Failure if there is an old style token"""
|
||||
with set_module_args({
|
||||
'token': 'test',
|
||||
}):
|
||||
with set_module_args(
|
||||
{
|
||||
"token": "test",
|
||||
}
|
||||
):
|
||||
with self.assertRaises(AnsibleFailJson):
|
||||
self.module.main()
|
||||
|
||||
def test_successful_message(self):
|
||||
"""tests sending a message. This is example 1 from the docs"""
|
||||
with set_module_args({
|
||||
'token': 'XXXX/YYYY/ZZZZ',
|
||||
'msg': 'test'
|
||||
}):
|
||||
with set_module_args({"token": "XXXX/YYYY/ZZZZ", "msg": "test"}):
|
||||
with patch.object(slack, "fetch_url") as fetch_url_mock:
|
||||
fetch_url_mock.return_value = (None, {"status": 200})
|
||||
with self.assertRaises(AnsibleExitJson):
|
||||
self.module.main()
|
||||
|
||||
self.assertTrue(fetch_url_mock.call_count, 1)
|
||||
call_data = json.loads(fetch_url_mock.call_args[1]['data'])
|
||||
assert call_data['username'] == "Ansible"
|
||||
assert call_data['text'] == "test"
|
||||
assert fetch_url_mock.call_args[1]['url'] == "https://hooks.slack.com/services/XXXX/YYYY/ZZZZ"
|
||||
call_data = json.loads(fetch_url_mock.call_args[1]["data"])
|
||||
assert call_data["username"] == "Ansible"
|
||||
assert call_data["text"] == "test"
|
||||
assert fetch_url_mock.call_args[1]["url"] == "https://hooks.slack.com/services/XXXX/YYYY/ZZZZ"
|
||||
|
||||
def test_failed_message(self):
|
||||
"""tests failing to send a message"""
|
||||
|
||||
with set_module_args({
|
||||
'token': 'XXXX/YYYY/ZZZZ',
|
||||
'msg': 'test'
|
||||
}):
|
||||
with set_module_args({"token": "XXXX/YYYY/ZZZZ", "msg": "test"}):
|
||||
with patch.object(slack, "fetch_url") as fetch_url_mock:
|
||||
fetch_url_mock.return_value = (None, {"status": 404, 'msg': 'test'})
|
||||
fetch_url_mock.return_value = (None, {"status": 404, "msg": "test"})
|
||||
with self.assertRaises(AnsibleFailJson):
|
||||
self.module.main()
|
||||
|
||||
def test_message_with_thread(self):
|
||||
"""tests sending a message with a thread"""
|
||||
with set_module_args({
|
||||
'token': 'XXXX/YYYY/ZZZZ',
|
||||
'msg': 'test',
|
||||
'thread_id': '100.00'
|
||||
}):
|
||||
with set_module_args({"token": "XXXX/YYYY/ZZZZ", "msg": "test", "thread_id": "100.00"}):
|
||||
with patch.object(slack, "fetch_url") as fetch_url_mock:
|
||||
fetch_url_mock.return_value = (None, {"status": 200})
|
||||
with self.assertRaises(AnsibleExitJson):
|
||||
self.module.main()
|
||||
|
||||
self.assertTrue(fetch_url_mock.call_count, 1)
|
||||
call_data = json.loads(fetch_url_mock.call_args[1]['data'])
|
||||
assert call_data['username'] == "Ansible"
|
||||
assert call_data['text'] == "test"
|
||||
assert call_data['thread_ts'] == '100.00'
|
||||
assert fetch_url_mock.call_args[1]['url'] == "https://hooks.slack.com/services/XXXX/YYYY/ZZZZ"
|
||||
call_data = json.loads(fetch_url_mock.call_args[1]["data"])
|
||||
assert call_data["username"] == "Ansible"
|
||||
assert call_data["text"] == "test"
|
||||
assert call_data["thread_ts"] == "100.00"
|
||||
assert fetch_url_mock.call_args[1]["url"] == "https://hooks.slack.com/services/XXXX/YYYY/ZZZZ"
|
||||
|
||||
# https://github.com/ansible-collections/community.general/issues/1097
|
||||
def test_ts_in_message_does_not_cause_edit(self):
|
||||
with set_module_args({
|
||||
'token': 'xoxa-123456789abcdef',
|
||||
'msg': 'test with ts'
|
||||
}):
|
||||
with set_module_args({"token": "xoxa-123456789abcdef", "msg": "test with ts"}):
|
||||
with patch.object(slack, "fetch_url") as fetch_url_mock:
|
||||
mock_response = Mock()
|
||||
mock_response.read.return_value = '{"fake":"data"}'
|
||||
|
|
@ -100,14 +93,10 @@ class TestSlackModule(ModuleTestCase):
|
|||
self.module.main()
|
||||
|
||||
self.assertTrue(fetch_url_mock.call_count, 1)
|
||||
self.assertEqual(fetch_url_mock.call_args[1]['url'], "https://slack.com/api/chat.postMessage")
|
||||
self.assertEqual(fetch_url_mock.call_args[1]["url"], "https://slack.com/api/chat.postMessage")
|
||||
|
||||
def test_govslack_message(self):
|
||||
with set_module_args({
|
||||
'token': 'xoxa-123456789abcdef',
|
||||
'domain': 'slack-gov.com',
|
||||
'msg': 'test with ts'
|
||||
}):
|
||||
with set_module_args({"token": "xoxa-123456789abcdef", "domain": "slack-gov.com", "msg": "test with ts"}):
|
||||
with patch.object(slack, "fetch_url") as fetch_url_mock:
|
||||
mock_response = Mock()
|
||||
mock_response.read.return_value = '{"fake":"data"}'
|
||||
|
|
@ -116,14 +105,10 @@ class TestSlackModule(ModuleTestCase):
|
|||
self.module.main()
|
||||
|
||||
self.assertTrue(fetch_url_mock.call_count, 1)
|
||||
self.assertEqual(fetch_url_mock.call_args[1]['url'], "https://slack-gov.com/api/chat.postMessage")
|
||||
self.assertEqual(fetch_url_mock.call_args[1]["url"], "https://slack-gov.com/api/chat.postMessage")
|
||||
|
||||
def test_edit_message(self):
|
||||
with set_module_args({
|
||||
'token': 'xoxa-123456789abcdef',
|
||||
'msg': 'test2',
|
||||
'message_id': '12345'
|
||||
}):
|
||||
with set_module_args({"token": "xoxa-123456789abcdef", "msg": "test2", "message_id": "12345"}):
|
||||
with patch.object(slack, "fetch_url") as fetch_url_mock:
|
||||
mock_response = Mock()
|
||||
mock_response.read.return_value = '{"messages":[{"ts":"12345","msg":"test1"}]}'
|
||||
|
|
@ -135,74 +120,73 @@ class TestSlackModule(ModuleTestCase):
|
|||
self.module.main()
|
||||
|
||||
self.assertTrue(fetch_url_mock.call_count, 2)
|
||||
self.assertEqual(fetch_url_mock.call_args[1]['url'], "https://slack.com/api/chat.update")
|
||||
call_data = json.loads(fetch_url_mock.call_args[1]['data'])
|
||||
self.assertEqual(call_data['ts'], "12345")
|
||||
self.assertEqual(fetch_url_mock.call_args[1]["url"], "https://slack.com/api/chat.update")
|
||||
call_data = json.loads(fetch_url_mock.call_args[1]["data"])
|
||||
self.assertEqual(call_data["ts"], "12345")
|
||||
|
||||
def test_message_with_blocks(self):
|
||||
"""tests sending a message with blocks"""
|
||||
with set_module_args({
|
||||
'token': 'XXXX/YYYY/ZZZZ',
|
||||
'msg': 'test',
|
||||
'blocks': [{
|
||||
'type': 'section',
|
||||
'text': {
|
||||
'type': 'mrkdwn',
|
||||
'text': '*test*'
|
||||
},
|
||||
'accessory': {
|
||||
'type': 'image',
|
||||
'image_url': 'https://docs.ansible.com/favicon.ico',
|
||||
'alt_text': 'test'
|
||||
}
|
||||
}, {
|
||||
'type': 'section',
|
||||
'text': {
|
||||
'type': 'plain_text',
|
||||
'text': 'test',
|
||||
'emoji': True
|
||||
}
|
||||
}]
|
||||
}):
|
||||
with set_module_args(
|
||||
{
|
||||
"token": "XXXX/YYYY/ZZZZ",
|
||||
"msg": "test",
|
||||
"blocks": [
|
||||
{
|
||||
"type": "section",
|
||||
"text": {"type": "mrkdwn", "text": "*test*"},
|
||||
"accessory": {
|
||||
"type": "image",
|
||||
"image_url": "https://docs.ansible.com/favicon.ico",
|
||||
"alt_text": "test",
|
||||
},
|
||||
},
|
||||
{"type": "section", "text": {"type": "plain_text", "text": "test", "emoji": True}},
|
||||
],
|
||||
}
|
||||
):
|
||||
with patch.object(slack, "fetch_url") as fetch_url_mock:
|
||||
fetch_url_mock.return_value = (None, {"status": 200})
|
||||
with self.assertRaises(AnsibleExitJson):
|
||||
self.module.main()
|
||||
|
||||
self.assertTrue(fetch_url_mock.call_count, 1)
|
||||
call_data = json.loads(fetch_url_mock.call_args[1]['data'])
|
||||
assert call_data['username'] == "Ansible"
|
||||
assert call_data['blocks'][1]['text']['text'] == "test"
|
||||
assert fetch_url_mock.call_args[1]['url'] == "https://hooks.slack.com/services/XXXX/YYYY/ZZZZ"
|
||||
call_data = json.loads(fetch_url_mock.call_args[1]["data"])
|
||||
assert call_data["username"] == "Ansible"
|
||||
assert call_data["blocks"][1]["text"]["text"] == "test"
|
||||
assert fetch_url_mock.call_args[1]["url"] == "https://hooks.slack.com/services/XXXX/YYYY/ZZZZ"
|
||||
|
||||
def test_message_with_invalid_color(self):
|
||||
"""tests sending invalid color value to module"""
|
||||
with set_module_args({
|
||||
'token': 'XXXX/YYYY/ZZZZ',
|
||||
'msg': 'test',
|
||||
'color': 'aa',
|
||||
}):
|
||||
with set_module_args(
|
||||
{
|
||||
"token": "XXXX/YYYY/ZZZZ",
|
||||
"msg": "test",
|
||||
"color": "aa",
|
||||
}
|
||||
):
|
||||
with self.assertRaises(AnsibleFailJson) as exec_info:
|
||||
self.module.main()
|
||||
|
||||
msg = "Color value specified should be either one of" \
|
||||
" ['normal', 'good', 'warning', 'danger'] or any valid" \
|
||||
" hex value with length 3 or 6."
|
||||
assert exec_info.exception.args[0]['msg'] == msg
|
||||
msg = (
|
||||
"Color value specified should be either one of"
|
||||
" ['normal', 'good', 'warning', 'danger'] or any valid"
|
||||
" hex value with length 3 or 6."
|
||||
)
|
||||
assert exec_info.exception.args[0]["msg"] == msg
|
||||
|
||||
|
||||
color_test = [
|
||||
('#111111', True),
|
||||
('#00aabb', True),
|
||||
('#abc', True),
|
||||
('#gghhjj', False),
|
||||
('#ghj', False),
|
||||
('#a', False),
|
||||
('#aaaaaaaa', False),
|
||||
('', False),
|
||||
('aaaa', False),
|
||||
('$00aabb', False),
|
||||
('$00a', False),
|
||||
("#111111", True),
|
||||
("#00aabb", True),
|
||||
("#abc", True),
|
||||
("#gghhjj", False),
|
||||
("#ghj", False),
|
||||
("#a", False),
|
||||
("#aaaaaaaa", False),
|
||||
("", False),
|
||||
("aaaa", False),
|
||||
("$00aabb", False),
|
||||
("$00a", False),
|
||||
]
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue