summaryrefslogtreecommitdiff
path: root/tests/test-dbus-qeventloop/test-dbus-qeventloop.cpp
blob: f39d3eaff5629f0320574a31a724783ce890ab07 (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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
#include "dbusconnectioneventloop.h"
#include <QtTest/QtTest>

class TestDbusQEventLoop: public QObject
{
	Q_OBJECT

private:
	DBusConnection* systemBus;
	DBusConnection* sessionBus;
	DBUSConnectionEventLoop* dbusEventLoop;

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

	void processQTEventLoop(DBusPendingCall* pending, int timeout)
	{
		// 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);

		// Setup timeout timer
		startTimer(timeout);

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

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

	TestDbusQEventLoop()
	{
		resetValues();
	}

protected:
    void timerEvent(QTimerEvent *e)
    {
    	timerTimeout = true;
    	killTimer(e->timerId());
    }

	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()
	{
		// First allocate and obtain
		dbusEventLoop = new DBUSConnectionEventLoop();
		systemBus = dbus_bus_get(DBUS_BUS_SYSTEM, NULL);
		sessionBus = dbus_bus_get(DBUS_BUS_SESSION, NULL);;
		// Last check, if server is running
		pongServerRunningSystem = dbus_bus_name_has_owner(systemBus, "com.nokia.dbusqeventloop.test", NULL);
		pongServerRunningSession = dbus_bus_name_has_owner(sessionBus, "com.nokia.dbusqeventloop.test", NULL);


		// Create event loop ...
		QVERIFY(dbusEventLoop != NULL);
		QVERIFY(dbusEventLoop->addConnection(systemBus) == true);
		QVERIFY(dbusEventLoop->addConnection(sessionBus) == true);
		// Then test ... otherwise something don't have to be allocated (i.e. event loop)
		QVERIFY(systemBus != NULL);
		QVERIFY(sessionBus != NULL);
		QVERIFY(pongServerRunningSystem != 0);
		QVERIFY(pongServerRunningSession != 0);
	}

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

		// Set correct values to suppress fake errors if connection fails in initTestCase()
		bool systemTimeout = false, sessionTimeout = false;
		int systemResponse = 12345, sessionResponse = 12345;

		if( pongServerRunningSystem )
		{
			dbus_connection_send_with_reply(systemBus, message, &pending, 1000);

			processQTEventLoop(pending, 4000);
			systemTimeout = timerTimeout;
			systemResponse = responseInt;
		}

		if( pongServerRunningSession )
		{
			dbus_connection_send_with_reply(sessionBus, message, &pending, 1000);

			processQTEventLoop(pending, 4000);
			sessionTimeout = timerTimeout;
			sessionResponse = responseInt;
		}

		if( message )
		{
			dbus_message_unref(message);
		}

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

		QVERIFY(systemTimeout == false);
		QVERIFY(systemResponse == 12345);
		QVERIFY(sessionTimeout == false);
		QVERIFY(sessionResponse == 12345);
	}

	void pingSystemBusTest()
	{
		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, 4000);
		QVERIFY(timerTimeout == false);
		QVERIFY(strcmp(temp, responseString) == 0);
	}
/*
	void timeoutSystemBusTest()
	{
		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, 4000);
		QVERIFY(timerTimeout == false);
		QVERIFY(noResponse == true);
		sleep(1);
	}
*/
	void pingSessionBusTest()
	{
		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(sessionBus, message, &pending, 3000);

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

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

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

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

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

		processQTEventLoop(pending, 4000);
		QVERIFY(timerTimeout == false);
		QVERIFY(noResponse == true);
		sleep(1);
	}
};

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