aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml6
-rw-r--r--examples/qmc-example.cpp76
2 files changed, 35 insertions, 47 deletions
diff --git a/.travis.yml b/.travis.yml
index c0e8c097..fc143a62 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,6 +10,9 @@ addons:
- qt57base
- qt57multimedia
- valgrind
+ homebrew:
+ packages:
+ - qt5
matrix:
include:
@@ -19,7 +22,8 @@ matrix:
- os: linux
compiler: clang
- os: osx
- env: [ 'ENV_EVAL="brew update && brew install qt5 && PATH=/usr/local/opt/qt/bin:$PATH"' ]
+ osx_image: xcode10
+ env: [ 'ENV_EVAL="PATH=/usr/local/opt/qt/bin:$PATH"' ]
before_install:
- eval "${ENV_EVAL}"
diff --git a/examples/qmc-example.cpp b/examples/qmc-example.cpp
index 7be82a28..8fbf4824 100644
--- a/examples/qmc-example.cpp
+++ b/examples/qmc-example.cpp
@@ -37,7 +37,7 @@ class QMCTest : public QObject
void addAndRemoveTag();
void sendAndRedact();
void checkRedactionOutcome(const QString& evtIdToRedact,
- RoomEventsRange events);
+ const QMetaObject::Connection& sc);
void markDirectChat();
void checkDirectChatOutcome(
const Connection::DirectChatsMap& added);
@@ -381,70 +381,54 @@ void QMCTest::sendAndRedact()
{
running.push_back("Redaction");
cout << "Sending a message to redact" << endl;
- if (auto* job = targetRoom->connection()->sendMessage(targetRoom->id(),
- RoomMessageEvent(origin % ": message to redact")))
+ auto txnId = targetRoom->postPlainText(origin % ": message to redact");
+ if (txnId.isEmpty())
{
- connect(job, &BaseJob::success, targetRoom, [job,this] {
+ QMC_CHECK("Redaction", false);
+ return;
+ }
+ connect(targetRoom, &Room::messageSent, this,
+ [this,txnId] (const QString& tId, const QString& evtId) {
+ if (tId != txnId)
+ return;
+
cout << "Redacting the message" << endl;
- targetRoom->redactEvent(job->eventId(), origin);
- // Make sure to save the event id because the job is about to end.
- connect(targetRoom, &Room::aboutToAddNewMessages, this,
- std::bind(&QMCTest::checkRedactionOutcome,
- this, job->eventId(), _1));
+ targetRoom->redactEvent(evtId, origin);
+ QMetaObject::Connection sc;
+ sc = connect(targetRoom, &Room::addedMessages, this,
+ [this,sc,evtId] { checkRedactionOutcome(evtId, sc); });
});
- } else
- QMC_CHECK("Redaction", false);
}
void QMCTest::checkRedactionOutcome(const QString& evtIdToRedact,
- RoomEventsRange events)
+ const QMetaObject::Connection& sc)
{
- static bool checkSucceeded = false;
// There are two possible (correct) outcomes: either the event comes already
// redacted at the next sync, or the nearest sync completes with
// the unredacted event but the next one brings redaction.
- auto it = std::find_if(events.begin(), events.end(),
- [=] (const RoomEventPtr& e) {
- return e->id() == evtIdToRedact;
- });
- if (it == events.end())
+ auto it = targetRoom->findInTimeline(evtIdToRedact);
+ if (it == targetRoom->timelineEdge())
return; // Waiting for the next sync
if ((*it)->isRedacted())
{
- if (checkSucceeded)
- {
- const auto msg =
- "The redacted event came in with the sync again, ignoring";
- cout << msg << endl;
- targetRoom->postPlainText(msg);
- return;
- }
cout << "The sync brought already redacted message" << endl;
QMC_CHECK("Redaction", true);
- // Not disconnecting because there are other connections from this class
- // to aboutToAddNewMessages
- checkSucceeded = true;
+ disconnect(sc);
return;
}
- // The event is not redacted
- if (checkSucceeded)
- {
- const auto msg =
- "Warning: the redacted event came non-redacted with the sync!";
- cout << msg << endl;
- targetRoom->postPlainText(msg);
- }
- cout << "Message came non-redacted with the sync, waiting for redaction" << endl;
- connect(targetRoom, &Room::replacedEvent, targetRoom,
- [=] (const RoomEvent* newEvent, const RoomEvent* oldEvent) {
- QMC_CHECK("Redaction", oldEvent->id() == evtIdToRedact &&
- newEvent->isRedacted() &&
- newEvent->redactionReason() == origin);
- checkSucceeded = true;
- disconnect(targetRoom, &Room::replacedEvent, nullptr, nullptr);
+ cout << "Message came non-redacted with the sync, waiting for redaction"
+ << endl;
+ connect(targetRoom, &Room::replacedEvent, this,
+ [this,evtIdToRedact]
+ (const RoomEvent* newEvent, const RoomEvent* oldEvent) {
+ if (oldEvent->id() == evtIdToRedact)
+ {
+ QMC_CHECK("Redaction", newEvent->isRedacted() &&
+ newEvent->redactionReason() == origin);
+ disconnect(targetRoom, &Room::replacedEvent, nullptr, nullptr);
+ }
});
-
}
void QMCTest::markDirectChat()