Skip to content

Commit 17be9ed

Browse files
srdeotarseneiljp
authored andcommitted
model: Add un_resolve_topic function to (un)resolve topics.
Fixes zulip#1075 The function calls get_latest_message_in_topic to fetch recent message in topic to be (un)resolved. It verifies user and editing conditions using can_user_edit_topic function and finally add or remove RESOLVED_TOPIC_PREFIX from topic name.
1 parent 3c75b96 commit 17be9ed

File tree

2 files changed

+102
-0
lines changed

2 files changed

+102
-0
lines changed

tests/model/test_model.py

+72
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
from pytest import param as case
88
from zulip import Client, ZulipError
99

10+
from zulipterminal.api_types import RESOLVED_TOPIC_PREFIX
1011
from zulipterminal.config.symbols import STREAM_TOPIC_SEPARATOR
1112
from zulipterminal.helper import initial_index, powerset
1213
from zulipterminal.model import (
@@ -1211,6 +1212,77 @@ def test_can_user_edit_topic(
12111212
else:
12121213
report_error.assert_called_once_with(expected_response[user_type][0])
12131214

1215+
@pytest.mark.parametrize(
1216+
"topic_name, msg_response, server_feature_level, return_value, expect_footer_error",
1217+
[
1218+
(
1219+
"hi!",
1220+
{
1221+
"subject": "hi!",
1222+
"timestamp": 11662271397,
1223+
"id": 1,
1224+
},
1225+
12,
1226+
RESOLVED_TOPIC_PREFIX + "hi!",
1227+
False,
1228+
),
1229+
(
1230+
"hi!",
1231+
{
1232+
"subject": "hi!",
1233+
"timestamp": 0,
1234+
"id": 1,
1235+
},
1236+
None,
1237+
" Time limit for editing topic has been exceeded.",
1238+
True,
1239+
),
1240+
(
1241+
"✔ hi!",
1242+
{
1243+
"subject": "✔ hi!",
1244+
"timestamp": 11662271397,
1245+
"id": 1,
1246+
},
1247+
10,
1248+
"hi!",
1249+
False,
1250+
),
1251+
],
1252+
)
1253+
def test_un_resolve_topic(
1254+
self,
1255+
mocker,
1256+
model,
1257+
initial_data,
1258+
topic_name,
1259+
msg_response,
1260+
server_feature_level,
1261+
return_value,
1262+
expect_footer_error,
1263+
stream_id=1,
1264+
):
1265+
model.initial_data = initial_data
1266+
model.server_feature_level = server_feature_level
1267+
initial_data["realm_community_topic_editing_limit_seconds"] = 86400
1268+
# If user can't edit topic, topic (un)resolve is disabled. Therefore,
1269+
# default return_value=True
1270+
model.can_user_edit_topic = mocker.Mock(return_value=True)
1271+
model.get_latest_message_in_topic = mocker.Mock(return_value=msg_response)
1272+
model.update_stream_message = mocker.Mock(return_value={"result": "success"})
1273+
report_error = model.controller.report_error
1274+
1275+
model.un_resolve_topic(stream_id, topic_name)
1276+
1277+
if not expect_footer_error:
1278+
model.update_stream_message.assert_called_once_with(
1279+
message_id=msg_response["id"],
1280+
topic=return_value,
1281+
propagate_mode="change_all",
1282+
)
1283+
else:
1284+
report_error.assert_called_once_with(return_value)
1285+
12141286
# NOTE: This tests only getting next-unread, not a fixed anchor
12151287
def test_success_get_messages(
12161288
self,

zulipterminal/model.py

+30
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131
from zulipterminal import unicode_emojis
3232
from zulipterminal.api_types import (
33+
RESOLVED_TOPIC_PREFIX,
3334
Composition,
3435
EditPropagateMode,
3536
Event,
@@ -695,6 +696,35 @@ def can_user_edit_topic(self) -> bool:
695696
self.controller.report_error("User not found")
696697
return False
697698

699+
def un_resolve_topic(self, stream_id: int, topic_name: str) -> None:
700+
if self.can_user_edit_topic():
701+
response = self.get_latest_message_in_topic(stream_id, topic_name)
702+
if response:
703+
time_since_msg_sent = time.time() - response["timestamp"]
704+
# ZFL < 11, community_topic_editing_limit_seconds
705+
# was hardcoded as int value in secs eg. 86400s (1 day) or None
706+
if self.server_feature_level is None or self.server_feature_level >= 11:
707+
edit_time_limit = self.initial_data[
708+
"realm_community_topic_editing_limit_seconds"
709+
]
710+
else:
711+
edit_time_limit = 86400
712+
# Don't allow editing topic if time-limit exceeded.
713+
if time_since_msg_sent >= edit_time_limit:
714+
self.controller.report_error(
715+
" Time limit for editing topic has been exceeded."
716+
)
717+
else:
718+
if topic_name.startswith(RESOLVED_TOPIC_PREFIX):
719+
topic_name = topic_name[2:]
720+
else:
721+
topic_name = RESOLVED_TOPIC_PREFIX + topic_name
722+
self.update_stream_message(
723+
message_id=response["id"],
724+
topic=topic_name,
725+
propagate_mode="change_all",
726+
)
727+
698728
def generate_all_emoji_data(
699729
self, custom_emoji: Dict[str, RealmEmojiData]
700730
) -> Tuple[NamedEmojiData, List[str]]:

0 commit comments

Comments
 (0)