summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2009-11-10 21:04:55 (GMT)
committerRemko Tronçon <git@el-tramo.be>2009-11-10 21:04:55 (GMT)
commit66ced3654ad295478b33d3e4f1716f66ab4048b5 (patch)
tree8783f2a3c51b51ab83a567c9064c5f65aadee188 /Swiften/QA/ClientTest
parent3914231a023e36881c2a760a3d8973ffdd2a18ad (diff)
downloadswift-66ced3654ad295478b33d3e4f1716f66ab4048b5.zip
swift-66ced3654ad295478b33d3e4f1716f66ab4048b5.tar.bz2
Even more Client refactoring.
Diffstat (limited to 'Swiften/QA/ClientTest')
-rw-r--r--Swiften/QA/ClientTest/ClientTest.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/Swiften/QA/ClientTest/ClientTest.cpp b/Swiften/QA/ClientTest/ClientTest.cpp
index 412eb53..b50a0bf 100644
--- a/Swiften/QA/ClientTest/ClientTest.cpp
+++ b/Swiften/QA/ClientTest/ClientTest.cpp
@@ -16,12 +16,13 @@ SimpleEventLoop eventLoop;
Client* client = 0;
bool rosterReceived = false;
void handleRosterReceived(boost::shared_ptr<Payload>) {
rosterReceived = true;
+ client->disconnect();
eventLoop.stop();
}
void handleConnected() {
boost::shared_ptr<GetRosterRequest> rosterRequest(new GetRosterRequest(client));
rosterRequest->onResponse.connect(boost::bind(&handleRosterReceived, _1));
@@ -43,16 +44,17 @@ int main(int, char**) {
client = new Swift::Client(JID(jid), String(pass));
ClientXMLTracer* tracer = new ClientXMLTracer(client);
client->onConnected.connect(&handleConnected);
client->connect();
{
- boost::shared_ptr<Timer> timer(new Timer(10000, &MainBoostIOServiceThread::getInstance().getIOService()));
+ boost::shared_ptr<Timer> timer(new Timer(30000, &MainBoostIOServiceThread::getInstance().getIOService()));
timer->onTick.connect(boost::bind(&SimpleEventLoop::stop, &eventLoop));
timer->start();
eventLoop.run();
}
+
delete tracer;
delete client;
return !rosterReceived;
}