blob: 2d53dd5707c3de5d4ea7e870b01af0cfc7fe1968 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include <QtTest/qtestcase.h>
#include <QTest>
#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 Result<QByteArray>{}; })
.or_else([](auto error) {
return Result<QByteArray>(
make_unexpected(QString("Error: " + error)));
})
.transform_error([](auto error) -> QString {
return QString(QString("More Info: ") + error);
});
QVERIFY(!result);
}
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));
}
void defaultConstructorHasValue()
{
Result<QString> e1;
QVERIFY(e1.has_value());
QVERIFY(e1->isEmpty());
Result<QString> e2{};
QVERIFY(e2.has_value());
QVERIFY(e2->isEmpty());
}
};
QTEST_GUILESS_MAIN(tst_expected)
#include "tst_expected.moc"
|