#include <cassert>
#include <concepts>
#include <expected>
#include <type_traits>
#include <utility>
#include "../../types.h"
#include "test_macros.h"
struct NotCopyConstructible {
NotCopyConstructible(const NotCopyConstructible&) = delete;
NotCopyConstructible& operator=(const NotCopyConstructible&) = default;
};
struct NotCopyAssignable {
NotCopyAssignable(const NotCopyAssignable&) = default;
NotCopyAssignable& operator=(const NotCopyAssignable&) = delete;
};
static_assert(std::is_copy_assignable_v<std::expected<void, int>>);
static_assert(!std::is_copy_assignable_v<std::expected<void, NotCopyAssignable>>);
static_assert(!std::is_copy_assignable_v<std::expected<void, NotCopyConstructible>>);
constexpr bool test() {
{
std::expected<void, int> e1;
std::expected<void, int> e2;
decltype(auto) x = (e1 = e2);
static_assert(std::same_as<decltype(x), std::expected<void, int>&>);
assert(&x == &e1);
assert(e1.has_value());
}
{
Traced::state state{};
std::expected<void, Traced> e1;
std::expected<void, Traced> e2(std::unexpect, state, 5);
decltype(auto) x = (e1 = e2);
static_assert(std::same_as<decltype(x), std::expected<void, Traced>&>);
assert(&x == &e1);
assert(!e1.has_value());
assert(e1.error().data_ == 5);
assert(state.copyCtorCalled);
}
{
Traced::state state{};
std::expected<void, Traced> e1(std::unexpect, state, 5);
std::expected<void, Traced> e2;
decltype(auto) x = (e1 = e2);
static_assert(std::same_as<decltype(x), std::expected<void, Traced>&>);
assert(&x == &e1);
assert(e1.has_value());
assert(state.dtorCalled);
}
{
Traced::state state{};
std::expected<void, Traced> e1(std::unexpect, state, 5);
std::expected<void, Traced> e2(std::unexpect, state, 10);
decltype(auto) x = (e1 = e2);
static_assert(std::same_as<decltype(x), std::expected<void, Traced>&>);
assert(&x == &e1);
assert(!e1.has_value());
assert(e1.error().data_ == 10);
assert(state.copyAssignCalled);
}
{
{
CheckForInvalidWrites<true, true> e1;
CheckForInvalidWrites<true, true> e2(std::unexpect);
e1 = e2;
assert(e1.check());
assert(e2.check());
}
{
CheckForInvalidWrites<false, true> e1;
CheckForInvalidWrites<false, true> e2(std::unexpect);
e1 = e2;
assert(e1.check());
assert(e2.check());
}
}
return true;
}
void testException() {
#ifndef TEST_HAS_NO_EXCEPTIONS
std::expected<void, ThrowOnCopyConstruct> e1(std::in_place);
std::expected<void, ThrowOnCopyConstruct> e2(std::unexpect);
try {
e1 = e2;
assert(false);
} catch (Except) {
assert(e1.has_value());
}
#endif
}
int main(int, char**) {
test();
static_assert(test());
testException();
return 0;
}