diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-06-12 15:14:45 +0200 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2020-07-18 18:20:27 +0200 |
commit | 5f3e88b87748bb982858850803e8405ac88919d9 (patch) | |
tree | 7fa53c9471f28018af8113bcafcabcc5defc5b7a | |
parent | 012f6ea6a4fa63d4e48e910f829e060c19cbcb1e (diff) | |
download | libquotient-5f3e88b87748bb982858850803e8405ac88919d9.tar.gz libquotient-5f3e88b87748bb982858850803e8405ac88919d9.zip |
quotest: delay sync start till after joining
To ensure that the sync returns the details of the room just joined.
-rw-r--r-- | tests/quotest.cpp | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/tests/quotest.cpp b/tests/quotest.cpp index 68b8ebd6..7076264c 100644 --- a/tests/quotest.cpp +++ b/tests/quotest.cpp @@ -217,22 +217,20 @@ void TestManager::setupAndRun() clog << "Access token: " << c->accessToken().toStdString() << endl; c->setLazyLoading(true); - c->syncLoop(); clog << "Joining " << targetRoomName.toStdString() << endl; auto joinJob = c->joinRoom(targetRoomName); - // Ensure, before this test is completed, that the room has been joined - // and filled with some events so that other tests could use that + // Ensure that the room has been joined and filled with some events + // so that other tests could use that connect(joinJob, &BaseJob::success, this, [this, joinJob] { testSuite = new TestSuite(c->room(joinJob->roomId()), origin, this); + // Only start the sync after joining, to make sure the room just + // joined is in it + c->syncLoop(); connectSingleShot(c, &Connection::syncDone, this, [this] { - if (testSuite->room()->timelineSize() > 0) - doTests(); - else { - testSuite->room()->getPreviousContent(); - connectSingleShot(testSuite->room(), &Room::addedMessages, this, - &TestManager::doTests); - } + testSuite->room()->getPreviousContent(); + connectSingleShot(testSuite->room(), &Room::addedMessages, this, + &TestManager::doTests); }); }); connect(joinJob, &BaseJob::failure, this, [this] { |