aboutsummaryrefslogblamecommitdiffstats
path: root/_pytest/test_eventrouter.py
blob: 81317b8268900b7b2dcc226c62f87409bee08437 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                       
 
                                 
 
 
                                   
                                             
                     
                 




                                               
                                                                                
                                   





                                                    
                                                                                      
                                         



                                                       
                                   

                                             
                                   
                   
from __future__ import print_function, unicode_literals

from wee_slack import EventRouter


def test_EventRouter(mock_weechat):
    # Sending valid object adds to the queue.
    e = EventRouter()
    e.receive({})
    assert len(e.queue) == 1

    # Handling an event removes from the queue.
    e = EventRouter()
    # Create a function to test we are called
    e.proc["testfunc"] = lambda json, eventrouter, team, channel, metadata: json
    e.receive({"type": "testfunc"})
    e.handle_next()
    assert len(e.queue) == 0

    # Handling a local event removes from the queue.
    e = EventRouter()
    # Create a function to test we are called
    e.proc["local_testfunc"] = lambda json, eventrouter, team, channel, metadata: json
    e.receive({"type": "local_testfunc"})
    e.handle_next()
    assert len(e.queue) == 0

    # Handling an event without an associated processor
    # shouldn't raise an exception.
    e = EventRouter()
    # Create a function to test we are called
    e.receive({"type": "testfunc"})
    e.handle_next()