1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
########################################################################
# File name: test_e2e.py
# This file is part of: aioxmpp
#
# LICENSE
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program. If not, see
# <http://www.gnu.org/licenses/>.
#
########################################################################
import asyncio
import unittest
import aioxmpp
import aioxmpp.ibb
from aioxmpp.testutils import get_timeout
from aioxmpp.e2etest import (
blocking_timed,
TestCase,
)
class TestProtocol(asyncio.Protocol):
def __init__(self):
self.data = b""
self._transport = None
self.connection_lost_fut = asyncio.Future()
def connection_made(self, transport):
self._transport = transport
def connection_lost(self, e):
self.connection_lost_fut.set_result(e)
def pause_writing(self):
pass
def resume_writing(self):
pass
def data_received(self, data):
self.data += data
class TestIBB(TestCase):
async def make_client(self, run_before=None):
return await self.provisioner.get_connected_client(
services=[
aioxmpp.ibb.IBBService,
],
prepare=run_before,
)
@blocking_timed
async def test_ibb(self):
client1 = await self.make_client()
client2 = await self.make_client()
s1 = client1.summon(aioxmpp.ibb.IBBService)
s2 = client2.summon(aioxmpp.ibb.IBBService)
# set-up the session
handle2_fut = s2.expect_session(
TestProtocol, client1.local_jid, "fnord")
transport1, proto1 = await s1.open_session(
TestProtocol, client2.local_jid, sid="fnord")
transport2, proto2 = await handle2_fut
# transfer data
transport2.write(b"this")
transport2.write(b"is")
transport2.write(b"data")
transport2.close()
# assert that both protocols get notified (otherwise time out)
e1 = await proto1.connection_lost_fut
self.assertIsNone(e1)
e2 = await proto2.connection_lost_fut
self.assertIsNone(e2)
self.assertEqual(proto1.data, b"thisisdata")
@blocking_timed
async def test_ibb_message(self):
client1 = await self.make_client()
client2 = await self.make_client()
s1 = client1.summon(aioxmpp.ibb.IBBService)
s2 = client2.summon(aioxmpp.ibb.IBBService)
# set-up the session
handle2_fut = s2.expect_session(
TestProtocol, client1.local_jid, "fnord")
transport1, proto1 = await s1.open_session(
TestProtocol, client2.local_jid, sid="fnord",
stanza_type=aioxmpp.ibb.IBBStanzaType.MESSAGE
)
transport2, proto2 = await handle2_fut
# transfer data
transport2.write(b"this")
transport2.write(b"is")
transport2.write(b"data")
transport2.close()
# assert that both protocols get notified (otherwise time out)
e1 = await proto1.connection_lost_fut
self.assertIsNone(e1)
e2 = await proto2.connection_lost_fut
self.assertIsNone(e2)
self.assertEqual(proto1.data, b"thisisdata")
@blocking_timed
async def test_ibb_client_disconnects(self):
client1 = await self.make_client()
client2 = await self.make_client()
s1 = client1.summon(aioxmpp.ibb.IBBService)
s2 = client2.summon(aioxmpp.ibb.IBBService)
# set-up the session
handle2_fut = s2.expect_session(
TestProtocol, client1.local_jid, "fnord")
transport1, proto1 = await s1.open_session(
TestProtocol, client2.local_jid, sid="fnord")
transport2, proto2 = await handle2_fut
# transfer data
transport2.write(b"this")
transport1.abort()
transport2.write(b"is")
# assert that both protocols get notified (otherwise time out)
e1 = await proto1.connection_lost_fut
self.assertIsNone(e1)
e2 = await proto2.connection_lost_fut
self.assertIsInstance(e2, aioxmpp.errors.XMPPCancelError)
|