summaryrefslogtreecommitdiff
path: root/tests/test-dbus-qeventloop/test-dbus-qeventloop.cpp
blob: f50f95ac8d1638f10d9c262a2603ed0210a8386d (plain)
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
#include "dbusconnectioneventloop.h"
#include <QtTest/QtTest>

class TestDbusQEventLoop: public QObject
{
	Q_OBJECT

private:
	DBusConnection* systemBus;
	DBUSConnectionEventLoop* dbusEventLoop;

	void resetValues()
	{
		wasInNotifyFnc = 0;
		responseString = 0;
		responseInt    = 0;
		typeError      = false;
		noResponse     = false;
	}

	void processQTEventLoop(DBusPendingCall* pending)
	{
		// Reset response values to zeros and reset errors
		resetValues();

		// Do we have something pending?
		if( pending == NULL )
		{
			return;
		}

		// If we have some pending operation, let's get notification about result
		dbus_pending_call_set_notify(pending, TestDbusQEventLoop::pendingNotify, this, NULL);

		// Pump QT event loop, but only until pending operation is not finished
		while( !wasInNotifyFnc )
		{
			QCoreApplication::processEvents(QEventLoop::AllEvents);
		}
	}

public:
	int 		wasInNotifyFnc;
	const char* responseString;
	uint32_t	responseInt;
	bool		typeError;
	bool		noResponse;

	TestDbusQEventLoop()
	{
		resetValues();
	}

protected:
	static void pendingNotify(DBusPendingCall *pending, void *user_data)
	{
		MYDEBUG();
		TestDbusQEventLoop* pThis = reinterpret_cast<TestDbusQEventLoop*>(user_data);
		DBusMessage* message = dbus_pending_call_steal_reply(pending);

		DBusMessageIter args;
		if( !dbus_message_iter_init(message, &args) )
			MYDEBUGC("Reply message has no arguments!");
		else
		{
			const char* error = dbus_message_get_error_name(message);

			if( error != NULL )
			{
				pThis->noResponse = (strcmp(error, "org.freedesktop.DBus.Error.NoReply") == 0);
			}

			int argType = dbus_message_iter_get_arg_type(&args);
			switch( argType )
			{
			case DBUS_TYPE_STRING:
				dbus_message_iter_get_basic(&args, &pThis->responseString);
				if( error != NULL )
					MYDEBUGC("Got error [%s]: %s", error, pThis->responseString);
				else
					MYDEBUGC("Got Reply: %s", pThis->responseString);
				break;
			case DBUS_TYPE_BOOLEAN:
			case DBUS_TYPE_UINT32:
				dbus_message_iter_get_basic(&args, &pThis->responseInt);
				MYDEBUGC("Got Reply: %d", pThis->responseInt);
				break;
			default:
				MYDEBUGC("Reply message argument has unsupported type (%d)!", argType);
				pThis->typeError = true;
			}
		}

		if( message )
			dbus_message_unref(message);

		dbus_pending_call_unref(pending);

		pThis->wasInNotifyFnc = 1;
	}

private slots:
	void initTestCase()
	{
		systemBus = dbus_bus_get(DBUS_BUS_SYSTEM, NULL);
		QVERIFY(systemBus != NULL);

		dbusEventLoop = new DBUSConnectionEventLoop();
		QVERIFY(dbusEventLoop != NULL);

		QVERIFY(dbus_bus_name_has_owner(systemBus, "com.nokia.dbusqeventloop.test", NULL) == true);
	}

	void cleanupTestCase()
	{
		DBusMessage* message = dbus_message_new_method_call("com.nokia.dbusqeventloop.test", "/", NULL, "quit");
		QVERIFY(message != NULL);
		DBusPendingCall* pending;
        dbus_connection_send_with_reply(systemBus, message, &pending, 3000);
		dbus_message_unref(message);

		processQTEventLoop(pending);
		QVERIFY(responseInt == 12345);

		QVERIFY(dbusEventLoop != NULL);
		delete dbusEventLoop;
		dbusEventLoop = NULL;
	}

	void initConnectionTest()
	{
		QVERIFY(dbusEventLoop->initConnection(systemBus) == true);
	}

	void pingTest()
	{
		DBusMessage* message = dbus_message_new_method_call("com.nokia.dbusqeventloop.test", "/", NULL, "ping");
		QVERIFY(message != NULL);

		const char* temp = "pekny kohutik co sa prechadza po svojom novom dvore a obzera si sliepocky";
		dbus_message_append_args(message, DBUS_TYPE_STRING, &temp, DBUS_TYPE_INVALID);

		DBusPendingCall* pending;
        dbus_connection_send_with_reply(systemBus, message, &pending, 3000);

		// Free the signal now we have finished with it
		dbus_message_unref(message);

		processQTEventLoop(pending);
		QVERIFY(strcmp(temp, responseString) == 0);
	}

	void timeoutTest()
	{
		DBusMessage* message = dbus_message_new_method_call("com.nokia.dbusqeventloop.test", "/", NULL, "timeout");
		QVERIFY(message != NULL);

		DBusPendingCall* pending;
        dbus_connection_send_with_reply(systemBus, message, &pending, 1000);

		// Free the signal now we have finished with it
		dbus_message_unref(message);

		processQTEventLoop(pending);
		QVERIFY(noResponse == true);
		sleep(1);
	}
};

QTEST_MAIN(TestDbusQEventLoop)
#include "test-dbus-qeventloop.moc"