summaryrefslogtreecommitdiff
path: root/tests/test_presencestanzas.py
blob: 02799c8f85e073ee9d1e2eb1223bfd7b89927b62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import sleekxmpp
from sleektest import *
from sleekxmpp.stanza.presence import Presence

class TestPresenceStanzas(SleekTest):
	
        def testPresenceShowRegression(self):
		"""Regression check presence['type'] = 'dnd' show value working"""
		p = self.Presence()
		p['type'] = 'dnd'
		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.Presence()
		p['type'] = 'unavailable'
		p['from'] = 'bill@chadmore.com/gmail15af'
		
		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)