mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			87 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
import datetime
 | 
						|
from typing import Dict, List
 | 
						|
 | 
						|
from django.utils.timezone import now as timezone_now
 | 
						|
 | 
						|
from zerver.lib.actions import get_active_presence_idle_user_ids, get_client
 | 
						|
from zerver.lib.test_classes import ZulipTestCase
 | 
						|
from zerver.models import (
 | 
						|
    Message,
 | 
						|
    UserPresence,
 | 
						|
    UserProfile,
 | 
						|
    bulk_get_huddle_user_ids,
 | 
						|
    get_huddle_user_ids,
 | 
						|
)
 | 
						|
 | 
						|
 | 
						|
class MissedMessageTest(ZulipTestCase):
 | 
						|
    def test_presence_idle_user_ids(self) -> None:
 | 
						|
        UserPresence.objects.all().delete()
 | 
						|
 | 
						|
        sender = self.example_user('cordelia')
 | 
						|
        realm = sender.realm
 | 
						|
        hamlet = self.example_user('hamlet')
 | 
						|
        othello = self.example_user('othello')
 | 
						|
        recipient_ids = {hamlet.id, othello.id}
 | 
						|
        message_type = 'stream'
 | 
						|
        user_flags: Dict[int, List[str]] = {}
 | 
						|
 | 
						|
        def assert_missing(user_ids: List[int]) -> None:
 | 
						|
            presence_idle_user_ids = get_active_presence_idle_user_ids(
 | 
						|
                realm=realm,
 | 
						|
                sender_id=sender.id,
 | 
						|
                message_type=message_type,
 | 
						|
                active_user_ids=recipient_ids,
 | 
						|
                user_flags=user_flags,
 | 
						|
            )
 | 
						|
            self.assertEqual(sorted(user_ids), sorted(presence_idle_user_ids))
 | 
						|
 | 
						|
        def set_presence(user: UserProfile, client_name: str, ago: int) -> None:
 | 
						|
            when = timezone_now() - datetime.timedelta(seconds=ago)
 | 
						|
            UserPresence.objects.create(
 | 
						|
                user_profile_id=user.id,
 | 
						|
                realm_id=user.realm_id,
 | 
						|
                client=get_client(client_name),
 | 
						|
                timestamp=when,
 | 
						|
            )
 | 
						|
 | 
						|
        message_type = 'private'
 | 
						|
        assert_missing([hamlet.id, othello.id])
 | 
						|
 | 
						|
        message_type = 'stream'
 | 
						|
        user_flags[hamlet.id] = ['mentioned']
 | 
						|
        assert_missing([hamlet.id])
 | 
						|
 | 
						|
        set_presence(hamlet, 'iPhone', ago=5000)
 | 
						|
        assert_missing([hamlet.id])
 | 
						|
 | 
						|
        set_presence(hamlet, 'webapp', ago=15)
 | 
						|
        assert_missing([])
 | 
						|
 | 
						|
        message_type = 'private'
 | 
						|
        assert_missing([othello.id])
 | 
						|
 | 
						|
class TestBulkGetHuddleUserIds(ZulipTestCase):
 | 
						|
    def test_bulk_get_huddle_user_ids(self) -> None:
 | 
						|
        hamlet = self.example_user('hamlet')
 | 
						|
        cordelia = self.example_user('cordelia')
 | 
						|
        othello = self.example_user('othello')
 | 
						|
        iago = self.example_user('iago')
 | 
						|
        message_ids = [
 | 
						|
            self.send_huddle_message(hamlet, [cordelia, othello], 'test'),
 | 
						|
            self.send_huddle_message(cordelia, [hamlet, othello, iago], 'test'),
 | 
						|
        ]
 | 
						|
 | 
						|
        messages = Message.objects.filter(id__in=message_ids).order_by("id")
 | 
						|
        first_huddle_recipient = messages[0].recipient
 | 
						|
        first_huddle_user_ids = list(get_huddle_user_ids(first_huddle_recipient))
 | 
						|
        second_huddle_recipient = messages[1].recipient
 | 
						|
        second_huddle_user_ids = list(get_huddle_user_ids(second_huddle_recipient))
 | 
						|
 | 
						|
        huddle_user_ids = bulk_get_huddle_user_ids([first_huddle_recipient, second_huddle_recipient])
 | 
						|
        self.assertEqual(huddle_user_ids[first_huddle_recipient.id], first_huddle_user_ids)
 | 
						|
        self.assertEqual(huddle_user_ids[second_huddle_recipient.id], second_huddle_user_ids)
 | 
						|
 | 
						|
    def test_bulk_get_huddle_user_ids_empty_list(self) -> None:
 | 
						|
        self.assertEqual(bulk_get_huddle_user_ids([]), {})
 |