2010-07-20 05:55:44 +00:00
|
|
|
from sleektest import *
|
|
|
|
from sleekxmpp.stanza.message import Message
|
|
|
|
from sleekxmpp.stanza.htmlim import HTMLIM
|
2010-01-08 07:01:19 +00:00
|
|
|
|
2010-08-03 16:19:45 +00:00
|
|
|
|
2010-07-20 05:55:44 +00:00
|
|
|
class TestMessageStanzas(SleekTest):
|
2010-01-08 07:01:19 +00:00
|
|
|
|
2010-08-03 16:19:45 +00:00
|
|
|
def setUp(self):
|
|
|
|
registerStanzaPlugin(Message, HTMLIM)
|
|
|
|
|
|
|
|
def testGroupchatReplyRegression(self):
|
|
|
|
"Regression groupchat reply should be to barejid"
|
|
|
|
msg = self.Message()
|
|
|
|
msg['to'] = 'me@myserver.tld'
|
|
|
|
msg['from'] = 'room@someservice.someserver.tld/somenick'
|
|
|
|
msg['type'] = 'groupchat'
|
|
|
|
msg['body'] = "this is a message"
|
|
|
|
msg.reply()
|
|
|
|
self.failUnless(str(msg['to']) == 'room@someservice.someserver.tld')
|
|
|
|
|
|
|
|
def testAttribProperty(self):
|
|
|
|
"Test attrib property returning self"
|
|
|
|
msg = self.Message()
|
|
|
|
msg.attrib.attrib.attrib['to'] = 'usr@server.tld'
|
|
|
|
self.failUnless(str(msg['to']) == 'usr@server.tld')
|
2010-01-08 07:01:19 +00:00
|
|
|
|
2010-08-03 16:19:45 +00:00
|
|
|
def testHTMLPlugin(self):
|
|
|
|
"Test message/html/html stanza"
|
|
|
|
msg = self.Message()
|
|
|
|
msg['to'] = "fritzy@netflint.net/sleekxmpp"
|
|
|
|
msg['body'] = "this is the plaintext message"
|
|
|
|
msg['type'] = 'chat'
|
|
|
|
p = ET.Element('{http://www.w3.org/1999/xhtml}p')
|
|
|
|
p.text = "This is the htmlim message"
|
|
|
|
msg['html']['html'] = p
|
|
|
|
self.checkMessage(msg, """
|
|
|
|
<message to="fritzy@netflint.net/sleekxmpp" type="chat">
|
|
|
|
<body>this is the plaintext message</body>
|
|
|
|
<html xmlns="http://jabber.org/protocol/xhtml-im">
|
|
|
|
<body xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<p>This is the htmlim message</p>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
</message>""")
|
2010-03-26 20:27:13 +00:00
|
|
|
|
2010-07-20 05:55:44 +00:00
|
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(TestMessageStanzas)
|