aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-03-27 19:09:28 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2019-03-27 19:09:55 +0900
commit57cf115d713bf02d0ba97a7a1f2e3874be8080e3 (patch)
treea41e8564e6f7d1a144682432d3d4cdb5cbe8a6df
parentfe3141f7bc3d2c92dcfe8ee5b3eb8d3ca6f0ab17 (diff)
downloadlibquotient-57cf115d713bf02d0ba97a7a1f2e3874be8080e3.tar.gz
libquotient-57cf115d713bf02d0ba97a7a1f2e3874be8080e3.zip
qmc-example: add a couple homeserver data sanity checks
-rw-r--r--examples/qmc-example.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/qmc-example.cpp b/examples/qmc-example.cpp
index 9d6f2f39..bd9190b9 100644
--- a/examples/qmc-example.cpp
+++ b/examples/qmc-example.cpp
@@ -101,6 +101,8 @@ QMCTest::QMCTest(Connection* conn, QString testRoomName, QString source)
void QMCTest::setupAndRun()
{
+ Q_ASSERT(!c->homeserver().isEmpty() && c->homeserver().isValid());
+ Q_ASSERT(c->domain() == c->userId().section(':', 1));
cout << "Connected, server: "
<< c->homeserver().toDisplayString().toStdString() << endl;
cout << "Access token: " << c->accessToken().toStdString() << endl;