From 6d804f56e570c39ea9967c66c4bdad6f530e956e Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Tue, 21 Jul 2020 11:19:10 +0200 Subject: Uri: bare-sigil URIs are invalid --- tests/quotest.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tests') 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(); -- cgit v1.2.3