2010-10-07 14:58:13 +00:00
|
|
|
from sleekxmpp.test import *
|
2012-07-22 07:16:35 +00:00
|
|
|
from sleekxmpp import JID
|
2010-07-27 01:13:09 +00:00
|
|
|
|
2010-10-07 14:58:13 +00:00
|
|
|
|
2010-07-27 01:13:09 +00:00
|
|
|
class TestJIDClass(SleekTest):
|
2010-10-24 22:22:41 +00:00
|
|
|
|
|
|
|
"""Verify that the JID class can parse and manipulate JIDs."""
|
|
|
|
|
2010-10-24 23:06:54 +00:00
|
|
|
def testJIDFromFull(self):
|
2010-10-24 22:22:41 +00:00
|
|
|
"""Test using JID of the form 'user@server/resource/with/slashes'."""
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check_jid(JID('user@someserver/some/resource'),
|
2010-10-24 22:22:41 +00:00
|
|
|
'user',
|
|
|
|
'someserver',
|
|
|
|
'some/resource',
|
|
|
|
'user@someserver',
|
|
|
|
'user@someserver/some/resource',
|
|
|
|
'user@someserver/some/resource')
|
2010-07-27 01:13:09 +00:00
|
|
|
|
|
|
|
def testJIDchange(self):
|
2010-10-24 22:22:41 +00:00
|
|
|
"""Test changing JID of the form 'user@server/resource/with/slashes'"""
|
2010-07-27 01:13:09 +00:00
|
|
|
j = JID('user1@someserver1/some1/resource1')
|
|
|
|
j.user = 'user'
|
|
|
|
j.domain = 'someserver'
|
|
|
|
j.resource = 'some/resource'
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check_jid(j,
|
2010-10-24 22:22:41 +00:00
|
|
|
'user',
|
|
|
|
'someserver',
|
|
|
|
'some/resource',
|
|
|
|
'user@someserver',
|
|
|
|
'user@someserver/some/resource',
|
|
|
|
'user@someserver/some/resource')
|
|
|
|
|
2010-10-24 23:06:54 +00:00
|
|
|
def testJIDaliases(self):
|
|
|
|
"""Test changing JID using aliases for domain."""
|
|
|
|
j = JID('user@someserver/resource')
|
|
|
|
j.server = 'anotherserver'
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check_jid(j, domain='anotherserver')
|
2010-10-24 23:06:54 +00:00
|
|
|
j.host = 'yetanother'
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check_jid(j, domain='yetanother')
|
2010-10-24 23:06:54 +00:00
|
|
|
|
|
|
|
def testJIDSetFullWithUser(self):
|
|
|
|
"""Test setting the full JID with a user portion."""
|
|
|
|
j = JID('user@domain/resource')
|
|
|
|
j.full = 'otheruser@otherdomain/otherresource'
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check_jid(j,
|
2010-10-24 23:06:54 +00:00
|
|
|
'otheruser',
|
|
|
|
'otherdomain',
|
|
|
|
'otherresource',
|
|
|
|
'otheruser@otherdomain',
|
|
|
|
'otheruser@otherdomain/otherresource',
|
|
|
|
'otheruser@otherdomain/otherresource')
|
|
|
|
|
|
|
|
def testJIDFullNoUserWithResource(self):
|
|
|
|
"""
|
|
|
|
Test setting the full JID without a user
|
|
|
|
portion and with a resource.
|
|
|
|
"""
|
|
|
|
j = JID('user@domain/resource')
|
|
|
|
j.full = 'otherdomain/otherresource'
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check_jid(j,
|
2010-10-24 23:06:54 +00:00
|
|
|
'',
|
|
|
|
'otherdomain',
|
|
|
|
'otherresource',
|
|
|
|
'otherdomain',
|
|
|
|
'otherdomain/otherresource',
|
|
|
|
'otherdomain/otherresource')
|
|
|
|
|
|
|
|
def testJIDFullNoUserNoResource(self):
|
|
|
|
"""
|
|
|
|
Test setting the full JID without a user
|
|
|
|
portion and without a resource.
|
|
|
|
"""
|
|
|
|
j = JID('user@domain/resource')
|
|
|
|
j.full = 'otherdomain'
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check_jid(j,
|
2010-10-24 23:06:54 +00:00
|
|
|
'',
|
|
|
|
'otherdomain',
|
|
|
|
'',
|
|
|
|
'otherdomain',
|
|
|
|
'otherdomain',
|
|
|
|
'otherdomain')
|
|
|
|
|
|
|
|
def testJIDBareUser(self):
|
|
|
|
"""Test setting the bare JID with a user."""
|
|
|
|
j = JID('user@domain/resource')
|
|
|
|
j.bare = 'otheruser@otherdomain'
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check_jid(j,
|
2010-10-24 23:06:54 +00:00
|
|
|
'otheruser',
|
|
|
|
'otherdomain',
|
|
|
|
'resource',
|
|
|
|
'otheruser@otherdomain',
|
|
|
|
'otheruser@otherdomain/resource',
|
|
|
|
'otheruser@otherdomain/resource')
|
|
|
|
|
|
|
|
def testJIDBareNoUser(self):
|
|
|
|
"""Test setting the bare JID without a user."""
|
|
|
|
j = JID('user@domain/resource')
|
|
|
|
j.bare = 'otherdomain'
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check_jid(j,
|
2010-10-24 23:06:54 +00:00
|
|
|
'',
|
|
|
|
'otherdomain',
|
|
|
|
'resource',
|
|
|
|
'otherdomain',
|
|
|
|
'otherdomain/resource',
|
|
|
|
'otherdomain/resource')
|
|
|
|
|
|
|
|
def testJIDNoResource(self):
|
2010-10-24 22:22:41 +00:00
|
|
|
"""Test using JID of the form 'user@domain'."""
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check_jid(JID('user@someserver'),
|
2010-10-24 22:22:41 +00:00
|
|
|
'user',
|
|
|
|
'someserver',
|
|
|
|
'',
|
|
|
|
'user@someserver',
|
|
|
|
'user@someserver',
|
|
|
|
'user@someserver')
|
|
|
|
|
2010-10-24 23:06:54 +00:00
|
|
|
def testJIDNoUser(self):
|
2010-10-24 22:22:41 +00:00
|
|
|
"""Test JID of the form 'component.domain.tld'."""
|
2010-11-05 18:45:58 +00:00
|
|
|
self.check_jid(JID('component.someserver'),
|
2010-10-24 22:22:41 +00:00
|
|
|
'',
|
|
|
|
'component.someserver',
|
|
|
|
'',
|
|
|
|
'component.someserver',
|
|
|
|
'component.someserver',
|
|
|
|
'component.someserver')
|
2010-07-27 01:13:09 +00:00
|
|
|
|
2011-11-14 17:15:43 +00:00
|
|
|
def testJIDEquality(self):
|
|
|
|
"""Test that JIDs with the same content are equal."""
|
|
|
|
jid1 = JID('user@domain/resource')
|
|
|
|
jid2 = JID('user@domain/resource')
|
|
|
|
self.assertTrue(jid1 == jid2, "Same JIDs are not considered equal")
|
|
|
|
self.assertFalse(jid1 != jid2, "Same JIDs are considered not equal")
|
|
|
|
|
|
|
|
def testJIDInequality(self):
|
|
|
|
jid1 = JID('user@domain/resource')
|
|
|
|
jid2 = JID('otheruser@domain/resource')
|
|
|
|
self.assertFalse(jid1 == jid2, "Same JIDs are not considered equal")
|
|
|
|
self.assertTrue(jid1 != jid2, "Same JIDs are considered not equal")
|
|
|
|
|
2010-10-07 14:58:13 +00:00
|
|
|
|
2010-07-27 01:13:09 +00:00
|
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(TestJIDClass)
|