aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-01-10 16:52:31 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2019-01-13 18:02:24 +0900
commite2c0148960e6e2b4595599de94d7a867f13782a0 (patch)
tree538c41f9a7200888dfdf27baa535be9439c51f4a
parent4c30996f28bfb6507eb5fb6f730a8769f8d964e3 (diff)
downloadlibquotient-e2c0148960e6e2b4595599de94d7a867f13782a0.tar.gz
libquotient-e2c0148960e6e2b4595599de94d7a867f13782a0.zip
qmc-example: add setTopic test for true and fake state changes
-rw-r--r--examples/qmc-example.cpp43
1 files changed, 43 insertions, 0 deletions
diff --git a/examples/qmc-example.cpp b/examples/qmc-example.cpp
index 4b39b032..421ead27 100644
--- a/examples/qmc-example.cpp
+++ b/examples/qmc-example.cpp
@@ -5,6 +5,7 @@
#include "csapi/room_send.h"
#include "csapi/joining.h"
#include "csapi/leaving.h"
+#include "events/simplestateevents.h"
#include <QtCore/QCoreApplication>
#include <QtCore/QStringBuilder>
@@ -34,6 +35,7 @@ class QMCTest : public QObject
void sendFile();
void checkFileSendingOutcome(const QString& txnId,
const QString& fileName);
+ void setTopic();
void addAndRemoveTag();
void sendAndRedact();
bool checkRedactionOutcome(const QString& evtIdToRedact);
@@ -168,6 +170,7 @@ void QMCTest::doTests()
sendMessage();
sendFile();
+ setTopic();
addAndRemoveTag();
sendAndRedact();
markDirectChat();
@@ -327,6 +330,46 @@ void QMCTest::checkFileSendingOutcome(const QString& txnId,
QMC_CHECK("File sending", false);
});
return true;
+ });
+}
+
+void QMCTest::setTopic()
+{
+ static const char* const stateTestName = "State setting test";
+ static const char* const fakeStateTestName = "Fake state event immunity test";
+ running.push_back(stateTestName);
+ running.push_back(fakeStateTestName);
+ auto initialTopic = targetRoom->topic();
+
+ const auto newTopic = c->generateTxnId();
+ targetRoom->setTopic(newTopic); // Sets the state by proper means
+ const auto fakeTopic = c->generateTxnId();
+ targetRoom->postJson(RoomTopicEvent::matrixTypeId(), // Fake state event
+ RoomTopicEvent(fakeTopic).contentJson());
+
+ connectUntil(targetRoom, &Room::topicChanged, this,
+ [this,newTopic,fakeTopic,initialTopic] {
+ if (targetRoom->topic() == newTopic)
+ {
+ QMC_CHECK(stateTestName, true);
+ // Don't reset the topic yet if the negative test still runs
+ if (!running.contains(fakeStateTestName))
+ targetRoom->setTopic(initialTopic);
+
+ return true;
+ }
+ return false;
+ });
+
+ connectUntil(targetRoom, &Room::pendingEventAboutToMerge, this,
+ [this,fakeTopic,initialTopic] (const RoomEvent* e, int) {
+ if (e->contentJson().value("topic").toString() != fakeTopic)
+ return false; // Wait on for the right event
+
+ QMC_CHECK(fakeStateTestName, !e->isStateEvent());
+ if (!running.contains(fakeStateTestName))
+ targetRoom->setTopic(initialTopic);
+ return true;
});
}