Files
@ 0729d364ca25
Branch filter:
Location: libtransport.git/tests/libcommuni/muc_whois.py - annotation
0729d364ca25
1.7 KiB
text/x-python
Fix double free in DummyConnectionServer
Do not create shared ptr from this as this lead to double free in
UserRegistryTest::login test. Shared ptr was needed to set event
owner in acceptConnection, actually it is never needed as events
are never filtered by owner. Thus it was removed and there is no
need to create shared ptr from this.
Do not create shared ptr from this as this lead to double free in
UserRegistryTest::login test. Shared ptr was needed to set event
owner in acceptConnection, actually it is never needed as events
are never filtered by owner. Thus it was removed and there is no
need to create shared ptr from this.
ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 a025aa108559 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 a025aa108559 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 a025aa108559 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 b44919ed9b6b b44919ed9b6b ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 b44919ed9b6b b44919ed9b6b b44919ed9b6b ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 ab4740c7b632 b44919ed9b6b | import optparse
import sys
import time
import subprocess
import os
import sleekxmpp
class Responder(sleekxmpp.ClientXMPP):
def __init__(self, jid, password, room, room_password, nick):
sleekxmpp.ClientXMPP.__init__(self, jid, password)
self.room = room
self.nick = nick
self.finished = False
self.room_password = room_password
self.add_event_handler("session_start", self.start)
self.tests = {}
def start(self, event):
self.plugin['xep_0045'].joinMUC(self.room, self.nick, password=self.room_password, wait=True)
class Client(sleekxmpp.ClientXMPP):
def __init__(self, jid, password, room, nick):
sleekxmpp.ClientXMPP.__init__(self, jid, password)
self.room = room
self.nick = nick
self.add_event_handler("session_start", self.start)
self.add_event_handler("groupchat_message", self.muc_message)
self.finished = False
self.tests = {}
self.tests["whois1_received"] = ["libcommuni: Receive /whois command response", False]
self.tests["whois2_received"] = ["libcommuni: Receive /whois command response for invalid nickname", False]
def muc_message(self, msg):
if msg['mucnick'] != self.nick:
if msg["body"] == "responder is connected to irc.example.net (responder)\nresponder is a user on channels: @#channel":
self.tests["whois1_received"][1] = True
elif msg["body"] == "nonexisting: No such client":
self.tests["whois2_received"][1] = True
self.finished = True
def start(self, event):
self.getRoster()
self.sendPresence()
self.plugin['xep_0045'].joinMUC(self.room, self.nick, wait=True)
self.send_message(mto=self.room, mbody="/whois responder", mtype='groupchat')
self.send_message(mto=self.room, mbody="/whois nonexisting", mtype='groupchat')
|