From 730c3fada0ddc09a0814fe6bed583c1f3acbbf3f Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Tue, 30 Aug 2011 23:18:13 -0700 Subject: Add tests for pubsub unsubscribe. --- tests/test_stream_xep_0060.py | 74 +++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 72 insertions(+), 2 deletions(-) (limited to 'tests/test_stream_xep_0060.py') diff --git a/tests/test_stream_xep_0060.py b/tests/test_stream_xep_0060.py index a740884e..634bcd4a 100644 --- a/tests/test_stream_xep_0060.py +++ b/tests/test_stream_xep_0060.py @@ -201,9 +201,79 @@ class TestStreamPubsub(SleekTest): def testSubscribeWithOptions(self): pass - def testUnsubscribe(self): - pass + def testUnubscribe(self): + """Test unsubscribing from a node""" + def run_test(jid, bare, ifrom, send, recv): + t = threading.Thread(name='unsubscribe', + target=self.xmpp['xep_0060'].unsubscribe, + args=('pubsub.example.com', 'some_node'), + kwargs={'subscribee': jid, + 'bare': bare, + 'ifrom': ifrom}) + t.start() + self.send(send) + self.recv(recv) + t.join() + + # Case 1: No subscribee, default 'from' JID, bare JID + run_test(None, True, None, + """ + + + + + + """, + """ + + """) + + # Case 2: No subscribee, given 'from' JID, bare JID + run_test(None, True, 'foo@comp.example.com/bar', + """ + + + + + + """, + """ + + """) + + # Case 3: No subscribee, given 'from' JID, full JID + run_test(None, False, 'foo@comp.example.com/bar', + """ + + + + + + """, + """ + + """) + + # Case 4: Subscribee + run_test('user@example.com/foo', True, 'foo@comp.example.com/bar', + """ + + + + + + """, + """ + + """) suite = unittest.TestLoader().loadTestsFromTestCase(TestStreamPubsub) -- cgit v1.2.3