|
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 (
|
@@ -1255,6 +1256,86 @@ def test_can_user_edit_topic(
|
1255 | 1256 | else:
|
1256 | 1257 | report_error.assert_called_once_with(expected_response[user_type][0])
|
1257 | 1258 |
|
| 1259 | + @pytest.mark.parametrize( |
| 1260 | + "topic_name, msg_response, server_feature_level, topic_editing_limit_seconds, expected_new_topic_name, expected_footer_error", |
| 1261 | + [ |
| 1262 | + case( |
| 1263 | + "hi!", |
| 1264 | + { |
| 1265 | + "subject": "hi!", |
| 1266 | + "timestamp": 11662271397, |
| 1267 | + "id": 1, |
| 1268 | + }, |
| 1269 | + 12, |
| 1270 | + 259200, |
| 1271 | + RESOLVED_TOPIC_PREFIX + "hi!", |
| 1272 | + None, |
| 1273 | + id="topic_resolved:Zulip2.1+:ZFL12", |
| 1274 | + ), |
| 1275 | + case( |
| 1276 | + "hi!", |
| 1277 | + { |
| 1278 | + "subject": "hi!", |
| 1279 | + "timestamp": 0, |
| 1280 | + "id": 1, |
| 1281 | + }, |
| 1282 | + None, |
| 1283 | + None, |
| 1284 | + RESOLVED_TOPIC_PREFIX + "hi!", |
| 1285 | + None, |
| 1286 | + id="no_time_limit:Zulip2.1+:None", |
| 1287 | + ), |
| 1288 | + case( |
| 1289 | + RESOLVED_TOPIC_PREFIX + "hi!", |
| 1290 | + { |
| 1291 | + "subject": RESOLVED_TOPIC_PREFIX + "hi!", |
| 1292 | + "timestamp": 11662271397, |
| 1293 | + "id": 1, |
| 1294 | + }, |
| 1295 | + 10, |
| 1296 | + 86400, |
| 1297 | + "hi!", |
| 1298 | + None, |
| 1299 | + id="topic_unresolved:Zulip2.1+:ZFL10", |
| 1300 | + ), |
| 1301 | + ], |
| 1302 | + ) |
| 1303 | + def test_toggle_topic_resolve_status( |
| 1304 | + self, |
| 1305 | + mocker, |
| 1306 | + model, |
| 1307 | + initial_data, |
| 1308 | + topic_name, |
| 1309 | + msg_response, |
| 1310 | + server_feature_level, |
| 1311 | + topic_editing_limit_seconds, |
| 1312 | + expected_new_topic_name, |
| 1313 | + expected_footer_error, |
| 1314 | + stream_id=1, |
| 1315 | + ): |
| 1316 | + model.initial_data = initial_data |
| 1317 | + model.server_feature_level = server_feature_level |
| 1318 | + initial_data[ |
| 1319 | + "realm_community_topic_editing_limit_seconds" |
| 1320 | + ] = topic_editing_limit_seconds |
| 1321 | + # If user can't edit topic, topic (un)resolve is disabled. Therefore, |
| 1322 | + # default return_value=True |
| 1323 | + model.can_user_edit_topic = mocker.Mock(return_value=True) |
| 1324 | + model.get_latest_message_in_topic = mocker.Mock(return_value=msg_response) |
| 1325 | + model.update_stream_message = mocker.Mock(return_value={"result": "success"}) |
| 1326 | + report_error = model.controller.report_error |
| 1327 | + |
| 1328 | + model.toggle_topic_resolve_status(stream_id, topic_name) |
| 1329 | + |
| 1330 | + if not expected_footer_error: |
| 1331 | + model.update_stream_message.assert_called_once_with( |
| 1332 | + message_id=msg_response["id"], |
| 1333 | + topic=expected_new_topic_name, |
| 1334 | + propagate_mode="change_all", |
| 1335 | + ) |
| 1336 | + else: |
| 1337 | + report_error.assert_called_once_with(expected_footer_error) |
| 1338 | + |
1258 | 1339 | # NOTE: This tests only getting next-unread, not a fixed anchor
|
1259 | 1340 | def test_success_get_messages(
|
1260 | 1341 | self,
|
|
0 commit comments