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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
# localslackirc
# Copyright (C) 2021 Antonio Terceiro
# Copyright (C) 2022 Salvo "LtWorf" Tomaselli
#
# localslackirc is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from unittest import IsolatedAsyncioTestCase, mock
from irc import Client, Provider
class TestIRC(IsolatedAsyncioTestCase):
def setUp(self):
stream_writer = mock.AsyncMock()
slack_client = mock.AsyncMock()
settings = mock.MagicMock()
settings.silenced_yellers = set()
settings.provider = Provider.SLACK
self.client = Client(stream_writer, slack_client, settings)
class TestAnnoyanceAvoidance(TestIRC):
async def test_yelling_prevention(self):
self.client.nick = b'aldo'
# Mention generated
msg = await self.client.parse_message("<!here> watch this!", b'rose.adams',b'#asd')
assert msg == 'yelling [aldo]: watch this!'
# Add rose.adams to silenced yellers
self.client.settings.silenced_yellers.add(b'rose.adams')
# Mention no longer generated
msg = await self.client.parse_message("<!here> watch this!", b'rose.adams', b'#asd')
assert msg == 'yelling: watch this!'
# No effect on regular messages
msg = await self.client.parse_message("hello world", b'rose.adams', b'#asd')
assert msg == 'hello world'
class TestParseMessage(TestIRC):
async def test_simple_message(self):
msg = await self.client.parse_message("hello world", b'ciccio', b'#asd')
self.assertEqual(msg, "hello world")
async def test_url(self):
msg = await self.client.parse_message("See <https://example.com/docs/|the documentation>", b'ciccio', b'#asd')
self.assertEqual(msg, "See the documentation¹\n ¹ https://example.com/docs/")
async def test_url_aggressive_shortening(self):
msg = await self.client.parse_message("See <https://example.com/docs/iqjweoijsodijijaoij?oiwje|https://example.com/docs/iqjweoijsodijijaoij>", b'ciccio', b'#asd')
self.assertEqual(msg, "See LINK¹\n ¹ https://example.com/docs/iqjweoijsodijijaoij?oiwje")
async def test_multiple_urls(self):
msg = await self.client.parse_message("See <https://example.com/docs/|the documentation>. Try also the <https://example.com/faq/|FAQ>", b'ciccio', b'#asd')
self.assertEqual(msg, "See the documentation¹. Try also the FAQ²\n ¹ https://example.com/docs/\n ² https://example.com/faq/")
async def test_a_lot_of_urls(self):
input_msg = "<https://example.com/|url> " * 10
output = "\n".join([
"url¹ url² url³ url⁴ url⁵ url⁶ url⁷ url⁸ url⁹ url¹⁰ ",
" ¹ https://example.com/",
" ² https://example.com/",
" ³ https://example.com/",
" ⁴ https://example.com/",
" ⁵ https://example.com/",
" ⁶ https://example.com/",
" ⁷ https://example.com/",
" ⁸ https://example.com/",
" ⁹ https://example.com/",
" ¹⁰ https://example.com/",
])
msg = await self.client.parse_message(input_msg, b'ciccio', b'#asd')
self.assertEqual(msg, output)
async def test_url_with_no_label_just_goes_inline(self):
msg = await self.client.parse_message("Please look at <https://example.com/>", b'ciccio', b'#asd')
self.assertEqual(msg, "Please look at https://example.com/")
async def test_replace_label_for_urls_with_no_different_text(self):
msg = await self.client.parse_message("<https://example.com/|https://example.com/>", b'ciccio', b'#asd')
self.assertEqual(msg, "LINK¹\n ¹ https://example.com/")
|