zulip/zerver/tests/test_alert_words.py

203 lines
8.1 KiB
Python
Raw Normal View History

2016-09-14 15:39:41 +02:00
from zerver.lib.alert_words import (
add_user_alert_words,
alert_words_in_realm,
remove_user_alert_words,
user_alert_words,
)
from zerver.lib.test_helpers import (
2016-09-14 18:25:44 +02:00
most_recent_message,
2016-09-14 15:39:41 +02:00
most_recent_usermessage,
)
from zerver.lib.test_classes import (
2016-09-14 15:39:41 +02:00
ZulipTestCase,
)
from zerver.models import (
UserProfile,
)
import ujson
class AlertWordTests(ZulipTestCase):
interesting_alert_word_list = ['alert', 'multi-word word', '']
2016-09-14 15:39:41 +02:00
def test_internal_endpoint(self) -> None:
user_name = "cordelia"
self.login(user_name)
2016-09-14 15:39:41 +02:00
params = {
'alert_words': ujson.dumps(['milk', 'cookies'])
}
result = self.client_post('/json/users/me/alert_words', params)
2016-09-14 15:39:41 +02:00
self.assert_json_success(result)
user = self.example_user(user_name)
2016-09-14 15:39:41 +02:00
words = user_alert_words(user)
self.assertEqual(set(words), {'milk', 'cookies'})
2016-09-14 15:39:41 +02:00
def test_default_no_words(self) -> None:
2016-09-14 15:39:41 +02:00
"""
Users start out with no alert words.
"""
user = self.example_user('cordelia')
2016-09-14 15:39:41 +02:00
words = user_alert_words(user)
self.assertEqual(words, [])
def test_add_word(self) -> None:
2016-09-14 15:39:41 +02:00
"""
add_user_alert_words can add multiple alert words at once.
"""
user = self.example_user('cordelia')
2016-09-14 15:39:41 +02:00
# Add several words, including multi-word and non-ascii words.
add_user_alert_words(user, self.interesting_alert_word_list)
words = user_alert_words(user)
self.assertEqual(set(words), set(self.interesting_alert_word_list))
2016-09-14 15:39:41 +02:00
def test_remove_word(self) -> None:
2016-09-14 15:39:41 +02:00
"""
Removing alert words works via remove_user_alert_words, even
for multi-word and non-ascii words.
"""
user = self.example_user('cordelia')
2016-09-14 15:39:41 +02:00
add_user_alert_words(user, self.interesting_alert_word_list)
theoretical_remaining_alerts = self.interesting_alert_word_list[:]
for alert_word in self.interesting_alert_word_list:
remove_user_alert_words(user, alert_word)
theoretical_remaining_alerts.remove(alert_word)
actual_remaining_alerts = user_alert_words(user)
self.assertEqual(set(actual_remaining_alerts),
set(theoretical_remaining_alerts))
2016-09-14 15:39:41 +02:00
def test_realm_words(self) -> None:
2016-09-14 15:39:41 +02:00
"""
We can gather alert words for an entire realm via
alert_words_in_realm. Alerts added for one user do not impact other
users.
"""
user1 = self.example_user('cordelia')
2016-09-14 15:39:41 +02:00
add_user_alert_words(user1, self.interesting_alert_word_list)
user2 = self.example_user('othello')
2016-09-14 15:39:41 +02:00
add_user_alert_words(user2, ['another'])
realm_words = alert_words_in_realm(user2.realm)
self.assertEqual(len(realm_words), 2)
2020-03-15 14:09:43 +01:00
self.assertEqual(set(realm_words.keys()), {user1.id, user2.id})
self.assertEqual(set(realm_words[user1.id]),
set(self.interesting_alert_word_list))
self.assertEqual(set(realm_words[user2.id]), {'another'})
2016-09-14 15:39:41 +02:00
def test_json_list_default(self) -> None:
self.login('hamlet')
2016-09-14 15:39:41 +02:00
result = self.client_get('/json/users/me/alert_words')
self.assert_json_success(result)
self.assertEqual(result.json()['alert_words'], [])
2016-09-14 15:39:41 +02:00
def test_json_list_nonempty(self) -> None:
hamlet = self.example_user('hamlet')
add_user_alert_words(hamlet, ['one', 'two', 'three'])
self.login('hamlet')
result = self.client_get('/json/users/me/alert_words')
self.assert_json_success(result)
self.assertEqual(set(result.json()['alert_words']), {'one', 'two', 'three'})
def test_json_list_add(self) -> None:
self.login('hamlet')
2016-09-14 15:39:41 +02:00
result = self.client_post('/json/users/me/alert_words',
{'alert_words': ujson.dumps(['one ', '\n two', 'three'])})
2016-09-14 15:39:41 +02:00
self.assert_json_success(result)
self.assertEqual(set(result.json()['alert_words']), {'one', 'two', 'three'})
2016-09-14 15:39:41 +02:00
def test_json_list_remove(self) -> None:
self.login('hamlet')
2016-09-14 15:39:41 +02:00
result = self.client_post('/json/users/me/alert_words',
{'alert_words': ujson.dumps(['one', 'two', 'three'])})
2016-09-14 15:39:41 +02:00
self.assert_json_success(result)
self.assertEqual(set(result.json()['alert_words']), {'one', 'two', 'three'})
2016-09-14 15:39:41 +02:00
result = self.client_delete('/json/users/me/alert_words',
{'alert_words': ujson.dumps(['one'])})
2016-09-14 15:39:41 +02:00
self.assert_json_success(result)
self.assertEqual(set(result.json()['alert_words']), {'two', 'three'})
2016-09-14 15:39:41 +02:00
def message_does_alert(self, user_profile: UserProfile, message: str) -> bool:
2016-09-14 15:39:41 +02:00
"""Send a bunch of messages as othello, so Hamlet is notified"""
self.send_stream_message(self.example_user("othello"), "Denmark", message)
2016-09-14 15:39:41 +02:00
user_message = most_recent_usermessage(user_profile)
return 'has_alert_word' in user_message.flags_list()
def test_alert_flags(self) -> None:
self.login('hamlet')
user_profile_hamlet = self.example_user('hamlet')
2016-09-14 15:39:41 +02:00
result = self.client_post('/json/users/me/alert_words',
{'alert_words': ujson.dumps(['one', 'two', 'three'])})
2016-09-14 15:39:41 +02:00
self.assert_json_success(result)
self.assertEqual(set(result.json()['alert_words']), {'one', 'two', 'three'})
2016-09-14 15:39:41 +02:00
# Alerts in the middle of messages work.
self.assertTrue(self.message_does_alert(user_profile_hamlet, "Normal alert one time"))
# Alerts at the end of messages work.
self.assertTrue(self.message_does_alert(user_profile_hamlet, "Normal alert one"))
# Alerts at the beginning of messages work.
self.assertTrue(self.message_does_alert(user_profile_hamlet, "two normal alerts"))
# Alerts with surrounding punctuation work.
self.assertTrue(self.message_does_alert(user_profile_hamlet, "This one? should alert"))
self.assertTrue(self.message_does_alert(user_profile_hamlet, "Definitely time for three."))
# Multiple alerts in a message work.
self.assertTrue(self.message_does_alert(user_profile_hamlet, "One two three o'clock"))
# Alerts are case-insensitive.
self.assertTrue(self.message_does_alert(user_profile_hamlet, "One o'clock"))
self.assertTrue(self.message_does_alert(user_profile_hamlet, "Case of ONE, won't stop me"))
# We don't cause alerts for matches in URLs.
self.assertFalse(self.message_does_alert(user_profile_hamlet, "Don't alert on http://t.co/one/ urls"))
self.assertFalse(self.message_does_alert(user_profile_hamlet, "Don't alert on http://t.co/one urls"))
def test_update_alert_words(self) -> None:
user_profile = self.example_user('hamlet')
2016-09-14 18:25:44 +02:00
self.login_user(user_profile)
result = self.client_post('/json/users/me/alert_words',
{'alert_words': ujson.dumps(['ALERT'])})
2016-09-14 18:25:44 +02:00
content = 'this is an ALERT for you'
self.send_stream_message(user_profile, "Denmark", content)
2016-09-14 18:25:44 +02:00
self.assert_json_success(result)
original_message = most_recent_message(user_profile)
user_message = most_recent_usermessage(user_profile)
self.assertIn('has_alert_word', user_message.flags_list())
result = self.client_patch("/json/messages/" + str(original_message.id), {
2016-09-14 18:25:44 +02:00
'message_id': original_message.id,
'content': 'new ALERT for you',
})
self.assert_json_success(result)
user_message = most_recent_usermessage(user_profile)
self.assertEqual(user_message.message.content, 'new ALERT for you')
self.assertIn('has_alert_word', user_message.flags_list())
result = self.client_patch("/json/messages/" + str(original_message.id), {
2016-09-14 18:25:44 +02:00
'message_id': original_message.id,
'content': 'sorry false alarm',
})
self.assert_json_success(result)
user_message = most_recent_usermessage(user_profile)
self.assertEqual(user_message.message.content, 'sorry false alarm')
self.assertNotIn('has_alert_word', user_message.flags_list())