From 3f9ca0366bc7728cec4572db9cbdc6fd7ac90140 Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Wed, 31 Aug 2011 21:09:25 -0700 Subject: Add test for purging a pubsub node. --- sleekxmpp/plugins/xep_0060/stanza/pubsub_owner.py | 3 ++- tests/test_stream_xep_0060.py | 20 +++++++++++++++++++- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/sleekxmpp/plugins/xep_0060/stanza/pubsub_owner.py b/sleekxmpp/plugins/xep_0060/stanza/pubsub_owner.py index 570c9c4a..fd8ec1f2 100644 --- a/sleekxmpp/plugins/xep_0060/stanza/pubsub_owner.py +++ b/sleekxmpp/plugins/xep_0060/stanza/pubsub_owner.py @@ -72,7 +72,7 @@ registerStanzaPlugin(OwnerConfigure, xep_0004.Form) class OwnerDefault(OwnerConfigure): namespace = 'http://jabber.org/protocol/pubsub#owner' - interfaces = set(('node', 'config')) + interfaces = set(('node',)) plugin_attrib_map = {} plugin_tag_map = {} @@ -93,6 +93,7 @@ registerStanzaPlugin(PubsubOwner, OwnerDelete) class OwnerPurge(ElementBase, OptionalSetting): namespace = 'http://jabber.org/protocol/pubsub#owner' name = 'purge' + interfaces = set(('node',)) plugin_attrib = name plugin_attrib_map = {} plugin_tag_map = {} diff --git a/tests/test_stream_xep_0060.py b/tests/test_stream_xep_0060.py index 2207cd96..c250a86e 100644 --- a/tests/test_stream_xep_0060.py +++ b/tests/test_stream_xep_0060.py @@ -599,7 +599,25 @@ class TestStreamPubsub(SleekTest): def testPurge(self): """Test removing all items from a node.""" - pass + t = threading.Thread(name='purge', + target=self.xmpp['xep_0060'].purge, + args=('pubsub.example.com', 'somenode')) + t.start() + + self.send(""" + + + + + + """, use_values=False) + + self.recv(""" + + """) + + t.join() def testGetItem(self): """Test retrieving a single item.""" -- cgit v1.2.3