1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
from twisted.words.protocols.jabber.client import IQ
from gabbletest import (wrap_channel,)
from servicetest import (assertEquals, assertLength, EventPattern,
assertContains)
import constants as cs
import ns
def make_roster_push(stream, jid, subscription, ask_subscribe=False, name=None):
iq = IQ(stream, "set")
iq['id'] = 'push'
query = iq.addElement('query')
query['xmlns'] = ns.ROSTER
item = query.addElement('item')
item['jid'] = jid
item['subscription'] = subscription
if name is not None:
item['name'] = name
if ask_subscribe:
item['ask'] = 'subscribe'
return iq
def send_roster_push(stream, jid, subscription, ask_subscribe=False, name=None):
iq = make_roster_push(stream, jid, subscription,
ask_subscribe=ask_subscribe, name=name)
stream.send(iq)
def get_contact_list_event_patterns(q, bus, conn, expected_handle_type, name):
expected_handle = conn.RequestHandles(expected_handle_type, [name])[0]
def new_channel_predicate(e):
path, type, handle_type, handle, suppress_handler = e.args
if type != cs.CHANNEL_TYPE_CONTACT_LIST:
return False
if handle_type != expected_handle_type:
return False
if handle != expected_handle:
return False
return True
new_channel_repr = ('NewChannel(., ContactList, %u, "%s", .)'
% (expected_handle_type, name))
new_channel_predicate.__repr__ = lambda: new_channel_repr
def new_channels_predicate(e):
info, = e.args
if len(info) != 1:
return False
path, props = info[0]
if props.get(cs.CHANNEL_TYPE) != cs.CHANNEL_TYPE_CONTACT_LIST:
return False
if props.get(cs.TARGET_HANDLE_TYPE) != expected_handle_type:
return False
if props.get(cs.TARGET_HANDLE) != expected_handle:
return False
return True
new_channels_repr = ('NewChannels(... ct=ContactList, ht=%u, name="%s"... )'
% (expected_handle_type, name))
new_channels_predicate.__repr__ = lambda: new_channels_repr
return (
EventPattern('dbus-signal', signal='NewChannel',
predicate=new_channel_predicate),
EventPattern('dbus-signal', signal='NewChannels',
predicate=new_channels_predicate)
)
def expect_contact_list_signals(q, bus, conn, lists, groups=[]):
assert lists or groups
eps = []
for name in lists:
eps.extend(get_contact_list_event_patterns(q, bus, conn,
cs.HT_LIST, name))
for name in groups:
eps.extend(get_contact_list_event_patterns(q, bus, conn,
cs.HT_GROUP, name))
events = q.expect_many(*eps)
ret = []
for name in lists:
old_signal = events.pop(0)
new_signal = events.pop(0)
ret.append((old_signal, new_signal))
for name in groups:
old_signal = events.pop(0)
new_signal = events.pop(0)
ret.append((old_signal, new_signal))
assert len(events) == 0
return ret
def check_contact_list_signals(q, bus, conn, signals,
ht, name, contacts, lp_contacts=[], rp_contacts=[]):
"""
Looks at NewChannel and NewChannels signals for the contact list with ID
'name' and checks that its members, lp members and rp members are exactly
'contacts', 'lp_contacts' and 'rp_contacts'.
Returns a proxy for the channel.
"""
old_signal, new_signal = signals
path, type, handle_type, handle, suppress_handler = old_signal.args
assertEquals(cs.CHANNEL_TYPE_CONTACT_LIST, type)
assertEquals(name, conn.InspectHandles(handle_type, [handle])[0])
chan = wrap_channel(bus.get_object(conn.bus_name, path),
cs.CHANNEL_TYPE_CONTACT_LIST)
members = chan.Group.GetMembers()
assertEquals(sorted(contacts),
sorted(conn.InspectHandles(cs.HT_CONTACT, members)))
lp_handles = conn.RequestHandles(cs.HT_CONTACT, lp_contacts)
rp_handles = conn.RequestHandles(cs.HT_CONTACT, rp_contacts)
# NB. comma: we're unpacking args. Thython!
info, = new_signal.args
assertLength(1, info) # one channel
path_, emitted_props = info[0]
assertEquals(path_, path)
assertEquals(cs.CHANNEL_TYPE_CONTACT_LIST, emitted_props[cs.CHANNEL_TYPE])
assertEquals(ht, emitted_props[cs.TARGET_HANDLE_TYPE])
assertEquals(handle, emitted_props[cs.TARGET_HANDLE])
channel_props = chan.Properties.GetAll(cs.CHANNEL)
assertEquals(handle, channel_props.get('TargetHandle'))
assertEquals(ht, channel_props.get('TargetHandleType'))
assertEquals(cs.CHANNEL_TYPE_CONTACT_LIST, channel_props.get('ChannelType'))
assertContains(cs.CHANNEL_IFACE_GROUP, channel_props.get('Interfaces'))
assertEquals(name, channel_props['TargetID'])
assertEquals(False, channel_props['Requested'])
assertEquals('', channel_props['InitiatorID'])
assertEquals(0, channel_props['InitiatorHandle'])
group_props = chan.Properties.GetAll(cs.CHANNEL_IFACE_GROUP)
assertContains('HandleOwners', group_props)
assertContains('Members', group_props)
assertEquals(members, group_props['Members'])
assertContains('LocalPendingMembers', group_props)
actual_lp_handles = [x[0] for x in group_props['LocalPendingMembers']]
assertEquals(sorted(lp_handles), sorted(actual_lp_handles))
assertContains('RemotePendingMembers', group_props)
assertEquals(sorted(rp_handles), sorted(group_props['RemotePendingMembers']))
assertContains('GroupFlags', group_props)
return chan
|