summaryrefslogtreecommitdiff
path: root/lib/utils/mu-option.cc
blob: e096117fb6ff21b731bb4a7c6b5288a916d6d2c6 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
** Copyright (C) 2022 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl>
**
** This program is free software; you can redistribute it and/or modify it
** under the terms of the GNU General Public License as published by the
** Free Software Foundation; either version 3, or (at your option) any
** later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software Foundation,
** Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**
*/

#include "mu-option.hh"
#include <glib.h>

using namespace Mu;

Mu::Option<std::string>
Mu::to_string_opt_gchar(gchar*&& str)
{
	auto res = to_string_opt(str);
	g_free(str);

	return res;
}

#if BUILD_TESTS
#include "mu-test-utils.hh"

static Option<int>
get_opt_int(bool b)
{
	if (b)
		return Some(123);
	else
		return Nothing;
}

static void
test_option()
{
	{
		const auto oi{get_opt_int(true)};
		g_assert_true(!!oi);
		g_assert_cmpint(oi.value(), ==, 123);
	}

	{
		const auto oi{get_opt_int(false)};
		g_assert_false(!!oi);
		g_assert_false(oi.has_value());
		g_assert_cmpint(oi.value_or(456), ==, 456);
	}
}

static void
test_unwrap()
{
	{
		auto&& oi{get_opt_int(true)};
		g_assert_cmpint(unwrap(std::move(oi)), ==, 123);
	}

	auto ex{0};
	try {
		auto&& oi{get_opt_int(false)};
		unwrap(std::move(oi));
	} catch(...) {
		ex = 1;
	}

	g_assert_cmpuint(ex, ==, 1);
}

static void
test_opt_gchar()
{
	auto o1{to_string_opt_gchar(g_strdup("boo!"))};
	auto o2{to_string_opt_gchar(nullptr)};

	g_assert_false(!!o2);
	g_assert_true(o1.value() == "boo!");
}



int
main(int argc, char* argv[])
{
	g_test_init(&argc, &argv, NULL);

	g_test_add_func("/option/option", test_option);
	g_test_add_func("/option/unwrap", test_unwrap);
	g_test_add_func("/option/opt-gchar", test_opt_gchar);

	return g_test_run();
}

#endif /*BUILD_TESTS*/