summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/text/qstringapisymmetry/tst_qstringapisymmetry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/corelib/text/qstringapisymmetry/tst_qstringapisymmetry.cpp')
-rw-r--r--tests/auto/corelib/text/qstringapisymmetry/tst_qstringapisymmetry.cpp2320
1 files changed, 1674 insertions, 646 deletions
diff --git a/tests/auto/corelib/text/qstringapisymmetry/tst_qstringapisymmetry.cpp b/tests/auto/corelib/text/qstringapisymmetry/tst_qstringapisymmetry.cpp
index 2716ee2c8d..35a734cf02 100644
--- a/tests/auto/corelib/text/qstringapisymmetry/tst_qstringapisymmetry.cpp
+++ b/tests/auto/corelib/text/qstringapisymmetry/tst_qstringapisymmetry.cpp
@@ -1,52 +1,36 @@
-/****************************************************************************
-**
-** Copyright (C) 2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Marc Mutz <marc.mutz@kdab.com>
-** Copyright (C) 2019 Mail.ru Group.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:GPL-EXCEPT$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2020 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Marc Mutz <marc.mutz@kdab.com>
+// Copyright (C) 2019 Mail.ru Group.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#undef QT_NO_CAST_FROM_ASCII
#undef QT_NO_CAST_TO_ASCII
#undef QT_ASCII_CAST_WARNINGS
+#define QT_USE_QSTRINGBUILDER
#include <QChar>
#include <QLatin1String>
#include <QList>
#include <QScopedArrayPointer>
#include <QString>
-#include <QStringRef>
#include <QStringTokenizer>
#include <QStringView>
#include <QTest>
+#include <QVarLengthArray>
+
+#include "../../../../shared/localechange.h"
+
+#include <locale.h>
Q_DECLARE_METATYPE(QLatin1String)
-Q_DECLARE_METATYPE(QStringRef)
+
+namespace {
+
+struct QAnyStringViewUsingL1 : QAnyStringView {}; // QAnyStringView with Latin-1 content
+struct QAnyStringViewUsingU8 : QAnyStringView {}; // QAnyStringView with Utf-8 content
+struct QAnyStringViewUsingU16 : QAnyStringView {}; // QAnyStringView with Utf-16 content
template <typename T>
QString toQString(const T &t) { return QString(t); }
-QString toQString(const QStringRef &ref) { return ref.toString(); }
QString toQString(QStringView view) { return view.toString(); }
template <typename Iterable>
@@ -57,30 +41,10 @@ QStringList toQStringList(const Iterable &i) {
return result;
}
-// FIXME: these are missing at the time of writing, add them, then remove the dummies here:
-#define MAKE_RELOP(op, A1, A2) \
- static bool operator op (A1 lhs, A2 rhs) \
- { return toQString(lhs) op toQString(rhs); } \
- /*end*/
-#define MAKE_ALL(A1, A2) \
- MAKE_RELOP(==, A1, A2) \
- MAKE_RELOP(!=, A1, A2) \
- MAKE_RELOP(<, A1, A2) \
- MAKE_RELOP(>, A1, A2) \
- MAKE_RELOP(<=, A1, A2) \
- MAKE_RELOP(>=, A1, A2) \
- /*end*/
-
-MAKE_ALL(QByteArray, QChar)
-MAKE_ALL(QByteArray, QLatin1String)
-MAKE_ALL(QByteArray, char16_t)
-MAKE_ALL(char16_t, QByteArray)
-
-MAKE_ALL(const char*, QChar)
+template <typename LHS, typename RHS>
+constexpr bool is_fake_comparator_v = false;
-#undef MAKE_ALL
-#undef MAKE_RELOP
-// END FIXME
+} // namespace
static constexpr int sign(int i) noexcept
{
@@ -102,16 +66,57 @@ static QByteArray rowName(const QByteArray &data)
return result;
}
-# define QVERIFY_NOEXCEPT(expr) do { \
- if (!has_nothrow_compare<LHS, RHS>::value) \
- QEXPECT_FAIL("", "Qt is missing a nothrow utf8-utf16 comparator", Continue); \
- QVERIFY(noexcept(expr)); } while (0)
+#ifdef __cpp_char8_t
+# define IF_CHAR8T(x) do { x; } while (false)
+#else
+# define IF_CHAR8T(x) QSKIP("This test requires C++20 char8_t support enabled in the compiler.")
+#endif
class tst_QStringApiSymmetry : public QObject
{
Q_OBJECT
//
+ // Overload set checks
+ //
+
+private:
+ template <typename T>
+ void overload();
+
+private Q_SLOTS:
+ void overload_char() { overload<char>(); }
+ void overload_QChar() { overload<QChar>(); }
+ void overload_char16_t() { overload<char16_t>(); }
+ void overload_QString() { overload<QString>(); }
+ void overload_QStringView() { overload<QStringView>(); }
+ void overload_QUtf8StringView() { overload<QUtf8StringView>(); }
+ void overload_QAnyStringView() { overload<QAnyStringView>(); }
+ void overload_QLatin1String() { overload<QLatin1String>(); }
+ void overload_QByteArray() { overload<QByteArray>(); }
+ void overload_QByteArrayView() { overload<QByteArrayView>(); }
+ void overload_const_char_star() { overload<const char*>(); }
+ void overload_const_char8_t_star() { IF_CHAR8T(overload<const char8_t*>()); }
+ void overload_const_char16_t_star() { overload<const char16_t*>(); }
+ void overload_char_array() { overload<char[10]>(); }
+ void overload_char8_t_array() { IF_CHAR8T(overload<char8_t[10]>()); }
+ void overload_char16_t_array() { overload<char16_t[10]>(); }
+ void overload_QChar_array() { overload<QChar[10]>(); }
+ void overload_std_string() { overload<std::string>(); }
+ void overload_std_u8string() { IF_CHAR8T(overload<std::u8string>()); }
+ void overload_std_u16string() { overload<std::u16string>(); }
+ void overload_QVarLengthArray_char() { overload<QVarLengthArray<char, 123>>(); }
+ void overload_QVarLengthArray_char8_t() { IF_CHAR8T((overload<QVarLengthArray<char, 321>>())); }
+ void overload_QVarLengthArray_char16_t() { overload<QVarLengthArray<char, 456>>(); }
+ void overload_QVarLengthArray_QChar() { overload<QVarLengthArray<QChar, 1023>>(); }
+ void overload_vector_char() { overload<std::vector<char>>(); }
+ void overload_vector_char8_t() { IF_CHAR8T(overload<std::vector<char8_t>>()); }
+ void overload_vector_char16_t() { overload<std::vector<char16_t>>(); }
+ void overload_vector_QChar() { overload<std::vector<QChar>>(); }
+
+ void overload_special();
+private:
+ //
// Mixed UTF-16, UTF-8, Latin-1 checks:
//
@@ -120,21 +125,23 @@ class tst_QStringApiSymmetry : public QObject
void compare_impl() const;
private Q_SLOTS:
- // test all combinations of {QChar, char16_t, QStringRef, QString, QStringView, QLatin1String, QByteArray, const char*}
+ // test all combinations of {QChar, char16_t, QString, QStringView, QLatin1String, QByteArray/View, const char*}
void compare_QChar_QChar_data() { compare_data(false); }
void compare_QChar_QChar() { compare_impl<QChar, QChar>(); }
void compare_QChar_char16_t_data() { compare_data(false); }
void compare_QChar_char16_t() { compare_impl<QChar, char16_t>(); }
- void compare_QChar_QStringRef_data() { compare_data(false); }
- void compare_QChar_QStringRef() { compare_impl<QChar, QStringRef>(); }
void compare_QChar_QString_data() { compare_data(false); }
void compare_QChar_QString() { compare_impl<QChar, QString>(); }
void compare_QChar_QStringView_data() { compare_data(false); }
void compare_QChar_QStringView() { compare_impl<QChar, QStringView>(); }
+ void compare_QChar_QUtf8StringView_data() { compare_data(false); }
+ void compare_QChar_QUtf8StringView() { compare_impl<QChar, QUtf8StringView>(); }
void compare_QChar_QLatin1String_data() { compare_data(false); }
void compare_QChar_QLatin1String() { compare_impl<QChar, QLatin1String>(); }
void compare_QChar_QByteArray_data() { compare_data(false); }
void compare_QChar_QByteArray() { compare_impl<QChar, QByteArray>(); }
+ void compare_QChar_QByteArrayView_data() { compare_data(false); }
+ void compare_QChar_QByteArrayView() { compare_impl<QChar, QByteArrayView>(); }
void compare_QChar_const_char_star_data() { compare_data(false); }
void compare_QChar_const_char_star() { compare_impl<QChar, const char *>(); }
@@ -142,50 +149,37 @@ private Q_SLOTS:
void compare_char16_t_QChar() { compare_impl<char16_t, QChar>(); }
//void compare_char16_t_char16_t_data() { compare_data(false); }
//void compare_char16_t_char16_t() { compare_impl<char16_t, char16_t>(); }
- void compare_char16_t_QStringRef_data() { compare_data(false); }
- void compare_char16_t_QStringRef() { compare_impl<char16_t, QStringRef>(); }
void compare_char16_t_QString_data() { compare_data(false); }
void compare_char16_t_QString() { compare_impl<char16_t, QString>(); }
void compare_char16_t_QStringView_data() { compare_data(false); }
void compare_char16_t_QStringView() { compare_impl<char16_t, QStringView>(); }
+ void compare_char16_t_QUtf8StringView_data() { compare_data(false); }
+ void compare_char16_t_QUtf8StringView() { compare_impl<char16_t, QUtf8StringView>(); }
void compare_char16_t_QLatin1String_data() { compare_data(false); }
void compare_char16_t_QLatin1String() { compare_impl<char16_t, QLatin1String>(); }
void compare_char16_t_QByteArray_data() { compare_data(false); }
void compare_char16_t_QByteArray() { compare_impl<char16_t, QByteArray>(); }
+ void compare_char16_t_QByteArrayView_data() { compare_data(false); }
+ void compare_char16_t_QByteArrayView() { compare_impl<char16_t, QByteArrayView>(); }
//void compare_char16_t_const_char_star_data() { compare_data(false); }
//void compare_char16_t_const_char_star() { compare_impl<char16_t, const char *>(); }
- void compare_QStringRef_QChar_data() { compare_data(false); }
- void compare_QStringRef_QChar() { compare_impl<QStringRef, QChar>(); }
- void compare_QStringRef_char16_t_data() { compare_data(false); }
- void compare_QStringRef_char16_t() { compare_impl<QStringRef, char16_t>(); }
- void compare_QStringRef_QStringRef_data() { compare_data(); }
- void compare_QStringRef_QStringRef() { compare_impl<QStringRef, QStringRef>(); }
- void compare_QStringRef_QString_data() { compare_data(); }
- void compare_QStringRef_QString() { compare_impl<QStringRef, QString>(); }
- void compare_QStringRef_QStringView_data() { compare_data(); }
- void compare_QStringRef_QStringView() { compare_impl<QStringRef, QStringView>(); }
- void compare_QStringRef_QLatin1String_data() { compare_data(); }
- void compare_QStringRef_QLatin1String() { compare_impl<QStringRef, QLatin1String>(); }
- void compare_QStringRef_QByteArray_data() { compare_data(); }
- void compare_QStringRef_QByteArray() { compare_impl<QStringRef, QByteArray>(); }
- void compare_QStringRef_const_char_star_data() { compare_data(); }
- void compare_QStringRef_const_char_star() { compare_impl<QStringRef, const char *>(); }
-
void compare_QString_QChar_data() { compare_data(false); }
void compare_QString_QChar() { compare_impl<QString, QChar>(); }
void compare_QString_char16_t_data() { compare_data(false); }
void compare_QString_char16_t() { compare_impl<QString, char16_t>(); }
- void compare_QString_QStringRef_data() { compare_data(); }
- void compare_QString_QStringRef() { compare_impl<QString, QStringRef>(); }
void compare_QString_QString_data() { compare_data(); }
void compare_QString_QString() { compare_impl<QString, QString>(); }
void compare_QString_QStringView_data() { compare_data(); }
void compare_QString_QStringView() { compare_impl<QString, QStringView>(); }
+ void compare_QString_QUtf8StringView_data() { compare_data(); }
+ void compare_QString_QUtf8StringView() { compare_impl<QString, QUtf8StringView>(); }
void compare_QString_QLatin1String_data() { compare_data(); }
void compare_QString_QLatin1String() { compare_impl<QString, QLatin1String>(); }
void compare_QString_QByteArray_data() { compare_data(); }
void compare_QString_QByteArray() { compare_impl<QString, QByteArray>(); }
+ void compare_QString_QByteArrayView_data() { compare_data(); }
+ void compare_QString_QByteArrayView() { compare_impl<QString, QByteArrayView>(); }
void compare_QString_const_char_star_data() { compare_data(); }
void compare_QString_const_char_star() { compare_impl<QString, const char *>(); }
@@ -193,35 +187,56 @@ private Q_SLOTS:
void compare_QStringView_QChar() { compare_impl<QStringView, QChar>(); }
void compare_QStringView_char16_t_data() { compare_data(false); }
void compare_QStringView_char16_t() { compare_impl<QStringView, char16_t>(); }
- void compare_QStringView_QStringRef_data() { compare_data(); }
- void compare_QStringView_QStringRef() { compare_impl<QStringView, QStringRef>(); }
void compare_QStringView_QString_data() { compare_data(); }
void compare_QStringView_QString() { compare_impl<QStringView, QString>(); }
void compare_QStringView_QStringView_data() { compare_data(); }
void compare_QStringView_QStringView() { compare_impl<QStringView, QStringView>(); }
+ void compare_QStringView_QUtf8StringView_data() { compare_data(); }
+ void compare_QStringView_QUtf8StringView() { compare_impl<QStringView, QUtf8StringView>(); }
void compare_QStringView_QLatin1String_data() { compare_data(); }
void compare_QStringView_QLatin1String() { compare_impl<QStringView, QLatin1String>(); }
-#ifdef NOT_YET_IMPLMENTED
void compare_QStringView_QByteArray_data() { compare_data(); }
void compare_QStringView_QByteArray() { compare_impl<QStringView, QByteArray>(); }
+ void compare_QStringView_QByteArrayView_data() { compare_data(); }
+ void compare_QStringView_QByteArrayView() { compare_impl<QStringView, QByteArrayView>(); }
void compare_QStringView_const_char_star_data() { compare_data(); }
void compare_QStringView_const_char_star() { compare_impl<QStringView, const char *>(); }
-#endif
+
+ void compare_QUtf8StringView_QChar_data() { compare_data(false); }
+ void compare_QUtf8StringView_QChar() { compare_impl<QUtf8StringView, QChar>(); }
+ void compare_QUtf8StringView_char16_t_data() { compare_data(false); }
+ void compare_QUtf8StringView_char16_t() { compare_impl<QUtf8StringView, char16_t>(); }
+ void compare_QUtf8StringView_QString_data() { compare_data(); }
+ void compare_QUtf8StringView_QString() { compare_impl<QUtf8StringView, QString>(); }
+ void compare_QUtf8StringView_QStringView_data() { compare_data(); }
+ void compare_QUtf8StringView_QStringView() { compare_impl<QUtf8StringView, QStringView>(); }
+ void compare_QUtf8StringView_QUtf8StringView_data() { compare_data(); }
+ void compare_QUtf8StringView_QUtf8StringView() { compare_impl<QUtf8StringView, QUtf8StringView>(); }
+ void compare_QUtf8StringView_QLatin1String_data() { compare_data(); }
+ void compare_QUtf8StringView_QLatin1String() { compare_impl<QUtf8StringView, QLatin1String>(); }
+ void compare_QUtf8StringView_QByteArray_data() { compare_data(); }
+ void compare_QUtf8StringView_QByteArray() { compare_impl<QUtf8StringView, QByteArray>(); }
+ void compare_QUtf8StringView_QByteArrayView_data() { compare_data(); }
+ void compare_QUtf8StringView_QByteArrayView() { compare_impl<QUtf8StringView, QByteArrayView>(); }
+ void compare_QUtf8StringView_const_char_star_data() { compare_data(); }
+ void compare_QUtf8StringView_const_char_star() { compare_impl<QUtf8StringView, const char *>(); }
void compare_QLatin1String_QChar_data() { compare_data(false); }
void compare_QLatin1String_QChar() { compare_impl<QLatin1String, QChar>(); }
void compare_QLatin1String_char16_t_data() { compare_data(false); }
void compare_QLatin1String_char16_t() { compare_impl<QLatin1String, char16_t>(); }
- void compare_QLatin1String_QStringRef_data() { compare_data(); }
- void compare_QLatin1String_QStringRef() { compare_impl<QLatin1String, QStringRef>(); }
void compare_QLatin1String_QString_data() { compare_data(); }
void compare_QLatin1String_QString() { compare_impl<QLatin1String, QString>(); }
void compare_QLatin1String_QStringView_data() { compare_data(); }
void compare_QLatin1String_QStringView() { compare_impl<QLatin1String, QStringView>(); }
+ void compare_QLatin1String_QUtf8StringView_data() { compare_data(); }
+ void compare_QLatin1String_QUtf8StringView() { compare_impl<QLatin1String, QUtf8StringView>(); }
void compare_QLatin1String_QLatin1String_data() { compare_data(); }
void compare_QLatin1String_QLatin1String() { compare_impl<QLatin1String, QLatin1String>(); }
void compare_QLatin1String_QByteArray_data() { compare_data(); }
void compare_QLatin1String_QByteArray() { compare_impl<QLatin1String, QByteArray>(); }
+ void compare_QLatin1String_QByteArrayView_data() { compare_data(); }
+ void compare_QLatin1String_QByteArrayView() { compare_impl<QLatin1String, QByteArrayView>(); }
void compare_QLatin1String_const_char_star_data() { compare_data(); }
void compare_QLatin1String_const_char_star() { compare_impl<QLatin1String, const char *>(); }
@@ -229,28 +244,56 @@ private Q_SLOTS:
void compare_QByteArray_QChar() { compare_impl<QByteArray, QChar>(); }
void compare_QByteArray_char16_t_data() { compare_data(false); }
void compare_QByteArray_char16_t() { compare_impl<QByteArray, char16_t>(); }
- void compare_QByteArray_QStringRef_data() { compare_data(); }
- void compare_QByteArray_QStringRef() { compare_impl<QByteArray, QStringRef>(); }
void compare_QByteArray_QString_data() { compare_data(); }
+ void compare_QByteArray_QString() { compare_impl<QByteArray, QString>(); }
+ void compare_QByteArray_QStringView_data() { compare_data(); }
+ void compare_QByteArray_QStringView() { compare_impl<QByteArray, QStringView>(); }
+ void compare_QByteArray_QUtf8StringView_data() { compare_data(); }
+ void compare_QByteArray_QUtf8StringView() { compare_impl<QByteArray, QUtf8StringView>(); }
void compare_QByteArray_QLatin1String_data() { compare_data(); }
void compare_QByteArray_QLatin1String() { compare_impl<QByteArray, QLatin1String>(); }
void compare_QByteArray_QByteArray_data() { compare_data(); }
void compare_QByteArray_QByteArray() { compare_impl<QByteArray, QByteArray>(); }
+ void compare_QByteArray_QByteArrayView_data() { compare_data(); }
+ void compare_QByteArray_QByteArrayView() { compare_impl<QByteArray, QByteArrayView>(); }
void compare_QByteArray_const_char_star_data() { compare_data(); }
void compare_QByteArray_const_char_star() { compare_impl<QByteArray, const char *>(); }
+ void compare_QByteArrayView_QChar_data() { compare_data(false); }
+ void compare_QByteArrayView_QChar() { compare_impl<QByteArrayView, QChar>(); }
+ void compare_QByteArrayView_char16_t_data() { compare_data(false); }
+ void compare_QByteArrayView_char16_t() { compare_impl<QByteArrayView, char16_t>(); }
+ void compare_QByteArrayView_QString_data() { compare_data(); }
+ void compare_QByteArrayView_QString() { compare_impl<QByteArrayView, QString>(); }
+ void compare_QByteArrayView_QStringView_data() { compare_data(); }
+ void compare_QByteArrayView_QStringView() { compare_impl<QByteArrayView, QStringView>(); }
+ void compare_QByteArrayView_QUtf8StringView_data() { compare_data(); }
+ void compare_QByteArrayView_QUtf8StringView() { compare_impl<QByteArrayView, QUtf8StringView>(); }
+ void compare_QByteArrayView_QLatin1String_data() { compare_data(); }
+ void compare_QByteArrayView_QLatin1String() { compare_impl<QByteArrayView, QLatin1String>(); }
+ void compare_QByteArrayView_QByteArray_data() { compare_data(); }
+ void compare_QByteArrayView_QByteArray() { compare_impl<QByteArrayView, QByteArray>(); }
+ void compare_QByteArrayView_QByteArrayView_data() { compare_data(); }
+ void compare_QByteArrayView_QByteArrayView() { compare_impl<QByteArrayView, QByteArrayView>(); }
+ void compare_QByteArrayView_const_char_star_data() { compare_data(); }
+ void compare_QByteArrayView_const_char_star() { compare_impl<QByteArrayView, const char *>(); }
+
void compare_const_char_star_QChar_data() { compare_data(false); }
void compare_const_char_star_QChar() { compare_impl<const char *, QChar>(); }
//void compare_const_char_star_char16_t_data() { compare_data(false); }
//void compare_const_char_star_char16_t() { compare_impl<const char *, char16_t>(); }
- void compare_const_char_star_QStringRef_data() { compare_data(); }
- void compare_const_char_star_QStringRef() { compare_impl<const char *, QStringRef>(); }
void compare_const_char_star_QString_data() { compare_data(); }
void compare_const_char_star_QString() { compare_impl<const char *, QString>(); }
+ void compare_const_char_star_QStringView_data() { compare_data(); }
+ void compare_const_char_star_QStringView() { compare_impl<const char *, QStringView>(); }
+ void compare_const_char_star_QUtf8StringView_data() { compare_data(); }
+ void compare_const_char_star_QUtf8StringView() { compare_impl<const char *, QUtf8StringView>(); }
void compare_const_char_star_QLatin1String_data() { compare_data(false); }
void compare_const_char_star_QLatin1String() { compare_impl<const char *, QLatin1String>(); }
void compare_const_char_star_QByteArray_data() { compare_data(); }
void compare_const_char_star_QByteArray() { compare_impl<const char *, QByteArray>(); }
+ void compare_const_char_star_QByteArrayView_data() { compare_data(); }
+ void compare_const_char_star_QByteArrayView() { compare_impl<const char *, QByteArrayView>(); }
//void compare_const_char_star_const_char_star_data() { compare_data(); }
//void compare_const_char_star_const_char_star() { compare_impl<const char *, const char *>(); }
@@ -260,14 +303,12 @@ private:
void member_compare_impl() const;
private Q_SLOTS:
- // test all combinations of {QChar, char16_t, QStringRef, QString, QStringView, QLatin1String, QByteArray, const char*}
+ // test all combinations of {QChar, char16_t, QString, QStringView, QLatin1String, QByteArray, const char*}
#ifdef NOT_YET_IMPLEMENTED // probably never will be - what's the point of QChar::compare(QStringView)?
void member_compare_QChar_QChar_data() { member_compare_data(false); }
void member_compare_QChar_QChar() { member_compare_impl<QChar, QChar>(); }
void member_compare_QChar_char16_t_data() { member_compare_data(false); }
void member_compare_QChar_char16_t() { member_compare_impl<QChar, char16_t>(); }
- void member_compare_QChar_QStringRef_data() { member_compare_data(false); }
- void member_compare_QChar_QStringRef() { member_compare_impl<QChar, QStringRef>(); }
void member_compare_QChar_QString_data() { member_compare_data(false); }
void member_compare_QChar_QString() { member_compare_impl<QChar, QString>(); }
void member_compare_QChar_QStringView_data() { member_compare_data(false); }
@@ -276,39 +317,18 @@ private Q_SLOTS:
void member_compare_QChar_QLatin1String() { member_compare_impl<QChar, QLatin1String>(); }
void member_compare_QChar_QByteArray_data() { member_compare_data(false); }
void member_compare_QChar_QByteArray() { member_compare_impl<QChar, QByteArray>(); }
+ void member_compare_QChar_QByteArrayView_data() { member_compare_data(false); }
+ void member_compare_QChar_QByteArrayView() { member_compare_impl<QChar, QByteArrayView>(); }
void member_compare_QChar_const_char_star_data() { member_compare_data(false); }
void member_compare_QChar_const_char_star() { member_compare_impl<QChar, const char *>(); }
#endif
// void member_compare_char16_t_XXX() - not possible
- void member_compare_QStringRef_QChar_data() { member_compare_data(false); }
- void member_compare_QStringRef_QChar() { member_compare_impl<QStringRef, QChar>(); }
- void member_compare_QStringRef_char16_t_data() { member_compare_data(false); }
- void member_compare_QStringRef_char16_t() { member_compare_impl<QStringRef, char16_t>(); }
- void member_compare_QStringRef_QStringRef_data() { member_compare_data(); }
- void member_compare_QStringRef_QStringRef() { member_compare_impl<QStringRef, QStringRef>(); }
- void member_compare_QStringRef_QString_data() { member_compare_data(); }
- void member_compare_QStringRef_QString() { member_compare_impl<QStringRef, QString>(); }
-#ifdef NOT_YET_IMPLEMENTED
- void member_compare_QStringRef_QStringView_data() { member_compare_data(); }
- void member_compare_QStringRef_QStringView() { member_compare_impl<QStringRef, QStringView>(); }
-#endif
- void member_compare_QStringRef_QLatin1String_data() { member_compare_data(); }
- void member_compare_QStringRef_QLatin1String() { member_compare_impl<QStringRef, QLatin1String>(); }
- void member_compare_QStringRef_QByteArray_data() { member_compare_data(); }
- void member_compare_QStringRef_QByteArray() { member_compare_impl<QStringRef, QByteArray>(); }
-#ifdef NOT_YET_IMPLEMENTED
- void member_compare_QStringRef_const_char_star_data() { member_compare_data(); }
- void member_compare_QStringRef_const_char_star() { member_compare_impl<QStringRef, const char *>(); }
-#endif
-
void member_compare_QString_QChar_data() { member_compare_data(false); }
void member_compare_QString_QChar() { member_compare_impl<QString, QChar>(); }
void member_compare_QString_char16_t_data() { member_compare_data(false); }
void member_compare_QString_char16_t() { member_compare_impl<QString, char16_t>(); }
- void member_compare_QString_QStringRef_data() { member_compare_data(); }
- void member_compare_QString_QStringRef() { member_compare_impl<QString, QStringRef>(); }
void member_compare_QString_QString_data() { member_compare_data(); }
void member_compare_QString_QString() { member_compare_impl<QString, QString>(); }
void member_compare_QString_QStringView_data() { member_compare_data(); }
@@ -317,6 +337,10 @@ private Q_SLOTS:
void member_compare_QString_QLatin1String() { member_compare_impl<QString, QLatin1String>(); }
void member_compare_QString_QByteArray_data() { member_compare_data(); }
void member_compare_QString_QByteArray() { member_compare_impl<QString, QByteArray>(); }
+#ifdef NOT_YET_IMPLEMENTED
+ void member_compare_QString_QByteArrayView_data() { member_compare_data(); }
+ void member_compare_QString_QByteArrayView() { member_compare_impl<QString, QByteArrayView>(); }
+#endif
void member_compare_QString_const_char_star_data() { member_compare_data(); }
void member_compare_QString_const_char_star() { member_compare_impl<QString, const char *>(); }
@@ -324,17 +348,19 @@ private Q_SLOTS:
void member_compare_QStringView_QChar() { member_compare_impl<QStringView, QChar>(); }
void member_compare_QStringView_char16_t_data() { member_compare_data(false); }
void member_compare_QStringView_char16_t() { member_compare_impl<QStringView, char16_t>(); }
- void member_compare_QStringView_QStringRef_data() { member_compare_data(); }
- void member_compare_QStringView_QStringRef() { member_compare_impl<QStringView, QStringRef>(); }
void member_compare_QStringView_QString_data() { member_compare_data(); }
void member_compare_QStringView_QString() { member_compare_impl<QStringView, QString>(); }
void member_compare_QStringView_QStringView_data() { member_compare_data(); }
void member_compare_QStringView_QStringView() { member_compare_impl<QStringView, QStringView>(); }
void member_compare_QStringView_QLatin1String_data() { member_compare_data(); }
void member_compare_QStringView_QLatin1String() { member_compare_impl<QStringView, QLatin1String>(); }
+ void member_compare_QStringView_QUtf8StringView_data() { member_compare_data(); }
+ void member_compare_QStringView_QUtf8StringView() { member_compare_impl<QStringView, QUtf8StringView>(); }
#ifdef NOT_YET_IMPLEMENTED
void member_compare_QStringView_QByteArray_data() { member_compare_data(); }
void member_compare_QStringView_QByteArray() { member_compare_impl<QStringView, QByteArray>(); }
+ void member_compare_QStringView_QByteArrayView_data() { member_compare_data(); }
+ void member_compare_QStringView_QByteArrayView() { member_compare_impl<QStringView, QByteArrayView>(); }
void member_compare_QStringView_const_char_star_data() { member_compare_data(); }
void member_compare_QStringView_const_char_star() { member_compare_impl<QStringView, const char *>(); }
#endif
@@ -343,26 +369,30 @@ private Q_SLOTS:
void member_compare_QLatin1String_QChar() { member_compare_impl<QLatin1String, QChar>(); }
void member_compare_QLatin1String_char16_t_data() { member_compare_data(false); }
void member_compare_QLatin1String_char16_t() { member_compare_impl<QLatin1String, char16_t>(); }
- void member_compare_QLatin1String_QStringRef_data() { member_compare_data(); }
- void member_compare_QLatin1String_QStringRef() { member_compare_impl<QLatin1String, QStringRef>(); }
+ void member_compare_QLatin1String_QLatin1Char_data() { member_compare_data(false); }
+ void member_compare_QLatin1String_QLatin1Char() { member_compare_impl<QLatin1String, QLatin1Char>(); }
void member_compare_QLatin1String_QString_data() { member_compare_data(); }
void member_compare_QLatin1String_QString() { member_compare_impl<QLatin1String, QString>(); }
void member_compare_QLatin1String_QStringView_data() { member_compare_data(); }
void member_compare_QLatin1String_QStringView() { member_compare_impl<QLatin1String, QStringView>(); }
void member_compare_QLatin1String_QLatin1String_data() { member_compare_data(); }
void member_compare_QLatin1String_QLatin1String() { member_compare_impl<QLatin1String, QLatin1String>(); }
+ void member_compare_QLatin1String_QUtf8StringView_data() { member_compare_data(); }
+ void member_compare_QLatin1String_QUtf8StringView() { member_compare_impl<QLatin1String, QUtf8StringView>(); }
#ifdef NOT_YET_IMPLEMENTED
void member_compare_QLatin1String_QByteArray_data() { member_compare_data(); }
void member_compare_QLatin1String_QByteArray() { member_compare_impl<QLatin1String, QByteArray>(); }
+ void member_compare_QLatin1String_QByteArrayView_data() { member_compare_data(); }
+ void member_compare_QLatin1String_QByteArrayView() { member_compare_impl<QLatin1String, QByteArrayView>(); }
void member_compare_QLatin1String_const_char_star_data() { member_compare_data(); }
void member_compare_QLatin1String_const_char_star() { member_compare_impl<QLatin1String, const char *>(); }
+#endif
+#ifdef NOT_YET_IMPLEMENTED
void member_compare_QByteArray_QChar_data() { member_compare_data(false); }
void member_compare_QByteArray_QChar() { member_compare_impl<QByteArray, QChar>(); }
void member_compare_QByteArray_char16_t_data() { member_compare_data(false); }
void member_compare_QByteArray_char16_t() { member_compare_impl<QByteArray, char16_t>(); }
- void member_compare_QByteArray_QStringRef_data() { member_compare_data(); }
- void member_compare_QByteArray_QStringRef() { member_compare_impl<QByteArray, QStringRef>(); }
void member_compare_QByteArray_QString_data() { member_compare_data(); }
void member_compare_QByteArray_QString() { member_compare_impl<QByteArray, QString>(); }
void member_compare_QByteArray_QLatin1String_data() { member_compare_data(); }
@@ -370,9 +400,71 @@ private Q_SLOTS:
#endif
void member_compare_QByteArray_QByteArray_data() { member_compare_data(); }
void member_compare_QByteArray_QByteArray() { member_compare_impl<QByteArray, QByteArray>(); }
+ void member_compare_QByteArray_QByteArrayView_data() { member_compare_data(); }
+ void member_compare_QByteArray_QByteArrayView() { member_compare_impl<QByteArray, QByteArrayView>(); }
void member_compare_QByteArray_const_char_star_data() { member_compare_data(); }
void member_compare_QByteArray_const_char_star() { member_compare_impl<QByteArray, const char *>(); }
+#ifdef NOT_YET_IMPLEMENTED
+ void member_compare_QByteArrayView_QChar_data() { member_compare_data(false); }
+ void member_compare_QByteArrayView_QChar() { member_compare_impl<QByteArrayView, QChar>(); }
+ void member_compare_QByteArrayView_char16_t_data() { member_compare_data(false); }
+ void member_compare_QByteArrayView_char16_t() { member_compare_impl<QByteArrayView, char16_t>(); }
+ void member_compare_QByteArrayView_QString_data() { member_compare_data(); }
+ void member_compare_QByteArrayView_QString() { member_compare_impl<QByteArrayView, QString>(); }
+ void member_compare_QByteArrayView_QLatin1String_data() { member_compare_data(); }
+ void member_compare_QByteArrayView_QLatin1String() { member_compare_impl<QByteArrayView, QLatin1String>(); }
+#endif
+ void member_compare_QByteArrayView_QByteArray_data() { member_compare_data(); }
+ void member_compare_QByteArrayView_QByteArray() { member_compare_impl<QByteArrayView, QByteArray>(); }
+ void member_compare_QByteArrayView_QByteArrayView_data() { member_compare_data(); }
+ void member_compare_QByteArrayView_QByteArrayView() { member_compare_impl<QByteArrayView, QByteArrayView>(); }
+ void member_compare_QByteArrayView_const_char_star_data() { member_compare_data(); }
+ void member_compare_QByteArrayView_const_char_star() { member_compare_impl<QByteArrayView, const char *>(); }
+
+#ifdef NOT_YET_IMPLEMENTED
+ void member_compare_QUtf8StringView_QChar_data() { member_compare_data(false); }
+ void member_compare_QUtf8StringView_QChar() { member_compare_impl<QUtf8StringView, QChar>(); }
+ void member_compare_QUtf8StringView_char16_t_data() { member_compare_data(false); }
+ void member_compare_QUtf8StringView_char16_t() { member_compare_impl<QUtf8StringView, char16_t>(); }
+#endif
+ void member_compare_QUtf8StringView_QString_data() { member_compare_data(); }
+ void member_compare_QUtf8StringView_QString() { member_compare_impl<QUtf8StringView, QString>(); }
+ void member_compare_QUtf8StringView_QLatin1String_data() { member_compare_data(); }
+ void member_compare_QUtf8StringView_QLatin1String() { member_compare_impl<QUtf8StringView, QLatin1String>(); }
+ void member_compare_QUtf8StringView_QUtf8StringView_data() { member_compare_data(); }
+ void member_compare_QUtf8StringView_QUtf8StringView() { member_compare_impl<QUtf8StringView, QUtf8StringView>(); }
+
+private:
+ void localeAwareCompare_data();
+ template<typename LHS, typename RHS>
+ void localeAwareCompare_impl();
+
+private Q_SLOTS:
+ void localeAwareCompare_QString_QString_data() { localeAwareCompare_data(); }
+ void localeAwareCompare_QString_QString() { localeAwareCompare_impl<QString, QString>(); }
+ void localeAwareCompare_QString_QStringView_data() { localeAwareCompare_data(); }
+ void localeAwareCompare_QString_QStringView() { localeAwareCompare_impl<QString, QStringView>(); }
+ void localeAwareCompare_QStringView_QString_data() { localeAwareCompare_data(); }
+ void localeAwareCompare_QStringView_QString() { localeAwareCompare_impl<QStringView, QString>(); }
+ void localeAwareCompare_QStringView_QStringView_data() { localeAwareCompare_data(); }
+ void localeAwareCompare_QStringView_QStringView() { localeAwareCompare_impl<QStringView, QStringView>(); }
+
+private:
+ void member_localeAwareCompare_data() { localeAwareCompare_data(); }
+ template<typename LHS, typename RHS>
+ void member_localeAwareCompare_impl();
+
+private Q_SLOTS:
+ void member_localeAwareCompare_QString_QString_data() { member_localeAwareCompare_data(); }
+ void member_localeAwareCompare_QString_QString() { member_localeAwareCompare_impl<QString, QString>(); }
+ void member_localeAwareCompare_QString_QStringView_data() { member_localeAwareCompare_data(); }
+ void member_localeAwareCompare_QString_QStringView() { member_localeAwareCompare_impl<QString, QStringView>(); }
+ void member_localeAwareCompare_QStringView_QString_data() { member_localeAwareCompare_data(); }
+ void member_localeAwareCompare_QStringView_QString() { member_localeAwareCompare_impl<QStringView, QString>(); }
+ void member_localeAwareCompare_QStringView_QStringView_data() { member_localeAwareCompare_data(); }
+ void member_localeAwareCompare_QStringView_QStringView() { member_localeAwareCompare_impl<QStringView, QStringView>(); }
+
private:
void startsWith_data(bool rhsIsQChar = false);
template <typename Haystack, typename Needle> void startsWith_impl() const;
@@ -381,11 +473,9 @@ private:
template <typename Haystack, typename Needle> void endsWith_impl() const;
private Q_SLOTS:
- // test all combinations of {QString, QStringRef, QStringView, QLatin1String} x {QString, QStringRef, QStringView, QLatin1String, QChar, char16_t}:
+ // test all combinations of {QString, QStringView, QLatin1String} x {QString, QStringView, QLatin1String, QChar, char16_t}:
void startsWith_QString_QString_data() { startsWith_data(); }
void startsWith_QString_QString() { startsWith_impl<QString, QString>(); }
- void startsWith_QString_QStringRef_data() { startsWith_data(); }
- void startsWith_QString_QStringRef() { startsWith_impl<QString, QStringRef>(); }
void startsWith_QString_QStringView_data() { startsWith_data(); }
void startsWith_QString_QStringView() { startsWith_impl<QString, QStringView>(); }
void startsWith_QString_QLatin1String_data() { startsWith_data(); }
@@ -395,23 +485,8 @@ private Q_SLOTS:
void startsWith_QString_char16_t_data() { startsWith_data(false); }
void startsWith_QString_char16_t() { startsWith_impl<QString, char16_t>(); }
- void startsWith_QStringRef_QString_data() { startsWith_data(); }
- void startsWith_QStringRef_QString() { startsWith_impl<QStringRef, QString>(); }
- void startsWith_QStringRef_QStringRef_data() { startsWith_data(); }
- void startsWith_QStringRef_QStringRef() { startsWith_impl<QStringRef, QStringRef>(); }
- void startsWith_QStringRef_QStringView_data() { startsWith_data(); }
- void startsWith_QStringRef_QStringView() { startsWith_impl<QStringRef, QStringView>(); }
- void startsWith_QStringRef_QLatin1String_data() { startsWith_data(); }
- void startsWith_QStringRef_QLatin1String() { startsWith_impl<QStringRef, QLatin1String>(); }
- void startsWith_QStringRef_QChar_data() { startsWith_data(false); }
- void startsWith_QStringRef_QChar() { startsWith_impl<QStringRef, QChar>(); }
- void startsWith_QStringRef_char16_t_data() { startsWith_data(false); }
- void startsWith_QStringRef_char16_t() { startsWith_impl<QStringRef, char16_t>(); }
-
void startsWith_QStringView_QString_data() { startsWith_data(); }
void startsWith_QStringView_QString() { startsWith_impl<QStringView, QString>(); }
- void startsWith_QStringView_QStringRef_data() { startsWith_data(); }
- void startsWith_QStringView_QStringRef() { startsWith_impl<QStringView, QStringRef>(); }
void startsWith_QStringView_QStringView_data() { startsWith_data(); }
void startsWith_QStringView_QStringView() { startsWith_impl<QStringView, QStringView>(); }
void startsWith_QStringView_QLatin1String_data() { startsWith_data(); }
@@ -423,8 +498,6 @@ private Q_SLOTS:
void startsWith_QLatin1String_QString_data() { startsWith_data(); }
void startsWith_QLatin1String_QString() { startsWith_impl<QLatin1String, QString>(); }
- void startsWith_QLatin1String_QStringRef_data() { startsWith_data(); }
- void startsWith_QLatin1String_QStringRef() { startsWith_impl<QLatin1String, QStringRef>(); }
void startsWith_QLatin1String_QStringView_data() { startsWith_data(); }
void startsWith_QLatin1String_QStringView() { startsWith_impl<QLatin1String, QStringView>(); }
void startsWith_QLatin1String_QLatin1String_data() { startsWith_data(); }
@@ -433,11 +506,11 @@ private Q_SLOTS:
void startsWith_QLatin1String_QChar() { startsWith_impl<QLatin1String, QChar>(); }
void startsWith_QLatin1String_char16_t_data() { startsWith_data(false); }
void startsWith_QLatin1String_char16_t() { startsWith_impl<QLatin1String, char16_t>(); }
+ void startsWith_QLatin1String_QLatin1Char_data() { startsWith_data(false); }
+ void startsWith_QLatin1String_QLatin1Char() { startsWith_impl<QLatin1String, QLatin1Char>(); }
void endsWith_QString_QString_data() { endsWith_data(); }
void endsWith_QString_QString() { endsWith_impl<QString, QString>(); }
- void endsWith_QString_QStringRef_data() { endsWith_data(); }
- void endsWith_QString_QStringRef() { endsWith_impl<QString, QStringRef>(); }
void endsWith_QString_QStringView_data() { endsWith_data(); }
void endsWith_QString_QStringView() { endsWith_impl<QString, QStringView>(); }
void endsWith_QString_QLatin1String_data() { endsWith_data(); }
@@ -447,23 +520,8 @@ private Q_SLOTS:
void endsWith_QString_char16_t_data() { endsWith_data(false); }
void endsWith_QString_char16_t() { endsWith_impl<QString, char16_t>(); }
- void endsWith_QStringRef_QString_data() { endsWith_data(); }
- void endsWith_QStringRef_QString() { endsWith_impl<QStringRef, QString>(); }
- void endsWith_QStringRef_QStringRef_data() { endsWith_data(); }
- void endsWith_QStringRef_QStringRef() { endsWith_impl<QStringRef, QStringRef>(); }
- void endsWith_QStringRef_QStringView_data() { endsWith_data(); }
- void endsWith_QStringRef_QStringView() { endsWith_impl<QStringRef, QStringView>(); }
- void endsWith_QStringRef_QLatin1String_data() { endsWith_data(); }
- void endsWith_QStringRef_QLatin1String() { endsWith_impl<QStringRef, QLatin1String>(); }
- void endsWith_QStringRef_QChar_data() { endsWith_data(false); }
- void endsWith_QStringRef_QChar() { endsWith_impl<QStringRef, QChar>(); }
- void endsWith_QStringRef_char16_t_data() { endsWith_data(false); }
- void endsWith_QStringRef_char16_t() { endsWith_impl<QStringRef, char16_t>(); }
-
void endsWith_QStringView_QString_data() { endsWith_data(); }
void endsWith_QStringView_QString() { endsWith_impl<QStringView, QString>(); }
- void endsWith_QStringView_QStringRef_data() { endsWith_data(); }
- void endsWith_QStringView_QStringRef() { endsWith_impl<QStringView, QStringRef>(); }
void endsWith_QStringView_QStringView_data() { endsWith_data(); }
void endsWith_QStringView_QStringView() { endsWith_impl<QStringView, QStringView>(); }
void endsWith_QStringView_QLatin1String_data() { endsWith_data(); }
@@ -475,8 +533,6 @@ private Q_SLOTS:
void endsWith_QLatin1String_QString_data() { endsWith_data(); }
void endsWith_QLatin1String_QString() { endsWith_impl<QLatin1String, QString>(); }
- void endsWith_QLatin1String_QStringRef_data() { endsWith_data(); }
- void endsWith_QLatin1String_QStringRef() { endsWith_impl<QLatin1String, QStringRef>(); }
void endsWith_QLatin1String_QStringView_data() { endsWith_data(); }
void endsWith_QLatin1String_QStringView() { endsWith_impl<QLatin1String, QStringView>(); }
void endsWith_QLatin1String_QLatin1String_data() { endsWith_data(); }
@@ -485,13 +541,15 @@ private Q_SLOTS:
void endsWith_QLatin1String_QChar() { endsWith_impl<QLatin1String, QChar>(); }
void endsWith_QLatin1String_char16_t_data() { endsWith_data(false); }
void endsWith_QLatin1String_char16_t() { endsWith_impl<QLatin1String, char16_t>(); }
+ void endsWith_QLatin1String_QLatin1Char_data() { endsWith_data(false); }
+ void endsWith_QLatin1String_QLatin1Char() { endsWith_impl<QLatin1String, QLatin1Char>(); }
private:
void split_data(bool rhsHasVariableLength = true);
template <typename Haystack, typename Needle> void split_impl() const;
private Q_SLOTS:
- // test all combinations of {QString, QStringRef} x {QString, QLatin1String, QChar, char16_t}:
+ // test all combinations of {QString} x {QString, QLatin1String, QChar, char16_t}:
void split_QString_QString_data() { split_data(); }
void split_QString_QString() { split_impl<QString, QString>(); }
void split_QString_QLatin1String_data() { split_data(); }
@@ -501,27 +559,16 @@ private Q_SLOTS:
void split_QString_char16_t_data() { split_data(false); }
void split_QString_char16_t() { split_impl<QString, char16_t>(); }
- void split_QStringRef_QString_data() { split_data(); }
- void split_QStringRef_QString() { split_impl<QStringRef, QString>(); }
- void split_QStringRef_QLatin1String_data() { split_data(); }
- void split_QStringRef_QLatin1String() { split_impl<QStringRef, QLatin1String>(); }
- void split_QStringRef_QChar_data() { split_data(false); }
- void split_QStringRef_QChar() { split_impl<QStringRef, QChar>(); }
- void split_QStringRef_char16_t_data() { split_data(false); }
- void split_QStringRef_char16_t() { split_impl<QStringRef, char16_t>(); }
-
private:
void tok_data(bool rhsHasVariableLength = true);
template <typename Haystack, typename Needle> void tok_impl() const;
private Q_SLOTS:
- // let Splittable = {QString, QStringRef, QStringView, QLatin1String, const char16_t*, std::u16string}
+ // let Splittable = {QString, QStringView, QLatin1String, const char16_t*, std::u16string}
// let Separators = Splittable ∪ {QChar, char16_t}
// test Splittable × Separators:
void tok_QString_QString_data() { tok_data(); }
void tok_QString_QString() { tok_impl<QString, QString>(); }
- void tok_QString_QStringRef_data() { tok_data(); }
- void tok_QString_QStringRef() { tok_impl<QString, QStringRef>(); }
void tok_QString_QStringView_data() { tok_data(); }
void tok_QString_QStringView() { tok_impl<QString, QStringView>(); }
void tok_QString_QLatin1String_data() { tok_data(); }
@@ -535,27 +582,8 @@ private Q_SLOTS:
void tok_QString_char16_t_data() { tok_data(false); }
void tok_QString_char16_t() { tok_impl<QString, char16_t>(); }
- void tok_QStringRef_QString_data() { tok_data(); }
- void tok_QStringRef_QString() { tok_impl<QStringRef, QString>(); }
- void tok_QStringRef_QStringRef_data() { tok_data(); }
- void tok_QStringRef_QStringRef() { tok_impl<QStringRef, QStringRef>(); }
- void tok_QStringRef_QStringView_data() { tok_data(); }
- void tok_QStringRef_QStringView() { tok_impl<QStringRef, QStringView>(); }
- void tok_QStringRef_QLatin1String_data() { tok_data(); }
- void tok_QStringRef_QLatin1String() { tok_impl<QStringRef, QLatin1String>(); }
- void tok_QStringRef_const_char16_t_star_data() { tok_data(); }
- void tok_QStringRef_const_char16_t_star() { tok_impl<QStringRef, const char16_t*>(); }
- void tok_QStringRef_stdu16string_data() { tok_data(); }
- void tok_QStringRef_stdu16string() { tok_impl<QStringRef, std::u16string>(); }
- void tok_QStringRef_QChar_data() { tok_data(false); }
- void tok_QStringRef_QChar() { tok_impl<QStringRef, QChar>(); }
- void tok_QStringRef_char16_t_data() { tok_data(false); }
- void tok_QStringRef_char16_t() { tok_impl<QStringRef, char16_t>(); }
-
void tok_QStringView_QString_data() { tok_data(); }
void tok_QStringView_QString() { tok_impl<QStringView, QString>(); }
- void tok_QStringView_QStringRef_data() { tok_data(); }
- void tok_QStringView_QStringRef() { tok_impl<QStringView, QStringRef>(); }
void tok_QStringView_QStringView_data() { tok_data(); }
void tok_QStringView_QStringView() { tok_impl<QStringView, QStringView>(); }
void tok_QStringView_QLatin1String_data() { tok_data(); }
@@ -571,8 +599,6 @@ private Q_SLOTS:
void tok_QLatin1String_QString_data() { tok_data(); }
void tok_QLatin1String_QString() { tok_impl<QLatin1String, QString>(); }
- void tok_QLatin1String_QStringRef_data() { tok_data(); }
- void tok_QLatin1String_QStringRef() { tok_impl<QLatin1String, QStringRef>(); }
void tok_QLatin1String_QStringView_data() { tok_data(); }
void tok_QLatin1String_QStringView() { tok_impl<QLatin1String, QStringView>(); }
void tok_QLatin1String_QLatin1String_data() { tok_data(); }
@@ -585,11 +611,11 @@ private Q_SLOTS:
void tok_QLatin1String_QChar() { tok_impl<QLatin1String, QChar>(); }
void tok_QLatin1String_char16_t_data() { tok_data(false); }
void tok_QLatin1String_char16_t() { tok_impl<QLatin1String, char16_t>(); }
+ void tok_QLatin1String_QLatin1Char_data() { tok_data(false); }
+ void tok_QLatin1String_QLatin1Char() { tok_impl<QLatin1String, QLatin1Char>(); }
void tok_const_char16_t_star_QString_data() { tok_data(); }
void tok_const_char16_t_star_QString() { tok_impl<const char16_t*, QString>(); }
- void tok_const_char16_t_star_QStringRef_data() { tok_data(); }
- void tok_const_char16_t_star_QStringRef() { tok_impl<const char16_t*, QStringRef>(); }
void tok_const_char16_t_star_QStringView_data() { tok_data(); }
void tok_const_char16_t_star_QStringView() { tok_impl<const char16_t*, QStringView>(); }
void tok_const_char16_t_star_QLatin1String_data() { tok_data(); }
@@ -605,8 +631,6 @@ private Q_SLOTS:
void tok_stdu16string_QString_data() { tok_data(); }
void tok_stdu16string_QString() { tok_impl<std::u16string, QString>(); }
- void tok_stdu16string_QStringRef_data() { tok_data(); }
- void tok_stdu16string_QStringRef() { tok_impl<std::u16string, QStringRef>(); }
void tok_stdu16string_QStringView_data() { tok_data(); }
void tok_stdu16string_QStringView() { tok_impl<std::u16string, QStringView>(); }
void tok_stdu16string_QLatin1String_data() { tok_data(); }
@@ -632,6 +656,7 @@ private:
void sliced_data();
template <typename String> void sliced_impl();
+ template <typename String> void slice_impl();
void first_data();
template <typename String> void first_impl();
@@ -646,68 +671,141 @@ private Q_SLOTS:
void mid_QString_data() { mid_data(); }
void mid_QString() { mid_impl<QString>(); }
- void mid_QStringRef_data() { mid_data(); }
- void mid_QStringRef() { mid_impl<QStringRef>(); }
void mid_QStringView_data() { mid_data(); }
void mid_QStringView() { mid_impl<QStringView>(); }
+ void mid_QUtf8StringView_data() { mid_data(); }
+ void mid_QUtf8StringView() { mid_impl<QUtf8StringView>(); }
void mid_QLatin1String_data() { mid_data(); }
void mid_QLatin1String() { mid_impl<QLatin1String>(); }
+ void mid_QAnyStringViewUsingL1_data() { mid_data(); }
+ void mid_QAnyStringViewUsingL1() { mid_impl<QAnyStringViewUsingL1>(); }
+ void mid_QAnyStringViewUsingU8_data() { mid_data(); }
+ void mid_QAnyStringViewUsingU8() { mid_impl<QAnyStringViewUsingU8>(); }
+ void mid_QAnyStringViewUsingU16_data() { mid_data(); }
+ void mid_QAnyStringViewUsingU16() { mid_impl<QAnyStringViewUsingU16>(); }
void mid_QByteArray_data() { mid_data(); }
void mid_QByteArray() { mid_impl<QByteArray>(); }
+ void mid_QByteArrayView_data() { mid_data(); }
+ void mid_QByteArrayView() { mid_impl<QByteArrayView>(); }
void left_QString_data() { left_data(); }
void left_QString() { left_impl<QString>(); }
- void left_QStringRef_data() { left_data(); }
- void left_QStringRef() { left_impl<QStringRef>(); }
void left_QStringView_data() { left_data(); }
void left_QStringView() { left_impl<QStringView>(); }
+ void left_QUtf8StringView_data() { left_data(); }
+ void left_QUtf8StringView() { left_impl<QUtf8StringView>(); }
void left_QLatin1String_data() { left_data(); }
void left_QLatin1String() { left_impl<QLatin1String>(); }
+ void left_QAnyStringViewUsingL1_data() { left_data(); }
+ void left_QAnyStringViewUsingL1() { left_impl<QAnyStringViewUsingL1>(); }
+ void left_QAnyStringViewUsingU8_data() { left_data(); }
+ void left_QAnyStringViewUsingU8() { left_impl<QAnyStringViewUsingU8>(); }
+ void left_QAnyStringViewUsingU16_data() { left_data(); }
+ void left_QAnyStringViewUsingU16() { left_impl<QAnyStringViewUsingU16>(); }
void left_QByteArray_data();
void left_QByteArray() { left_impl<QByteArray>(); }
+ void left_QByteArrayView_data() { left_data(); }
+ void left_QByteArrayView() { left_impl<QByteArrayView>(); }
void right_QString_data() { right_data(); }
void right_QString() { right_impl<QString>(); }
- void right_QStringRef_data() { right_data(); }
- void right_QStringRef() { right_impl<QStringRef>(); }
void right_QStringView_data() { right_data(); }
void right_QStringView() { right_impl<QStringView>(); }
+ void right_QUtf8StringView_data() { right_data(); }
+ void right_QUtf8StringView() { right_impl<QUtf8StringView>(); }
void right_QLatin1String_data() { right_data(); }
void right_QLatin1String() { right_impl<QLatin1String>(); }
+ void right_QAnyStringViewUsingL1_data() { right_data(); }
+ void right_QAnyStringViewUsingL1() { right_impl<QAnyStringViewUsingL1>(); }
+ void right_QAnyStringViewUsingU8_data() { right_data(); }
+ void right_QAnyStringViewUsingU8() { right_impl<QAnyStringViewUsingU8>(); }
+ void right_QAnyStringViewUsingU16_data() { right_data(); }
+ void right_QAnyStringViewUsingU16() { right_impl<QAnyStringViewUsingU16>(); }
void right_QByteArray_data();
void right_QByteArray() { right_impl<QByteArray>(); }
+ void right_QByteArrayView_data() { right_data(); }
+ void right_QByteArrayView() { right_impl<QByteArrayView>(); }
void sliced_QString_data() { sliced_data(); }
void sliced_QString() { sliced_impl<QString>(); }
void sliced_QStringView_data() { sliced_data(); }
void sliced_QStringView() { sliced_impl<QStringView>(); }
+ void sliced_QLatin1String_data() { sliced_data(); }
+ void sliced_QLatin1String() { sliced_impl<QLatin1String>(); }
+ void sliced_QUtf8StringView_data() { sliced_data(); }
+ void sliced_QUtf8StringView() { sliced_impl<QUtf8StringView>(); }
+ void sliced_QAnyStringViewUsingL1_data() { sliced_data(); }
+ void sliced_QAnyStringViewUsingL1() { sliced_impl<QAnyStringViewUsingL1>(); }
+ void sliced_QAnyStringViewUsingU8_data() { sliced_data(); }
+ void sliced_QAnyStringViewUsingU8() { sliced_impl<QAnyStringViewUsingU8>(); }
+ void sliced_QAnyStringViewUsingU16_data() { sliced_data(); }
+ void sliced_QAnyStringViewUsingU16() { sliced_impl<QAnyStringViewUsingU16>(); }
void sliced_QByteArray_data() { sliced_data(); }
void sliced_QByteArray() { sliced_impl<QByteArray>(); }
+ void sliced_QByteArrayView_data() { sliced_data(); }
+ void sliced_QByteArrayView() { sliced_impl<QByteArrayView>(); }
+
+ void slice_QString_data() { sliced_data(); }
+ void slice_QString() { slice_impl<QString>(); }
+ void slice_QByteArray_data() { sliced_data(); }
+ void slice_QByteArray() { slice_impl<QByteArray>(); }
void first_truncate_QString_data() { first_data(); }
void first_truncate_QString() { first_impl<QString>(); }
void first_truncate_QStringView_data() { first_data(); }
void first_truncate_QStringView() { first_impl<QStringView>(); }
+ void first_truncate_QLatin1String_data() { first_data(); }
+ void first_truncate_QLatin1String() { first_impl<QLatin1String>(); }
+ void first_truncate_QUtf8StringView_data() { first_data(); }
+ void first_truncate_QUtf8StringView() { first_impl<QUtf8StringView>(); }
+ void first_truncate_QAnyStringViewUsingL1_data() { first_data(); }
+ void first_truncate_QAnyStringViewUsingL1() { first_impl<QAnyStringViewUsingL1>(); }
+ void first_truncate_QAnyStringViewUsingU8_data() { first_data(); }
+ void first_truncate_QAnyStringViewUsingU8() { first_impl<QAnyStringViewUsingU8>(); }
+ void first_truncate_QAnyStringViewUsingU16_data() { first_data(); }
+ void first_truncate_QAnyStringViewUsingU16() { first_impl<QAnyStringViewUsingU16>(); }
void first_truncate_QByteArray_data() { first_data(); }
void first_truncate_QByteArray() { first_impl<QByteArray>(); }
+ void first_truncate_QByteArrayView_data() { first_data(); }
+ void first_truncate_QByteArrayView() { first_impl<QByteArrayView>(); }
void last_QString_data() { last_data(); }
void last_QString() { last_impl<QString>(); }
void last_QStringView_data() { last_data(); }
void last_QStringView() { last_impl<QStringView>(); }
+ void last_QLatin1String_data() { last_data(); }
+ void last_QLatin1String() { last_impl<QLatin1String>(); }
+ void last_QUtf8StringView_data() { last_data(); }
+ void last_QUtf8StringView() { last_impl<QUtf8StringView>(); }
+ void last_QAnyStringViewUsingL1_data() { last_data(); }
+ void last_QAnyStringViewUsingL1() { last_impl<QAnyStringViewUsingL1>(); }
+ void last_QAnyStringViewUsingU8_data() { last_data(); }
+ void last_QAnyStringViewUsingU8() { last_impl<QAnyStringViewUsingU8>(); }
+ void last_QAnyStringViewUsingU16_data() { last_data(); }
+ void last_QAnyStringViewUsingU16() { last_impl<QAnyStringViewUsingU16>(); }
void last_QByteArray_data() { last_data(); }
void last_QByteArray() { last_impl<QByteArray>(); }
+ void last_QByteArrayView_data() { last_data(); }
+ void last_QByteArrayView() { last_impl<QByteArrayView>(); }
void chop_QString_data() { chop_data(); }
void chop_QString() { chop_impl<QString>(); }
- void chop_QStringRef_data() { chop_data(); }
- void chop_QStringRef() { chop_impl<QStringRef>(); }
void chop_QStringView_data() { chop_data(); }
void chop_QStringView() { chop_impl<QStringView>(); }
void chop_QLatin1String_data() { chop_data(); }
void chop_QLatin1String() { chop_impl<QLatin1String>(); }
+ void chop_QUtf8StringView_data() { chop_data(); }
+ void chop_QUtf8StringView() { chop_impl<QUtf8StringView>(); }
+ void chop_QAnyStringViewUsingL1_data() { chop_data(); }
+ void chop_QAnyStringViewUsingL1() { chop_impl<QAnyStringViewUsingL1>(); }
+ void chop_QAnyStringViewUsingU8_data() { chop_data(); }
+ void chop_QAnyStringViewUsingU8() { chop_impl<QAnyStringViewUsingU8>(); }
+ void chop_QAnyStringViewUsingU16_data() { chop_data(); }
+ void chop_QAnyStringViewUsingU16() { chop_impl<QAnyStringViewUsingU16>(); }
void chop_QByteArray_data() { chop_data(); }
void chop_QByteArray() { chop_impl<QByteArray>(); }
+ void chop_QByteArrayView_data() { chop_data(); }
+ void chop_QByteArrayView() { chop_impl<QByteArrayView>(); }
private:
void trimmed_data();
@@ -716,42 +814,84 @@ private:
private Q_SLOTS:
void trim_trimmed_QString_data() { trimmed_data(); }
void trim_trimmed_QString() { trimmed_impl<QString>(); }
- void trim_trimmed_QStringRef_data() { trimmed_data(); }
- void trim_trimmed_QStringRef() { trimmed_impl<QStringRef>(); }
void trim_trimmed_QStringView_data() { trimmed_data(); }
void trim_trimmed_QStringView() { trimmed_impl<QStringView>(); }
void trim_trimmed_QLatin1String_data() { trimmed_data(); }
void trim_trimmed_QLatin1String() { trimmed_impl<QLatin1String>(); }
void trim_trimmed_QByteArray_data() { trimmed_data(); }
void trim_trimmed_QByteArray() { trimmed_impl<QByteArray>(); }
+ void trim_trimmed_QByteArrayView_data() { trimmed_data(); }
+ void trim_trimmed_QByteArrayView() { trimmed_impl<QByteArrayView>(); }
private:
void toNumber_data();
template <typename String> void toNumber_impl();
+ void toNumberWithBases_data();
+ template <typename String> void toNumberWithBases_impl();
private Q_SLOTS:
void toNumber_QString_data() { toNumber_data(); }
void toNumber_QString() { toNumber_impl<QString>(); }
- void toNumber_QStringRef_data() { toNumber_data(); }
- void toNumber_QStringRef() { toNumber_impl<QStringRef>(); }
void toNumber_QStringView_data() { toNumber_data(); }
void toNumber_QStringView() { toNumber_impl<QStringView>(); }
+ void toNumber_QLatin1String_data() { toNumber_data(); }
+ void toNumber_QLatin1String() { toNumber_impl<QLatin1String>(); }
void toNumber_QByteArray_data() { toNumber_data(); }
void toNumber_QByteArray() { toNumber_impl<QByteArray>(); }
+ void toNumber_QByteArrayView_data() { toNumber_data(); }
+ void toNumber_QByteArrayView() { toNumber_impl<QByteArrayView>(); }
+
+ void toNumberWithBases_QString_data() { toNumberWithBases_data(); }
+ void toNumberWithBases_QString() { toNumberWithBases_impl<QString>(); }
+ void toNumberWithBases_QStringView_data() { toNumberWithBases_data(); }
+ void toNumberWithBases_QStringView() { toNumberWithBases_impl<QStringView>(); }
+ void toNumberWithBases_QLatin1String_data() { toNumberWithBases_data(); }
+ void toNumberWithBases_QLatin1String() { toNumberWithBases_impl<QLatin1String>(); }
+ void toNumberWithBases_QByteArray_data() { toNumberWithBases_data(); }
+ void toNumberWithBases_QByteArray() { toNumberWithBases_impl<QByteArray>(); }
+ void toNumberWithBases_QByteArrayView_data() { toNumberWithBases_data(); }
+ void toNumberWithBases_QByteArrayView() { toNumberWithBases_impl<QByteArrayView>(); }
private:
void count_data();
- template <typename String> void count_impl();
+ template<typename Haystack, typename Needle>
+ void count_impl();
private Q_SLOTS:
- void count_QString_data() { count_data(); }
- void count_QString() { count_impl<QString>(); }
- void count_QStringRef_data() { count_data(); }
- void count_QStringRef() { count_impl<QStringRef>(); }
- void count_QStringView_data() { count_data(); }
- void count_QStringView() { count_impl<QStringView>(); }
- void count_QByteArray_data() { count_data(); }
- void count_QByteArray() { count_impl<QByteArray>(); }
+ void count_QString_QString_data() { count_data(); }
+ void count_QString_QString() { count_impl<QString, QString>(); }
+ void count_QString_QLatin1String_data() { count_data(); }
+ void count_QString_QLatin1String() { count_impl<QString, QLatin1String>(); }
+ void count_QString_QStringView_data() { count_data(); }
+ void count_QString_QStringView() { count_impl<QString, QStringView>(); }
+ void count_QString_QChar_data() { count_data(); }
+ void count_QString_QChar() { count_impl<QString, QChar>(); }
+ void count_QString_char16_t_data() { count_data(); }
+ void count_QString_char16_t() { count_impl<QString, char16_t>(); }
+
+ void count_QStringView_QString_data() { count_data(); }
+ void count_QStringView_QString() { count_impl<QStringView, QString>(); }
+ void count_QStringView_QLatin1String_data() { count_data(); }
+ void count_QStringView_QLatin1String() { count_impl<QStringView, QLatin1String>(); }
+ void count_QStringView_QStringView_data() { count_data(); }
+ void count_QStringView_QStringView() { count_impl<QStringView, QStringView>(); }
+ void count_QStringView_QChar_data() { count_data(); }
+ void count_QStringView_QChar() { count_impl<QStringView, QChar>(); }
+ void count_QStringView_char16_t_data() { count_data(); }
+ void count_QStringView_char16_t() { count_impl<QStringView, char16_t>(); }
+
+ void count_QLatin1String_QString_data() { count_data(); }
+ void count_QLatin1String_QString() { count_impl<QLatin1String, QString>(); }
+ void count_QLatin1String_QLatin1String_data() { count_data(); }
+ void count_QLatin1String_QLatin1String() { count_impl<QLatin1String, QLatin1String>(); }
+ void count_QLatin1String_QStringView_data() { count_data(); }
+ void count_QLatin1String_QStringView() { count_impl<QLatin1String, QStringView>(); }
+ void count_QLatin1String_QChar_data() { count_data(); }
+ void count_QLatin1String_QChar() { count_impl<QLatin1String, QChar>(); }
+ void count_QLatin1String_char16_t_data() { count_data(); }
+ void count_QLatin1String_char16_t() { count_impl<QLatin1String, char16_t>(); }
+ void count_QLatin1String_QLatin1Char_data() { count_data(); }
+ void count_QLatin1String_QLatin1Char() { count_impl<QLatin1String, QLatin1Char>(); }
//
// UTF-16-only checks:
@@ -774,29 +914,21 @@ private Q_SLOTS:
void toLocal8Bit_QString_data() { toLocal8Bit_data(); }
void toLocal8Bit_QString() { toLocal8Bit_impl<QString>(); }
- void toLocal8Bit_QStringRef_data() { toLocal8Bit_data(); }
- void toLocal8Bit_QStringRef() { toLocal8Bit_impl<QStringRef>(); }
void toLocal8Bit_QStringView_data() { toLocal8Bit_data(); }
void toLocal8Bit_QStringView() { toLocal8Bit_impl<QStringView>(); }
void toLatin1_QString_data() { toLatin1_data(); }
void toLatin1_QString() { toLatin1_impl<QString>(); }
- void toLatin1_QStringRef_data() { toLatin1_data(); }
- void toLatin1_QStringRef() { toLatin1_impl<QStringRef>(); }
void toLatin1_QStringView_data() { toLatin1_data(); }
void toLatin1_QStringView() { toLatin1_impl<QStringView>(); }
void toUtf8_QString_data() { toUtf8_data(); }
void toUtf8_QString() { toUtf8_impl<QString>(); }
- void toUtf8_QStringRef_data() { toUtf8_data(); }
- void toUtf8_QStringRef() { toUtf8_impl<QStringRef>(); }
void toUtf8_QStringView_data() { toUtf8_data(); }
void toUtf8_QStringView() { toUtf8_impl<QStringView>(); }
void toUcs4_QString_data() { toUcs4_data(); }
void toUcs4_QString() { toUcs4_impl<QString>(); }
- void toUcs4_QStringRef_data() { toUcs4_data(); }
- void toUcs4_QStringRef() { toUcs4_impl<QStringRef>(); }
void toUcs4_QStringView_data() { toUcs4_data(); }
void toUcs4_QStringView() { toUcs4_impl<QStringView>(); }
@@ -805,13 +937,11 @@ private:
void indexOf_data(bool rhsHasVariableLength = true);
private Q_SLOTS:
- // test all combinations of {QString, QLatin1String, QStringRef, QStringView} x {QString, QLatin1String, QStringRef, QStringView, QChar, char16_t}:
+ // test all combinations of {QString, QLatin1String, QStringView} x {QString, QLatin1String, QStringView, QChar, char16_t}:
void indexOf_QString_QString_data() { indexOf_data(); }
void indexOf_QString_QString() { indexOf_impl<QString, QString>(); }
void indexOf_QString_QLatin1String_data() { indexOf_data(); }
void indexOf_QString_QLatin1String() { indexOf_impl<QString, QLatin1String>(); }
- void indexOf_QString_QStringRef_data() { indexOf_data(); }
- void indexOf_QString_QStringRef() { indexOf_impl<QString, QStringRef>(); }
void indexOf_QString_QStringView_data() { indexOf_data(); }
void indexOf_QString_QStringView() { indexOf_impl<QString, QStringView>(); }
void indexOf_QString_QChar_data() { indexOf_data(false); }
@@ -823,34 +953,19 @@ private Q_SLOTS:
void indexOf_QLatin1String_QString() { indexOf_impl<QLatin1String, QString>(); }
void indexOf_QLatin1String_QLatin1String_data() { indexOf_data(); }
void indexOf_QLatin1String_QLatin1String() { indexOf_impl<QLatin1String, QLatin1String>(); }
- void indexOf_QLatin1String_QStringRef_data() { indexOf_data(); }
- void indexOf_QLatin1String_QStringRef() { indexOf_impl<QLatin1String, QStringRef>(); }
void indexOf_QLatin1String_QStringView_data() { indexOf_data(); }
void indexOf_QLatin1String_QStringView() { indexOf_impl<QLatin1String, QStringView>(); }
void indexOf_QLatin1String_QChar_data() { indexOf_data(false); }
void indexOf_QLatin1String_QChar() { indexOf_impl<QLatin1String, QChar>(); }
void indexOf_QLatin1String_char16_t_data() { indexOf_data(false); }
void indexOf_QLatin1String_char16_t() { indexOf_impl<QLatin1String, char16_t>(); }
-
- void indexOf_QStringRef_QString_data() { indexOf_data(); }
- void indexOf_QStringRef_QString() { indexOf_impl<QStringRef, QString>(); }
- void indexOf_QStringRef_QLatin1String_data() { indexOf_data(); }
- void indexOf_QStringRef_QLatin1String() { indexOf_impl<QStringRef, QLatin1String>(); }
- void indexOf_QStringRef_QStringRef_data() { indexOf_data(); }
- void indexOf_QStringRef_QStringRef() { indexOf_impl<QStringRef, QStringRef>(); }
- void indexOf_QStringRef_QStringView_data() { indexOf_data(); }
- void indexOf_QStringRef_QStringView() { indexOf_impl<QStringRef, QStringView>(); }
- void indexOf_QStringRef_QChar_data() { indexOf_data(false); }
- void indexOf_QStringRef_QChar() { indexOf_impl<QStringRef, QChar>(); }
- void indexOf_QStringRef_char16_t_data() { indexOf_data(false); }
- void indexOf_QStringRef_char16_t() { indexOf_impl<QStringRef, char16_t>(); }
+ void indexOf_QLatin1String_QLatin1Char_data() { indexOf_data(false); }
+ void indexOf_QLatin1String_QLatin1Char() { indexOf_impl<QLatin1String, QLatin1Char>(); }
void indexOf_QStringView_QString_data() { indexOf_data(); }
void indexOf_QStringView_QString() { indexOf_impl<QStringView, QString>(); }
void indexOf_QStringView_QLatin1String_data() { indexOf_data(); }
void indexOf_QStringView_QLatin1String() { indexOf_impl<QStringView, QLatin1String>(); }
- void indexOf_QStringView_QStringRef_data() { indexOf_data(); }
- void indexOf_QStringView_QStringRef() { indexOf_impl<QStringView, QStringRef>(); }
void indexOf_QStringView_QStringView_data() { indexOf_data(); }
void indexOf_QStringView_QStringView() { indexOf_impl<QStringView, QStringView>(); }
void indexOf_QStringView_QChar_data() { indexOf_data(false); }
@@ -863,13 +978,11 @@ private:
void contains_data(bool rhsHasVariableLength = true);
private Q_SLOTS:
- // test all combinations of {QString, QLatin1String, QStringRef, QStringView} x {QString, QLatin1String, QStringRef, QStringView, QChar, char16_t}:
+ // test all combinations of {QString, QLatin1String, QStringView} x {QString, QLatin1String, QStringView, QChar, char16_t}:
void contains_QString_QString_data() { contains_data(); }
void contains_QString_QString() { contains_impl<QString, QString>(); }
void contains_QString_QLatin1String_data() { contains_data(); }
void contains_QString_QLatin1String() { contains_impl<QString, QLatin1String>(); }
- void contains_QString_QStringRef_data() { contains_data(); }
- void contains_QString_QStringRef() { contains_impl<QString, QStringRef>(); }
void contains_QString_QStringView_data() { contains_data(); }
void contains_QString_QStringView() { contains_impl<QString, QStringView>(); }
void contains_QString_QChar_data() { contains_data(false); }
@@ -881,34 +994,19 @@ private Q_SLOTS:
void contains_QLatin1String_QString() { contains_impl<QLatin1String, QString>(); }
void contains_QLatin1String_QLatin1String_data() { contains_data(); }
void contains_QLatin1String_QLatin1String() { contains_impl<QLatin1String, QLatin1String>(); }
- void contains_QLatin1String_QStringRef_data() { contains_data(); }
- void contains_QLatin1String_QStringRef() { contains_impl<QLatin1String, QStringRef>(); }
void contains_QLatin1String_QStringView_data() { contains_data(); }
void contains_QLatin1String_QStringView() { contains_impl<QLatin1String, QStringView>(); }
void contains_QLatin1String_QChar_data() { contains_data(false); }
void contains_QLatin1String_QChar() { contains_impl<QLatin1String, QChar>(); }
void contains_QLatin1String_char16_t_data() { contains_data(false); }
void contains_QLatin1String_char16_t() { contains_impl<QLatin1String, char16_t>(); }
-
- void contains_QStringRef_QString_data() { contains_data(); }
- void contains_QStringRef_QString() { contains_impl<QStringRef, QString>(); }
- void contains_QStringRef_QLatin1String_data() { contains_data(); }
- void contains_QStringRef_QLatin1String() { contains_impl<QStringRef, QLatin1String>(); }
- void contains_QStringRef_QStringRef_data() { contains_data(); }
- void contains_QStringRef_QStringRef() { contains_impl<QStringRef, QStringRef>(); }
- void contains_QStringRef_QStringView_data() { contains_data(); }
- void contains_QStringRef_QStringView() { contains_impl<QStringRef, QStringView>(); }
- void contains_QStringRef_QChar_data() { contains_data(false); }
- void contains_QStringRef_QChar() { contains_impl<QStringRef, QChar>(); }
- void contains_QStringRef_char16_t_data() { contains_data(false); }
- void contains_QStringRef_char16_t() { contains_impl<QStringRef, char16_t>(); }
+ void contains_QLatin1String_QLatin1Char_data() { contains_data(false); }
+ void contains_QLatin1String_QLatin1Char() { contains_impl<QLatin1String, QLatin1Char>(); }
void contains_QStringView_QString_data() { contains_data(); }
void contains_QStringView_QString() { contains_impl<QStringView, QString>(); }
void contains_QStringView_QLatin1String_data() { contains_data(); }
void contains_QStringView_QLatin1String() { contains_impl<QStringView, QLatin1String>(); }
- void contains_QStringView_QStringRef_data() { contains_data(); }
- void contains_QStringView_QStringRef() { contains_impl<QStringView, QStringRef>(); }
void contains_QStringView_QStringView_data() { contains_data(); }
void contains_QStringView_QStringView() { contains_impl<QStringView, QStringView>(); }
void contains_QStringView_QChar_data() { contains_data(false); }
@@ -921,13 +1019,11 @@ private:
void lastIndexOf_data(bool rhsHasVariableLength = true);
private Q_SLOTS:
- // test all combinations of {QString, QLatin1String, QStringRef, QStringView} x {QString, QLatin1String, QStringRef, QStringView, QChar, char16_t}:
+ // test all combinations of {QString, QLatin1String, QStringView} x {QString, QLatin1String, QStringView, QChar, char16_t}:
void lastIndexOf_QString_QString_data() { lastIndexOf_data(); }
void lastIndexOf_QString_QString() { lastIndexOf_impl<QString, QString>(); }
void lastIndexOf_QString_QLatin1String_data() { lastIndexOf_data(); }
void lastIndexOf_QString_QLatin1String() { lastIndexOf_impl<QString, QLatin1String>(); }
- void lastIndexOf_QString_QStringRef_data() { lastIndexOf_data(); }
- void lastIndexOf_QString_QStringRef() { lastIndexOf_impl<QString, QStringRef>(); }
void lastIndexOf_QString_QStringView_data() { lastIndexOf_data(); }
void lastIndexOf_QString_QStringView() { lastIndexOf_impl<QString, QStringView>(); }
void lastIndexOf_QString_QChar_data() { lastIndexOf_data(false); }
@@ -939,61 +1035,212 @@ private Q_SLOTS:
void lastIndexOf_QLatin1String_QString() { lastIndexOf_impl<QLatin1String, QString>(); }
void lastIndexOf_QLatin1String_QLatin1String_data() { lastIndexOf_data(); }
void lastIndexOf_QLatin1String_QLatin1String() { lastIndexOf_impl<QLatin1String, QLatin1String>(); }
- void lastIndexOf_QLatin1String_QStringRef_data() { lastIndexOf_data(); }
- void lastIndexOf_QLatin1String_QStringRef() { lastIndexOf_impl<QLatin1String, QStringRef>(); }
void lastIndexOf_QLatin1String_QStringView_data() { lastIndexOf_data(); }
void lastIndexOf_QLatin1String_QStringView() { lastIndexOf_impl<QLatin1String, QStringView>(); }
void lastIndexOf_QLatin1String_QChar_data() { lastIndexOf_data(false); }
void lastIndexOf_QLatin1String_QChar() { lastIndexOf_impl<QLatin1String, QChar>(); }
void lastIndexOf_QLatin1String_char16_t_data() { lastIndexOf_data(false); }
void lastIndexOf_QLatin1String_char16_t() { lastIndexOf_impl<QLatin1String, char16_t>(); }
-
- void lastIndexOf_QStringRef_QString_data() { lastIndexOf_data(); }
- void lastIndexOf_QStringRef_QString() { lastIndexOf_impl<QStringRef, QString>(); }
- void lastIndexOf_QStringRef_QLatin1String_data() { lastIndexOf_data(); }
- void lastIndexOf_QStringRef_QLatin1String() { lastIndexOf_impl<QStringRef, QLatin1String>(); }
- void lastIndexOf_QStringRef_QStringRef_data() { lastIndexOf_data(); }
- void lastIndexOf_QStringRef_QStringRef() { lastIndexOf_impl<QStringRef, QStringRef>(); }
- void lastIndexOf_QStringRef_QStringView_data() { lastIndexOf_data(); }
- void lastIndexOf_QStringRef_QStringView() { lastIndexOf_impl<QStringRef, QStringView>(); }
- void lastIndexOf_QStringRef_QChar_data() { lastIndexOf_data(false); }
- void lastIndexOf_QStringRef_QChar() { lastIndexOf_impl<QStringRef, QChar>(); }
- void lastIndexOf_QStringRef_char16_t_data() { lastIndexOf_data(false); }
- void lastIndexOf_QStringRef_char16_t() { lastIndexOf_impl<QStringRef, char16_t>(); }
+ void lastIndexOf_QLatin1String_QLatin1Char_data() { lastIndexOf_data(false); }
+ void lastIndexOf_QLatin1String_QLatin1Char() { lastIndexOf_impl<QLatin1String, QLatin1Char>(); }
void lastIndexOf_QStringView_QString_data() { lastIndexOf_data(); }
void lastIndexOf_QStringView_QString() { lastIndexOf_impl<QStringView, QString>(); }
void lastIndexOf_QStringView_QLatin1String_data() { lastIndexOf_data(); }
void lastIndexOf_QStringView_QLatin1String() { lastIndexOf_impl<QStringView, QLatin1String>(); }
- void lastIndexOf_QStringView_QStringRef_data() { lastIndexOf_data(); }
- void lastIndexOf_QStringView_QStringRef() { lastIndexOf_impl<QStringView, QStringRef>(); }
void lastIndexOf_QStringView_QStringView_data() { lastIndexOf_data(); }
void lastIndexOf_QStringView_QStringView() { lastIndexOf_impl<QStringView, QStringView>(); }
void lastIndexOf_QStringView_QChar_data() { lastIndexOf_data(false); }
void lastIndexOf_QStringView_QChar() { lastIndexOf_impl<QStringView, QChar>(); }
void lastIndexOf_QStringView_char16_t_data() { lastIndexOf_data(false); }
void lastIndexOf_QStringView_char16_t() { lastIndexOf_impl<QStringView, char16_t>(); }
+
+private:
+ void indexOf_contains_lastIndexOf_count_regexp_data();
+ template <typename String> void indexOf_contains_lastIndexOf_count_regexp_impl() const;
+
+private Q_SLOTS:
+ void indexOf_regexp_QString_data() { indexOf_contains_lastIndexOf_count_regexp_data(); }
+ void indexOf_regexp_QString() { indexOf_contains_lastIndexOf_count_regexp_impl<QString>(); }
+ void indexOf_regexp_QStringView_data() { indexOf_contains_lastIndexOf_count_regexp_data(); }
+ void indexOf_regexp_QStringView() { indexOf_contains_lastIndexOf_count_regexp_impl<QStringView>(); }
+
+private:
+ void isValidUtf8_data();
+ template<typename String>
+ void isValidUtf8_impl() const;
+
+private Q_SLOTS:
+ void isValidUtf8_QByteArray_data() { isValidUtf8_data(); }
+ void isValidUtf8_QByteArray() { isValidUtf8_impl<QByteArray>(); }
+ void isValidUtf8_QByteArrayView_data() { isValidUtf8_data(); }
+ void isValidUtf8_QByteArrayView() { isValidUtf8_impl<QByteArrayView>(); }
+ void isValidUtf8_QUtf8StringView_data() { isValidUtf8_data(); }
+ void isValidUtf8_QUtf8StringView() { isValidUtf8_impl<QUtf8StringView>(); }
};
+namespace help {
+
+template <typename T> constexpr qsizetype size(const T &s) { return qsizetype(s.size()); }
+
+template <> constexpr qsizetype size(const QChar&) { return 1; }
+template <> constexpr qsizetype size(const QLatin1Char&) { return 1; }
+template <> constexpr qsizetype size(const char16_t&) { return 1; }
+} // namespace help
+
+namespace {
+
+auto overload_s_a(const QString &s) { return s; }
+Q_WEAK_OVERLOAD
+auto overload_s_a(QAnyStringView s) { return s; }
+
+auto overload_sr_a(QString &&s) { return std::move(s); }
+Q_WEAK_OVERLOAD
+auto overload_sr_a(QAnyStringView s) { return s; }
+
+Q_WEAK_OVERLOAD
+auto overload_a_s(const QString &s) { return s; }
+auto overload_a_s(QAnyStringView s) { return s; }
+
+Q_WEAK_OVERLOAD
+auto overload_a_sr(QString &&s) { return std::move(s); }
+auto overload_a_sr(QAnyStringView s) { return s; }
+
+auto overload_s_v(const QString &s) { return s; }
+auto overload_s_v(QStringView s) { return s; }
+
+auto overload_sr_v(QString &&s) { return std::move(s); }
+auto overload_sr_v(QStringView s) { return s; }
+
+} // unnamed namespace
+
+template<typename T>
+void tst_QStringApiSymmetry::overload()
+{
+ // compile-only test:
+ //
+ // check the common overload sets defined above to be free of ambiguities
+ // for arguments of type T
+
+ QT_WARNING_PUSH
+ // GCC complains about "t" and "ct"
+ QT_WARNING_DISABLE_GCC("-Wmaybe-uninitialized")
+
+ using CT = const T;
+
+ T t = {};
+ CT ct = {};
+
+ overload_s_a(t);
+ overload_s_a(ct);
+ if constexpr (!std::is_array_v<T>) {
+ overload_s_a(T());
+ overload_s_a(CT());
+ }
+
+ overload_sr_a(t);
+ overload_sr_a(ct);
+ if constexpr (!std::is_array_v<T>) {
+ overload_sr_a(T());
+ overload_sr_a(CT());
+ }
+
+ overload_a_s(t);
+ overload_a_s(ct);
+ if constexpr (!std::is_array_v<T>) {
+ overload_a_s(T());
+ overload_a_s(CT());
+ }
+
+ overload_a_sr(t);
+ overload_a_sr(ct);
+ if constexpr (!std::is_array_v<T>) {
+ overload_a_sr(T());
+ overload_a_sr(CT());
+ }
+
+ if constexpr (std::is_convertible_v<T, QStringView> || std::is_convertible_v<T, QString>) {
+ overload_s_v(t);
+ overload_s_v(ct);
+ if constexpr (!std::is_array_v<T>) {
+ overload_s_v(T());
+ overload_s_v(CT());
+ }
+
+ overload_sr_v(t);
+ overload_sr_v(ct);
+ if constexpr (!std::is_array_v<T>) {
+ overload_sr_v(T());
+ overload_sr_v(CT());
+ }
+ }
+ QT_WARNING_POP
+}
+
+void tst_QStringApiSymmetry::overload_special()
+{
+ auto check = [](auto result, auto expected) {
+ static_assert(std::is_same_v<decltype(result), decltype(expected)>);
+ };
+
+ {
+#define rvalue QStringLiteral("hello")
+ auto lvalue = rvalue;
+ auto builder = [&] { return lvalue % ""; };
+
+ // check that QString/Builder go to the QString overload in a_s(r):
+
+ check(overload_a_s(lvalue), QString());
+ check(overload_a_s(rvalue), QString());
+ check(overload_a_s(builder()), QAnyStringView()); // weak overloads must match exactly
+ check(overload_a_s(QString(builder())), QString());
+
+ check(overload_a_sr(lvalue), QAnyStringView()); // lvalue can't bind to rvalue ref
+ check(overload_a_sr(rvalue), QString());
+ check(overload_a_sr(builder()), QAnyStringView());
+ check(overload_a_sr(QString(builder())), QString());
+
+ // check that everything goes to the QString overload in s(r)_a:
+ // exception: u""
+
+ check(overload_s_a(lvalue), QString());
+ check(overload_s_a(rvalue), QString());
+ check(overload_s_a(builder()), QString());
+ check(overload_s_a(""), QString());
+ check(overload_s_a(u""), QAnyStringView());
+ check(overload_s_a(u8""), QString());
+ check(overload_s_a(QLatin1String("")), QString());
+
+ check(overload_sr_a(lvalue), QAnyStringView()); // lvalues don't bind to rvalue refs
+ check(overload_sr_a(rvalue), QString());
+ check(overload_sr_a(builder()), QString());
+ check(overload_sr_a(""), QString());
+ check(overload_sr_a(u""), QAnyStringView());
+ check(overload_sr_a(u8""), QString());
+ check(overload_sr_a(QLatin1String("")), QString());
+#undef rvalue
+ }
+}
+
void tst_QStringApiSymmetry::compare_data(bool hasConceptOfNullAndEmpty)
{
- QTest::addColumn<QStringRef>("lhsUnicode");
+ QTest::addColumn<QStringView>("lhsUnicode");
QTest::addColumn<QLatin1String>("lhsLatin1");
- QTest::addColumn<QStringRef>("rhsUnicode");
+ QTest::addColumn<QStringView>("rhsUnicode");
QTest::addColumn<QLatin1String>("rhsLatin1");
QTest::addColumn<int>("caseSensitiveCompareResult");
QTest::addColumn<int>("caseInsensitiveCompareResult");
if (hasConceptOfNullAndEmpty) {
- QTest::newRow("null <> null") << QStringRef() << QLatin1String()
- << QStringRef() << QLatin1String()
+ QTest::newRow("null <> null") << QStringView() << QLatin1String()
+ << QStringView() << QLatin1String()
<< 0 << 0;
static const QString empty("");
- QTest::newRow("null <> empty") << QStringRef() << QLatin1String()
- << QStringRef(&empty) << QLatin1String("")
+ QTest::newRow("null <> empty") << QStringView() << QLatin1String()
+ << QStringView(empty) << QLatin1String("")
<< 0 << 0;
- QTest::newRow("empty <> null") << QStringRef(&empty) << QLatin1String("")
- << QStringRef() << QLatin1String()
+ QTest::newRow("empty <> null") << QStringView(empty) << QLatin1String("")
+ << QStringView() << QLatin1String()
<< 0 << 0;
}
@@ -1004,8 +1251,8 @@ void tst_QStringApiSymmetry::compare_data(bool hasConceptOfNullAndEmpty)
QString(QLatin1String(rhs)), \
}; \
QTest::newRow(qUtf8Printable(QLatin1String("'" lhs "' <> '" rhs "': "))) \
- << QStringRef(&pinned[0]) << QLatin1String(lhs) \
- << QStringRef(&pinned[1]) << QLatin1String(rhs) \
+ << QStringView(pinned[0]) << QLatin1String(lhs) \
+ << QStringView(pinned[1]) << QLatin1String(rhs) \
<< sign(qstrcmp(lhs, rhs)) << caseless; \
} while (false)
#define ASCIIROW(lhs, rhs) ROW(lhs, rhs, sign(qstricmp(lhs, rhs)))
@@ -1031,46 +1278,53 @@ template <typename String> String detached(String s)
return s;
}
-template <class Str> Str make(const QStringRef &sf, QLatin1String l1, const QByteArray &u8);
-template <> QChar make(const QStringRef &sf, QLatin1String, const QByteArray &) { return sf.isEmpty() ? QChar() : sf.at(0); }
-template <> char16_t make(const QStringRef &sf, QLatin1String, const QByteArray &) { return sf.isEmpty() ? char16_t() : char16_t{sf.at(0).unicode()}; }
-template <> QStringRef make(const QStringRef &sf, QLatin1String, const QByteArray &) { return sf; }
-template <> QString make(const QStringRef &sf, QLatin1String, const QByteArray &) { return sf.toString(); }
-template <> QStringView make(const QStringRef &sf, QLatin1String, const QByteArray &) { return sf; }
-template <> QLatin1String make(const QStringRef &, QLatin1String l1, const QByteArray &) { return l1; }
-template <> QByteArray make(const QStringRef &, QLatin1String, const QByteArray &u8) { return u8; }
-template <> const char * make(const QStringRef &, QLatin1String, const QByteArray &u8) { return u8.data(); }
-template <> const char16_t* make(const QStringRef &sf, QLatin1String, const QByteArray &) { return QStringView{sf}.utf16(); } // assumes `sf` doesn't represent a substring
-template <> std::u16string make(const QStringRef &sf, QLatin1String, const QByteArray &) { return sf.toString().toStdU16String(); }
-
-template <typename> struct is_utf8_encoded : std::false_type {};
-template <> struct is_utf8_encoded<const char*> : std::true_type {};
-template <> struct is_utf8_encoded<QByteArray> : std::true_type {};
+template <class Str> Str make(const QString &s);
+template <> QString make(const QString &s) { return s; }
+template <> QStringView make(const QString &s) { return s; }
-template <typename> struct is_latin1_encoded : std::false_type {};
-template <> struct is_latin1_encoded<QLatin1String> : std::true_type {};
+template <class Str> Str make(QStringView sf, QLatin1String l1, const QByteArray &u8);
-template <typename LHS, typename RHS>
-struct has_nothrow_compare {
- enum { value = is_utf8_encoded<LHS>::value == is_utf8_encoded<RHS>::value };
-};
+#define MAKE(Which) \
+ template <> Which make([[maybe_unused]] QStringView sv, \
+ [[maybe_unused]] QLatin1String l1, \
+ [[maybe_unused]] const QByteArray &u8) \
+ /*end*/
+MAKE(QChar) { return sv.isEmpty() ? QChar() : sv.at(0); }
+MAKE(char16_t) { return sv.isEmpty() ? char16_t() : char16_t{sv.at(0).unicode()}; }
+MAKE(QLatin1Char) { return l1.isEmpty() ? QLatin1Char('\0') : l1.at(0); }
+MAKE(QString) { return sv.toString(); }
+MAKE(QStringView) { return sv; }
+MAKE(QLatin1String) { return l1; }
+MAKE(QByteArray) { return u8; }
+MAKE(QByteArrayView) { return u8; }
+MAKE(const char *) { return u8.data(); }
+MAKE(const char16_t *) { return sv.utf16(); } // assumes `sv` doesn't represent a substring
+MAKE(std::u16string) { return sv.toString().toStdU16String(); }
+MAKE(QUtf8StringView) { return u8; }
+MAKE(QAnyStringViewUsingL1) { return {QAnyStringView{l1}}; }
+MAKE(QAnyStringViewUsingU8) { return {QAnyStringView{u8}}; }
+MAKE(QAnyStringViewUsingU16) { return {QAnyStringView{sv}}; }
+#undef MAKE
+
+// Some types have ASCII-only case-insensitive compare, but are handled as containing
+// UTF-8 when implicitly converted to QString.
+template <typename> constexpr bool is_bytearray_like_v = false;
+template <> constexpr bool is_bytearray_like_v<const char *> = true;
+template <> constexpr bool is_bytearray_like_v<QByteArray> = true;
+template <> constexpr bool is_bytearray_like_v<QByteArrayView> = true;
template <typename LHS, typename RHS>
-struct has_qCompareStrings {
- enum { value = !std::is_same<LHS, QChar>::value && !std::is_same<RHS, QChar>::value &&
- !is_utf8_encoded<LHS>::value && !is_utf8_encoded<RHS>::value };
-};
+constexpr bool has_nothrow_member_compare_v = is_bytearray_like_v<LHS> == is_bytearray_like_v<RHS>;
template <typename LHS, typename RHS>
void tst_QStringApiSymmetry::compare_impl() const
{
- QFETCH(QStringRef, lhsUnicode);
+ QFETCH(QStringView, lhsUnicode);
QFETCH(QLatin1String, lhsLatin1);
- QFETCH(QStringRef, rhsUnicode);
+ QFETCH(QStringView, rhsUnicode);
QFETCH(QLatin1String, rhsLatin1);
QFETCH(int, caseSensitiveCompareResult);
QFETCH(const int, caseInsensitiveCompareResult);
- Q_UNUSED(caseInsensitiveCompareResult);
const auto lhsU8 = lhsUnicode.toUtf8();
const auto rhsU8 = rhsUnicode.toUtf8();
@@ -1078,13 +1332,26 @@ void tst_QStringApiSymmetry::compare_impl() const
const auto lhs = make<LHS>(lhsUnicode, lhsLatin1, lhsU8);
const auto rhs = make<RHS>(rhsUnicode, rhsLatin1, rhsU8);
+ auto icResult = sign(
+ QAnyStringView::compare(QAnyStringView(lhs), QAnyStringView(rhs), Qt::CaseInsensitive));
+ QCOMPARE_EQ(icResult, caseInsensitiveCompareResult);
+
+ auto scResult = sign(
+ QAnyStringView::compare(QAnyStringView(lhs), QAnyStringView(rhs), Qt::CaseSensitive));
+ QCOMPARE_EQ(scResult, caseSensitiveCompareResult);
+
#define CHECK(op) \
- QVERIFY_NOEXCEPT(lhs op rhs); \
- do { if (caseSensitiveCompareResult op 0) { \
- QVERIFY(lhs op rhs); \
- } else { \
- QVERIFY(!(lhs op rhs)); \
- } } while (false)
+ do { \
+ /* comment out the noexcept check for now, as we first need to sort all the overloads anew */ \
+ if (false) { \
+ if constexpr (!is_fake_comparator_v<LHS, RHS>) \
+ QVERIFY(noexcept(lhs op rhs)); \
+ } \
+ if (caseSensitiveCompareResult op 0) \
+ QVERIFY(lhs op rhs); \
+ else \
+ QVERIFY(!(lhs op rhs)); \
+ } while (false)
CHECK(==);
CHECK(!=);
@@ -1093,14 +1360,19 @@ void tst_QStringApiSymmetry::compare_impl() const
CHECK(<=);
CHECK(>=);
#undef CHECK
+ // Test that all string-like types implemente compareThreeWay() as a friend
+ // function.
+ const Qt::strong_ordering expectedOrdering =
+ Qt::compareThreeWay(caseSensitiveCompareResult, 0);
+ QCOMPARE_EQ(qCompareThreeWay(lhs, rhs), expectedOrdering);
}
template <typename LHS, typename RHS>
void tst_QStringApiSymmetry::member_compare_impl() const
{
- QFETCH(QStringRef, lhsUnicode);
+ QFETCH(QStringView, lhsUnicode);
QFETCH(QLatin1String, lhsLatin1);
- QFETCH(QStringRef, rhsUnicode);
+ QFETCH(QStringView, rhsUnicode);
QFETCH(QLatin1String, rhsLatin1);
QFETCH(const int, caseSensitiveCompareResult);
QFETCH(const int, caseInsensitiveCompareResult);
@@ -1111,17 +1383,339 @@ void tst_QStringApiSymmetry::member_compare_impl() const
const auto lhs = make<LHS>(lhsUnicode, lhsLatin1, lhsU8);
const auto rhs = make<RHS>(rhsUnicode, rhsLatin1, rhsU8);
- QVERIFY_NOEXCEPT(lhs.compare(rhs, Qt::CaseSensitive));
+ if constexpr (has_nothrow_member_compare_v<LHS, RHS>)
+ QVERIFY(noexcept(lhs.compare(rhs, Qt::CaseSensitive)));
- QCOMPARE(sign(lhs.compare(rhs)), caseSensitiveCompareResult);
- QCOMPARE(sign(lhs.compare(rhs, Qt::CaseSensitive)), caseSensitiveCompareResult);
- if (is_utf8_encoded<LHS>::value && is_utf8_encoded<RHS>::value &&
+ QCOMPARE_EQ(sign(lhs.compare(rhs)), caseSensitiveCompareResult);
+ QCOMPARE_EQ(sign(lhs.compare(rhs, Qt::CaseSensitive)), caseSensitiveCompareResult);
+ if (is_bytearray_like_v<LHS> && is_bytearray_like_v<RHS> &&
caseSensitiveCompareResult != caseInsensitiveCompareResult &&
(!QtPrivate::isAscii(lhsUnicode) || !QtPrivate::isAscii(rhsUnicode)))
{
- QEXPECT_FAIL("", "Qt is missing a case-insensitive UTF-8/UTF-8 comparator", Continue);
+ QEXPECT_FAIL("", "The types don't support non-ASCII case-insensitive comparison", Continue);
}
- QCOMPARE(sign(lhs.compare(rhs, Qt::CaseInsensitive)), caseInsensitiveCompareResult);
+ QCOMPARE_EQ(sign(lhs.compare(rhs, Qt::CaseInsensitive)), caseInsensitiveCompareResult);
+}
+
+void tst_QStringApiSymmetry::localeAwareCompare_data()
+{
+ QTest::addColumn<QByteArray>("locale");
+ QTest::addColumn<QString>("s1");
+ QTest::addColumn<QString>("s2");
+ QTest::addColumn<int>("result");
+
+#if defined(Q_OS_WIN) || defined(Q_OS_DARWIN) || QT_CONFIG(icu)
+ // Although the test sets LC_ALL (and adds a suffix to wanted) test
+ // LC_COLLATE because setlocale(LC_ALL, nullptr) encodes the whole locale,
+ // it's not simply the value of LC_ALL. We need our own copy of the reported
+ // value, as later setlocale() calls may stomp the value:
+ const QByteArray current(setlocale(LC_COLLATE, nullptr));
+ const auto canTest = [current](const char *wanted) {
+# if QT_CONFIG(icu)
+ // ICU will correctly use en when relevant environment variables are set
+ // to en.UTF-8, but setlocale() reports that as C, whose sort order is
+ // simpler. Only believe we can run C tests if the environment variables
+ // (which, conveniently, QLocale::system()'s Unix backend uses) say it
+ // really is. Conversely, don't reject "en_US" just because setlocale()
+ // misdescribes it.
+ if (current == "C") {
+ const QString sys = QLocale::system().name();
+ if (wanted == current ? sys == u"C" : sys.startsWith(wanted))
+ return true;
+ qDebug("Skipping %s test-cases as we can only test in locale %s (seen as C)",
+ wanted, sys.toUtf8().constData());
+ return false;
+ }
+# endif
+ if (current.startsWith(wanted))
+ return true;
+# ifdef Q_OS_WIN
+ // Unhelpfully, MS doesn't deign to use the usual format of locale tags,
+ // but expands the tag names to full names (in English):
+ const auto want = QLocale(QLatin1String(wanted));
+ if (current.startsWith(
+ QString(QLocale::languageToString(want.language()) + QChar('_')
+ + QLocale::territoryToString(want.territory())).toLocal8Bit())) {
+ return true;
+ }
+# endif
+ qDebug("Skipping %s test-cases as we can only test in locale %s (seen as %s)",
+ wanted, QLocale::system().name().toUtf8().constData(), current.data());
+ return false;
+ };
+#else
+ const auto canTest = [](const char *wanted) {
+ return QLocale(wanted) == QLocale::c() || QLocale(wanted) == QLocale::system().collation();
+ };
+#endif
+ // Update tailpiece's max-value for this if you add a new locale group
+ int countGroups = 0;
+
+ // Compare decomposed and composed form
+ if (canTest("en_US")) {
+ // From ES6 test262 test suite (built-ins/String/prototype/localeCompare/15.5.4.9_CE.js).
+ // The test cases boil down to code like this:
+ // console.log("\u1111\u1171\u11B6".localeCompare("\ud4db")
+
+ // example from Unicode 5.0, section 3.7, definition D70
+ QTest::newRow("normalize1")
+ << QByteArray("en_US")
+ << QString::fromUtf8("o\xCC\x88")
+ << QString::fromUtf8("\xC3\xB6") << 0;
+ // examples from Unicode 5.0, chapter 3.11
+ QTest::newRow("normalize2")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xC3\xA4\xCC\xA3")
+ << QString::fromUtf8("a\xCC\xA3\xCC\x88") << 0;
+ QTest::newRow("normalize3")
+ << QByteArray("en_US")
+ << QString::fromUtf8("a\xCC\x88\xCC\xA3")
+ << QString::fromUtf8("a\xCC\xA3\xCC\x88") << 0;
+ QTest::newRow("normalize4")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xE1\xBA\xA1\xCC\x88")
+ << QString::fromUtf8("a\xCC\xA3\xCC\x88") << 0;
+ QTest::newRow("normalize5")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xC3\xA4\xCC\x86")
+ << QString::fromUtf8("a\xCC\x88\xCC\x86") << 0;
+ QTest::newRow("normalize6")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xC4\x83\xCC\x88")
+ << QString::fromUtf8("a\xCC\x86\xCC\x88") << 0;
+ // example from Unicode 5.0, chapter 3.12
+ QTest::newRow("normalize7")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xE1\x84\x91\xE1\x85\xB1\xE1\x86\xB6")
+ << QString::fromUtf8("\xED\x93\x9B") << 0;
+ // examples from UTS 10, Unicode Collation Algorithm
+ QTest::newRow("normalize8")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xE2\x84\xAB")
+ << QString::fromUtf8("\xC3\x85") << 0;
+ QTest::newRow("normalize9")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xE2\x84\xAB")
+ << QString::fromUtf8("A\xCC\x8A") << 0;
+ QTest::newRow("normalize10")
+ << QByteArray("en_US")
+ << QString::fromUtf8("x\xCC\x9B\xCC\xA3")
+ << QString::fromUtf8("x\xCC\xA3\xCC\x9B") << 0;
+ QTest::newRow("normalize11")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xE1\xBB\xB1")
+ << QString::fromUtf8("\xE1\xBB\xA5\xCC\x9B") << 0;
+ QTest::newRow("normalize12")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xE1\xBB\xB1")
+ << QString::fromUtf8("u\xCC\x9B\xCC\xA3") << 0;
+ QTest::newRow("normalize13")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xE1\xBB\xB1")
+ << QString::fromUtf8("\xC6\xB0\xCC\xA3") << 0;
+ QTest::newRow("normalize14")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xE1\xBB\xB1")
+ << QString::fromUtf8("u\xCC\xA3\xCC\x9B") << 0;
+ // examples from UAX 15, Unicode Normalization Forms
+ QTest::newRow("normalize15")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xC3\x87")
+ << QString::fromUtf8("C\xCC\xA7") << 0;
+ QTest::newRow("normalize16")
+ << QByteArray("en_US")
+ << QString::fromUtf8("q\xCC\x87\xCC\xA3")
+ << QString::fromUtf8("q\xCC\xA3\xCC\x87") << 0;
+ QTest::newRow("normalize17")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xEA\xB0\x80")
+ << QString::fromUtf8("\xE1\x84\x80\xE1\x85\xA1") << 0;
+ QTest::newRow("normalize18")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xE2\x84\xAB")
+ << QString::fromUtf8("A\xCC\x8A") << 0;
+ QTest::newRow("normalize19")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xE2\x84\xA6")
+ << QString::fromUtf8("\xCE\xA9") << 0;
+ QTest::newRow("normalize20")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xC3\x85")
+ << QString::fromUtf8("A\xCC\x8A") << 0;
+ QTest::newRow("normalize21")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xC3\xB4")
+ << QString::fromUtf8("o\xCC\x82") << 0;
+ QTest::newRow("normalize22")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xE1\xB9\xA9")
+ << QString::fromUtf8("s\xCC\xA3\xCC\x87") << 0;
+ QTest::newRow("normalize23")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xE1\xB8\x8B\xCC\xA3")
+ << QString::fromUtf8("d\xCC\xA3\xCC\x87") << 0;
+ QTest::newRow("normalize24")
+ << QByteArray("en_US")
+ << QString::fromUtf8("\xE1\xB8\x8B\xCC\xA3")
+ << QString::fromUtf8("\xE1\xB8\x8D\xCC\x87") << 0;
+ QTest::newRow("normalize25")
+ << QByteArray("en_US")
+ << QString::fromUtf8("q\xCC\x87\xCC\xA3")
+ << QString::fromUtf8("q\xCC\xA3\xCC\x87") << 0;
+
+ QTest::newRow("en@5.gt.4") << QByteArray("en_US") << QString("5") << QString("4") << 1;
+ QTest::newRow("en@4.lt.6") << QByteArray("en_US") << QString("4") << QString("6") << -1;
+ QTest::newRow("en@5.l6.6") << QByteArray("en_US") << QString("5") << QString("6") << -1;
+
+ QTest::newRow("en@null.eq.null") << QByteArray("en_US") << QString() << QString() << 0;
+ QTest::newRow("en@empty.eq.null") << QByteArray("en_US") << QString("") << QString() << 0;
+ QTest::newRow("en@null.lt.non-empty") << QByteArray("en_US") << QString()
+ << QString("test") << -1;
+ QTest::newRow("en@empty.lt.non-empty") << QByteArray("en_US") << QString("")
+ << QString("test") << -1;
+
+ countGroups++;
+ }
+
+ /*
+ The C locale performs simple code-point number comparison of successive
+ characters until if finds a difference. Contrast with Swedish below,
+ particularly the a-umlaut vs a-ring comparison.
+ */
+ if (canTest("C")) {
+ QTest::newRow("C@auml.lt.aring")
+ << QByteArray("C")
+ << QString::fromLatin1("\xe4") // &auml;
+ << QString::fromLatin1("\xe5") << -1;
+ QTest::newRow("C@auml.lt.ouml")
+ << QByteArray("C")
+ << QString::fromLatin1("\xe4")
+ << QString::fromLatin1("\xf6") << -1; // &ouml;
+ QTest::newRow("C.aring.lt.ouml")
+ << QByteArray("C")
+ << QString::fromLatin1("\xe5") // &aring;
+ << QString::fromLatin1("\xf6") << -1;
+
+ countGroups++;
+ }
+
+ /*
+ In Swedish, a with ring above (E5) comes before a with
+ diaresis (E4), which comes before o diaresis (F6), which
+ all come after z.
+ */
+ if (canTest("sv_SE")) {
+ QTest::newRow("swede@aring.lt.auml")
+ << QByteArray("sv_SE")
+ << QString::fromLatin1("\xe5")
+ << QString::fromLatin1("\xe4") << -1;
+ QTest::newRow("swede@auml.lt.ouml")
+ << QByteArray("sv_SE")
+ << QString::fromLatin1("\xe4")
+ << QString::fromLatin1("\xf6") << -1;
+ QTest::newRow("swede.aring.lt.ouml")
+ << QByteArray("sv_SE")
+ << QString::fromLatin1("\xe5")
+ << QString::fromLatin1("\xf6") << -1;
+ QTest::newRow("swede.z.lt.aring")
+ << QByteArray("sv_SE")
+ << QString::fromLatin1("z")
+ << QString::fromLatin1("\xe5") << -1;
+
+ countGroups++;
+ }
+
+ /*
+ In Norwegian, ae (E6) comes before o with stroke (D8), which
+ comes before a with ring above (E5).
+ */
+ if (canTest("nb_NO")) {
+ QTest::newRow("norsk.ae.lt.oslash")
+ << QByteArray("nb_NO")
+ << QString::fromLatin1("\xe6")
+ << QString::fromLatin1("\xd8") << -1;
+ QTest::newRow("norsk.oslash.lt.aring")
+ << QByteArray("nb_NO")
+ << QString::fromLatin1("\xd8")
+ << QString::fromLatin1("\xe5") << -1;
+ QTest::newRow("norsk.ae.lt.aring")
+ << QByteArray("nb_NO")
+ << QString::fromLatin1("\xe6")
+ << QString::fromLatin1("\xe5") << -1;
+
+ countGroups++;
+ }
+
+ /*
+ In German, z comes *after* a with diaresis (E4),
+ which comes before o diaresis (F6).
+ */
+ if (canTest("de_DE")) {
+ QTest::newRow("german.z.gt.auml")
+ << QByteArray("de_DE")
+ << QString::fromLatin1("z")
+ << QString::fromLatin1("\xe4") << 1;
+ QTest::newRow("german.auml.lt.ouml")
+ << QByteArray("de_DE")
+ << QString::fromLatin1("\xe4")
+ << QString::fromLatin1("\xf6") << -1;
+ QTest::newRow("german.z.gt.ouml")
+ << QByteArray("de_DE")
+ << QString::fromLatin1("z")
+ << QString::fromLatin1("\xf6") << 1;
+
+ countGroups++;
+ }
+ // Tell developers how to get all the results (bot don't spam Coin logs):
+ if (countGroups < 5 && !qgetenv("QTEST_ENVIRONMENT").split(' ').contains("ci")) {
+ qDebug(R"(On platforms where this test cannot control the locale used by
+QString::localeAwareCompare(), it only runs test-cases for the locale in use.
+To test thoroughly, it is necessary to run this test repeatedly with each of
+C.UTF-8, en_US.UTF-8, sv_SE.UTF-8, nb_NO.UTF-8 and de_DE.UTF-8 as the system
+locale.)");
+ }
+ if (!countGroups)
+ QSKIP("No data for available locale");
+}
+
+template<typename LHS, typename RHS>
+void tst_QStringApiSymmetry::localeAwareCompare_impl()
+{
+ QFETCH(QByteArray, locale);
+ QFETCH(const QString, s1);
+ QFETCH(const QString, s2);
+ QFETCH(int, result);
+ locale += ".UTF-8"; // So we don't have to repeat it on every data row !
+
+ const QTestLocaleChange::TransientLocale tested(LC_ALL, locale.constData());
+ if (!tested.isValid())
+ QSKIP(QByteArray("Test needs locale " + locale + " installed on this machine").constData());
+
+ const auto lhs = make<LHS>(s1);
+ const auto rhs = make<RHS>(s2);
+
+ // qDebug() << s1.toUtf8().toHex(' ') << "as" << result << "to" << s2.toUtf8().toHex(' ');
+ QCOMPARE_EQ(sign(QString::localeAwareCompare(lhs, rhs)), result);
+}
+
+template<typename LHS, typename RHS>
+void tst_QStringApiSymmetry::member_localeAwareCompare_impl()
+{
+ QFETCH(QByteArray, locale);
+ QFETCH(const QString, s1);
+ QFETCH(const QString, s2);
+ QFETCH(int, result);
+ locale += ".UTF-8"; // So we don't have to repeat it on every data row !
+
+ const QTestLocaleChange::TransientLocale tested(LC_ALL, locale.constData());
+ if (!tested.isValid())
+ QSKIP(QByteArray("Test needs locale " + locale + " installed on this machine").constData());
+
+ const auto lhs = make<LHS>(s1);
+ const auto rhs = make<RHS>(s2);
+
+ // qDebug() << s1.toUtf8().toHex(' ') << "as" << result << "to" << s2.toUtf8().toHex(' ');
+ QCOMPARE_EQ(sign(lhs.localeAwareCompare(rhs)), result);
}
static QString empty = QLatin1String("");
@@ -1160,35 +1754,35 @@ static QString ABC = QStringLiteral("ABC");
void tst_QStringApiSymmetry::startsWith_data(bool rhsHasVariableLength)
{
- QTest::addColumn<QStringRef>("haystackU16");
+ QTest::addColumn<QStringView>("haystackU16");
QTest::addColumn<QLatin1String>("haystackL1");
- QTest::addColumn<QStringRef>("needleU16");
+ QTest::addColumn<QStringView>("needleU16");
QTest::addColumn<QLatin1String>("needleL1");
QTest::addColumn<bool>("resultCS");
QTest::addColumn<bool>("resultCIS");
if (rhsHasVariableLength) {
- QTest::addRow("null ~= ^null") << QStringRef() << QLatin1String()
- << QStringRef() << QLatin1String() << true << true;
- QTest::addRow("empty ~= ^null") << QStringRef(&empty) << QLatin1String("")
- << QStringRef() << QLatin1String() << true << true;
- QTest::addRow("a ~= ^null") << QStringRef(&a) << QLatin1String("a")
- << QStringRef() << QLatin1String() << true << true;
- QTest::addRow("null ~= ^empty") << QStringRef() << QLatin1String()
- << QStringRef(&empty) << QLatin1String("") << false << false;
- QTest::addRow("a ~= ^empty") << QStringRef(&a) << QLatin1String("a")
- << QStringRef(&empty) << QLatin1String("") << true << true;
- QTest::addRow("empty ~= ^empty") << QStringRef(&empty) << QLatin1String("")
- << QStringRef(&empty) << QLatin1String("") << true << true;
+ QTest::addRow("null ~= ^null") << QStringView() << QLatin1String()
+ << QStringView() << QLatin1String() << true << true;
+ QTest::addRow("empty ~= ^null") << QStringView(empty) << QLatin1String("")
+ << QStringView() << QLatin1String() << true << true;
+ QTest::addRow("a ~= ^null") << QStringView(a) << QLatin1String("a")
+ << QStringView() << QLatin1String() << true << true;
+ QTest::addRow("null ~= ^empty") << QStringView() << QLatin1String()
+ << QStringView(empty) << QLatin1String("") << false << false;
+ QTest::addRow("a ~= ^empty") << QStringView(a) << QLatin1String("a")
+ << QStringView(empty) << QLatin1String("") << true << true;
+ QTest::addRow("empty ~= ^empty") << QStringView(empty) << QLatin1String("")
+ << QStringView(empty) << QLatin1String("") << true << true;
}
- QTest::addRow("null ~= ^a") << QStringRef() << QLatin1String()
- << QStringRef(&a) << QLatin1String("a") << false << false;
- QTest::addRow("empty ~= ^a") << QStringRef(&empty) << QLatin1String("")
- << QStringRef(&a) << QLatin1String("a") << false << false;
+ QTest::addRow("null ~= ^a") << QStringView() << QLatin1String()
+ << QStringView(a) << QLatin1String("a") << false << false;
+ QTest::addRow("empty ~= ^a") << QStringView(empty) << QLatin1String("")
+ << QStringView(a) << QLatin1String("a") << false << false;
#define ROW(h, n, cs, cis) \
- QTest::addRow("%s ~= ^%s", #h, #n) << QStringRef(&h) << QLatin1String(#h) \
- << QStringRef(&n) << QLatin1String(#n) \
+ QTest::addRow("%s ~= ^%s", #h, #n) << QStringView(h) << QLatin1String(#h) \
+ << QStringView(n) << QLatin1String(#n) \
<< bool(cs) << bool(cis)
ROW(a, a, 1, 1);
ROW(a, A, 0, 1);
@@ -1227,9 +1821,9 @@ void tst_QStringApiSymmetry::startsWith_data(bool rhsHasVariableLength)
template <typename Haystack, typename Needle>
void tst_QStringApiSymmetry::startsWith_impl() const
{
- QFETCH(const QStringRef, haystackU16);
+ QFETCH(const QStringView, haystackU16);
QFETCH(const QLatin1String, haystackL1);
- QFETCH(const QStringRef, needleU16);
+ QFETCH(const QStringView, needleU16);
QFETCH(const QLatin1String, needleL1);
QFETCH(const bool, resultCS);
QFETCH(const bool, resultCIS);
@@ -1240,42 +1834,42 @@ void tst_QStringApiSymmetry::startsWith_impl() const
const auto haystack = make<Haystack>(haystackU16, haystackL1, haystackU8);
const auto needle = make<Needle>(needleU16, needleL1, needleU8);
- QCOMPARE(haystack.startsWith(needle), resultCS);
- QCOMPARE(haystack.startsWith(needle, Qt::CaseSensitive), resultCS);
- QCOMPARE(haystack.startsWith(needle, Qt::CaseInsensitive), resultCIS);
+ QCOMPARE_EQ(haystack.startsWith(needle), resultCS);
+ QCOMPARE_EQ(haystack.startsWith(needle, Qt::CaseSensitive), resultCS);
+ QCOMPARE_EQ(haystack.startsWith(needle, Qt::CaseInsensitive), resultCIS);
}
void tst_QStringApiSymmetry::endsWith_data(bool rhsHasVariableLength)
{
- QTest::addColumn<QStringRef>("haystackU16");
+ QTest::addColumn<QStringView>("haystackU16");
QTest::addColumn<QLatin1String>("haystackL1");
- QTest::addColumn<QStringRef>("needleU16");
+ QTest::addColumn<QStringView>("needleU16");
QTest::addColumn<QLatin1String>("needleL1");
QTest::addColumn<bool>("resultCS");
QTest::addColumn<bool>("resultCIS");
if (rhsHasVariableLength) {
- QTest::addRow("null ~= null$") << QStringRef() << QLatin1String()
- << QStringRef() << QLatin1String() << true << true;
- QTest::addRow("empty ~= null$") << QStringRef(&empty) << QLatin1String("")
- << QStringRef() << QLatin1String() << true << true;
- QTest::addRow("a ~= null$") << QStringRef(&a) << QLatin1String("a")
- << QStringRef() << QLatin1String() << true << true;
- QTest::addRow("null ~= empty$") << QStringRef() << QLatin1String()
- << QStringRef(&empty) << QLatin1String("") << false << false;
- QTest::addRow("a ~= empty$") << QStringRef(&a) << QLatin1String("a")
- << QStringRef(&empty) << QLatin1String("") << true << true;
- QTest::addRow("empty ~= empty$") << QStringRef(&empty) << QLatin1String("")
- << QStringRef(&empty) << QLatin1String("") << true << true;
+ QTest::addRow("null ~= null$") << QStringView() << QLatin1String()
+ << QStringView() << QLatin1String() << true << true;
+ QTest::addRow("empty ~= null$") << QStringView(empty) << QLatin1String("")
+ << QStringView() << QLatin1String() << true << true;
+ QTest::addRow("a ~= null$") << QStringView(a) << QLatin1String("a")
+ << QStringView() << QLatin1String() << true << true;
+ QTest::addRow("null ~= empty$") << QStringView() << QLatin1String()
+ << QStringView(empty) << QLatin1String("") << false << false;
+ QTest::addRow("a ~= empty$") << QStringView(a) << QLatin1String("a")
+ << QStringView(empty) << QLatin1String("") << true << true;
+ QTest::addRow("empty ~= empty$") << QStringView(empty) << QLatin1String("")
+ << QStringView(empty) << QLatin1String("") << true << true;
}
- QTest::addRow("null ~= a$") << QStringRef() << QLatin1String()
- << QStringRef(&a) << QLatin1String("a") << false << false;
- QTest::addRow("empty ~= a$") << QStringRef(&empty) << QLatin1String("")
- << QStringRef(&a) << QLatin1String("a") << false << false;
+ QTest::addRow("null ~= a$") << QStringView() << QLatin1String()
+ << QStringView(a) << QLatin1String("a") << false << false;
+ QTest::addRow("empty ~= a$") << QStringView(empty) << QLatin1String("")
+ << QStringView(a) << QLatin1String("a") << false << false;
#define ROW(h, n, cs, cis) \
- QTest::addRow("%s ~= %s$", #h, #n) << QStringRef(&h) << QLatin1String(#h) \
- << QStringRef(&n) << QLatin1String(#n) \
+ QTest::addRow("%s ~= %s$", #h, #n) << QStringView(h) << QLatin1String(#h) \
+ << QStringView(n) << QLatin1String(#n) \
<< bool(cs) << bool(cis)
ROW(a, a, 1, 1);
ROW(a, A, 0, 1);
@@ -1314,9 +1908,9 @@ void tst_QStringApiSymmetry::endsWith_data(bool rhsHasVariableLength)
template <typename Haystack, typename Needle>
void tst_QStringApiSymmetry::endsWith_impl() const
{
- QFETCH(const QStringRef, haystackU16);
+ QFETCH(const QStringView, haystackU16);
QFETCH(const QLatin1String, haystackL1);
- QFETCH(const QStringRef, needleU16);
+ QFETCH(const QStringView, needleU16);
QFETCH(const QLatin1String, needleL1);
QFETCH(const bool, resultCS);
QFETCH(const bool, resultCIS);
@@ -1327,50 +1921,50 @@ void tst_QStringApiSymmetry::endsWith_impl() const
const auto haystack = make<Haystack>(haystackU16, haystackL1, haystackU8);
const auto needle = make<Needle>(needleU16, needleL1, needleU8);
- QCOMPARE(haystack.endsWith(needle), resultCS);
- QCOMPARE(haystack.endsWith(needle, Qt::CaseSensitive), resultCS);
- QCOMPARE(haystack.endsWith(needle, Qt::CaseInsensitive), resultCIS);
+ QCOMPARE_EQ(haystack.endsWith(needle), resultCS);
+ QCOMPARE_EQ(haystack.endsWith(needle, Qt::CaseSensitive), resultCS);
+ QCOMPARE_EQ(haystack.endsWith(needle, Qt::CaseInsensitive), resultCIS);
}
void tst_QStringApiSymmetry::split_data(bool rhsHasVariableLength)
{
- QTest::addColumn<QStringRef>("haystackU16");
+ QTest::addColumn<QStringView>("haystackU16");
QTest::addColumn<QLatin1String>("haystackL1");
- QTest::addColumn<QStringRef>("needleU16");
+ QTest::addColumn<QStringView>("needleU16");
QTest::addColumn<QLatin1String>("needleL1");
QTest::addColumn<QStringList>("resultCS");
QTest::addColumn<QStringList>("resultCIS");
if (rhsHasVariableLength) {
- QTest::addRow("null ~= null$") << QStringRef{} << QLatin1String{}
- << QStringRef{} << QLatin1String{}
+ QTest::addRow("null ~= null$") << QStringView{} << QLatin1String{}
+ << QStringView{} << QLatin1String{}
<< QStringList{{}, {}} << QStringList{{}, {}};
- QTest::addRow("empty ~= null$") << QStringRef{&empty} << QLatin1String("")
- << QStringRef{} << QLatin1String{}
+ QTest::addRow("empty ~= null$") << QStringView{empty} << QLatin1String("")
+ << QStringView{} << QLatin1String{}
<< QStringList{empty, empty} << QStringList{empty, empty};
- QTest::addRow("a ~= null$") << QStringRef{&a} << QLatin1String{"a"}
- << QStringRef{} << QLatin1String{}
+ QTest::addRow("a ~= null$") << QStringView{a} << QLatin1String{"a"}
+ << QStringView{} << QLatin1String{}
<< QStringList{empty, a, empty} << QStringList{empty, a, empty};
- QTest::addRow("null ~= empty$") << QStringRef{} << QLatin1String{}
- << QStringRef{&empty} << QLatin1String{""}
+ QTest::addRow("null ~= empty$") << QStringView{} << QLatin1String{}
+ << QStringView{empty} << QLatin1String{""}
<< QStringList{{}, {}} << QStringList{{}, {}};
- QTest::addRow("a ~= empty$") << QStringRef{&a} << QLatin1String{"a"}
- << QStringRef{&empty} << QLatin1String{""}
+ QTest::addRow("a ~= empty$") << QStringView{a} << QLatin1String{"a"}
+ << QStringView{empty} << QLatin1String{""}
<< QStringList{empty, a, empty} << QStringList{empty, a, empty};
- QTest::addRow("empty ~= empty$") << QStringRef{&empty} << QLatin1String{""}
- << QStringRef{&empty} << QLatin1String{""}
+ QTest::addRow("empty ~= empty$") << QStringView{empty} << QLatin1String{""}
+ << QStringView{empty} << QLatin1String{""}
<< QStringList{empty, empty} << QStringList{empty, empty};
}
- QTest::addRow("null ~= a$") << QStringRef{} << QLatin1String{}
- << QStringRef{&a} << QLatin1String{"a"}
+ QTest::addRow("null ~= a$") << QStringView{} << QLatin1String{}
+ << QStringView{a} << QLatin1String{"a"}
<< QStringList{{}} << QStringList{{}};
- QTest::addRow("empty ~= a$") << QStringRef{&empty} << QLatin1String{""}
- << QStringRef{&a} << QLatin1String{"a"}
+ QTest::addRow("empty ~= a$") << QStringView{empty} << QLatin1String{""}
+ << QStringView{a} << QLatin1String{"a"}
<< QStringList{empty} << QStringList{empty};
#define ROW(h, n, cs, cis) \
- QTest::addRow("%s ~= %s$", #h, #n) << QStringRef(&h) << QLatin1String(#h) \
- << QStringRef(&n) << QLatin1String(#n) \
+ QTest::addRow("%s ~= %s$", #h, #n) << QStringView(h) << QLatin1String(#h) \
+ << QStringView(n) << QLatin1String(#n) \
<< QStringList cs << QStringList cis
ROW(a, a, ({empty, empty}), ({empty, empty}));
ROW(a, A, {a}, ({empty, empty}));
@@ -1426,9 +2020,9 @@ template <> QByteArray deepCopied(QByteArray s) { return detached(s); }
template <typename Haystack, typename Needle>
void tst_QStringApiSymmetry::split_impl() const
{
- QFETCH(const QStringRef, haystackU16);
+ QFETCH(const QStringView, haystackU16);
QFETCH(const QLatin1String, haystackL1);
- QFETCH(const QStringRef, needleU16);
+ QFETCH(const QStringView, needleU16);
QFETCH(const QLatin1String, needleL1);
QFETCH(const QStringList, resultCS);
QFETCH(const QStringList, resultCIS);
@@ -1442,11 +2036,11 @@ void tst_QStringApiSymmetry::split_impl() const
const auto haystack = make<Haystack>(haystackU16, haystackL1, haystackU8);
const auto needle = make<Needle>(needleU16, needleL1, needleU8);
- QCOMPARE(toQStringList(haystack.split(needle)), resultCS);
- QCOMPARE(toQStringList(haystack.split(needle, Qt::KeepEmptyParts, Qt::CaseSensitive)), resultCS);
- QCOMPARE(toQStringList(haystack.split(needle, Qt::KeepEmptyParts, Qt::CaseInsensitive)), resultCIS);
- QCOMPARE(toQStringList(haystack.split(needle, Qt::SkipEmptyParts, Qt::CaseSensitive)), skippedResultCS);
- QCOMPARE(toQStringList(haystack.split(needle, Qt::SkipEmptyParts, Qt::CaseInsensitive)), skippedResultCIS);
+ QCOMPARE_EQ(toQStringList(haystack.split(needle)), resultCS);
+ QCOMPARE_EQ(toQStringList(haystack.split(needle, Qt::KeepEmptyParts, Qt::CaseSensitive)), resultCS);
+ QCOMPARE_EQ(toQStringList(haystack.split(needle, Qt::KeepEmptyParts, Qt::CaseInsensitive)), resultCIS);
+ QCOMPARE_EQ(toQStringList(haystack.split(needle, Qt::SkipEmptyParts, Qt::CaseSensitive)), skippedResultCS);
+ QCOMPARE_EQ(toQStringList(haystack.split(needle, Qt::SkipEmptyParts, Qt::CaseInsensitive)), skippedResultCIS);
}
void tst_QStringApiSymmetry::tok_data(bool rhsHasVariableLength)
@@ -1465,9 +2059,9 @@ constexpr inline bool has_tokenize_method_v = has_tokenize_method<std::decay_t<T
template <typename Haystack, typename Needle>
void tst_QStringApiSymmetry::tok_impl() const
{
- QFETCH(const QStringRef, haystackU16);
+ QFETCH(const QStringView, haystackU16);
QFETCH(const QLatin1String, haystackL1);
- QFETCH(const QStringRef, needleU16);
+ QFETCH(const QStringView, needleU16);
QFETCH(const QLatin1String, needleL1);
QFETCH(const QStringList, resultCS);
QFETCH(const QStringList, resultCIS);
@@ -1481,46 +2075,44 @@ void tst_QStringApiSymmetry::tok_impl() const
const auto haystack = make<Haystack>(haystackU16, haystackL1, haystackU8);
const auto needle = make<Needle>(needleU16, needleL1, needleU8);
- QCOMPARE(toQStringList(qTokenize(haystack, needle)), resultCS);
- QCOMPARE(toQStringList(qTokenize(haystack, needle, Qt::KeepEmptyParts, Qt::CaseSensitive)), resultCS);
- QCOMPARE(toQStringList(qTokenize(haystack, needle, Qt::CaseInsensitive, Qt::KeepEmptyParts)), resultCIS);
- QCOMPARE(toQStringList(qTokenize(haystack, needle, Qt::SkipEmptyParts, Qt::CaseSensitive)), skippedResultCS);
- QCOMPARE(toQStringList(qTokenize(haystack, needle, Qt::CaseInsensitive, Qt::SkipEmptyParts)), skippedResultCIS);
+ QCOMPARE_EQ(toQStringList(qTokenize(haystack, needle)), resultCS);
+ QCOMPARE_EQ(toQStringList(qTokenize(haystack, needle, Qt::KeepEmptyParts, Qt::CaseSensitive)), resultCS);
+ QCOMPARE_EQ(toQStringList(qTokenize(haystack, needle, Qt::CaseInsensitive, Qt::KeepEmptyParts)), resultCIS);
+ QCOMPARE_EQ(toQStringList(qTokenize(haystack, needle, Qt::SkipEmptyParts, Qt::CaseSensitive)), skippedResultCS);
+ QCOMPARE_EQ(toQStringList(qTokenize(haystack, needle, Qt::CaseInsensitive, Qt::SkipEmptyParts)), skippedResultCIS);
{
const auto tok = qTokenize(deepCopied(haystack), deepCopied(needle));
// here, the temporaries returned from deepCopied() have already been destroyed,
// yet `tok` should have kept a copy alive as needed:
- QCOMPARE(toQStringList(tok), resultCS);
+ QCOMPARE_EQ(toQStringList(tok), resultCS);
}
-#ifdef __cpp_deduction_guides
- QCOMPARE(toQStringList(QStringTokenizer{haystack, needle}), resultCS);
- QCOMPARE(toQStringList(QStringTokenizer{haystack, needle, Qt::KeepEmptyParts, Qt::CaseSensitive}), resultCS);
- QCOMPARE(toQStringList(QStringTokenizer{haystack, needle, Qt::CaseInsensitive, Qt::KeepEmptyParts}), resultCIS);
- QCOMPARE(toQStringList(QStringTokenizer{haystack, needle, Qt::SkipEmptyParts, Qt::CaseSensitive}), skippedResultCS);
- QCOMPARE(toQStringList(QStringTokenizer{haystack, needle, Qt::CaseInsensitive, Qt::SkipEmptyParts}), skippedResultCIS);
+ QCOMPARE_EQ(toQStringList(QStringTokenizer{haystack, needle}), resultCS);
+ QCOMPARE_EQ(toQStringList(QStringTokenizer{haystack, needle, Qt::KeepEmptyParts, Qt::CaseSensitive}), resultCS);
+ QCOMPARE_EQ(toQStringList(QStringTokenizer{haystack, needle, Qt::CaseInsensitive, Qt::KeepEmptyParts}), resultCIS);
+ QCOMPARE_EQ(toQStringList(QStringTokenizer{haystack, needle, Qt::SkipEmptyParts, Qt::CaseSensitive}), skippedResultCS);
+ QCOMPARE_EQ(toQStringList(QStringTokenizer{haystack, needle, Qt::CaseInsensitive, Qt::SkipEmptyParts}), skippedResultCIS);
{
const auto tok = QStringTokenizer{deepCopied(haystack), deepCopied(needle)};
// here, the temporaries returned from deepCopied() have already been destroyed,
// yet `tok` should have kept a copy alive as needed:
- QCOMPARE(toQStringList(tok), resultCS);
+ QCOMPARE_EQ(toQStringList(tok), resultCS);
}
-#endif // __cpp_deduction_guides
if constexpr (has_tokenize_method_v<Haystack>) {
- QCOMPARE(toQStringList(haystack.tokenize(needle)), resultCS);
- QCOMPARE(toQStringList(haystack.tokenize(needle, Qt::KeepEmptyParts, Qt::CaseSensitive)), resultCS);
- QCOMPARE(toQStringList(haystack.tokenize(needle, Qt::CaseInsensitive, Qt::KeepEmptyParts)), resultCIS);
- QCOMPARE(toQStringList(haystack.tokenize(needle, Qt::SkipEmptyParts, Qt::CaseSensitive)), skippedResultCS);
- QCOMPARE(toQStringList(haystack.tokenize(needle, Qt::CaseInsensitive, Qt::SkipEmptyParts)), skippedResultCIS);
+ QCOMPARE_EQ(toQStringList(haystack.tokenize(needle)), resultCS);
+ QCOMPARE_EQ(toQStringList(haystack.tokenize(needle, Qt::KeepEmptyParts, Qt::CaseSensitive)), resultCS);
+ QCOMPARE_EQ(toQStringList(haystack.tokenize(needle, Qt::CaseInsensitive, Qt::KeepEmptyParts)), resultCIS);
+ QCOMPARE_EQ(toQStringList(haystack.tokenize(needle, Qt::SkipEmptyParts, Qt::CaseSensitive)), skippedResultCS);
+ QCOMPARE_EQ(toQStringList(haystack.tokenize(needle, Qt::CaseInsensitive, Qt::SkipEmptyParts)), skippedResultCIS);
{
const auto tok = deepCopied(haystack).tokenize(deepCopied(needle));
// here, the temporaries returned from deepCopied() have already been destroyed,
// yet `tok` should have kept a copy alive as needed:
- QCOMPARE(toQStringList(tok), resultCS);
+ QCOMPARE_EQ(toQStringList(tok), resultCS);
}
}
}
@@ -1531,7 +2123,7 @@ void tst_QStringApiSymmetry::mid_data()
// mid() has a wider contract compared to sliced(), so test those cases here:
#define ROW(base, p, n, r1, r2) \
- QTest::addRow("%s %d %d", #base, p, n) << QStringRef(&base) << QLatin1String(#base) << p << n << QStringRef(&r1) << QStringRef(&r2)
+ QTest::addRow("%s %d %d", #base, p, n) << QStringView(base) << QLatin1String(#base) << p << n << QAnyStringView(r1) << QAnyStringView(r2)
ROW(a, -1, 0, a, null);
ROW(a, -1, 2, a, a);
@@ -1552,7 +2144,6 @@ void tst_QStringApiSymmetry::mid_data()
ROW(abc, 0, -1, abc, abc);
ROW(abc, 0, 5, abc, abc);
ROW(abc, -1, 1, abc, null);
- ROW(abc, -1, 2, abc, a);
ROW(abc, -1, 4, abc, abc);
ROW(abc, 1, -1, bc, bc);
ROW(abc, 1, 1, bc, b);
@@ -1564,12 +2155,12 @@ void tst_QStringApiSymmetry::mid_data()
template <typename String>
void tst_QStringApiSymmetry::mid_impl()
{
- QFETCH(const QStringRef, unicode);
+ QFETCH(const QStringView, unicode);
QFETCH(const QLatin1String, latin1);
QFETCH(const int, pos);
QFETCH(const int, n);
- QFETCH(const QStringRef, result);
- QFETCH(const QStringRef, result2);
+ QFETCH(const QAnyStringView, result);
+ QFETCH(const QAnyStringView, result2);
const auto utf8 = unicode.toUtf8();
@@ -1579,25 +2170,25 @@ void tst_QStringApiSymmetry::mid_impl()
const auto mid = s.mid(pos);
const auto mid2 = s.mid(pos, n);
- QCOMPARE(mid, result);
- QCOMPARE(mid.isNull(), result.isNull());
- QCOMPARE(mid.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(mid, result);
+ QCOMPARE_EQ(mid.isNull(), result.isNull());
+ QCOMPARE_EQ(mid.isEmpty(), result.isEmpty());
- QCOMPARE(mid2, result2);
- QCOMPARE(mid2.isNull(), result2.isNull());
- QCOMPARE(mid2.isEmpty(), result2.isEmpty());
+ QCOMPARE_EQ(mid2, result2);
+ QCOMPARE_EQ(mid2.isNull(), result2.isNull());
+ QCOMPARE_EQ(mid2.isEmpty(), result2.isEmpty());
}
{
const auto mid = detached(s).mid(pos);
const auto mid2 = detached(s).mid(pos, n);
- QCOMPARE(mid, result);
- QCOMPARE(mid.isNull(), result.isNull());
- QCOMPARE(mid.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(mid, result);
+ QCOMPARE_EQ(mid.isNull(), result.isNull());
+ QCOMPARE_EQ(mid.isEmpty(), result.isEmpty());
- QCOMPARE(mid2, result2);
- QCOMPARE(mid2.isNull(), result2.isNull());
- QCOMPARE(mid2.isEmpty(), result2.isEmpty());
+ QCOMPARE_EQ(mid2, result2);
+ QCOMPARE_EQ(mid2.isNull(), result2.isNull());
+ QCOMPARE_EQ(mid2.isEmpty(), result2.isEmpty());
}
}
@@ -1607,7 +2198,7 @@ void tst_QStringApiSymmetry::left_data()
// specific data testing out of bounds cases
#define ROW(base, n, res) \
- QTest::addRow("%s%d", #base, n) << QStringRef(&base) << QLatin1String(#base) << n << QStringRef(&res);
+ QTest::addRow("%s%d", #base, n) << QStringView(base) << QLatin1String(#base) << n << QAnyStringView(res);
ROW(a, -1, a);
ROW(a, 2, a);
@@ -1625,7 +2216,7 @@ void tst_QStringApiSymmetry::left_QByteArray_data()
// specific data testing out of bounds cases
#define ROW(base, n, res) \
- QTest::addRow("%s%d", #base, n) << QStringRef(&base) << QLatin1String(#base) << n << QStringRef(&res);
+ QTest::addRow("%s%d", #base, n) << QStringView(base) << QLatin1String(#base) << n << QAnyStringView(res);
ROW(a, -1, empty);
ROW(a, 2, a);
@@ -1638,10 +2229,10 @@ void tst_QStringApiSymmetry::left_QByteArray_data()
template <typename String>
void tst_QStringApiSymmetry::left_impl()
{
- QFETCH(const QStringRef, unicode);
+ QFETCH(const QStringView, unicode);
QFETCH(const QLatin1String, latin1);
QFETCH(const int, n);
- QFETCH(const QStringRef, result);
+ QFETCH(const QAnyStringView, result);
const auto utf8 = unicode.toUtf8();
@@ -1650,16 +2241,16 @@ void tst_QStringApiSymmetry::left_impl()
{
const auto left = s.left(n);
- QCOMPARE(left, result);
- QCOMPARE(left.isNull(), result.isNull());
- QCOMPARE(left.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(left, result);
+ QCOMPARE_EQ(left.isNull(), result.isNull());
+ QCOMPARE_EQ(left.isEmpty(), result.isEmpty());
}
{
const auto left = detached(s).left(n);
- QCOMPARE(left, result);
- QCOMPARE(left.isNull(), result.isNull());
- QCOMPARE(left.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(left, result);
+ QCOMPARE_EQ(left.isNull(), result.isNull());
+ QCOMPARE_EQ(left.isEmpty(), result.isEmpty());
}
}
@@ -1669,7 +2260,7 @@ void tst_QStringApiSymmetry::right_data()
// specific data testing out of bounds cases
#define ROW(base, n, res) \
- QTest::addRow("%s%d", #base, n) << QStringRef(&base) << QLatin1String(#base) << n << QStringRef(&res);
+ QTest::addRow("%s%d", #base, n) << QStringView(base) << QLatin1String(#base) << n << QAnyStringView(res);
ROW(a, -1, a);
ROW(a, 2, a);
@@ -1687,7 +2278,7 @@ void tst_QStringApiSymmetry::right_QByteArray_data()
// specific data testing out of bounds cases
#define ROW(base, n, res) \
- QTest::addRow("%s%d", #base, n) << QStringRef(&base) << QLatin1String(#base) << n << QStringRef(&res);
+ QTest::addRow("%s%d", #base, n) << QStringView(base) << QLatin1String(#base) << n << QAnyStringView(res);
ROW(a, -1, empty);
ROW(a, 2, a);
@@ -1700,10 +2291,10 @@ void tst_QStringApiSymmetry::right_QByteArray_data()
template <typename String>
void tst_QStringApiSymmetry::right_impl()
{
- QFETCH(const QStringRef, unicode);
+ QFETCH(const QStringView, unicode);
QFETCH(const QLatin1String, latin1);
QFETCH(const int, n);
- QFETCH(const QStringRef, result);
+ QFETCH(const QAnyStringView, result);
const auto utf8 = unicode.toUtf8();
@@ -1712,33 +2303,33 @@ void tst_QStringApiSymmetry::right_impl()
{
const auto right = s.right(n);
- QCOMPARE(right, result);
- QCOMPARE(right.isNull(), result.isNull());
- QCOMPARE(right.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(right, result);
+ QCOMPARE_EQ(right.isNull(), result.isNull());
+ QCOMPARE_EQ(right.isEmpty(), result.isEmpty());
}
{
const auto right = detached(s).right(n);
- QCOMPARE(right, result);
- QCOMPARE(right.isNull(), result.isNull());
- QCOMPARE(right.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(right, result);
+ QCOMPARE_EQ(right.isNull(), result.isNull());
+ QCOMPARE_EQ(right.isEmpty(), result.isEmpty());
}
}
void tst_QStringApiSymmetry::sliced_data()
{
- QTest::addColumn<QStringRef>("unicode");
+ QTest::addColumn<QStringView>("unicode");
QTest::addColumn<QLatin1String>("latin1");
QTest::addColumn<int>("pos");
QTest::addColumn<int>("n");
- QTest::addColumn<QStringRef>("result");
- QTest::addColumn<QStringRef>("result2");
+ QTest::addColumn<QAnyStringView>("result");
+ QTest::addColumn<QAnyStringView>("result2");
-// QTest::addRow("null") << QStringRef() << QLatin1String() << 0 << 0 << QStringRef() << QStringRef();
- QTest::addRow("empty") << QStringRef(&empty) << QLatin1String("") << 0 << 0 << QStringRef(&empty) << QStringRef(&empty);
+// QTest::addRow("null") << QStringView() << QLatin1String() << 0 << 0 << QStringView() << QStringView();
+ QTest::addRow("empty") << QStringView(empty) << QLatin1String("") << 0 << 0 << QAnyStringView(empty) << QAnyStringView(empty);
#define ROW(base, p, n, r1, r2) \
- QTest::addRow("%s%d%d", #base, p, n) << QStringRef(&base) << QLatin1String(#base) << p << n << QStringRef(&r1) << QStringRef(&r2)
+ QTest::addRow("%s%d%d", #base, p, n) << QStringView(base) << QLatin1String(#base) << p << n << QAnyStringView(r1) << QAnyStringView(r2)
ROW(a, 0, 0, a, empty);
ROW(a, 0, 1, a, a);
@@ -1767,57 +2358,82 @@ void tst_QStringApiSymmetry::sliced_data()
template <typename String>
void tst_QStringApiSymmetry::sliced_impl()
{
- QFETCH(const QStringRef, unicode);
+ QFETCH(const QStringView, unicode);
QFETCH(const QLatin1String, latin1);
QFETCH(const int, pos);
QFETCH(const int, n);
- QFETCH(const QStringRef, result);
- QFETCH(const QStringRef, result2);
+ QFETCH(const QAnyStringView, result);
+ QFETCH(const QAnyStringView, result2);
const auto utf8 = unicode.toUtf8();
const auto s = make<String>(unicode, latin1, utf8);
{
- const auto from = s.sliced(pos);
+ const auto sliced = s.sliced(pos);
+
+ QCOMPARE_EQ(sliced, result);
+ QCOMPARE_EQ(sliced.isNull(), result.isNull());
+ QCOMPARE_EQ(sliced.isEmpty(), result.isEmpty());
+ }
+ {
const auto sliced = s.sliced(pos, n);
- QCOMPARE(from, result);
- QCOMPARE(from.isNull(), result.isNull());
- QCOMPARE(from.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(sliced, result2);
+ QCOMPARE_EQ(sliced.isNull(), result2.isNull());
+ QCOMPARE_EQ(sliced.isEmpty(), result2.isEmpty());
+ }
+ {
+ const auto sliced = detached(s).sliced(pos);
- QCOMPARE(sliced, result2);
- QCOMPARE(sliced.isNull(), result2.isNull());
- QCOMPARE(sliced.isEmpty(), result2.isEmpty());
+ QCOMPARE_EQ(sliced, result);
+ QCOMPARE_EQ(sliced.isNull(), result.isNull());
+ QCOMPARE_EQ(sliced.isEmpty(), result.isEmpty());
}
{
- const auto from = detached(s).sliced(pos);
const auto sliced = detached(s).sliced(pos, n);
- QCOMPARE(from, result);
- QCOMPARE(from.isNull(), result.isNull());
- QCOMPARE(from.isEmpty(), result.isEmpty());
-
- QCOMPARE(sliced, result2);
- QCOMPARE(sliced.isNull(), result2.isNull());
- QCOMPARE(sliced.isEmpty(), result2.isEmpty());
+ QCOMPARE_EQ(sliced, result2);
+ QCOMPARE_EQ(sliced.isNull(), result2.isNull());
+ QCOMPARE_EQ(sliced.isEmpty(), result2.isEmpty());
}
}
+template <typename String>
+void tst_QStringApiSymmetry::slice_impl()
+{
+ QFETCH(const QStringView, unicode);
+ QFETCH(const QLatin1String, latin1);
+ QFETCH(const int, pos);
+ QFETCH(const int, n);
+ QFETCH(const QAnyStringView, result);
+ QFETCH(const QAnyStringView, result2);
+
+ const auto str = make<String>(unicode, latin1, unicode.toUtf8());
+
+ auto s = str;
+ s.slice(pos);
+ QCOMPARE_EQ(s, result);
+
+ s = str;
+ s.slice(pos, n);
+ QCOMPARE_EQ(s, result2);
+}
+
void tst_QStringApiSymmetry::first_data()
{
- QTest::addColumn<QStringRef>("unicode");
+ QTest::addColumn<QStringView>("unicode");
QTest::addColumn<QLatin1String>("latin1");
QTest::addColumn<int>("n");
- QTest::addColumn<QStringRef>("result");
+ QTest::addColumn<QAnyStringView>("result");
-// QTest::addRow("null") << QStringRef() << QLatin1String() << 0 << QStringRef();
- QTest::addRow("empty") << QStringRef(&empty) << QLatin1String("") << 0 << QStringRef(&empty);
+// QTest::addRow("null") << QStringView() << QLatin1String() << 0 << QStringView();
+ QTest::addRow("empty") << QStringView(empty) << QLatin1String("") << 0 << QAnyStringView(empty);
// Some classes' left() implementations have a wide contract, others a narrow one
- // so only test valid arguents here:
+ // so only test valid arguments here:
#define ROW(base, n, res) \
- QTest::addRow("%s%d", #base, n) << QStringRef(&base) << QLatin1String(#base) << n << QStringRef(&res);
+ QTest::addRow("%s%d", #base, n) << QStringView(base) << QLatin1String(#base) << n << QAnyStringView(res);
ROW(a, 0, empty);
ROW(a, 1, a);
@@ -1836,10 +2452,10 @@ void tst_QStringApiSymmetry::first_data()
template <typename String>
void tst_QStringApiSymmetry::first_impl()
{
- QFETCH(const QStringRef, unicode);
+ QFETCH(const QStringView, unicode);
QFETCH(const QLatin1String, latin1);
QFETCH(const int, n);
- QFETCH(const QStringRef, result);
+ QFETCH(const QAnyStringView, result);
const auto utf8 = unicode.toUtf8();
@@ -1848,41 +2464,41 @@ void tst_QStringApiSymmetry::first_impl()
{
const auto first = s.first(n);
- QCOMPARE(first, result);
- QCOMPARE(first.isNull(), result.isNull());
- QCOMPARE(first.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(first, result);
+ QCOMPARE_EQ(first.isNull(), result.isNull());
+ QCOMPARE_EQ(first.isEmpty(), result.isEmpty());
}
{
const auto first = detached(s).first(n);
- QCOMPARE(first, result);
- QCOMPARE(first.isNull(), result.isNull());
- QCOMPARE(first.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(first, result);
+ QCOMPARE_EQ(first.isNull(), result.isNull());
+ QCOMPARE_EQ(first.isEmpty(), result.isEmpty());
}
{
auto first = s;
first.truncate(n);
- QCOMPARE(first, result);
- QCOMPARE(first.isNull(), result.isNull());
- QCOMPARE(first.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(first, result);
+ QCOMPARE_EQ(first.isNull(), result.isNull());
+ QCOMPARE_EQ(first.isEmpty(), result.isEmpty());
}
}
void tst_QStringApiSymmetry::last_data()
{
- QTest::addColumn<QStringRef>("unicode");
+ QTest::addColumn<QStringView>("unicode");
QTest::addColumn<QLatin1String>("latin1");
QTest::addColumn<int>("n");
- QTest::addColumn<QStringRef>("result");
+ QTest::addColumn<QAnyStringView>("result");
-// QTest::addRow("null") << QStringRef() << QLatin1String() << 0 << QStringRef();
- QTest::addRow("empty") << QStringRef(&empty) << QLatin1String("") << 0 << QStringRef(&empty);
+// QTest::addRow("null") << QStringView() << QLatin1String() << 0 << QStringView();
+ QTest::addRow("empty") << QStringView(empty) << QLatin1String("") << 0 << QAnyStringView(empty);
// Some classes' last() implementations have a wide contract, others a narrow one
- // so only test valid arguents here:
+ // so only test valid arguments here:
#define ROW(base, n, res) \
- QTest::addRow("%s%d", #base, n) << QStringRef(&base) << QLatin1String(#base) << n << QStringRef(&res);
+ QTest::addRow("%s%d", #base, n) << QStringView(base) << QLatin1String(#base) << n << QAnyStringView(res);
ROW(a, 0, empty);
ROW(a, 1, a);
@@ -1901,10 +2517,10 @@ void tst_QStringApiSymmetry::last_data()
template <typename String>
void tst_QStringApiSymmetry::last_impl()
{
- QFETCH(const QStringRef, unicode);
+ QFETCH(const QStringView, unicode);
QFETCH(const QLatin1String, latin1);
QFETCH(const int, n);
- QFETCH(const QStringRef, result);
+ QFETCH(const QAnyStringView, result);
const auto utf8 = unicode.toUtf8();
@@ -1913,33 +2529,33 @@ void tst_QStringApiSymmetry::last_impl()
{
const auto last = s.last(n);
- QCOMPARE(last, result);
- QCOMPARE(last.isNull(), result.isNull());
- QCOMPARE(last.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(last, result);
+ QCOMPARE_EQ(last.isNull(), result.isNull());
+ QCOMPARE_EQ(last.isEmpty(), result.isEmpty());
}
{
const auto last = detached(s).last(n);
- QCOMPARE(last, result);
- QCOMPARE(last.isNull(), result.isNull());
- QCOMPARE(last.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(last, result);
+ QCOMPARE_EQ(last.isNull(), result.isNull());
+ QCOMPARE_EQ(last.isEmpty(), result.isEmpty());
}
}
void tst_QStringApiSymmetry::chop_data()
{
- QTest::addColumn<QStringRef>("unicode");
+ QTest::addColumn<QStringView>("unicode");
QTest::addColumn<QLatin1String>("latin1");
QTest::addColumn<int>("n");
- QTest::addColumn<QStringRef>("result");
+ QTest::addColumn<QAnyStringView>("result");
-// QTest::addRow("null") << QStringRef() << QLatin1String() << 0 << QStringRef();
- QTest::addRow("empty") << QStringRef(&empty) << QLatin1String("") << 0 << QStringRef(&empty);
+// QTest::addRow("null") << QStringView() << QLatin1String() << 0 << QStringView();
+ QTest::addRow("empty") << QStringView(empty) << QLatin1String("") << 0 << QAnyStringView(empty);
// Some classes' truncate() implementations have a wide contract, others a narrow one
// so only test valid arguents here:
#define ROW(base, n, res) \
- QTest::addRow("%s%d", #base, n) << QStringRef(&base) << QLatin1String(#base) << n << QStringRef(&res);
+ QTest::addRow("%s%d", #base, n) << QStringView(base) << QLatin1String(#base) << n << QAnyStringView(res);
ROW(a, 0, a);
ROW(a, 1, empty);
@@ -1958,10 +2574,10 @@ void tst_QStringApiSymmetry::chop_data()
template <typename String>
void tst_QStringApiSymmetry::chop_impl()
{
- QFETCH(const QStringRef, unicode);
+ QFETCH(const QStringView, unicode);
QFETCH(const QLatin1String, latin1);
QFETCH(const int, n);
- QFETCH(const QStringRef, result);
+ QFETCH(const QAnyStringView, result);
const auto utf8 = unicode.toUtf8();
@@ -1970,44 +2586,46 @@ void tst_QStringApiSymmetry::chop_impl()
{
const auto chopped = s.chopped(n);
- QCOMPARE(chopped, result);
- QCOMPARE(chopped.isNull(), result.isNull());
- QCOMPARE(chopped.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(chopped, result);
+ QCOMPARE_EQ(chopped.isNull(), result.isNull());
+ QCOMPARE_EQ(chopped.isEmpty(), result.isEmpty());
}
{
const auto chopped = detached(s).chopped(n);
- QCOMPARE(chopped, result);
- QCOMPARE(chopped.isNull(), result.isNull());
- QCOMPARE(chopped.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(chopped, result);
+ QCOMPARE_EQ(chopped.isNull(), result.isNull());
+ QCOMPARE_EQ(chopped.isEmpty(), result.isEmpty());
}
{
auto chopped = s;
chopped.chop(n);
- QCOMPARE(chopped, result);
- QCOMPARE(chopped.isNull(), result.isNull());
- QCOMPARE(chopped.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(chopped, result);
+ QCOMPARE_EQ(chopped.isNull(), result.isNull());
+ QCOMPARE_EQ(chopped.isEmpty(), result.isEmpty());
}
}
void tst_QStringApiSymmetry::trimmed_data()
{
QTest::addColumn<QString>("unicode");
- QTest::addColumn<QStringRef>("result");
+ QTest::addColumn<QAnyStringView>("result");
- const auto latin1Whitespace = QLatin1String(" \r\n\t\f\v");
+ const auto latin1Whitespace = QLatin1StringView(" \r\n\t\f\v");
- QTest::addRow("null") << QString() << QStringRef();
+ QTest::addRow("null") << QString() << QAnyStringView();
auto add = [latin1Whitespace](const QString &str) {
- // run through all substrings of latin1Whitespace
- for (int len = 0; len < latin1Whitespace.size(); ++len) {
- for (int pos = 0; pos < latin1Whitespace.size() - len; ++pos) {
- const QString unicode = latin1Whitespace.mid(pos, len) + str + latin1Whitespace.mid(pos, len);
- const QScopedArrayPointer<const char> escaped(QTest::toString(unicode));
- QTest::addRow("%s", escaped.data()) << unicode << QStringRef(&str);
- }
+ auto row = [&](QLatin1StringView spaces) {
+ const QString unicode = spaces + str + spaces;
+ const QScopedArrayPointer<const char> escaped(QTest::toString(unicode));
+ QTest::addRow("%s", escaped.data()) << unicode << QAnyStringView(str);
+ };
+ row({}); // The len = 0 case of the following.
+ for (qsizetype len = 1; len < latin1Whitespace.size(); ++len) {
+ for (qsizetype pos = 0; pos < latin1Whitespace.size() - len; ++pos)
+ row (latin1Whitespace.mid(pos, len));
}
};
@@ -2020,30 +2638,30 @@ template <typename String>
void tst_QStringApiSymmetry::trimmed_impl()
{
QFETCH(const QString, unicode);
- QFETCH(const QStringRef, result);
+ QFETCH(const QAnyStringView, result);
const auto utf8 = unicode.toUtf8();
const auto l1s = unicode.toLatin1();
const auto l1 = l1s.isNull() ? QLatin1String() : QLatin1String(l1s);
- const auto ref = unicode.isNull() ? QStringRef() : QStringRef(&unicode);
+ const auto ref = unicode.isNull() ? QStringView() : QStringView(unicode);
const auto s = make<String>(ref, l1, utf8);
- QCOMPARE(s.isNull(), unicode.isNull());
+ QCOMPARE_EQ(s.isNull(), unicode.isNull());
{
const auto trimmed = s.trimmed();
- QCOMPARE(trimmed, result);
- QCOMPARE(trimmed.isNull(), result.isNull());
- QCOMPARE(trimmed.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(trimmed, result);
+ QCOMPARE_EQ(trimmed.isNull(), result.isNull());
+ QCOMPARE_EQ(trimmed.isEmpty(), result.isEmpty());
}
{
const auto trimmed = detached(s).trimmed();
- QCOMPARE(trimmed, result);
- QCOMPARE(trimmed.isNull(), result.isNull());
- QCOMPARE(trimmed.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(trimmed, result);
+ QCOMPARE_EQ(trimmed.isNull(), result.isNull());
+ QCOMPARE_EQ(trimmed.isEmpty(), result.isEmpty());
}
}
@@ -2063,6 +2681,7 @@ void tst_QStringApiSymmetry::toNumber_data()
QTest::addRow("-32768") << QString::fromUtf8("-32768") << qint64(-32768) << true;
QTest::addRow("100x") << QString::fromUtf8("100x") << qint64(0) << false;
QTest::addRow("-100x") << QString::fromUtf8("-100x") << qint64(0) << false;
+ QTest::addRow("-min64") << QString::fromUtf8("--9223372036854775808") << qint64(0) << false;
}
template<typename T>
@@ -2085,67 +2704,171 @@ void tst_QStringApiSymmetry::toNumber_impl()
const auto l1s = data.toLatin1();
const auto l1 = l1s.isNull() ? QLatin1String() : QLatin1String(l1s);
- const auto ref = data.isNull() ? QStringRef() : QStringRef(&data);
+ const auto ref = data.isNull() ? QStringView() : QStringView(data);
const auto s = make<String>(ref, l1, utf8);
bool is_ok = false;
qint64 n = 0;
n = s.toShort(&is_ok);
- QCOMPARE(is_ok, ok && inRange<short>(result));
+ QCOMPARE_EQ(is_ok, ok && inRange<short>(result));
if (is_ok)
- QCOMPARE(n, result);
+ QCOMPARE_EQ(n, result);
n = s.toUShort(&is_ok);
- QCOMPARE(is_ok, ok && inRange<ushort>(result));
+ QCOMPARE_EQ(is_ok, ok && inRange<ushort>(result));
if (is_ok)
- QCOMPARE(n, result);
+ QCOMPARE_EQ(n, result);
n = s.toInt(&is_ok);
- QCOMPARE(is_ok, ok && inRange<int>(result));
+ QCOMPARE_EQ(is_ok, ok && inRange<int>(result));
if (is_ok)
- QCOMPARE(n, result);
+ QCOMPARE_EQ(n, result);
n = s.toUInt(&is_ok);
- QCOMPARE(is_ok, ok && inRange<uint>(result));
+ QCOMPARE_EQ(is_ok, ok && inRange<uint>(result));
if (is_ok)
- QCOMPARE(n, result);
+ QCOMPARE_EQ(n, result);
n = s.toLong(&is_ok);
- QCOMPARE(is_ok, ok && inRange<long>(result));
+ QCOMPARE_EQ(is_ok, ok && inRange<long>(result));
if (is_ok)
- QCOMPARE(n, result);
+ QCOMPARE_EQ(n, result);
n = s.toULong(&is_ok);
- QCOMPARE(is_ok, ok && inRange<ulong>(result));
+ QCOMPARE_EQ(is_ok, ok && inRange<ulong>(result));
if (is_ok)
- QCOMPARE(n, result);
+ QCOMPARE_EQ(n, result);
n = s.toLongLong(&is_ok);
- QCOMPARE(is_ok, ok && inRange<qlonglong>(result));
+ QCOMPARE_EQ(is_ok, ok && inRange<qlonglong>(result));
if (is_ok)
- QCOMPARE(n, result);
+ QCOMPARE_EQ(n, result);
n = s.toULongLong(&is_ok);
- QCOMPARE(is_ok, ok && inRange<qulonglong>(result));
+ QCOMPARE_EQ(is_ok, ok && inRange<qulonglong>(result));
if (is_ok)
- QCOMPARE(n, result);
+ QCOMPARE_EQ(n, result);
if (qint64(float(n)) == n) {
float f = s.toFloat(&is_ok);
- QCOMPARE(is_ok, ok);
+ QCOMPARE_EQ(is_ok, ok);
if (is_ok)
- QCOMPARE(qint64(f), result);
+ QCOMPARE_EQ(qint64(f), result);
}
if (qint64(double(n)) == n) {
double d = s.toDouble(&is_ok);
- QCOMPARE(is_ok, ok);
+ QCOMPARE_EQ(is_ok, ok);
if (is_ok)
- QCOMPARE(qint64(d), result);
+ QCOMPARE_EQ(qint64(d), result);
}
}
+void tst_QStringApiSymmetry::toNumberWithBases_data()
+{
+ QTest::addColumn<QString>("data");
+ QTest::addColumn<int>("base");
+ QTest::addColumn<qint64>("result");
+ QTest::addColumn<bool>("ok");
+
+ constexpr struct {
+ const char prefix[3];
+ int base;
+ } bases[] = {
+ { "0b", 2 },
+ { "0", 8 },
+ { "", 10 },
+ { "0x", 16 },
+ };
+
+ const auto check = [&](const char *input, qint64 n2, qint64 n8, qint64 n10, qint64 n16, bool result) {
+ for (const auto &e : bases) {
+ const QString data = QLatin1StringView(e.prefix) + QString::fromUtf8(input);
+ const auto row = [&](int base) {
+ const auto select = [&](int base) {
+ switch (base) {
+ case 2: return n2;
+ case 8: return n8;
+ case 10: return n10;
+ case 16: return n16;
+ }
+ Q_UNREACHABLE();
+ };
+ QTest::addRow("base%2d: %s%s", base, e.prefix, input)
+ << data << base << select(e.base /* NOT base! */) << result;
+ };
+ row(e.base); // explicit base
+ row(0); // automatically detected base
+ }
+ };
+
+ check("0", 0, 0, 0, 0, true);
+ check("y0", 0, 0, 0, 0, false);
+ check("0y", 0, 0, 0, 0, false);
+ check("10", 2, 8, 10, 16, true);
+ check("11", 3, 9, 11, 17, true);
+ check("100", 4, 64, 100, 256, true);
+}
+
+template<typename String>
+void tst_QStringApiSymmetry::toNumberWithBases_impl()
+{
+ QFETCH(const QString, data);
+ QFETCH(const int, base);
+ QFETCH(const qint64, result);
+ QFETCH(const bool, ok);
+
+ const auto utf8 = data.toUtf8();
+ const auto l1s = data.toLatin1();
+ const auto l1 = l1s.isNull() ? QLatin1String() : QLatin1String(l1s);
+
+ const auto ref = data.isNull() ? QStringView() : QStringView(data);
+ const auto s = make<String>(ref, l1, utf8);
+
+ bool is_ok = false;
+ qint64 n = 0;
+
+ n = s.toShort(&is_ok, base);
+ QCOMPARE_EQ(is_ok, ok && inRange<short>(result));
+ if (is_ok)
+ QCOMPARE_EQ(n, result);
+
+ n = s.toUShort(&is_ok, base);
+ QCOMPARE_EQ(is_ok, ok && inRange<ushort>(result));
+ if (is_ok)
+ QCOMPARE_EQ(n, result);
+
+ n = s.toInt(&is_ok, base);
+ QCOMPARE_EQ(is_ok, ok && inRange<int>(result));
+ if (is_ok)
+ QCOMPARE_EQ(n, result);
+
+ n = s.toUInt(&is_ok, base);
+ QCOMPARE_EQ(is_ok, ok && inRange<uint>(result));
+ if (is_ok)
+ QCOMPARE_EQ(n, result);
+
+ n = s.toLong(&is_ok, base);
+ QCOMPARE_EQ(is_ok, ok && inRange<long>(result));
+ if (is_ok)
+ QCOMPARE_EQ(n, result);
+
+ n = s.toULong(&is_ok, base);
+ QCOMPARE_EQ(is_ok, ok && inRange<ulong>(result));
+ if (is_ok)
+ QCOMPARE_EQ(n, result);
+
+ n = s.toLongLong(&is_ok, base);
+ QCOMPARE_EQ(is_ok, ok && inRange<qlonglong>(result));
+ if (is_ok)
+ QCOMPARE_EQ(n, result);
+
+ n = s.toULongLong(&is_ok, base);
+ QCOMPARE_EQ(is_ok, ok && inRange<qulonglong>(result));
+ if (is_ok)
+ QCOMPARE_EQ(n, result);
+}
void tst_QStringApiSymmetry::count_data()
{
@@ -2157,7 +2880,7 @@ void tst_QStringApiSymmetry::count_data()
QTest::addRow("xyzaaaxyz") << QString::fromUtf8("xyzaaaxyz") << QString::fromUtf8("xyz") << qsizetype(2);
}
-template <typename String>
+template<typename Haystack, typename Needle>
void tst_QStringApiSymmetry::count_impl()
{
QFETCH(const QString, data);
@@ -2168,19 +2891,17 @@ void tst_QStringApiSymmetry::count_impl()
const auto l1s = data.toLatin1();
const auto l1 = l1s.isNull() ? QLatin1String() : QLatin1String(l1s);
- const auto ref = data.isNull() ? QStringRef() : QStringRef(&data);
- const auto s = make<String>(ref, l1, utf8);
+ const auto ref = data.isNull() ? QStringView() : QStringView(data);
+ const auto s = make<Haystack>(ref, l1, utf8);
const auto nutf8 = needle.toUtf8();
const auto nl1s = needle.toLatin1();
- const auto nl1 = nl1s.isNull() ? QLatin1String() : QLatin1String(l1s);
+ const auto nl1 = nl1s.isNull() ? QLatin1String() : QLatin1String(nl1s);
- const auto nref = needle.isNull() ? QStringRef() : QStringRef(&needle);
- const auto ns = make<String>(nref, nl1, nutf8);
+ const auto nref = needle.isNull() ? QStringView() : QStringView(needle);
+ const auto ns = make<Needle>(nref, nl1, nutf8);
- QCOMPARE(s.count(ns), result);
- if (ns.length() == 1)
- QCOMPARE(s.count(ns.data()[0]), result);
+ QCOMPARE_EQ(s.count(ns), result);
}
//
@@ -2189,11 +2910,6 @@ void tst_QStringApiSymmetry::count_impl()
//
//
-template <class Str> Str make(const QString &s);
-template <> QStringRef make(const QString &s) { return QStringRef(&s); }
-template <> QString make(const QString &s) { return s; }
-template <> QStringView make(const QString &s) { return s; }
-
#define REPEAT_16X(X) X X X X X X X X X X X X X X X X
#define LONG_STRING_256 REPEAT_16X("0123456789abcdef")
@@ -2227,9 +2943,9 @@ void tst_QStringApiSymmetry::toLocal8Bit_impl()
const auto result = str.toLocal8Bit();
- QCOMPARE(result, local);
- QCOMPARE(unicode.isEmpty(), result.isEmpty());
- QCOMPARE(unicode.isNull(), result.isNull());
+ QCOMPARE_EQ(result, local);
+ QCOMPARE_EQ(unicode.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(unicode.isNull(), result.isNull());
}
void tst_QStringApiSymmetry::toLatin1_data()
@@ -2262,9 +2978,9 @@ void tst_QStringApiSymmetry::toLatin1_impl()
const auto result = str.toLatin1();
- QCOMPARE(result, latin1);
- QCOMPARE(unicode.isEmpty(), result.isEmpty());
- QCOMPARE(unicode.isNull(), result.isNull());
+ QCOMPARE_EQ(result, latin1);
+ QCOMPARE_EQ(unicode.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(unicode.isNull(), result.isNull());
}
void tst_QStringApiSymmetry::toUtf8_data()
@@ -2295,9 +3011,9 @@ void tst_QStringApiSymmetry::toUtf8_impl()
const auto result = str.toUtf8();
- QCOMPARE(result, utf8);
- QCOMPARE(unicode.isEmpty(), result.isEmpty());
- QCOMPARE(unicode.isNull(), result.isNull());
+ QCOMPARE_EQ(result, utf8);
+ QCOMPARE_EQ(unicode.isEmpty(), result.isEmpty());
+ QCOMPARE_EQ(unicode.isNull(), result.isNull());
}
void tst_QStringApiSymmetry::toUcs4_data()
@@ -2333,8 +3049,8 @@ void tst_QStringApiSymmetry::toUcs4_impl()
const auto result = str.toUcs4();
- QCOMPARE(result, ucs4);
- QCOMPARE(unicode.isEmpty(), ucs4.isEmpty());
+ QCOMPARE_EQ(result, ucs4);
+ QCOMPARE_EQ(unicode.isEmpty(), ucs4.isEmpty());
}
void tst_QStringApiSymmetry::indexOf_data(bool rhsHasVariableLength)
@@ -2368,12 +3084,14 @@ void tst_QStringApiSymmetry::indexOf_data(bool rhsHasVariableLength)
<< a << QLatin1String("a") << zeroPos << minus1Pos << minus1Pos;
QTest::addRow("haystack: null, needle: a") << null << QLatin1String()
<< a << QLatin1String("a") << zeroPos << minus1Pos << minus1Pos;
-
+ QTest::addRow("haystack: anything, needle: a, large negative offset")
+ << "anything" << QLatin1String("anything") << a << QLatin1String("a") << qsizetype(-500)
+ << minus1Pos << minus1Pos;
#define ROW(h, n, st, cs, cis) \
- QTest::addRow("haystack: %s, needle: %s", #h, #n) << h << QLatin1String(#h) \
- << n << QLatin1String(#n) \
- << qsizetype(st) << qsizetype(cs) << qsizetype(cis)
+ QTest::addRow("haystack: %s, needle: %s, start: %d", #h, #n, st) \
+ << h << QLatin1String(#h) << n << QLatin1String(#n) \
+ << qsizetype(st) << qsizetype(cs) << qsizetype(cis)
ROW(abc, a, 0, 0, 0);
ROW(abc, A, 0, -1, 0);
@@ -2426,14 +3144,14 @@ void tst_QStringApiSymmetry::indexOf_impl() const
const auto haystackU8 = haystackU16.toUtf8();
const auto needleU8 = needleU16.toUtf8();
- const auto haystack = make<Haystack>(QStringRef(&haystackU16), haystackL1, haystackU8);
- const auto needle = make<Needle>(QStringRef(&needleU16), needleL1, needleU8);
+ const auto haystack = make<Haystack>(QStringView(haystackU16), haystackL1, haystackU8);
+ const auto needle = make<Needle>(QStringView(needleU16), needleL1, needleU8);
using size_type = typename Haystack::size_type;
- QCOMPARE(haystack.indexOf(needle, startpos), size_type(resultCS));
- QCOMPARE(haystack.indexOf(needle, startpos, Qt::CaseSensitive), size_type(resultCS));
- QCOMPARE(haystack.indexOf(needle, startpos, Qt::CaseInsensitive), size_type(resultCIS));
+ QCOMPARE_EQ(haystack.indexOf(needle, startpos), size_type(resultCS));
+ QCOMPARE_EQ(haystack.indexOf(needle, startpos, Qt::CaseSensitive), size_type(resultCS));
+ QCOMPARE_EQ(haystack.indexOf(needle, startpos, Qt::CaseInsensitive), size_type(resultCIS));
}
static QString ABCDEFGHIEfGEFG = QStringLiteral("ABCDEFGHIEfGEFG");
@@ -2462,7 +3180,7 @@ void tst_QStringApiSymmetry::contains_data(bool rhsHasVariableLength)
QTest::addRow("haystack: null, needle: empty") << null << QLatin1String()
<< empty << QLatin1String("") << true << true;
QTest::addRow("haystack: a, needle: empty") << a << QLatin1String("a")
- << empty << QLatin1String("") << true << true;;
+ << empty << QLatin1String("") << true << true;
QTest::addRow("haystack: empty, needle: empty") << empty << QLatin1String("")
<< empty << QLatin1String("") << true << true;
}
@@ -2501,12 +3219,12 @@ void tst_QStringApiSymmetry::contains_impl() const
const auto haystackU8 = haystackU16.toUtf8();
const auto needleU8 = needleU16.toUtf8();
- const auto haystack = make<Haystack>(QStringRef(&haystackU16), haystackL1, haystackU8);
- const auto needle = make<Needle>(QStringRef(&needleU16), needleL1, needleU8);
+ const auto haystack = make<Haystack>(QStringView(haystackU16), haystackL1, haystackU8);
+ const auto needle = make<Needle>(QStringView(needleU16), needleL1, needleU8);
- QCOMPARE(haystack.contains(needle), resultCS);
- QCOMPARE(haystack.contains(needle, Qt::CaseSensitive), resultCS);
- QCOMPARE(haystack.contains(needle, Qt::CaseInsensitive), resultCIS);
+ QCOMPARE_EQ(haystack.contains(needle), resultCS);
+ QCOMPARE_EQ(haystack.contains(needle, Qt::CaseSensitive), resultCS);
+ QCOMPARE_EQ(haystack.contains(needle, Qt::CaseInsensitive), resultCIS);
}
void tst_QStringApiSymmetry::lastIndexOf_data(bool rhsHasVariableLength)
@@ -2542,18 +3260,22 @@ void tst_QStringApiSymmetry::lastIndexOf_data(bool rhsHasVariableLength)
<< a << QLatin1String("a") << minus1Pos << minus1Pos << minus1Pos;
if (rhsHasVariableLength) {
- QTest::addRow("haystack: a, needle: null") << a << QLatin1String("a")
- << null << QLatin1String() << qsizetype(1) << qsizetype(1) << qsizetype(1);
- QTest::addRow("haystack: a, needle: empty") << a << QLatin1String("a")
- << empty << QLatin1String("") << qsizetype(1) << qsizetype(1) << qsizetype(1);
- QTest::addRow("haystack: a, needle: null") << a << QLatin1String("a")
- << null << QLatin1String() << qsizetype(2) << minus1Pos << minus1Pos;
- QTest::addRow("haystack: a, needle: empty") << a << QLatin1String("a")
- << empty << QLatin1String("") << qsizetype(2) << minus1Pos << minus1Pos;
+ QTest::addRow("haystack: a, needle: null, start 1")
+ << a << QLatin1String("a")
+ << null << QLatin1String() << qsizetype(1) << qsizetype(1) << qsizetype(1);
+ QTest::addRow("haystack: a, needle: empty, start 1")
+ << a << QLatin1String("a")
+ << empty << QLatin1String("") << qsizetype(1) << qsizetype(1) << qsizetype(1);
+ QTest::addRow("haystack: a, needle: null, start 2")
+ << a << QLatin1String("a")
+ << null << QLatin1String() << qsizetype(2) << minus1Pos << minus1Pos;
+ QTest::addRow("haystack: a, needle: empty, start 2")
+ << a << QLatin1String("a")
+ << empty << QLatin1String("") << qsizetype(2) << minus1Pos << minus1Pos;
}
#define ROW(h, n, st, cs, cis) \
- QTest::addRow("haystack: %s, needle: %s", #h, #n) << h << QLatin1String(#h) \
+ QTest::addRow("haystack: %s, needle: %s, start %d", #h, #n, st) << h << QLatin1String(#h) \
<< n << QLatin1String(#n) \
<< qsizetype(st) << qsizetype(cs) << qsizetype(cis)
@@ -2570,8 +3292,8 @@ void tst_QStringApiSymmetry::lastIndexOf_data(bool rhsHasVariableLength)
ROW(ABCDEFGHIEfGEFG, g, 14, -1, 14);
ROW(ABCDEFGHIEfGEFG, G, 13, 11, 11);
ROW(ABCDEFGHIEfGEFG, g, 13, -1, 11);
- ROW(ABCDEFGHIEfGEFG, G, 15, -1, -1);
- ROW(ABCDEFGHIEfGEFG, g, 15, -1, -1);
+ ROW(ABCDEFGHIEfGEFG, G, 15, 14, 14);
+ ROW(ABCDEFGHIEfGEFG, g, 15, -1, 14);
ROW(ABCDEFGHIEfGEFG, B, 14, 1, 1);
ROW(ABCDEFGHIEfGEFG, b, 14, -1, 1);
ROW(ABCDEFGHIEfGEFG, B, -1, 1, 1);
@@ -2587,7 +3309,7 @@ void tst_QStringApiSymmetry::lastIndexOf_data(bool rhsHasVariableLength)
if (rhsHasVariableLength) {
ROW(ABCDEFGHIEfGEFG, efg, 0, -1, -1);
- ROW(ABCDEFGHIEfGEFG, efg, 15, -1, -1);
+ ROW(ABCDEFGHIEfGEFG, efg, 15, -1, 12);
ROW(ABCDEFGHIEfGEFG, efg, -15, -1, -1);
ROW(ABCDEFGHIEfGEFG, efg, 14, -1, 12);
ROW(ABCDEFGHIEfGEFG, efg, 12, -1, 12);
@@ -2611,15 +3333,321 @@ void tst_QStringApiSymmetry::lastIndexOf_impl() const
const auto haystackU8 = haystackU16.toUtf8();
const auto needleU8 = needleU16.toUtf8();
- const auto haystack = make<Haystack>(QStringRef(&haystackU16), haystackL1, haystackU8);
- const auto needle = make<Needle>(QStringRef(&needleU16), needleL1, needleU8);
+ const auto haystack = make<Haystack>(QStringView(haystackU16), haystackL1, haystackU8);
+ const auto needle = make<Needle>(QStringView(needleU16), needleL1, needleU8);
using size_type = typename Haystack::size_type;
- QCOMPARE(haystack.lastIndexOf(needle, startpos), size_type(resultCS));
- QCOMPARE(haystack.lastIndexOf(needle, startpos, Qt::CaseSensitive), size_type(resultCS));
- QCOMPARE(haystack.lastIndexOf(needle, startpos, Qt::CaseInsensitive), size_type(resultCIS));
+ QCOMPARE_EQ(haystack.lastIndexOf(needle, startpos), size_type(resultCS));
+ QCOMPARE_EQ(haystack.lastIndexOf(needle, startpos, Qt::CaseSensitive), size_type(resultCS));
+ QCOMPARE_EQ(haystack.lastIndexOf(needle, startpos, Qt::CaseInsensitive), size_type(resultCIS));
+ if (startpos == haystack.size() ||
+ (startpos == -1 && help::size(needle) > 0)) { // -1 skips past-the-end-match w/empty needle
+ // check that calls without an explicit 'from' argument work, too:
+ QCOMPARE_EQ(haystack.lastIndexOf(needle), size_type(resultCS));
+ QCOMPARE_EQ(haystack.lastIndexOf(needle, Qt::CaseSensitive), size_type(resultCS));
+ QCOMPARE_EQ(haystack.lastIndexOf(needle, Qt::CaseInsensitive), size_type(resultCIS));
+ }
+}
+
+void tst_QStringApiSymmetry::indexOf_contains_lastIndexOf_count_regexp_data()
+{
+ QTest::addColumn<QString>("subject");
+ QTest::addColumn<QRegularExpression>("regexp");
+ QTest::addColumn<qsizetype>("leftFrom");
+ QTest::addColumn<qsizetype>("indexOf");
+ QTest::addColumn<qsizetype>("count");
+ QTest::addColumn<qsizetype>("rightFrom");
+ QTest::addColumn<qsizetype>("lastIndexOf");
+
+ const auto ROW = [](const char *subject,
+ const char *pattern,
+ QRegularExpression::PatternOptions options,
+ qsizetype leftFrom, qsizetype indexOf, qsizetype count,
+ qsizetype rightFrom, qsizetype lastIndexOf)
+ {
+ QTest::addRow("subject \"%s\" pattern \"%s\" options %d leftFrom %d rightFrom %d",
+ subject, pattern, (int)options, (int)leftFrom, (int)rightFrom)
+ << subject
+ << QRegularExpression(pattern, options)
+ << leftFrom
+ << indexOf
+ << count
+ << rightFrom
+ << lastIndexOf;
+ };
+
+ ROW("", "", QRegularExpression::NoPatternOption, 0, 0, 1, -1, -1);
+ ROW("", "", QRegularExpression::NoPatternOption, 0, 0, 1, 0, 0);
+ ROW("test", "", QRegularExpression::NoPatternOption, 0, 0, 5, -1, 3);
+ ROW("test", "", QRegularExpression::NoPatternOption, 0, 0, 5, -2, 2);
+ ROW("test", "", QRegularExpression::NoPatternOption, 0, 0, 5, -3, 1);
+ ROW("test", "", QRegularExpression::NoPatternOption, 0, 0, 5, -4, 0);
+ ROW("test", "", QRegularExpression::NoPatternOption, 0, 0, 5, -5, -1);
+ ROW("test", "", QRegularExpression::NoPatternOption, 0, 0, 5, 0, 0);
+ ROW("test", "", QRegularExpression::NoPatternOption, 0, 0, 5, 1, 1);
+ ROW("test", "", QRegularExpression::NoPatternOption, 0, 0, 5, 2, 2);
+ ROW("test", "", QRegularExpression::NoPatternOption, 0, 0, 5, 3, 3);
+ ROW("test", "", QRegularExpression::NoPatternOption, 0, 0, 5, 4, 4);
+ ROW("", "^", QRegularExpression::NoPatternOption, 0, 0, 1, -1, -1);
+ ROW("", "^", QRegularExpression::NoPatternOption, 0, 0, 1, 0, 0);
+ ROW("", "$", QRegularExpression::NoPatternOption, 0, 0, 1, -1, -1);
+ ROW("", "$", QRegularExpression::NoPatternOption, 0, 0, 1, 0, 0);
+ ROW("", "^$", QRegularExpression::NoPatternOption, 0, 0, 1, -1, -1);
+ ROW("", "^$", QRegularExpression::NoPatternOption, 0, 0, 1, 0, 0);
+ ROW("", "x", QRegularExpression::NoPatternOption, 0, -1, 0, -1, -1);
+ ROW("", "x", QRegularExpression::NoPatternOption, 0, -1, 0, 0, -1);
+ ROW("", "^x", QRegularExpression::NoPatternOption, 0, -1, 0, -1, -1);
+ ROW("", "^x", QRegularExpression::NoPatternOption, 0, -1, 0, 0, -1);
+ ROW("", "x$", QRegularExpression::NoPatternOption, 0, -1, 0, -1, -1);
+ ROW("", "x$", QRegularExpression::NoPatternOption, 0, -1, 0, 0, -1);
+ ROW("", "^x$", QRegularExpression::NoPatternOption, 0, -1, 0, -1, -1);
+ ROW("", "^x$", QRegularExpression::NoPatternOption, 0, -1, 0, 0, -1);
+
+ ROW("test", "e", QRegularExpression::NoPatternOption, 0, 1, 1, -1, 1);
+ ROW("test", "e", QRegularExpression::NoPatternOption, 0, 1, 1, -2, 1);
+ ROW("test", "es", QRegularExpression::NoPatternOption, 0, 1, 1, -1, 1);
+ ROW("test", "es", QRegularExpression::NoPatternOption, 0, 1, 1, -2, 1);
+ ROW("test", "es?", QRegularExpression::NoPatternOption, 0, 1, 1, -1, 1);
+ ROW("test", "es?", QRegularExpression::NoPatternOption, 0, 1, 1, -2, 1);
+ ROW("test", "es+", QRegularExpression::NoPatternOption, 0, 1, 1, -1, 1);
+ ROW("test", "es+", QRegularExpression::NoPatternOption, 0, 1, 1, -2, 1);
+ ROW("test", "e.", QRegularExpression::NoPatternOption, 0, 1, 1, -1, 1);
+ ROW("test", "e.", QRegularExpression::NoPatternOption, 0, 1, 1, -2, 1);
+ ROW("test", "e.*", QRegularExpression::NoPatternOption, 0, 1, 1, -1, 1);
+ ROW("test", "e.*", QRegularExpression::NoPatternOption, 0, 1, 1, -2, 1);
+ ROW("test", "e(?=s)", QRegularExpression::NoPatternOption, 0, 1, 1, -1, 1);
+ ROW("test", "e(?!x)", QRegularExpression::NoPatternOption, 0, 1, 1, -1, 1);
+ ROW("test", "ex?s", QRegularExpression::NoPatternOption, 0, 1, 1, -1, 1);
+ ROW("test", "(?<=t)e", QRegularExpression::NoPatternOption, 0, 1, 1, -1, 1);
+ ROW("test", "(?<!x)e", QRegularExpression::NoPatternOption, 0, 1, 1, -1, 1);
+ ROW("test", "t", QRegularExpression::NoPatternOption, 0, 0, 2, 0, 0);
+ ROW("test", "t", QRegularExpression::NoPatternOption, 0, 0, 2, 1, 0);
+ ROW("test", "t", QRegularExpression::NoPatternOption, 0, 0, 2, 2, 0);
+ ROW("test", "t", QRegularExpression::NoPatternOption, 0, 0, 2, 3, 3);
+ ROW("test", "t", QRegularExpression::NoPatternOption, 0, 0, 2, 4, 3);
+ ROW("test", "t", QRegularExpression::NoPatternOption, 0, 0, 2, -1, 3);
+ ROW("test", "t", QRegularExpression::NoPatternOption, 0, 0, 2, -2, 0);
+ ROW("test", "t", QRegularExpression::NoPatternOption, 0, 0, 2, -3, 0);
+
+ ROW("test", "^es", QRegularExpression::NoPatternOption, 0, -1, 0, -1, -1);
+ ROW("test", "^es", QRegularExpression::NoPatternOption, 0, -1, 0, -2, -1);
+ ROW("test", "es$", QRegularExpression::NoPatternOption, 0, -1, 0, -1, -1);
+ ROW("test", "ex", QRegularExpression::NoPatternOption, 0, -1, 0, -1, -1);
+ ROW("test", "ex?", QRegularExpression::NoPatternOption, 0, 1, 1, -1, 1);
+ ROW("test", "ex+", QRegularExpression::NoPatternOption, 0, -1, 0, -1, -1);
+ ROW("test", "e(?=x)", QRegularExpression::NoPatternOption, 0, -1, 0, -1, -1);
+ ROW("test", "e(?!s)", QRegularExpression::NoPatternOption, 0, -1, 0, -1, -1);
+
+
+ ROW("test", "e.*t", QRegularExpression::NoPatternOption, 0, 1, 1, -1, 1);
+ ROW("test", "e.*t", QRegularExpression::NoPatternOption, 0, 1, 1, -2, 1);
+ ROW("test", "e.*t", QRegularExpression::NoPatternOption, 0, 1, 1, -3, 1);
+ ROW("test", "e.*t", QRegularExpression::NoPatternOption, 0, 1, 1, -4, -1);
+ ROW("test", "e.*t", QRegularExpression::NoPatternOption, 0, 1, 1, -5, -1);
+ ROW("test", "e.*t$", QRegularExpression::NoPatternOption, 0, 1, 1, -1, 1);
+ ROW("test", "e.*t$", QRegularExpression::NoPatternOption, 0, 1, 1, -2, 1);
+ ROW("test", "e.*st", QRegularExpression::NoPatternOption, 0, 1, 1, -1, 1);
+ ROW("test", "e.*st$", QRegularExpression::NoPatternOption, 0, 1, 1, -1, 1);
+ ROW("test", "t.*t", QRegularExpression::NoPatternOption, 0, 0, 1, -1, 0);
+ ROW("test", "t.*t", QRegularExpression::NoPatternOption, 0, 0, 1, -2, 0);
+ ROW("test", "st", QRegularExpression::NoPatternOption, 0, 2, 1, -1, 2);
+ ROW("test", "st", QRegularExpression::NoPatternOption, 0, 2, 1, -2, 2);
+ ROW("test", "st", QRegularExpression::NoPatternOption, 0, 2, 1, -3, -1);
+ ROW("test", "st", QRegularExpression::NoPatternOption, 0, 2, 1, -4, -1);
+
+ ROW("", "", QRegularExpression::CaseInsensitiveOption, 0, 0, 1, -1, -1);
+ ROW("", "", QRegularExpression::CaseInsensitiveOption, 0, 0, 1, 0, 0);
+ ROW("test", "", QRegularExpression::CaseInsensitiveOption, 0, 0, 5, -1, 3);
+ ROW("test", "", QRegularExpression::CaseInsensitiveOption, 0, 0, 5, 4, 4);
+ ROW("test", "^", QRegularExpression::CaseInsensitiveOption, 0, 0, 1, -1, 0);
+ ROW("test", "^", QRegularExpression::CaseInsensitiveOption, 0, 0, 1, 4, 0);
+ ROW("test", "^t", QRegularExpression::CaseInsensitiveOption, 0, 0, 1, -1, 0);
+ ROW("test", "^t", QRegularExpression::CaseInsensitiveOption, 0, 0, 1, 4, 0);
+ ROW("TEST", "^t", QRegularExpression::CaseInsensitiveOption, 0, 0, 1, -1, 0);
+ ROW("TEST", "^t", QRegularExpression::CaseInsensitiveOption, 0, 0, 1, 4, 0);
+ ROW("test", "e", QRegularExpression::CaseInsensitiveOption, 0, 1, 1, -1, 1);
+ ROW("TEST", "e", QRegularExpression::CaseInsensitiveOption, 0, 1, 1, -1, 1);
+ ROW("TEST", "es", QRegularExpression::CaseInsensitiveOption, 0, 1, 1, -1, 1);
+ ROW("test", "ES", QRegularExpression::CaseInsensitiveOption, 0, 1, 1, -1, 1);
+ ROW("TEST", "ex?s", QRegularExpression::CaseInsensitiveOption, 0, 1, 1, -1, 1);
+
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, 0, 1, 2, -1, 5);
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, 0, 1, 2, -2, 5);
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, 0, 1, 2, -3, 5);
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, 0, 1, 2, -4, 1);
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, 0, 1, 2, -5, 1);
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, 0, 1, 2, -6, 1);
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, 0, 1, 2, -7, 1);
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, 0, 1, 2, -8, -1);
+ ROW("testtest", "es", QRegularExpression::NoPatternOption, 0, 1, 2, -1, 5);
+ ROW("testtest", "e.*s", QRegularExpression::NoPatternOption, 0, 1, 2, -1, 1);
+
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, 1, 1, 2, -1, 5);
+ ROW("testtest", "es", QRegularExpression::NoPatternOption, 1, 1, 2, -1, 5);
+ ROW("testtest", "e.*s", QRegularExpression::NoPatternOption, 1, 1, 2, -1, 1);
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, 2, 5, 1, -1, 5);
+ ROW("testtest", "es", QRegularExpression::NoPatternOption, 2, 5, 1, -1, 5);
+ ROW("testtest", "es", QRegularExpression::NoPatternOption, 2, 5, 1, -2, 5);
+ ROW("testtest", "es", QRegularExpression::NoPatternOption, 2, 5, 1, -3, 5);
+ ROW("testtest", "es", QRegularExpression::NoPatternOption, 2, 5, 1, -4, 1);
+ ROW("testtest", "es", QRegularExpression::NoPatternOption, 2, 5, 1, -5, 1);
+ ROW("testtest", "e.*s", QRegularExpression::NoPatternOption, 2, 5, 1, -1, 1);
+
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, -1, -1, 0, 0, -1);
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, -1, -1, 0, 1, 1);
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, -1, -1, 0, 2, 1);
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, -1, -1, 0, 3, 1);
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, -1, -1, 0, 4, 1);
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, -1, -1, 0, 5, 5);
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, -1, -1, 0, 6, 5);
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, -1, -1, 0, 7, 5);
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, -2, -1, 0, -1, 5);
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, -3, 5, 1, -1, 5);
+ ROW("testtest", "e", QRegularExpression::NoPatternOption, -4, 5, 1, -1, 5);
+ ROW("testtest", "t", QRegularExpression::NoPatternOption, 0, 0, 4, 0, 0);
+ ROW("testtest", "t", QRegularExpression::NoPatternOption, 0, 0, 4, 1, 0);
+ ROW("testtest", "t", QRegularExpression::NoPatternOption, 0, 0, 4, 2, 0);
+ ROW("testtest", "t", QRegularExpression::NoPatternOption, 0, 0, 4, 3, 3);
+ ROW("testtest", "t", QRegularExpression::NoPatternOption, 0, 0, 4, 4, 4);
+ ROW("testtest", "t", QRegularExpression::NoPatternOption, 0, 0, 4, 5, 4);
+ ROW("testtest", "t", QRegularExpression::NoPatternOption, 0, 0, 4, 6, 4);
+ ROW("testtest", "t", QRegularExpression::NoPatternOption, 0, 0, 4, 7, 7);
+ ROW("testtest", "t(?!e)", QRegularExpression::NoPatternOption, 0, 3, 2, 0, -1);
+ ROW("testtest", "t(?!e)", QRegularExpression::NoPatternOption, 0, 3, 2, 1, -1);
+ ROW("testtest", "t(?!e)", QRegularExpression::NoPatternOption, 0, 3, 2, 2, -1);
+ ROW("testtest", "t(?!e)", QRegularExpression::NoPatternOption, 0, 3, 2, 3, 3);
+ ROW("testtest", "t(?!e)", QRegularExpression::NoPatternOption, 0, 3, 2, 4, 3);
+ ROW("testtest", "t(?!e)", QRegularExpression::NoPatternOption, 0, 3, 2, -1, 7);
+ ROW("testtest", "tt", QRegularExpression::NoPatternOption, -1, -1, 0, 0, -1);
+ ROW("testtest", "tt", QRegularExpression::NoPatternOption, -1, -1, 0, 1, -1);
+ ROW("testtest", "tt", QRegularExpression::NoPatternOption, -1, -1, 0, 2, -1);
+ ROW("testtest", "tt", QRegularExpression::NoPatternOption, -1, -1, 0, 3, 3);
+ ROW("testtest", "tt", QRegularExpression::NoPatternOption, -1, -1, 0, 4, 3);
+ ROW("testtest", "tt", QRegularExpression::NoPatternOption, -2, -1, 0, 0, -1);
+ ROW("testtest", "tt", QRegularExpression::NoPatternOption, -3, -1, 0, 0, -1);
+ ROW("testtest", "tt", QRegularExpression::NoPatternOption, -4, -1, 0, 0, -1);
+ ROW("testtest", "tt", QRegularExpression::NoPatternOption, -5, 3, 1, -1, 3);
+
+ ROW("testtest", "(?<=t)e", QRegularExpression::NoPatternOption, 1, 1, 1, -1, 5); // the count is 1 because in the test we _cut_ the string before the lookbehind
+ ROW("testtest", "(?<=t)e", QRegularExpression::NoPatternOption, 2, 5, 1, -1, 5);
+ ROW("testtest", "(?<=t)e", QRegularExpression::NoPatternOption, 3, 5, 1, -1, 5);
+ ROW("testtest", "(?<=t)e", QRegularExpression::NoPatternOption, 4, 5, 1, -1, 5);
+ ROW("testtest", "(?<=t)e", QRegularExpression::NoPatternOption, 5, 5, 0, -1, 5); // the count is 0 because in the test we _cut_ the string before the lookbehind
+ ROW("testtest", "(?<=t)e", QRegularExpression::NoPatternOption, 6, -1, 0, -1, 5);
+
+ ROW("foo bar blubb", "\\s+", QRegularExpression::NoPatternOption, 0, 3, 2, -1, 7);
+ ROW("foo bar blubb", "\\s+", QRegularExpression::NoPatternOption, 0, 3, 2, -7, 3);
+}
+
+template <typename String>
+void tst_QStringApiSymmetry::indexOf_contains_lastIndexOf_count_regexp_impl() const
+{
+ QFETCH(QString, subject);
+ QFETCH(QRegularExpression, regexp);
+ QFETCH(qsizetype, leftFrom);
+ QFETCH(qsizetype, indexOf);
+ QFETCH(qsizetype, count);
+ QFETCH(qsizetype, rightFrom);
+ QFETCH(qsizetype, lastIndexOf);
+
+ // indexOf
+ String s = subject;
+ qsizetype result = s.indexOf(regexp, leftFrom);
+ QCOMPARE_EQ(result, indexOf);
+
+ // contains
+ if (result >= 0)
+ QVERIFY(s.contains(regexp));
+ else if (leftFrom == 0)
+ QVERIFY(!s.contains(regexp));
+
+ // count
+ if (leftFrom >= 0)
+ QCOMPARE_EQ(s.mid(leftFrom).count(regexp), count);
+ else
+ QCOMPARE_EQ(s.mid(leftFrom + s.size()).count(regexp), count);
+
+ // lastIndexOf
+ result = s.lastIndexOf(regexp, rightFrom);
+ QCOMPARE_EQ(result, lastIndexOf);
+ if (rightFrom == s.size()) {
+ result = s.lastIndexOf(regexp);
+ QCOMPARE_EQ(result, lastIndexOf);
+ }
+}
+
+void tst_QStringApiSymmetry::isValidUtf8_data()
+{
+ QTest::addColumn<QByteArray>("ba");
+ QTest::addColumn<bool>("valid");
+
+ int row = 0;
+ QTest::addRow("valid-%02d", row++) << QByteArray() << true;
+ QTest::addRow("valid-%02d", row++) << QByteArray("ascii") << true;
+ QTest::addRow("valid-%02d", row++)
+ << QByteArray("\xc2\xa2\xe0\xa4\xb9\xf0\x90\x8d\x88") << true; // U+00A2 U+0939 U+10348
+ QTest::addRow("valid-%02d", row++) << QByteArray("\xf4\x8f\xbf\xbf") << true; // U+10FFFF
+
+ row = 0;
+ QTest::addRow("overlong-%02d", row++) << QByteArray("\xc0\x00") << false;
+ QTest::addRow("overlong-%02d", row++) << QByteArray("\xc1\xff") << false;
+ QTest::addRow("overlong-%02d", row++) << QByteArray("\xc1\xbf") << false;
+ QTest::addRow("overlong-%02d", row++) << QByteArray("\xc1\x01") << false;
+ QTest::addRow("overlong-%02d", row++) << QByteArray("\xe0\x00\x00") << false;
+ QTest::addRow("overlong-%02d", row++) << QByteArray("\xe0\xa0\x7f") << false;
+ QTest::addRow("overlong-%02d", row++) << QByteArray("\xf0\x00\x00\x00") << false;
+ QTest::addRow("overlong-%02d", row++) << QByteArray("\xf0\x90\x80\x7f") << false;
+
+ row = 0;
+ QTest::addRow("short-%02d", row++) << QByteArray("\xc2") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("x\xc2") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("x\xc2y") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("\xc2y") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("\xe0\xa4") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("x\xe0\xa4") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("x\xe0\xa4y") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("\xe0\xa4y") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("\xe0") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("x\xe0") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("x\xe0y") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("\xe0y") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("\xf4\x8f\xbf") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("x\xf4\x8f\xbf") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("x\xf4\x8f\xbfy") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("\xf4\x8f\xbfy") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("\xf4\x8f") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("x\xf4\x8f") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("x\xf4\x8fy") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("\xf4\x8fy") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("\xf4") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("x\xf4") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("x\xf4y") << false;
+ QTest::addRow("short-%02d", row++) << QByteArray("\xf4y") << false;
+
+ row = 0;
+ QTest::addRow("surrogates-%02d", row++) << QByteArray("\xed\x9f\xc0\xee\x80\x7f") << false;
+ QTest::addRow("surrogates-%02d", row++) << QByteArray("\xed\x9f\xc0") << false;
+ QTest::addRow("surrogates-%02d", row++) << QByteArray("\xee\x80\x7f") << false;
+ QTest::addRow("surrogates-%02d", row++) << QByteArray("\xee\x80\x7f\xed\x9f\xc0") << false;
+
+ row = 0;
+ QTest::addRow("other-%02d", row++) << QByteArray("\xf4\x8f\xbf\xc0") << false;
+ QTest::addRow("other-%02d", row++) << QByteArray("\xf7\x80\x80\x80") << false;
+ QTest::addRow("other-%02d", row++) << QByteArray("\xfd\xbf\xbf\xbf\xbf") << false;
+ QTest::addRow("other-%02d", row++) << QByteArray("\xfe\xbf\xbf\xbf\xbf\xbf") << false;
+ QTest::addRow("other-%02d", row++) << QByteArray("\xff\xbf\xbf\xbf\xbf\xbf\xbf") << false;
+ QTest::addRow("other-%02d", row++) << QByteArray("\x80") << false;
+ QTest::addRow("other-%02d", row++) << QByteArray("\xbf") << false;
+}
+
+template<typename String>
+void tst_QStringApiSymmetry::isValidUtf8_impl() const
+{
+ QFETCH(QByteArray, ba);
+ const String string(ba);
+ QTEST(string.isValidUtf8(), "valid");
}
QTEST_APPLESS_MAIN(tst_QStringApiSymmetry)