public static void utc_eldbus_introspect_p() { var app = Efl.App.AppMain; var conn = new eldbus.Connection(eldbus.Connection.Type.Session); var obj = new eldbus.Object(conn, DBusBus, DBusPath); int messageCapture = 0; bool isSuccess = false; eldbus.MessageDelegate objectMessageCb = delegate(eldbus.Message msg, eldbus.Pending p) { try { string errname; string errmsg; if (messageCapture == 5) { if (!msg.GetError(out errname, out errmsg)) { string txt; if (msg.Get(out txt)) { if (!String.IsNullOrEmpty(txt)) { isSuccess = true; } } } } } finally { app.Quit(0); } }; eldbus.Pending pending = obj.Introspect(objectMessageCb); AssertEquals(pending.GetMethod(), "Introspect"); var timer = new Efl.LoopTimer(app, 2.0); timer.TimerTickEvent += (object sender, EventArgs e) => { app.Quit(0); }; messageCapture = 5; app.Begin(); Assert(isSuccess, "Method Introspect is not call"); timer.Dispose(); obj.Dispose(); conn.Dispose(); }
private static void ActivatableList(eldbus.MessageDelegate messageCb) { isSuccess = false; var app = Efl.App.AppMain; var conn = new eldbus.Connection(eldbus.Connection.Type.Session); eldbus.Pending pending = conn.ActivatableList(messageCb); AssertEquals(pending.GetMethod(), "ListActivatableNames"); var timer = new Efl.LoopTimer(app, 2.0); timer.TimerTickEvent += (object sender, EventArgs e) => { app.Quit(0); }; app.Begin(); Assert(isSuccess, "Method ListActivatableNames is not call"); timer.Dispose(); conn.Dispose(); }
public static void utc_eldbus_object_send_info_get_p() { var app = Efl.App.AppMain; var conn = new eldbus.Connection(eldbus.Connection.Type.Session); var obj = new eldbus.Object(conn, DBusBus, DBusPath); string busFromObject = obj.GetBusName(); AssertEquals(DBusBus, busFromObject); string pathFromObject = obj.GetPath(); AssertEquals(DBusPath, pathFromObject); obj.Ref(); obj.Unref(); { var connectionFromObj = obj.GetConnection(); Assert(conn.Handle == connectionFromObj.Handle); connectionFromObj.Dispose(); } int messageCapture = 0; bool isSuccess = false; eldbus.MessageDelegate objectMessageCb = delegate(eldbus.Message msg, eldbus.Pending p) { try { string errname; string errmsg; if (messageCapture == 5) { if (!msg.GetError(out errname, out errmsg)) { string txt; if (msg.Get(out txt)) { if (!String.IsNullOrEmpty(txt)) { isSuccess = true; } } } } } finally { app.Quit(0); } }; var methodName = "GetId"; var message = obj.NewMethodCall(DBusInterface, methodName); eldbus.Pending pending = obj.Send(message, objectMessageCb, -1); AssertEquals(pending.GetMethod(), methodName); var timer = new Efl.LoopTimer(app, 2.0); timer.TimerTickEvent += (object sender, EventArgs e) => { app.Quit(0); }; messageCapture = 5; app.Begin(); Assert(isSuccess, $"Method {methodName} is not call"); timer.Dispose(); message.Dispose(); obj.Dispose(); conn.Dispose(); }
public static void utc_eldbus_message_info_data_get_p() { isSuccess = false; var app = Efl.App.AppMain; var conn = new eldbus.Connection(eldbus.Connection.Type.Session); string methodName = "GetId"; eldbus.Message msg = eldbus.Message.NewMethodCall(DBusBus, DBusPath, DBusInterface, methodName); string interfaceMsg = msg.GetInterface(); AssertEquals(DBusInterface, interfaceMsg); string methodMsg = msg.GetMember(); AssertEquals(methodName, methodMsg); string pathMsg = msg.GetPath(); AssertEquals(DBusPath, pathMsg); eldbus.MessageDelegate messageMethodCb = delegate(eldbus.Message m, eldbus.Pending p) { try { string errname, errmsg; if (!m.GetError(out errname, out errmsg)) { string txt; if (m.Get(out txt)) { if (!String.IsNullOrEmpty(txt)) { if (m.GetSender() == DBusBus && !String.IsNullOrEmpty(m.GetDestination())) { isSuccess = true; } } } } } finally { app.Quit(0); } }; const int timeoutSendMs = 1000; eldbus.Pending pending = conn.Send(msg, messageMethodCb, timeoutSendMs); AssertEquals(pending.GetMethod(), methodName); var timer = new Efl.LoopTimer(app, 2.0); timer.TimerTickEvent += (object sender, EventArgs e) => { app.Quit(0); }; app.Begin(); Assert(isSuccess, $"Method {methodName} is not call"); timer.Dispose(); msg.Dispose(); conn.Dispose(); }