aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2020-07-21 11:19:10 +0200
committerKitsune Ral <Kitsune-Ral@users.sf.net>2020-07-21 18:26:23 +0200
commit6d804f56e570c39ea9967c66c4bdad6f530e956e (patch)
tree66fccba1411cea7356f41545b46267811bcc7df7 /tests
parent1529f46e6dd457d059fb7e6e9cd10fa0b0399553 (diff)
downloadlibquotient-6d804f56e570c39ea9967c66c4bdad6f530e956e.tar.gz
libquotient-6d804f56e570c39ea9967c66c4bdad6f530e956e.zip
Uri: bare-sigil URIs are invalid
Diffstat (limited to 'tests')
-rw-r--r--tests/quotest.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/quotest.cpp b/tests/quotest.cpp
index c2c50df2..4663d34a 100644
--- a/tests/quotest.cpp
+++ b/tests/quotest.cpp
@@ -667,6 +667,7 @@ TEST_IMPL(visitResources)
QUrl invalidUrl { "https://" };
invalidUrl.setAuthority("---:@@@");
const Uri emptyUri {}, uriFromEmptyUrl {},
+ bareSigil { QStringLiteral("#") },
invalidMatrixUri { QStringLiteral("matrix:&invalid@") },
matrixUriFromInvalidUrl { invalidUrl };
@@ -675,6 +676,10 @@ TEST_IMPL(visitResources)
clog << "Empty Matrix URI test failed" << endl;
FAIL_TEST();
}
+ if (bareSigil.isValid()) {
+ clog << "Bare sigil URI test failed" << endl;
+ FAIL_TEST();
+ }
if (matrixUriFromInvalidUrl.isEmpty() || matrixUriFromInvalidUrl.isValid()) {
clog << "Invalid Matrix URI test failed" << endl;
FAIL_TEST();