/**************************************************************************** * * * This file is part of guh. * * * * Guh is free software: you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation, version 2 of the License. * * * * Guh is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with guh. If not, see . * * * ***************************************************************************/ #include "guhtestbase.h" #include "guhcore.h" #include "devicemanager.h" #include "mocktcpserver.h" #include #include #include #include #include #include #include class TestEvents: public GuhTestBase { Q_OBJECT private slots: void triggerEvent(); void triggerStateChangeEvent(); void params(); }; void TestEvents::triggerEvent() { QList devices = GuhCore::instance()->findConfiguredDevices(mockDeviceClassId); QVERIFY2(devices.count() > 0, "There needs to be at least one configured Mock Device for this test"); Device *device = devices.first(); QSignalSpy spy(GuhCore::instance(), SIGNAL(eventTriggered(const Event&))); // Setup connection to mock client QNetworkAccessManager nam; // trigger event in mock device int port = device->paramValue("httpport").toInt(); QNetworkRequest request(QUrl(QString("http://localhost:%1/generateevent?eventtypeid=%2").arg(port).arg(mockEvent1Id.toString()))); QNetworkReply *reply = nam.get(request); reply->deleteLater(); // Lets wait for the notification spy.wait(); QCOMPARE(spy.count(), 1); // Make sure the event contains all the stuff we expect Event event = spy.at(0).at(0).value(); QCOMPARE(event.eventTypeId(), mockEvent1Id); QCOMPARE(event.deviceId(), device->id()); } void TestEvents::triggerStateChangeEvent() { QList devices = GuhCore::instance()->findConfiguredDevices(mockDeviceClassId); QVERIFY2(devices.count() > 0, "There needs to be at least one configured Mock Device for this test"); Device *device = devices.first(); QSignalSpy spy(GuhCore::instance(), SIGNAL(eventTriggered(const Event&))); // Setup connection to mock client QNetworkAccessManager nam; // trigger state changed event in mock device int port = device->paramValue("httpport").toInt(); QNetworkRequest request(QUrl(QString("http://localhost:%1/setstate?%2=%3").arg(port).arg(mockIntStateId.toString()).arg(11))); QNetworkReply *reply = nam.get(request); reply->deleteLater(); // Lets wait for the notification spy.wait(); QCOMPARE(spy.count(), 1); // Make sure the event contains all the stuff we expect Event event = spy.at(0).at(0).value(); QCOMPARE(event.eventTypeId().toString(), mockIntStateId.toString()); QCOMPARE(event.deviceId(), device->id()); QCOMPARE(event.param("value").value().toInt(), 11); } void TestEvents::params() { Event event; QList params; Param p("foo", "bar"); params.append(p); event.setParams(params); QVERIFY(event.param("foo").value().toString() == "bar"); QVERIFY(!event.param("baz").value().isValid()); } #include "testevents.moc" QTEST_MAIN(TestEvents)