def test_prepNoCaseMapResource(self):
     """
     Test no case mapping of the resourcce part of the JID.
     """
     self.assertEquals(jid.prep("user", "hoST", "resource"),
                       ("user", "host", "resource"))
     self.assertNotEquals(jid.prep("user", "host", "Resource"),
                          ("user", "host", "resource"))
Beispiel #2
0
 def test_prepNoCaseMapResource(self):
     """
     Test no case mapping of the resourcce part of the JID.
     """
     self.assertEquals(jid.prep("user", "hoST", "resource"),
                       ("user", "host", "resource"))
     self.assertNotEquals(jid.prep("user", "host", "Resource"),
                          ("user", "host", "resource"))
 def test_prepCaseMapHost(self):
     """
     Test case mapping of the host part of the JID.
     """
     self.assertEquals(jid.prep("user", "hoST", "resource"),
                       ("user", "host", "resource"))
 def test_prepCaseMapUser(self):
     """
     Test case mapping of the user part of the JID.
     """
     self.assertEquals(jid.prep("UsEr", "host", "resource"),
                       ("user", "host", "resource"))
Beispiel #5
0
 def test_prepCaseMapHost(self):
     """
     Test case mapping of the host part of the JID.
     """
     self.assertEquals(jid.prep("user", "hoST", "resource"),
                       ("user", "host", "resource"))
Beispiel #6
0
 def test_prepCaseMapUser(self):
     """
     Test case mapping of the user part of the JID.
     """
     self.assertEquals(jid.prep("UsEr", "host", "resource"),
                       ("user", "host", "resource"))