[telepathy-mission-control/master] account-manager/auto-connect.py: add regression test for signing in on MC startup

Simon McVittie simon.mcvittie at collabora.co.uk
Wed May 20 08:23:52 PDT 2009


---
 test/twisted/Makefile.am                     |    1 +
 test/twisted/account-manager/auto-connect.py |   97 ++++++++++++++++++++++++++
 2 files changed, 98 insertions(+), 0 deletions(-)
 create mode 100644 test/twisted/account-manager/auto-connect.py

diff --git a/test/twisted/Makefile.am b/test/twisted/Makefile.am
index 1df5a05..d58fb28 100644
--- a/test/twisted/Makefile.am
+++ b/test/twisted/Makefile.am
@@ -28,6 +28,7 @@ TWISTED_BASIC_TESTS = \
 	test-connect.py
 
 TWISTED_SEPARATE_TESTS = \
+	account-manager/auto-connect.py \
 	crash-recovery/crash-recovery.py \
 	crash-recovery/client-crash-during-recovery.py \
 	dispatcher/create-at-startup.py
diff --git a/test/twisted/account-manager/auto-connect.py b/test/twisted/account-manager/auto-connect.py
new file mode 100644
index 0000000..8d83de6
--- /dev/null
+++ b/test/twisted/account-manager/auto-connect.py
@@ -0,0 +1,97 @@
+"""Feature test for automatically signing in and setting presence etc.
+"""
+
+import os
+
+import dbus
+import dbus.service
+
+from servicetest import EventPattern, tp_name_prefix, tp_path_prefix, \
+        call_async
+from mctest import exec_test, SimulatedConnection, create_fakecm_account
+import constants as cs
+
+cm_name_ref = dbus.service.BusName(
+        cs.tp_name_prefix + '.ConnectionManager.fakecm', bus=dbus.SessionBus())
+
+def preseed():
+
+    accounts_dir = os.environ['MC_ACCOUNT_DIR']
+
+    accounts_cfg = open(accounts_dir + '/accounts.cfg', 'w')
+    accounts_cfg.write("""# Telepathy accounts
+[fakecm/fakeprotocol/jc_2edenton_40unatco_2eint]
+manager=fakecm
+protocol=fakeprotocol
+DisplayName=Work account
+NormalizedName=jc.denton at unatco.int
+param-account=jc.denton at unatco.int
+param-password=ionstorm
+Enabled=1
+ConnectAutomatically=1
+AutomaticPresenceType=2
+AutomaticPresenceStatus=available
+AutomaticPresenceMessage=My vision is augmented
+Nickname=JC
+""")
+    accounts_cfg.close()
+
+    account_connections_file = open(accounts_dir + '/.mc_connections', 'w')
+    account_connections_file.write("")
+    account_connections_file.close()
+
+def test(q, bus, mc):
+    expected_params = {
+            'account': 'jc.denton at unatco.int',
+            'password': 'ionstorm',
+            }
+
+    e = q.expect('dbus-method-call', method='RequestConnection',
+            args=['fakeprotocol', expected_params],
+            destination=cs.tp_name_prefix + '.ConnectionManager.fakecm',
+            path=cs.tp_path_prefix + '/ConnectionManager/fakecm',
+            interface=cs.tp_name_prefix + '.ConnectionManager',
+            handled=False)
+
+    conn = SimulatedConnection(q, bus, 'fakecm', 'fakeprotocol', '_',
+            'myself', has_presence=True)
+
+    q.dbus_return(e.message, conn.bus_name, conn.object_path, signature='so')
+
+    account_path = (cs.tp_path_prefix +
+        '/Account/fakecm/fakeprotocol/jc_2edenton_40unatco_2eint')
+
+    e, _ = q.expect_many(
+            EventPattern('dbus-signal', signal='AccountPropertyChanged',
+                path=account_path, interface=cs.ACCOUNT),
+            EventPattern('dbus-method-call', method='Connect',
+                path=conn.object_path, handled=True, interface=cs.CONN),
+            )
+    assert e.args[0]['Connection'] == conn.object_path
+    assert e.args[0]['ConnectionStatus'] == cs.CONN_STATUS_CONNECTING
+    assert e.args[0]['ConnectionStatusReason'] == \
+            cs.CONN_STATUS_REASON_REQUESTED
+
+    conn.StatusChanged(cs.CONN_STATUS_CONNECTED, cs.CONN_STATUS_REASON_NONE)
+
+    call, e = q.expect_many(
+            EventPattern('dbus-method-call', path=conn.object_path,
+                interface=cs.CONN_IFACE_SIMPLE_PRESENCE, method='SetPresence',
+                handled=False),
+            EventPattern('dbus-signal', signal='AccountPropertyChanged',
+                path=account_path, interface=cs.ACCOUNT),
+            )
+
+    assert e.args[0]['ConnectionStatus'] == cs.CONN_STATUS_CONNECTED
+    assert e.args[0]['HasBeenOnline'] == True
+
+    q.dbus_return(call.message, signature='')
+
+    e = q.expect('dbus-signal', signal='AccountPropertyChanged',
+            path=account_path, interface=cs.ACCOUNT)
+    assert e.args[0]['CurrentPresence'] == (cs.PRESENCE_TYPE_AVAILABLE,
+            'available', 'My vision is augmented')
+
+if __name__ == '__main__':
+    preseed()
+    exec_test(test, {})
-- 
1.5.6.5




More information about the telepathy-commits mailing list