aboutsummaryrefslogtreecommitdiff
path: root/autotests
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-01-22 16:38:34 +0100
committerGitHub <noreply@github.com>2021-01-22 16:38:34 +0100
commit0e3973cade9348946a3675a242723711b9b75ad1 (patch)
tree243fc6758f175e0e9d2d2a8581b7072400b63566 /autotests
parent9fb2970eadf810f7ae38389b333b543c22fb8be7 (diff)
parent390162a0c707c51590acb27df81e98a85d3b6cf7 (diff)
downloadlibquotient-0e3973cade9348946a3675a242723711b9b75ad1.tar.gz
libquotient-0e3973cade9348946a3675a242723711b9b75ad1.zip
Merge pull request #440 from ognarb/callcandidateupdate
Add more properties to CallCandidateEvent
Diffstat (limited to 'autotests')
-rw-r--r--autotests/CMakeLists.txt14
-rw-r--r--autotests/callcandidateseventtest.cpp47
-rw-r--r--autotests/callcandidateseventtest.h13
3 files changed, 74 insertions, 0 deletions
diff --git a/autotests/CMakeLists.txt b/autotests/CMakeLists.txt
new file mode 100644
index 00000000..07f1f046
--- /dev/null
+++ b/autotests/CMakeLists.txt
@@ -0,0 +1,14 @@
+# SPDX-FileCopyrightText: 2021 Carl Schwan <carlschwan@kde.org>
+#
+# SPDX-License-Identifier: BSD-3-Clause
+
+include(CMakeParseArguments)
+
+function(QUOTIENT_ADD_TEST)
+ cmake_parse_arguments(ARG "" "NAME" "" ${ARGN})
+ add_executable(${ARG_NAME} ${ARG_NAME}.cpp)
+ target_link_libraries(${ARG_NAME} Qt5::Core Qt5::Test Quotient)
+ add_test(NAME ${ARG_NAME} COMMAND ${ARG_NAME})
+endfunction()
+
+quotient_add_test(NAME callcandidateseventtest)
diff --git a/autotests/callcandidateseventtest.cpp b/autotests/callcandidateseventtest.cpp
new file mode 100644
index 00000000..f103e4d3
--- /dev/null
+++ b/autotests/callcandidateseventtest.cpp
@@ -0,0 +1,47 @@
+// SPDX-FileCopyrightText: 2020 Carl Schwan <carlschwan@kde.org>
+//
+// SPDX-License-Identifier: LGPL-2.1-or-later
+
+#include "events/callcandidatesevent.h"
+#include "callcandidateseventtest.h"
+
+void TestCallCandidatesEvent::fromJson()
+{
+ auto document = QJsonDocument::fromJson(R"({
+ "age": 242352,
+ "content": {
+ "call_id": "12345",
+ "candidates": [
+ {
+ "candidate": "candidate:863018703 1 udp 2122260223 10.9.64.156 43670 typ host generation 0",
+ "sdpMLineIndex": 0,
+ "sdpMid": "audio"
+ }
+ ],
+ "version": 0
+ },
+ "event_id": "$WLGTSEFSEF:localhost",
+ "origin_server_ts": 1431961217939,
+ "room_id": "!Cuyf34gef24t:localhost",
+ "sender": "@example:localhost",
+ "type": "m.call.candidates"
+ })");
+
+ QVERIFY(document.isObject());
+
+ auto object = document.object();
+
+ Quotient::CallCandidatesEvent callCandidatesEvent(object);
+
+ QCOMPARE(callCandidatesEvent.version(), 0);
+ QCOMPARE(callCandidatesEvent.callId(), "12345");
+ QCOMPARE(callCandidatesEvent.candidates().count(), 1);
+
+ const QJsonObject &candidate = callCandidatesEvent.candidates().at(0).toObject();
+ QCOMPARE(candidate.value("sdpMid").toString(), "audio");
+ QCOMPARE(candidate.value("sdpMLineIndex").toInt(), 0);
+ QCOMPARE(candidate.value("candidate").toString(), "candidate:863018703 1 udp 2122260223 10.9.64.156 43670 typ host generation 0");
+}
+
+QTEST_MAIN(TestCallCandidatesEvent)
+#include "callcandidateseventtest.moc"
diff --git a/autotests/callcandidateseventtest.h b/autotests/callcandidateseventtest.h
new file mode 100644
index 00000000..b81c9c9b
--- /dev/null
+++ b/autotests/callcandidateseventtest.h
@@ -0,0 +1,13 @@
+// SPDX-FileCopyrightText: 2020 Carl Schwan <carlschwan@kde.org>
+//
+// SPDX-License-Identifier: LGPL-2.1-or-later
+
+#include <QtTest/QtTest>
+
+class TestCallCandidatesEvent : public QObject
+{
+ Q_OBJECT
+
+private Q_SLOTS:
+ void fromJson();
+};