From 680e0f9deb3042db5cda43b81dbc7b1c153b8744 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Sat, 23 Jan 2021 16:33:43 +0100 Subject: Add test --- quotest/quotest.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'quotest') diff --git a/quotest/quotest.cpp b/quotest/quotest.cpp index 5098bc02..f693319f 100644 --- a/quotest/quotest.cpp +++ b/quotest/quotest.cpp @@ -101,6 +101,7 @@ private slots: TEST_DECL(setTopic) TEST_DECL(changeName) TEST_DECL(sendAndRedact) + TEST_DECL(showLocalUsername) TEST_DECL(addAndRemoveTag) TEST_DECL(markDirectChat) TEST_DECL(visitResources) @@ -508,6 +509,17 @@ TEST_IMPL(changeName) return false; } + +TEST_IMPL(showLocalUsername) +{ + auto* const localUser = connection()->user(); + if (localUser->name().contains("@")) { + // it is using the id fallback :( + FAIL_TEST(); + } + return false; +} + TEST_IMPL(sendAndRedact) { clog << "Sending a message to redact" << endl; -- cgit v1.2.3 From bfaf9330c4214636478df977ab7f6b5d1d843104 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Sat, 23 Jan 2021 18:14:46 +0100 Subject: Update test --- quotest/quotest.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'quotest') diff --git a/quotest/quotest.cpp b/quotest/quotest.cpp index f693319f..ed1c1d13 100644 --- a/quotest/quotest.cpp +++ b/quotest/quotest.cpp @@ -517,6 +517,7 @@ TEST_IMPL(showLocalUsername) // it is using the id fallback :( FAIL_TEST(); } + FINISH_TEST(true); return false; } -- cgit v1.2.3 From 9760bc4c22b2abf9732732df22cadb7f7db0641c Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Tue, 9 Feb 2021 21:11:14 +0100 Subject: Update --- quotest/quotest.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'quotest') diff --git a/quotest/quotest.cpp b/quotest/quotest.cpp index ed1c1d13..2512df0d 100644 --- a/quotest/quotest.cpp +++ b/quotest/quotest.cpp @@ -513,12 +513,7 @@ TEST_IMPL(changeName) TEST_IMPL(showLocalUsername) { auto* const localUser = connection()->user(); - if (localUser->name().contains("@")) { - // it is using the id fallback :( - FAIL_TEST(); - } - FINISH_TEST(true); - return false; + FINISH_TEST(localUser->name().contains("@")); } TEST_IMPL(sendAndRedact) -- cgit v1.2.3 From fb6e3f215774d48f7e0c6000cc7a9ebbc66ceb64 Mon Sep 17 00:00:00 2001 From: Carl Schwan Date: Mon, 15 Feb 2021 21:03:49 +0100 Subject: Update quotest/quotest.cpp Co-authored-by: Alexey Rusakov --- quotest/quotest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'quotest') diff --git a/quotest/quotest.cpp b/quotest/quotest.cpp index 2512df0d..bf29c434 100644 --- a/quotest/quotest.cpp +++ b/quotest/quotest.cpp @@ -513,7 +513,7 @@ TEST_IMPL(changeName) TEST_IMPL(showLocalUsername) { auto* const localUser = connection()->user(); - FINISH_TEST(localUser->name().contains("@")); + FINISH_TEST(!localUser->name().contains("@")); } TEST_IMPL(sendAndRedact) -- cgit v1.2.3