wip tests 3

This commit is contained in:
Sara Aimée Smiseth 2020-10-03 17:06:06 +02:00
parent c8d5367408
commit 49ff748f3e
5 changed files with 76 additions and 56 deletions

60
tests/test_prosody.py Normal file
View file

@ -0,0 +1,60 @@
import aioxmpp
import aioxmpp.dispatcher
import asyncio
import pytest
@pytest.fixture
def client():
jid = aioxmpp.JID.fromstr("admin@localhost")
password = "12345678"
client = aioxmpp.PresenceManagedClient(
jid,
aioxmpp.make_security_layer(
password,
no_verify=True
),
)
return client
@pytest.fixture
def client_with_messageDispatcher(client):
def message_received(msg):
print(msg)
print(msg.body)
# obtain an instance of the service
message_dispatcher = client.summon(
aioxmpp.dispatcher.SimpleMessageDispatcher
)
# register a message callback here
message_dispatcher.register_callback(
aioxmpp.MessageType.CHAT,
None,
message_received,
)
return client
@pytest.mark.asyncio
async def test_sendMessage(client_with_messageDispatcher):
client = client_with_messageDispatcher
recipient_jid = aioxmpp.JID.fromstr("admin@localhost")
async with client.connected() as stream:
msg = aioxmpp.Message(
to=recipient_jid,
type_=aioxmpp.MessageType.CHAT,
)
# None is for "default language"
msg.body[None] = "Hello World!"
await client.send(msg)
# def main():
# loop = asyncio.get_event_loop()
# loop.run_until_complete(sendMessage())
# loop.close()
# if __name__ == '__main__':
# main()