From 0fffbb82000a1a6c3c23d62fedcbd8e8141f8994 Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Thu, 7 Oct 2010 10:58:13 -0400 Subject: Unit test reorganization. Moved SleekTest to sleekxmpp.test. Organized test suites by their focus. - Suites focused on testing stanza objects are named test_stanza_X.py - Suites focused on testing stream behavior are name test_stream_X.py --- tests/test_addresses.py | 111 ------------------------------------------------ 1 file changed, 111 deletions(-) delete mode 100644 tests/test_addresses.py (limited to 'tests/test_addresses.py') diff --git a/tests/test_addresses.py b/tests/test_addresses.py deleted file mode 100644 index 5c510c78..00000000 --- a/tests/test_addresses.py +++ /dev/null @@ -1,111 +0,0 @@ -from . sleektest import * -import sleekxmpp.plugins.xep_0033 as xep_0033 - - -class TestAddresses(SleekTest): - - def setUp(self): - registerStanzaPlugin(Message, xep_0033.Addresses) - - def testAddAddress(self): - """Testing adding extended stanza address.""" - msg = self.Message() - msg['addresses'].addAddress(atype='to', jid='to@header1.org') - self.check_message(msg, """ - - -
- - - """) - - msg = self.Message() - msg['addresses'].addAddress(atype='replyto', - jid='replyto@header1.org', - desc='Reply address') - self.check_message(msg, """ - - -
- - - """) - - def testAddAddresses(self): - """Testing adding multiple extended stanza addresses.""" - - xmlstring = """ - - -
-
-
- - - """ - - msg = self.Message() - msg['addresses'].setAddresses([ - {'type':'replyto', - 'jid':'replyto@header1.org', - 'desc':'Reply address'}, - {'type':'cc', - 'jid':'cc@header2.org'}, - {'type':'bcc', - 'jid':'bcc@header2.org'}]) - self.check_message(msg, xmlstring) - - msg = self.Message() - msg['addresses']['replyto'] = [{'jid':'replyto@header1.org', - 'desc':'Reply address'}] - msg['addresses']['cc'] = [{'jid':'cc@header2.org'}] - msg['addresses']['bcc'] = [{'jid':'bcc@header2.org'}] - self.check_message(msg, xmlstring) - - def testAddURI(self): - """Testing adding URI attribute to extended stanza address.""" - - msg = self.Message() - addr = msg['addresses'].addAddress(atype='to', - jid='to@header1.org', - node='foo') - self.check_message(msg, """ - - -
- - - """) - - addr['uri'] = 'mailto:to@header2.org' - self.check_message(msg, """ - - -
- - - """) - - def testDelivered(self): - """Testing delivered attribute of extended stanza addresses.""" - - xmlstring = """ - - -
- - - """ - - msg = self.Message() - addr = msg['addresses'].addAddress(jid='to@header1.org', atype='to') - self.check_message(msg, xmlstring % '') - - addr['delivered'] = True - self.check_message(msg, xmlstring % 'delivered="true"') - - addr['delivered'] = False - self.check_message(msg, xmlstring % '') - - -suite = unittest.TestLoader().loadTestsFromTestCase(TestAddresses) -- cgit v1.2.3