summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2010-08-03 12:19:45 -0400
committerLance Stout <lancestout@gmail.com>2010-08-03 12:26:36 -0400
commit939ae298c2856f095526a9e0f52216e9dc4e7db1 (patch)
tree0c205414c1570101cfa9666e903ee0c62475ebb4 /tests
parent851e90c572d9c2a5dd72a8643920c59d4d1493ae (diff)
downloadslixmpp-939ae298c2856f095526a9e0f52216e9dc4e7db1.tar.gz
slixmpp-939ae298c2856f095526a9e0f52216e9dc4e7db1.tar.bz2
slixmpp-939ae298c2856f095526a9e0f52216e9dc4e7db1.tar.xz
slixmpp-939ae298c2856f095526a9e0f52216e9dc4e7db1.zip
Updated message stanzas and tests with documentation and PEP8 style.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_messagestanzas.py73
1 files changed, 37 insertions, 36 deletions
diff --git a/tests/test_messagestanzas.py b/tests/test_messagestanzas.py
index c83b59a7..f55211db 100644
--- a/tests/test_messagestanzas.py
+++ b/tests/test_messagestanzas.py
@@ -2,44 +2,45 @@ from sleektest import *
from sleekxmpp.stanza.message import Message
from sleekxmpp.stanza.htmlim import HTMLIM
+
class TestMessageStanzas(SleekTest):
- 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 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')
- 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')
-
- 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>""")
+ 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>""")
suite = unittest.TestLoader().loadTestsFromTestCase(TestMessageStanzas)