Ejemplo n.º 1
0
    def test_it_should_send_context_message(self):
        m = ChannelModel('fr', 'john')
        m._device_identifier = 'pod'
        m._send = MagicMock()

        m.on_context('a_context')
        mes = m._send.call_args[0][0]
        expect(mes).to.be.a(Context)
        expect(mes.device_identifier).to.equal('pod')
        expect(mes.user_identifier).to.equal('john')
        expect(mes.context).to.equal('a_context')
Ejemplo n.º 2
0
    def test_it_should_send_done_message(self):
        m = ChannelModel('fr', 'john')
        m._device_identifier = 'pod'
        m._send = MagicMock()

        m.on_done(True)
        m._send.assert_called_once()
        mes = m._send.call_args[0][0]
        expect(mes).to.be.a(Done)
        expect(mes.device_identifier).to.equal('pod')
        expect(mes.user_identifier).to.equal('john')
        expect(mes.require_input).to.be.true
Ejemplo n.º 3
0
    def test_it_should_send_thinking_message(self):
        m = ChannelModel('fr', 'john')
        m._device_identifier = 'pod'
        m._send = MagicMock()
        
        m.on_thinking()

        m._send.assert_called_once()
        mes = m._send.call_args[0][0]
        expect(mes).to.be.a(Thinking)
        expect(mes.device_identifier).to.equal('pod')
        expect(mes.user_identifier).to.equal('john')
Ejemplo n.º 4
0
    def test_it_should_send_answer_message(self):
        m = ChannelModel('fr', 'john')
        m._device_identifier = 'pod'
        m._send = MagicMock()

        m.on_answer('an answer', [], meta='one')
        mes = m._send.call_args[0][0]
        expect(mes).to.be.an(Answer)
        expect(mes.device_identifier).to.equal('pod')
        expect(mes.user_identifier).to.equal('john')
        expect(mes.text).to.equal('an answer')
        expect(mes.cards).to.be.empty
        expect(mes.meta).to.equal({ 'meta': 'one' })
Ejemplo n.º 5
0
    def test_it_should_send_ask_message(self):
        m = ChannelModel('fr', 'john')
        m._device_identifier = 'pod'
        m._send = MagicMock()

        m.on_ask('location', 'a question', ['choice 1', 'choice 2'], meta='two')
        mes = m._send.call_args[0][0]
        expect(mes).to.be.an(Ask)
        expect(mes.device_identifier).to.equal('pod')
        expect(mes.user_identifier).to.equal('john')
        expect(mes.slot).to.equal('location')
        expect(mes.text).to.equal('a question')
        expect(mes.choices).to.equal(['choice 1', 'choice 2'])
        expect(mes.meta).to.equal({ 'meta': 'two' })