diff options
author | Lance Stout <lancestout@gmail.com> | 2010-07-20 00:04:34 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-07-20 00:04:34 -0400 |
commit | bb927c7e6ad75b190ab3aeea7fd71d8cd2118eed (patch) | |
tree | 813b80a52ff760786ccc3e026f560b095b654a2f /tests/test_presencestanzas.py | |
parent | 14f1c3ba512b17942e1925cc4e610d3558356ea7 (diff) | |
download | slixmpp-bb927c7e6ad75b190ab3aeea7fd71d8cd2118eed.tar.gz slixmpp-bb927c7e6ad75b190ab3aeea7fd71d8cd2118eed.tar.bz2 slixmpp-bb927c7e6ad75b190ab3aeea7fd71d8cd2118eed.tar.xz slixmpp-bb927c7e6ad75b190ab3aeea7fd71d8cd2118eed.zip |
Updated presence stanza to include a 'show' interface. Presence stanza tests updated accordingly.
Diffstat (limited to 'tests/test_presencestanzas.py')
-rw-r--r-- | tests/test_presencestanzas.py | 52 |
1 files changed, 37 insertions, 15 deletions
diff --git a/tests/test_presencestanzas.py b/tests/test_presencestanzas.py index 23eb911e..02799c8f 100644 --- a/tests/test_presencestanzas.py +++ b/tests/test_presencestanzas.py @@ -1,31 +1,53 @@ -import unittest +import sleekxmpp +from sleektest import * +from sleekxmpp.stanza.presence import Presence -class testpresencestanzas(unittest.TestCase): - - def setUp(self): - import sleekxmpp.stanza.presence as p - self.p = p +class TestPresenceStanzas(SleekTest): - def testPresenceShowRegression(self): - "Regression check presence['type'] = 'dnd' show value working" - p = self.p.Presence() + def testPresenceShowRegression(self): + """Regression check presence['type'] = 'dnd' show value working""" + p = self.Presence() p['type'] = 'dnd' - self.failUnless(str(p) == "<presence><show>dnd</show></presence>") - + self.checkPresence(p, """ + <presence><show>dnd</show></presence> + """) + + def testPresenceType(self): + """Test manipulating presence['type']""" + p = self.Presence() + p['type'] = 'available' + self.checkPresence(p, """ + <presence /> + """) + self.failUnless(p['type'] == 'available', "Incorrect presence['type'] for type 'available'") + + for showtype in ['away', 'chat', 'dnd', 'xa']: + p['type'] = showtype + self.checkPresence(p, """ + <presence><show>%s</show></presence> + """ % showtype) + self.failUnless(p['type'] == showtype, "Incorrect presence['type'] for type '%s'" % showtype) + + p['type'] = None + self.checkPresence(p, """ + <presence /> + """) + def testPresenceUnsolicitedOffline(self): - "Unsolicted offline presence does not spawn changed_status or update roster" - p = self.p.Presence() + """Unsolicted offline presence does not spawn changed_status or update roster""" + p = self.Presence() p['type'] = 'unavailable' p['from'] = 'bill@chadmore.com/gmail15af' - import sleekxmpp + c = sleekxmpp.ClientXMPP('crap@wherever', 'password') happened = [] def handlechangedpresence(event): happened.append(True) c.add_event_handler("changed_status", handlechangedpresence) c._handlePresence(p) + self.failUnless(happened == [], "changed_status event triggered for superfulous unavailable presence") self.failUnless(c.roster == {}, "Roster updated for superfulous unavailable presence") -suite = unittest.TestLoader().loadTestsFromTestCase(testpresencestanzas) +suite = unittest.TestLoader().loadTestsFromTestCase(TestPresenceStanzas) |