aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-12-13 15:54:02 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-12-13 19:55:54 +0900
commitcf4759edba82baf51dd40285d2e13b200ca7fd29 (patch)
treee02aee4fcf70ce3c9f9e7e47285c210a75ac4730
parentcb5f0f61e74cdc4ee64530cd73af0d080538bc1e (diff)
downloadlibquotient-cf4759edba82baf51dd40285d2e13b200ca7fd29.tar.gz
libquotient-cf4759edba82baf51dd40285d2e13b200ca7fd29.zip
qmc-example: Fix the lazy-loading test
-rw-r--r--examples/qmc-example.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/examples/qmc-example.cpp b/examples/qmc-example.cpp
index bdb9ef3f..e66687da 100644
--- a/examples/qmc-example.cpp
+++ b/examples/qmc-example.cpp
@@ -83,6 +83,8 @@ void QMCTest::setup(const QString& testRoomName)
// Setting up sync loop
c->setLazyLoading(true);
c->sync();
+ connectSingleShot(c.data(), &Connection::syncDone,
+ this, &QMCTest::startTests);
connect(c.data(), &Connection::syncDone, c.data(), [this,testRoomName] {
cout << "Sync complete, "
<< running.size() << " tests in the air" << endl;
@@ -116,7 +118,6 @@ void QMCTest::setup(const QString& testRoomName)
targetRoom = room;
QMC_CHECK("Join room", true);
- startTests();
});
}
}
@@ -167,15 +168,16 @@ void QMCTest::loadMembers()
// It's not exactly correct because an arbitrary server might not support
// lazy loading; but in the absence of capabilities framework we assume
// it does.
- if (r->memberNames().size() < r->joinedCount())
+ if (r->memberNames().size() >= r->joinedCount())
{
cout << "Lazy loading doesn't seem to be enabled" << endl;
QMC_CHECK("Loading members", false);
return;
}
r->setDisplayed();
- connect(r, &Room::allMembersLoaded, [this] {
- QMC_CHECK("Loading members", true);
+ connect(r, &Room::allMembersLoaded, [this,r] {
+ QMC_CHECK("Loading members",
+ r->memberNames().size() + 1 >= r->joinedCount());
});
}