mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 14:03:30 +00:00 
			
		
		
		
	In this commit: * We update the `UserStatus` model to accept `AbstractReaction` as a base class so, we can get all the fields related to store status emoji. * We update the user status endpoint (`users/me/status`) to accept status emoji fields. * We update the user status event to add status emoji fields. Co-authored-by: Yash Rathore <33805964+YashRE42@users.noreply.github.com>
		
			
				
	
	
		
			337 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			337 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from typing import Any, Dict, List, Mapping, Set
 | 
						|
 | 
						|
import orjson
 | 
						|
 | 
						|
from zerver.lib.test_classes import ZulipTestCase
 | 
						|
from zerver.lib.user_status import get_user_info_dict, update_user_status
 | 
						|
from zerver.models import UserProfile, UserStatus, get_client
 | 
						|
 | 
						|
 | 
						|
def get_away_user_ids(realm_id: int) -> Set[int]:
 | 
						|
    user_dict = get_user_info_dict(realm_id)
 | 
						|
 | 
						|
    return {int(user_id) for user_id in user_dict if user_dict[user_id].get("away")}
 | 
						|
 | 
						|
 | 
						|
def user_info(user: UserProfile) -> Dict[str, Any]:
 | 
						|
    user_dict = get_user_info_dict(user.realm_id)
 | 
						|
    return user_dict.get(str(user.id), {})
 | 
						|
 | 
						|
 | 
						|
class UserStatusTest(ZulipTestCase):
 | 
						|
    def test_basics(self) -> None:
 | 
						|
        cordelia = self.example_user("cordelia")
 | 
						|
        hamlet = self.example_user("hamlet")
 | 
						|
        king_lear = self.lear_user("king")
 | 
						|
 | 
						|
        realm_id = hamlet.realm_id
 | 
						|
 | 
						|
        away_user_ids = get_away_user_ids(realm_id=realm_id)
 | 
						|
        self.assertEqual(away_user_ids, set())
 | 
						|
 | 
						|
        client1 = get_client("web")
 | 
						|
        client2 = get_client("ZT")
 | 
						|
 | 
						|
        update_user_status(
 | 
						|
            user_profile_id=hamlet.id,
 | 
						|
            status=UserStatus.AWAY,
 | 
						|
            status_text=None,
 | 
						|
            emoji_name=None,
 | 
						|
            emoji_code=None,
 | 
						|
            reaction_type=None,
 | 
						|
            client_id=client1.id,
 | 
						|
        )
 | 
						|
 | 
						|
        away_user_ids = get_away_user_ids(realm_id=realm_id)
 | 
						|
        self.assertEqual(away_user_ids, {hamlet.id})
 | 
						|
 | 
						|
        # Test that second client just updates
 | 
						|
        # the record.  We only store one record
 | 
						|
        # per user.  The user's status transcends
 | 
						|
        # clients; we only store the client for
 | 
						|
        # reference and to maybe reconcile timeout
 | 
						|
        # situations.
 | 
						|
        update_user_status(
 | 
						|
            user_profile_id=hamlet.id,
 | 
						|
            status=UserStatus.AWAY,
 | 
						|
            status_text="out to lunch",
 | 
						|
            emoji_name="car",
 | 
						|
            emoji_code="1f697",
 | 
						|
            reaction_type=UserStatus.UNICODE_EMOJI,
 | 
						|
            client_id=client2.id,
 | 
						|
        )
 | 
						|
 | 
						|
        self.assertEqual(
 | 
						|
            user_info(hamlet),
 | 
						|
            dict(
 | 
						|
                away=True,
 | 
						|
                status_text="out to lunch",
 | 
						|
                emoji_name="car",
 | 
						|
                emoji_code="1f697",
 | 
						|
                reaction_type=UserStatus.UNICODE_EMOJI,
 | 
						|
            ),
 | 
						|
        )
 | 
						|
 | 
						|
        away_user_ids = get_away_user_ids(realm_id=realm_id)
 | 
						|
        self.assertEqual(away_user_ids, {hamlet.id})
 | 
						|
 | 
						|
        rec_count = UserStatus.objects.filter(user_profile_id=hamlet.id).count()
 | 
						|
        self.assertEqual(rec_count, 1)
 | 
						|
 | 
						|
        # Setting status_text and emoji_info to None causes it be ignored.
 | 
						|
        update_user_status(
 | 
						|
            user_profile_id=hamlet.id,
 | 
						|
            status=UserStatus.NORMAL,
 | 
						|
            status_text=None,
 | 
						|
            emoji_name=None,
 | 
						|
            emoji_code=None,
 | 
						|
            reaction_type=None,
 | 
						|
            client_id=client2.id,
 | 
						|
        )
 | 
						|
 | 
						|
        self.assertEqual(
 | 
						|
            user_info(hamlet),
 | 
						|
            dict(
 | 
						|
                status_text="out to lunch",
 | 
						|
                emoji_name="car",
 | 
						|
                emoji_code="1f697",
 | 
						|
                reaction_type=UserStatus.UNICODE_EMOJI,
 | 
						|
            ),
 | 
						|
        )
 | 
						|
 | 
						|
        # Clear the status_text and emoji_info now.
 | 
						|
        update_user_status(
 | 
						|
            user_profile_id=hamlet.id,
 | 
						|
            status=None,
 | 
						|
            status_text="",
 | 
						|
            emoji_name="",
 | 
						|
            emoji_code="",
 | 
						|
            reaction_type=UserStatus.UNICODE_EMOJI,
 | 
						|
            client_id=client2.id,
 | 
						|
        )
 | 
						|
 | 
						|
        self.assertEqual(
 | 
						|
            user_info(hamlet),
 | 
						|
            {},
 | 
						|
        )
 | 
						|
 | 
						|
        away_user_ids = get_away_user_ids(realm_id=realm_id)
 | 
						|
        self.assertEqual(away_user_ids, set())
 | 
						|
 | 
						|
        # Now set away status for three different users across
 | 
						|
        # two realms.
 | 
						|
        update_user_status(
 | 
						|
            user_profile_id=hamlet.id,
 | 
						|
            status=UserStatus.AWAY,
 | 
						|
            status_text=None,
 | 
						|
            emoji_name=None,
 | 
						|
            emoji_code=None,
 | 
						|
            reaction_type=None,
 | 
						|
            client_id=client1.id,
 | 
						|
        )
 | 
						|
        update_user_status(
 | 
						|
            user_profile_id=cordelia.id,
 | 
						|
            status=UserStatus.AWAY,
 | 
						|
            status_text=None,
 | 
						|
            emoji_name=None,
 | 
						|
            emoji_code=None,
 | 
						|
            reaction_type=None,
 | 
						|
            client_id=client2.id,
 | 
						|
        )
 | 
						|
        update_user_status(
 | 
						|
            user_profile_id=king_lear.id,
 | 
						|
            status=UserStatus.AWAY,
 | 
						|
            status_text=None,
 | 
						|
            emoji_name=None,
 | 
						|
            emoji_code=None,
 | 
						|
            reaction_type=None,
 | 
						|
            client_id=client2.id,
 | 
						|
        )
 | 
						|
 | 
						|
        away_user_ids = get_away_user_ids(realm_id=realm_id)
 | 
						|
        self.assertEqual(away_user_ids, {cordelia.id, hamlet.id})
 | 
						|
 | 
						|
        away_user_ids = get_away_user_ids(realm_id=king_lear.realm.id)
 | 
						|
        self.assertEqual(away_user_ids, {king_lear.id})
 | 
						|
 | 
						|
        # Set Hamlet to NORMAL but in a meeting.
 | 
						|
        update_user_status(
 | 
						|
            user_profile_id=hamlet.id,
 | 
						|
            status=UserStatus.NORMAL,
 | 
						|
            status_text="in a meeting",
 | 
						|
            emoji_name=None,
 | 
						|
            emoji_code=None,
 | 
						|
            reaction_type=None,
 | 
						|
            client_id=client2.id,
 | 
						|
        )
 | 
						|
 | 
						|
        self.assertEqual(
 | 
						|
            user_info(hamlet),
 | 
						|
            dict(status_text="in a meeting"),
 | 
						|
        )
 | 
						|
 | 
						|
        away_user_ids = get_away_user_ids(realm_id=realm_id)
 | 
						|
        self.assertEqual(away_user_ids, {cordelia.id})
 | 
						|
 | 
						|
    def update_status_and_assert_event(
 | 
						|
        self, payload: Dict[str, Any], expected_event: Dict[str, Any]
 | 
						|
    ) -> None:
 | 
						|
        events: List[Mapping[str, Any]] = []
 | 
						|
        with self.tornado_redirected_to_list(events, expected_num_events=1):
 | 
						|
            result = self.client_post("/json/users/me/status", payload)
 | 
						|
        self.assert_json_success(result)
 | 
						|
        self.assertEqual(events[0]["event"], expected_event)
 | 
						|
 | 
						|
    def test_endpoints(self) -> None:
 | 
						|
        hamlet = self.example_user("hamlet")
 | 
						|
        realm_id = hamlet.realm_id
 | 
						|
 | 
						|
        self.login_user(hamlet)
 | 
						|
 | 
						|
        # Try to omit parameter--this should be an error.
 | 
						|
        payload: Dict[str, Any] = {}
 | 
						|
        result = self.client_post("/json/users/me/status", payload)
 | 
						|
        self.assert_json_error(result, "Client did not pass any new values.")
 | 
						|
 | 
						|
        # Try to omit emoji_name parameter but passing emoji_code --this should be an error.
 | 
						|
        payload = {"status_text": "In a meeting", "emoji_code": "1f4bb"}
 | 
						|
        result = self.client_post("/json/users/me/status", payload)
 | 
						|
        self.assert_json_error(
 | 
						|
            result, "Client must pass emoji_name if they pass either emoji_code or reaction_type."
 | 
						|
        )
 | 
						|
 | 
						|
        # Invalid emoji requests fail
 | 
						|
        payload = {"status_text": "In a meeting", "emoji_code": "1f4bb", "emoji_name": "invalid"}
 | 
						|
        result = self.client_post("/json/users/me/status", payload)
 | 
						|
        self.assert_json_error(result, "Emoji 'invalid' does not exist")
 | 
						|
 | 
						|
        payload = {"status_text": "In a meeting", "emoji_code": "1f4bb", "emoji_name": "car"}
 | 
						|
        result = self.client_post("/json/users/me/status", payload)
 | 
						|
        self.assert_json_error(result, "Invalid emoji name.")
 | 
						|
 | 
						|
        payload = {
 | 
						|
            "status_text": "In a meeting",
 | 
						|
            "emoji_code": "1f4bb",
 | 
						|
            "emoji_name": "car",
 | 
						|
            "reaction_type": "realm_emoji",
 | 
						|
        }
 | 
						|
        result = self.client_post("/json/users/me/status", payload)
 | 
						|
        self.assert_json_error(result, "Invalid custom emoji.")
 | 
						|
 | 
						|
        # Try a long message.
 | 
						|
        long_text = "x" * 61
 | 
						|
        payload = dict(status_text=long_text)
 | 
						|
        result = self.client_post("/json/users/me/status", payload)
 | 
						|
        self.assert_json_error(result, "status_text is too long (limit: 60 characters)")
 | 
						|
 | 
						|
        self.update_status_and_assert_event(
 | 
						|
            payload=dict(
 | 
						|
                away=orjson.dumps(True).decode(),
 | 
						|
                status_text="on vacation",
 | 
						|
            ),
 | 
						|
            expected_event=dict(
 | 
						|
                type="user_status", user_id=hamlet.id, away=True, status_text="on vacation"
 | 
						|
            ),
 | 
						|
        )
 | 
						|
        self.assertEqual(
 | 
						|
            user_info(hamlet),
 | 
						|
            dict(away=True, status_text="on vacation"),
 | 
						|
        )
 | 
						|
 | 
						|
        # Server should fill emoji_code and reaction_type by emoji_name.
 | 
						|
        self.update_status_and_assert_event(
 | 
						|
            payload=dict(
 | 
						|
                away=orjson.dumps(True).decode(),
 | 
						|
                emoji_name="car",
 | 
						|
            ),
 | 
						|
            expected_event=dict(
 | 
						|
                type="user_status",
 | 
						|
                user_id=hamlet.id,
 | 
						|
                away=True,
 | 
						|
                emoji_name="car",
 | 
						|
                emoji_code="1f697",
 | 
						|
                reaction_type=UserStatus.UNICODE_EMOJI,
 | 
						|
            ),
 | 
						|
        )
 | 
						|
        self.assertEqual(
 | 
						|
            user_info(hamlet),
 | 
						|
            dict(
 | 
						|
                away=True,
 | 
						|
                status_text="on vacation",
 | 
						|
                emoji_name="car",
 | 
						|
                emoji_code="1f697",
 | 
						|
                reaction_type=UserStatus.UNICODE_EMOJI,
 | 
						|
            ),
 | 
						|
        )
 | 
						|
 | 
						|
        # Server should remove emoji_code and reaction_type if emoji_name is empty.
 | 
						|
        self.update_status_and_assert_event(
 | 
						|
            payload=dict(
 | 
						|
                away=orjson.dumps(True).decode(),
 | 
						|
                emoji_name="",
 | 
						|
            ),
 | 
						|
            expected_event=dict(
 | 
						|
                type="user_status",
 | 
						|
                user_id=hamlet.id,
 | 
						|
                away=True,
 | 
						|
                emoji_name="",
 | 
						|
                emoji_code="",
 | 
						|
                reaction_type=UserStatus.UNICODE_EMOJI,
 | 
						|
            ),
 | 
						|
        )
 | 
						|
        self.assertEqual(
 | 
						|
            user_info(hamlet),
 | 
						|
            dict(away=True, status_text="on vacation"),
 | 
						|
        )
 | 
						|
 | 
						|
        # Now revoke "away" status.
 | 
						|
        self.update_status_and_assert_event(
 | 
						|
            payload=dict(away=orjson.dumps(False).decode()),
 | 
						|
            expected_event=dict(type="user_status", user_id=hamlet.id, away=False),
 | 
						|
        )
 | 
						|
        away_user_ids = get_away_user_ids(realm_id=realm_id)
 | 
						|
        self.assertEqual(away_user_ids, set())
 | 
						|
 | 
						|
        # And now just update your info.
 | 
						|
        # The server will trim the whitespace here.
 | 
						|
        self.update_status_and_assert_event(
 | 
						|
            payload=dict(status_text="   in office  "),
 | 
						|
            expected_event=dict(type="user_status", user_id=hamlet.id, status_text="in office"),
 | 
						|
        )
 | 
						|
 | 
						|
        self.assertEqual(
 | 
						|
            user_info(hamlet),
 | 
						|
            dict(status_text="in office"),
 | 
						|
        )
 | 
						|
 | 
						|
        # And finally clear your info.
 | 
						|
        self.update_status_and_assert_event(
 | 
						|
            payload=dict(status_text=""),
 | 
						|
            expected_event=dict(type="user_status", user_id=hamlet.id, status_text=""),
 | 
						|
        )
 | 
						|
        self.assertEqual(
 | 
						|
            get_user_info_dict(realm_id=realm_id),
 | 
						|
            {},
 | 
						|
        )
 | 
						|
 | 
						|
        # Turn on "away" status again.
 | 
						|
        self.update_status_and_assert_event(
 | 
						|
            payload=dict(away=orjson.dumps(True).decode()),
 | 
						|
            expected_event=dict(type="user_status", user_id=hamlet.id, away=True),
 | 
						|
        )
 | 
						|
        away_user_ids = get_away_user_ids(realm_id=realm_id)
 | 
						|
        self.assertEqual(away_user_ids, {hamlet.id})
 | 
						|
 | 
						|
        # And set status text while away.
 | 
						|
        self.update_status_and_assert_event(
 | 
						|
            payload=dict(status_text="   at the beach  "),
 | 
						|
            expected_event=dict(type="user_status", user_id=hamlet.id, status_text="at the beach"),
 | 
						|
        )
 | 
						|
        self.assertEqual(
 | 
						|
            user_info(hamlet),
 | 
						|
            dict(status_text="at the beach", away=True),
 | 
						|
        )
 | 
						|
 | 
						|
        away_user_ids = get_away_user_ids(realm_id=realm_id)
 | 
						|
        self.assertEqual(away_user_ids, {hamlet.id})
 |