summaryrefslogtreecommitdiff
path: root/tests/twisted/avahi/tubes/tubes-to-nonexistant-ids.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/twisted/avahi/tubes/tubes-to-nonexistant-ids.py')
-rw-r--r--tests/twisted/avahi/tubes/tubes-to-nonexistant-ids.py54
1 files changed, 0 insertions, 54 deletions
diff --git a/tests/twisted/avahi/tubes/tubes-to-nonexistant-ids.py b/tests/twisted/avahi/tubes/tubes-to-nonexistant-ids.py
deleted file mode 100644
index 7fb9b162..00000000
--- a/tests/twisted/avahi/tubes/tubes-to-nonexistant-ids.py
+++ /dev/null
@@ -1,54 +0,0 @@
-"""
-Test that requests for Tubes and StreamTube channels to ids which aren't
-actually on the network fail gracefully with NotAvailable
-"""
-
-from saluttest import exec_test
-
-from constants import (
- HT_CONTACT, CONN_IFACE_REQUESTS,
- CHANNEL_TYPE, TARGET_HANDLE_TYPE, TARGET_HANDLE,
- CHANNEL_TYPE_TUBES, CHANNEL_TYPE_STREAM_TUBE,
- NOT_AVAILABLE
- )
-
-import dbus
-
-arbitrary_ids = [ "DooN4Bei@TheeK6bo-Tegh4aci", "ahrui1iM@Dai6igho-ADetaes3" ]
-
-print "FIXME: disabled because 1-1 tubes are disabled for now"
-# exiting 77 causes automake to consider the test to have been skipped
-raise SystemExit(77)
-
-def test(q, bus, conn):
- conn.Connect()
- q.expect('dbus-signal', signal='StatusChanged', args=[0L, 0L])
-
- h1, h2 = conn.RequestHandles(HT_CONTACT, arbitrary_ids)
-
- try:
- conn.RequestChannel(CHANNEL_TYPE_TUBES, HT_CONTACT, h1, True)
- except dbus.DBusException, e:
- assert e.get_dbus_name() == NOT_AVAILABLE, e.get_dbus_name()
- else:
- assert False, "Should raise NotAvailable error"
-
- requestotron = dbus.Interface(conn, CONN_IFACE_REQUESTS)
-
- try:
- requestotron.CreateChannel({
- CHANNEL_TYPE: CHANNEL_TYPE_STREAM_TUBE,
- TARGET_HANDLE_TYPE: HT_CONTACT,
- TARGET_HANDLE: h2,
- CHANNEL_TYPE_STREAM_TUBE + ".Service": "com.example",
- })
- except dbus.DBusException, e:
- assert e.get_dbus_name() == NOT_AVAILABLE, e.get_dbus_name()
- else:
- assert False, "Should raise NotAvailable error"
-
- conn.Disconnect()
- q.expect('dbus-signal', signal='StatusChanged', args=[2, 1])
-
-if __name__ == '__main__':
- exec_test(test)