summaryrefslogtreecommitdiff
path: root/tests/twisted/roster/test-google-roster.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/twisted/roster/test-google-roster.py')
-rw-r--r--tests/twisted/roster/test-google-roster.py75
1 files changed, 73 insertions, 2 deletions
diff --git a/tests/twisted/roster/test-google-roster.py b/tests/twisted/roster/test-google-roster.py
index 630e3c314..3773377df 100644
--- a/tests/twisted/roster/test-google-roster.py
+++ b/tests/twisted/roster/test-google-roster.py
@@ -131,8 +131,9 @@ def test_inital_roster(q, bus, conn, stream):
def test_flickering(q, bus, conn, stream, subscribe):
"""
- Google's server is buggy, and subscription state transitions "flicker"
- sometimes. Here, we test that Gabble is suppressing the flickers.
+ Google's server is buggy; when asking to subscribe to somebody, the
+ subscription state transitions "flicker" sometimes. Here, we test that
+ Gabble is suppressing the flickers.
"""
self_handle = conn.GetSelfHandle()
@@ -264,6 +265,75 @@ def test_flickering(q, bus, conn, stream, subscribe):
sync_dbus(bus, q, conn)
q.unforbid_events(change_events)
+def test_local_pending(q, bus, conn, stream, subscribe):
+ """
+ When somebody asks to subscribe to us, Google sends the subscription
+ request and then a roster update saying there is no subscription.
+ This causes the contact to appear in local pending and then disappear.
+ Here, we test that Gabble is suppressing the flickers.
+ """
+
+ contact = 'alice@foo.com'
+ handle = conn.RequestHandles(cs.HT_CONTACT, [contact])[0]
+
+ # Alice asks to subscribes to us
+ presence = domish.Element(('jabber:client', 'presence'))
+ presence['from'] = contact
+ presence['type'] = 'subscribe'
+ stream.send(presence)
+
+ q.expect_many(
+ EventPattern('dbus-signal', signal='MembersChanged',
+ args=['', [], [], [handle], [], handle, cs.GC_REASON_NONE],
+ predicate=is_publish),
+ EventPattern('dbus-signal', signal='ContactsChanged',
+ args=[{handle: (cs.SUBSCRIPTION_STATE_NO,
+ cs.SUBSCRIPTION_STATE_ASK, '')}, []]),
+ )
+
+ # Now we send the spurious roster update with subscribe="none" and verify
+ # that nothing happens to her publish state in reaction to that
+ change_event = EventPattern('dbus-signal', signal='MembersChanged',
+ predicate=is_publish)
+ q.forbid_events([change_event])
+
+ iq = make_set_roster_iq(stream, 'test@localhost/Resource', contact,
+ "none", False)
+ stream.send(iq)
+
+ sync_stream(q, stream)
+ sync_dbus(bus, q, conn)
+ q.unforbid_events([change_event])
+
+ # Now we cancel alice's subscription request and verify that if the
+ # redundant IQ is sent again, it's safely handled
+ presence = domish.Element(('jabber:client', 'presence'))
+ presence['from'] = contact
+ presence['type'] = 'unsubscribe'
+ stream.send(presence)
+
+ q.expect_many(
+ EventPattern('dbus-signal', signal='MembersChanged',
+ args=['', [], [handle], [], [], handle, cs.GC_REASON_NONE],
+ predicate=is_publish),
+ EventPattern('dbus-signal', signal='ContactsChanged',
+ args=[{handle: (cs.SUBSCRIPTION_STATE_NO,
+ cs.SUBSCRIPTION_STATE_REMOVED_REMOTELY, '')}, []]),
+ )
+
+ # Now we send a roster roster update with subscribe="none" again (which
+ # doesn't change anything, it just confirms what we already knew) and
+ # verify that nothing happens to her publish state in reaction to that.
+ q.forbid_events([change_event])
+
+ iq = make_set_roster_iq(stream, 'test@localhost/Resource', contact,
+ "none", False)
+ stream.send(iq)
+
+ sync_stream(q, stream)
+ sync_dbus(bus, q, conn)
+ q.unforbid_events([change_event])
+
# This event is forbidden in all of the deny tests!
remove_events = [
EventPattern('stream-iq', query_ns=ns.ROSTER,
@@ -520,6 +590,7 @@ def test(q, bus, conn, stream):
publish, subscribe, stored, deny = test_inital_roster(q, bus, conn, stream)
test_flickering(q, bus, conn, stream, subscribe)
+ test_local_pending(q, bus, conn, stream, subscribe)
test_deny_simple(q, bus, conn, stream, stored, deny)
test_deny_overlap_one(q, bus, conn, stream, subscribe, stored, deny)
test_deny_overlap_two(q, bus, conn, stream,