summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2011-09-01 10:44:14 -0700
committerLance Stout <lancestout@gmail.com>2011-09-01 10:44:14 -0700
commit993829b23f923bc76aa0680977b34995105752ae (patch)
treec9f9fcd029d86150f705ed5b488237e7c531933f /tests
parent002257b8208e343661a68710a3ee936067bfdba0 (diff)
downloadslixmpp-993829b23f923bc76aa0680977b34995105752ae.tar.gz
slixmpp-993829b23f923bc76aa0680977b34995105752ae.tar.bz2
slixmpp-993829b23f923bc76aa0680977b34995105752ae.tar.xz
slixmpp-993829b23f923bc76aa0680977b34995105752ae.zip
Add tests for pubsub subscription options.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_stream_xep_0060.py98
1 files changed, 97 insertions, 1 deletions
diff --git a/tests/test_stream_xep_0060.py b/tests/test_stream_xep_0060.py
index 0ac7d9fc..9ba01468 100644
--- a/tests/test_stream_xep_0060.py
+++ b/tests/test_stream_xep_0060.py
@@ -201,7 +201,40 @@ class TestStreamPubsub(SleekTest):
""")
def testSubscribeWithOptions(self):
- pass
+ """Test subscribing to a node, with options."""
+ opts = self.xmpp['xep_0004'].make_form()
+ opts.add_field(
+ var='FORM_TYPE',
+ value='http://jabber.org/protocol/pubsub#subscribe_options',
+ ftype='hidden')
+ opts.add_field(
+ var='pubsub#digest',
+ value=False,
+ ftype='boolean')
+ opts['type'] = 'submit'
+
+ self.xmpp['xep_0060'].subscribe(
+ 'pubsub.example.com',
+ 'somenode',
+ options=opts,
+ block=False)
+ self.send("""
+ <iq type="set" id="1" to="pubsub.example.com">
+ <pubsub xmlns="http://jabber.org/protocol/pubsub">
+ <subscribe node="somenode" jid="tester@localhost" />
+ <options>
+ <x xmlns="jabber:x:data" type="submit">
+ <field var="FORM_TYPE">
+ <value>http://jabber.org/protocol/pubsub#subscribe_options</value>
+ </field>
+ <field var="pubsub#digest">
+ <value>0</value>
+ </field>
+ </x>
+ </options>
+ </pubsub>
+ </iq>
+ """)
def testUnsubscribeCase1(self):
"""
@@ -541,6 +574,69 @@ class TestStreamPubsub(SleekTest):
</iq>
""")
+ def testGetSubscriptionOptions(self):
+ """Test getting the subscription options for a node/JID."""
+ self.xmpp['xep_0060'].get_subscription_options(
+ 'pubsub.example.com',
+ 'somenode',
+ 'tester@localhost',
+ block=False)
+ self.send("""
+ <iq type="get" id="1" to="pubsub.example.com">
+ <pubsub xmlns="http://jabber.org/protocol/pubsub">
+ <options node="somenode" jid="tester@localhost" />
+ </pubsub>
+ </iq>
+ """, use_values=False)
+
+ def testSetSubscriptionOptions(self):
+ """Test setting the subscription options for a node/JID."""
+ opts = self.xmpp['xep_0004'].make_form()
+ opts.add_field(
+ var='FORM_TYPE',
+ value='http://jabber.org/protocol/pubsub#subscribe_options',
+ ftype='hidden')
+ opts.add_field(
+ var='pubsub#digest',
+ value=False,
+ ftype='boolean')
+ opts['type'] = 'submit'
+
+ self.xmpp['xep_0060'].set_subscription_options(
+ 'pubsub.example.com',
+ 'somenode',
+ 'tester@localhost',
+ opts,
+ block=False)
+ self.send("""
+ <iq type="get" id="1" to="pubsub.example.com">
+ <pubsub xmlns="http://jabber.org/protocol/pubsub">
+ <options node="somenode" jid="tester@localhost">
+ <x xmlns="jabber:x:data" type="submit">
+ <field var="FORM_TYPE">
+ <value>http://jabber.org/protocol/pubsub#subscribe_options</value>
+ </field>
+ <field var="pubsub#digest">
+ <value>0</value>
+ </field>
+ </x>
+ </options>
+ </pubsub>
+ </iq>
+ """)
+ def testGetNodeSubscriptions(self):
+ """Test retrieving the subscriptions for a node."""
+ self.xmpp['xep_0060'].get_node_subscriptions(
+ 'pubsub.example.com',
+ 'somenode',
+ block=False)
+ self.send("""
+ <iq type="get" id="1" to="pubsub.example.com">
+ <pubsub xmlns="http://jabber.org/protocol/pubsub#owner">
+ <subscriptions node="somenode" />
+ </pubsub>
+ </iq>
+ """)
suite = unittest.TestLoader().loadTestsFromTestCase(TestStreamPubsub)