/usr/lib/telepathy-gabble-tests/twisted/olpc/change-notifications.py is in telepathy-gabble-tests 0.18.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | """
test OLPC Buddy properties change notifications
"""
# FIXME: merge this file to other tests ?
from servicetest import EventPattern
from gabbletest import exec_test, acknowledge_iq
import constants as cs
from util import send_buddy_changed_properties_msg
import ns
def test(q, bus, conn, stream):
iq_event, disco_event = q.expect_many(
EventPattern('stream-iq', to=None, query_ns='vcard-temp',
query_name='vCard'),
EventPattern('stream-iq', to='localhost', query_ns=ns.DISCO_ITEMS))
acknowledge_iq(stream, iq_event.stanza)
handles = {}
handles['alice'] = conn.RequestHandles(1, ['alice@localhost'])[0]
# Alice, one our friends changed her properties
send_buddy_changed_properties_msg(stream, 'alice@localhost',
{'color': ('str', '#005FE4,#00A0FF')})
event = q.expect('dbus-signal', signal='PropertiesChanged',
args=[handles['alice'], {'color' : '#005FE4,#00A0FF'}])
if __name__ == '__main__':
exec_test(test)
|