diff options
Diffstat (limited to 'tests/test_stream_xep_0030.py')
-rw-r--r-- | tests/test_stream_xep_0030.py | 30 |
1 files changed, 8 insertions, 22 deletions
diff --git a/tests/test_stream_xep_0030.py b/tests/test_stream_xep_0030.py index 37d29d33..de0bd414 100644 --- a/tests/test_stream_xep_0030.py +++ b/tests/test_stream_xep_0030.py @@ -2,10 +2,10 @@ import time import threading import unittest -from sleekxmpp.test import SleekTest +from slixmpp.test import SlixTest -class TestStreamDisco(SleekTest): +class TestStreamDisco(SlixTest): """ Test using the XEP-0030 plugin. @@ -75,7 +75,7 @@ class TestStreamDisco(SleekTest): self.xmpp['xep_0030'].static.add_node(node='testing') self.recv(""" - <iq to="tester@localhost" type="get" id="test"> + <iq to="tester@localhost/resource" type="get" id="test"> <query xmlns="http://jabber.org/protocol/disco#info" node="testing" /> </iq> @@ -101,7 +101,7 @@ class TestStreamDisco(SleekTest): self.xmpp['xep_0030'].static.add_node(node='testing') self.recv(""" - <iq to="tester@localhost" type="get" id="test"> + <iq to="tester@localhost/resource" type="get" id="test"> <query xmlns="http://jabber.org/protocol/disco#items" node="testing" /> </iq> @@ -288,10 +288,7 @@ class TestStreamDisco(SleekTest): self.xmpp.add_event_handler('disco_info', handle_disco_info) - t = threading.Thread(name="get_info", - target=self.xmpp['xep_0030'].get_info, - args=('user@localhost', 'foo')) - t.start() + self.xmpp['xep_0030'].get_info('user@localhost', 'foo') self.send(""" <iq type="get" to="user@localhost" id="1"> @@ -310,11 +307,6 @@ class TestStreamDisco(SleekTest): </iq> """) - # Wait for disco#info request to be received. - t.join() - - time.sleep(0.1) - self.assertEqual(events, set(('disco_info',)), "Disco info event was not triggered: %s" % events) @@ -491,10 +483,7 @@ class TestStreamDisco(SleekTest): self.xmpp.add_event_handler('disco_items', handle_disco_items) - t = threading.Thread(name="get_items", - target=self.xmpp['xep_0030'].get_items, - args=('user@localhost', 'foo')) - t.start() + self.xmpp['xep_0030'].get_items('user@localhost', 'foo') self.send(""" <iq type="get" to="user@localhost" id="1"> @@ -513,11 +502,6 @@ class TestStreamDisco(SleekTest): </iq> """) - # Wait for disco#items request to be received. - t.join() - - time.sleep(0.1) - items = set([('user@localhost', 'bar', 'Test'), ('user@localhost', 'baz', 'Test 2')]) self.assertEqual(events, set(('disco_items',)), @@ -525,6 +509,7 @@ class TestStreamDisco(SleekTest): self.assertEqual(results, items, "Unexpected items: %s" % results) + ''' def testGetItemsIterator(self): """Test interaction between XEP-0030 and XEP-0059 plugins.""" @@ -571,6 +556,7 @@ class TestStreamDisco(SleekTest): self.assertEqual(raised_exceptions, [True], "StopIteration was not raised: %s" % raised_exceptions) + ''' suite = unittest.TestLoader().loadTestsFromTestCase(TestStreamDisco) |