aboutsummaryrefslogtreecommitdiff
path: root/quotest/quotest.cpp
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-08-24 09:41:51 +0200
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-08-24 09:41:51 +0200
commit82f4efb0227e7e22e831733fae3952818b063ac2 (patch)
tree3b154a16f9d355996a59c611230d0e010edab57f /quotest/quotest.cpp
parent16d4f4e48304543a0ab59b235edba07f5f2c2204 (diff)
parent6308bff3336ca7680eee54d9bd125f780fa9f033 (diff)
downloadlibquotient-82f4efb0227e7e22e831733fae3952818b063ac2.tar.gz
libquotient-82f4efb0227e7e22e831733fae3952818b063ac2.zip
Merge branch 'dev' into device-verification
# Conflicts: # autotests/testfilecrypto.cpp # lib/connection.cpp # lib/connection.h # lib/database.cpp # lib/database.h # lib/e2ee/qolmoutboundsession.cpp # lib/e2ee/qolmoutboundsession.h # lib/eventitem.h # lib/events/encryptedevent.cpp # lib/events/encryptedevent.h # lib/events/encryptedfile.cpp # lib/events/encryptedfile.h # lib/events/keyverificationevent.cpp # lib/events/keyverificationevent.h # lib/events/roomkeyevent.h # lib/room.cpp # lib/room.h
Diffstat (limited to 'quotest/quotest.cpp')
-rw-r--r--quotest/quotest.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/quotest/quotest.cpp b/quotest/quotest.cpp
index 792faabd..90a5a69b 100644
--- a/quotest/quotest.cpp
+++ b/quotest/quotest.cpp
@@ -516,30 +516,14 @@ bool TestSuite::checkFileSendingOutcome(const TestToken& thisTest,
&& e.hasFileContent()
&& e.content()->fileInfo()->originalName == fileName
&& testDownload(targetRoom->connection()->makeMediaUrl(
- e.content()->fileInfo()->url)));
+ e.content()->fileInfo()->url())));
},
[this, thisTest](const RoomEvent&) { FAIL_TEST(); });
});
return true;
}
-class CustomEvent : public RoomEvent {
-public:
- DEFINE_EVENT_TYPEID("quotest.custom", CustomEvent)
-
- CustomEvent(const QJsonObject& jo)
- : RoomEvent(typeId(), jo)
- {}
- CustomEvent(int testValue)
- : RoomEvent(typeId(),
- basicEventJson(matrixTypeId(),
- QJsonObject { { "testValue"_ls,
- toJson(testValue) } }))
- {}
-
- auto testValue() const { return contentPart<int>("testValue"_ls); }
-};
-REGISTER_EVENT_TYPE(CustomEvent)
+DEFINE_SIMPLE_EVENT(CustomEvent, RoomEvent, "quotest.custom", int, testValue)
TEST_IMPL(sendCustomEvent)
{
@@ -604,6 +588,14 @@ TEST_IMPL(changeName)
if (!rme->newDisplayName()
|| *rme->newDisplayName() != newName)
FAIL_TEST();
+ // State events coming in the timeline are first
+ // processed to change the room state and then as
+ // timeline messages; aboutToAddNewMessages is triggered
+ // when the state is already updated, so check that
+ if (targetRoom->currentState().get<RoomMemberEvent>(
+ localUser->id())
+ != rme)
+ FAIL_TEST();
clog << "Member rename successful, renaming the account"
<< endl;
const auto newN = newName.mid(0, 5);
@@ -780,6 +772,14 @@ TEST_IMPL(visitResources)
clog << "Incorrect matrix.to representation:"
<< matrixToUrl.toStdString() << endl;
}
+ const auto checkResult = checkResource(connection(), uriString);
+ if ((checkResult != UriResolved && uri.type() != Uri::NonMatrix)
+ || (uri.type() == Uri::NonMatrix
+ && checkResult != CouldNotResolve)) {
+ clog << "checkResource() returned incorrect result:"
+ << checkResult;
+ FAIL_TEST();
+ }
ud.visitResource(connection(), uriString);
if (spy.count() != 1) {
clog << "Wrong number of signal emissions (" << spy.count()