|
7 | 7 | from pytest import param as case
|
8 | 8 | from zulip import Client, ZulipError
|
9 | 9 |
|
| 10 | +from zulipterminal.api_types import RESOLVED_TOPIC_PREFIX |
10 | 11 | from zulipterminal.config.symbols import STREAM_TOPIC_SEPARATOR
|
11 | 12 | from zulipterminal.helper import initial_index, powerset
|
12 | 13 | from zulipterminal.model import (
|
@@ -1211,6 +1212,77 @@ def test_can_user_edit_topic(
|
1211 | 1212 | else:
|
1212 | 1213 | report_error.assert_called_once_with(expected_response[user_type][0])
|
1213 | 1214 |
|
| 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 | + |
1214 | 1286 | # NOTE: This tests only getting next-unread, not a fixed anchor
|
1215 | 1287 | def test_success_get_messages(
|
1216 | 1288 | self,
|
|
0 commit comments