2022-11-24 08:52:47 +01:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2022-11-24 08:52:47 +01:00
|
|
|
|
|
|
|
|
#include <QtTest/qtestcase.h>
|
|
|
|
|
#include <QtTest>
|
|
|
|
|
|
|
|
|
|
#include <utils/expected.h>
|
|
|
|
|
#include <utils/filepath.h>
|
|
|
|
|
|
|
|
|
|
using namespace Utils;
|
|
|
|
|
|
|
|
|
|
class tst_expected : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void initTestCase() {}
|
|
|
|
|
|
|
|
|
|
void tryMonads()
|
|
|
|
|
{
|
|
|
|
|
FilePath p = "idontexists.ne";
|
|
|
|
|
|
|
|
|
|
auto result = p.fileContents()
|
|
|
|
|
.and_then([](auto) { return expected_str<QByteArray>{}; })
|
|
|
|
|
.or_else([](auto error) {
|
|
|
|
|
return expected_str<QByteArray>(
|
|
|
|
|
make_unexpected(QString("Error: " + error)));
|
|
|
|
|
})
|
2023-09-19 11:29:40 +02:00
|
|
|
.transform_error([](auto error) -> QString {
|
2022-11-24 08:52:47 +01:00
|
|
|
return QString(QString("More Info: ") + error);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
QVERIFY(!result);
|
|
|
|
|
}
|
2023-09-19 08:17:31 +02:00
|
|
|
|
|
|
|
|
void tryCompareVoid()
|
|
|
|
|
{
|
|
|
|
|
tl::expected<void, QString> e1;
|
|
|
|
|
QVERIFY(e1 == e1);
|
|
|
|
|
|
|
|
|
|
tl::expected<void, QString> e2 = make_unexpected("error");
|
|
|
|
|
QVERIFY(e1 != e2);
|
|
|
|
|
|
|
|
|
|
e1 = make_unexpected(QString("error"));
|
|
|
|
|
QVERIFY(e1 == e2);
|
|
|
|
|
|
|
|
|
|
e2 = {};
|
|
|
|
|
QVERIFY(e1 != e2);
|
|
|
|
|
|
|
|
|
|
e1 = {};
|
|
|
|
|
QVERIFY(e1 == e2);
|
|
|
|
|
QVERIFY(!(e1 != e2));
|
|
|
|
|
}
|
2022-11-24 08:52:47 +01:00
|
|
|
};
|
|
|
|
|
QTEST_GUILESS_MAIN(tst_expected)
|
|
|
|
|
|
|
|
|
|
#include "tst_expected.moc"
|