2013-07-26 11:02:26 +00:00
|
|
|
import unittest
|
2014-07-17 12:19:04 +00:00
|
|
|
from slixmpp.test import SlixTest
|
|
|
|
from slixmpp.stanza.message import Message
|
|
|
|
from slixmpp.stanza.htmlim import HTMLIM
|
2021-02-19 17:51:50 +00:00
|
|
|
from slixmpp.plugins.xep_0172 import UserNick
|
2014-07-17 12:19:04 +00:00
|
|
|
from slixmpp.xmlstream import register_stanza_plugin
|
2010-01-08 07:01:19 +00:00
|
|
|
|
2010-08-03 16:19:45 +00:00
|
|
|
|
2014-07-17 12:19:04 +00:00
|
|
|
class TestMessageStanzas(SlixTest):
|
2010-01-08 07:01:19 +00:00
|
|
|
|
2010-08-03 16:19:45 +00:00
|
|
|
def setUp(self):
|
2010-10-18 01:38:22 +00:00
|
|
|
register_stanza_plugin(Message, HTMLIM)
|
2021-02-19 17:51:50 +00:00
|
|
|
register_stanza_plugin(Message, UserNick)
|
2010-08-03 16:19:45 +00:00
|
|
|
|
|
|
|
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"
|
2015-02-12 11:23:47 +00:00
|
|
|
msg = msg.reply()
|
2018-10-08 21:25:23 +00:00
|
|
|
self.assertTrue(str(msg['to']) == 'room@someservice.someserver.tld')
|
2010-08-03 16:19:45 +00:00
|
|
|
|
|
|
|
def testHTMLPlugin(self):
|
2010-08-03 22:32:53 +00:00
|
|
|
"Test message/html/body stanza"
|
2010-08-03 16:19:45 +00:00
|
|
|
msg = self.Message()
|
2014-07-17 12:19:04 +00:00
|
|
|
msg['to'] = "fritzy@netflint.net/slixmpp"
|
2010-08-03 16:19:45 +00:00
|
|
|
msg['body'] = "this is the plaintext message"
|
|
|
|
msg['type'] = 'chat'
|
2013-01-26 23:10:06 +00:00
|
|
|
msg['html']['body'] = '<p>This is the htmlim message</p>'
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(msg, """
|
2014-07-17 12:19:04 +00:00
|
|
|
<message to="fritzy@netflint.net/slixmpp" type="chat">
|
2010-08-03 16:19:45 +00:00
|
|
|
<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-08-03 22:32:53 +00:00
|
|
|
def testNickPlugin(self):
|
|
|
|
"Test message/nick/nick stanza."
|
|
|
|
msg = self.Message()
|
|
|
|
msg['nick']['nick'] = 'A nickname!'
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check(msg, """
|
2010-08-03 22:32:53 +00:00
|
|
|
<message>
|
2011-01-20 00:03:02 +00:00
|
|
|
<nick xmlns="http://jabber.org/protocol/nick">A nickname!</nick>
|
2010-08-03 22:32:53 +00:00
|
|
|
</message>
|
|
|
|
""")
|
|
|
|
|
|
|
|
|
2010-07-20 05:55:44 +00:00
|
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(TestMessageStanzas)
|