Resolves #174350 - Several issues were found in the current implementation of `optional<T&>` - `value()`, `operator*()`, `and_then()`, `transform()`, `operator->()` still provided their ref-qualified versions for rvalues and `const&`. - Using the listed methods on an rvalue `optional<T&>` would cause a compile failure due to a mismatch in return types. - On the latter, `operator*`, `operator->` would return `const` for a `optional<T&>`, which is an incorrect deep const. - A few constructors were missing (`optional<U>&`), and most constructors relevant to `optional<T&>` were missing `noexcept` - Constructors and `emplace` were not correctly constructing a `T&` as specified in _`convert-ref-init-val`_ - Also corrects the behavior of `value_or` which should return `remove_cv_t<T>` (in our case `decay_t<_Tp>`) - Add several test cases to verify behavior, update `value_or` tests
360 lines
9.5 KiB
C++
360 lines
9.5 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// UNSUPPORTED: c++03, c++11, c++14
|
|
// <optional>
|
|
|
|
// template <class U> optional<T>& operator=(U&& v);
|
|
|
|
#include <optional>
|
|
#include <type_traits>
|
|
#include <cassert>
|
|
#include <memory>
|
|
|
|
#include "test_macros.h"
|
|
#include "archetypes.h"
|
|
#if TEST_STD_VER >= 26
|
|
# include "copy_move_types.h"
|
|
#endif
|
|
|
|
using std::optional;
|
|
|
|
struct ThrowAssign {
|
|
static int dtor_called;
|
|
ThrowAssign() = default;
|
|
ThrowAssign(int) { TEST_THROW(42); }
|
|
ThrowAssign& operator=(int) {
|
|
TEST_THROW(42);
|
|
}
|
|
~ThrowAssign() { ++dtor_called; }
|
|
};
|
|
int ThrowAssign::dtor_called = 0;
|
|
|
|
template <class T, class Arg = T, bool Expect = true>
|
|
void assert_assignable() {
|
|
static_assert(std::is_assignable<optional<T>&, Arg>::value == Expect, "");
|
|
static_assert(!std::is_assignable<const optional<T>&, Arg>::value, "");
|
|
}
|
|
|
|
struct MismatchType {
|
|
explicit MismatchType(int) {}
|
|
explicit MismatchType(char*) {}
|
|
explicit MismatchType(int*) = delete;
|
|
MismatchType& operator=(int) { return *this; }
|
|
MismatchType& operator=(int*) { return *this; }
|
|
MismatchType& operator=(char*) = delete;
|
|
};
|
|
|
|
struct FromOptionalType {
|
|
using Opt = std::optional<FromOptionalType>;
|
|
FromOptionalType() = default;
|
|
FromOptionalType(FromOptionalType const&) = delete;
|
|
template <class Dummy = void>
|
|
constexpr FromOptionalType(Opt&) { Dummy::BARK; }
|
|
template <class Dummy = void>
|
|
constexpr FromOptionalType& operator=(Opt&) { Dummy::BARK; return *this; }
|
|
};
|
|
|
|
void test_sfinae() {
|
|
using I = TestTypes::TestType;
|
|
using E = ExplicitTestTypes::TestType;
|
|
assert_assignable<int>();
|
|
assert_assignable<int, int&>();
|
|
assert_assignable<int, int const&>();
|
|
// Implicit test type
|
|
assert_assignable<I, I const&>();
|
|
assert_assignable<I, I&&>();
|
|
assert_assignable<I, int>();
|
|
assert_assignable<I, void*, false>();
|
|
// Explicit test type
|
|
assert_assignable<E, E const&>();
|
|
assert_assignable<E, E &&>();
|
|
assert_assignable<E, int>();
|
|
assert_assignable<E, void*, false>();
|
|
// Mismatch type
|
|
assert_assignable<MismatchType, int>();
|
|
assert_assignable<MismatchType, int*, false>();
|
|
assert_assignable<MismatchType, char*, false>();
|
|
// Type constructible from optional
|
|
assert_assignable<FromOptionalType, std::optional<FromOptionalType>&, false>();
|
|
}
|
|
|
|
void test_with_test_type()
|
|
{
|
|
using T = TestTypes::TestType;
|
|
T::reset();
|
|
{ // to empty
|
|
optional<T> opt;
|
|
opt = 3;
|
|
assert(T::alive == 1);
|
|
assert(T::constructed == 1);
|
|
assert(T::value_constructed == 1);
|
|
assert(T::assigned == 0);
|
|
assert(T::destroyed == 0);
|
|
assert(static_cast<bool>(opt) == true);
|
|
assert(*opt == T(3));
|
|
}
|
|
{ // to existing
|
|
optional<T> opt(42);
|
|
T::reset_constructors();
|
|
opt = 3;
|
|
assert(T::alive == 1);
|
|
assert(T::constructed == 0);
|
|
assert(T::assigned == 1);
|
|
assert(T::value_assigned == 1);
|
|
assert(T::destroyed == 0);
|
|
assert(static_cast<bool>(opt) == true);
|
|
assert(*opt == T(3));
|
|
}
|
|
{ // test default argument
|
|
optional<T> opt;
|
|
T::reset_constructors();
|
|
opt = {1, 2};
|
|
assert(T::alive == 1);
|
|
assert(T::constructed == 2);
|
|
assert(T::value_constructed == 1);
|
|
assert(T::move_constructed == 1);
|
|
assert(T::assigned == 0);
|
|
assert(T::destroyed == 1);
|
|
assert(static_cast<bool>(opt) == true);
|
|
assert(*opt == T(1, 2));
|
|
}
|
|
{ // test default argument
|
|
optional<T> opt(42);
|
|
T::reset_constructors();
|
|
opt = {1, 2};
|
|
assert(T::alive == 1);
|
|
assert(T::constructed == 1);
|
|
assert(T::value_constructed == 1);
|
|
assert(T::assigned == 1);
|
|
assert(T::move_assigned == 1);
|
|
assert(T::destroyed == 1);
|
|
assert(static_cast<bool>(opt) == true);
|
|
assert(*opt == T(1, 2));
|
|
}
|
|
{ // test default argument
|
|
optional<T> opt;
|
|
T::reset_constructors();
|
|
opt = {1};
|
|
assert(T::alive == 1);
|
|
assert(T::constructed == 2);
|
|
assert(T::value_constructed == 1);
|
|
assert(T::move_constructed == 1);
|
|
assert(T::assigned == 0);
|
|
assert(T::destroyed == 1);
|
|
assert(static_cast<bool>(opt) == true);
|
|
assert(*opt == T(1));
|
|
}
|
|
{ // test default argument
|
|
optional<T> opt(42);
|
|
T::reset_constructors();
|
|
opt = {};
|
|
assert(static_cast<bool>(opt) == false);
|
|
assert(T::alive == 0);
|
|
assert(T::constructed == 0);
|
|
assert(T::assigned == 0);
|
|
assert(T::destroyed == 1);
|
|
}
|
|
}
|
|
|
|
template <class T, class Value = int>
|
|
void test_with_type() {
|
|
{ // to empty
|
|
optional<T> opt;
|
|
opt = Value(3);
|
|
assert(static_cast<bool>(opt) == true);
|
|
assert(*opt == T(3));
|
|
}
|
|
{ // to existing
|
|
optional<T> opt(Value(42));
|
|
opt = Value(3);
|
|
assert(static_cast<bool>(opt) == true);
|
|
assert(*opt == T(3));
|
|
}
|
|
{ // test const
|
|
optional<T> opt(Value(42));
|
|
const T t(Value(3));
|
|
opt = t;
|
|
assert(static_cast<bool>(opt) == true);
|
|
assert(*opt == T(3));
|
|
}
|
|
{ // test default argument
|
|
optional<T> opt;
|
|
opt = {Value(1)};
|
|
assert(static_cast<bool>(opt) == true);
|
|
assert(*opt == T(1));
|
|
}
|
|
{ // test default argument
|
|
optional<T> opt(Value(42));
|
|
opt = {};
|
|
assert(static_cast<bool>(opt) == false);
|
|
}
|
|
}
|
|
|
|
template <class T>
|
|
void test_with_type_multi() {
|
|
test_with_type<T>();
|
|
{ // test default argument
|
|
optional<T> opt;
|
|
opt = {1, 2};
|
|
assert(static_cast<bool>(opt) == true);
|
|
assert(*opt == T(1, 2));
|
|
}
|
|
{ // test default argument
|
|
optional<T> opt(42);
|
|
opt = {1, 2};
|
|
assert(static_cast<bool>(opt) == true);
|
|
assert(*opt == T(1, 2));
|
|
}
|
|
}
|
|
|
|
void test_throws()
|
|
{
|
|
#ifndef TEST_HAS_NO_EXCEPTIONS
|
|
using T = ThrowAssign;
|
|
{
|
|
optional<T> opt;
|
|
try {
|
|
opt = 42;
|
|
assert(false);
|
|
} catch (int) {}
|
|
assert(static_cast<bool>(opt) == false);
|
|
}
|
|
assert(T::dtor_called == 0);
|
|
{
|
|
T::dtor_called = 0;
|
|
optional<T> opt(std::in_place);
|
|
try {
|
|
opt = 42;
|
|
assert(false);
|
|
} catch (int) {}
|
|
assert(static_cast<bool>(opt) == true);
|
|
assert(T::dtor_called == 0);
|
|
}
|
|
assert(T::dtor_called == 1);
|
|
#endif
|
|
}
|
|
|
|
enum MyEnum { Zero, One, Two, Three, FortyTwo = 42 };
|
|
|
|
using Fn = void(*)();
|
|
|
|
// https://llvm.org/PR38638
|
|
template <class T>
|
|
constexpr T pr38638(T v)
|
|
{
|
|
std::optional<T> o;
|
|
o = v;
|
|
return *o + 2;
|
|
}
|
|
|
|
#if TEST_STD_VER >= 26
|
|
|
|
template <typename T>
|
|
constexpr bool test_with_ref(std::decay_t<T> val) {
|
|
T t{val};
|
|
{ // to empty
|
|
optional<T&> opt;
|
|
opt = t;
|
|
assert(static_cast<bool>(opt) == true);
|
|
assert(*opt == t);
|
|
}
|
|
{ // to existing
|
|
optional<T&> opt{t};
|
|
opt = t;
|
|
assert(static_cast<bool>(opt) == true);
|
|
assert(*opt == t);
|
|
}
|
|
{ // test default argument
|
|
optional<T&> opt;
|
|
opt = {t};
|
|
assert(static_cast<bool>(opt) == true);
|
|
assert(*opt == t);
|
|
}
|
|
{ // test default argument
|
|
optional<T&> opt{t};
|
|
opt = {};
|
|
assert(static_cast<bool>(opt) == false);
|
|
}
|
|
// test two objects, make sure that the optional only changes what it holds a reference to
|
|
{
|
|
T t2{val};
|
|
optional<T&> opt{t};
|
|
opt = t2;
|
|
|
|
assert(std::addressof(*opt) != std::addressof(t));
|
|
assert(std::addressof(*opt) == std::addressof(t2));
|
|
}
|
|
// test that reassigning the reference for an optional<T&> doesn't affect the objet it's holding a reference to
|
|
{
|
|
int i = -1;
|
|
int j = 2;
|
|
optional<int&> opt{i};
|
|
opt = j;
|
|
|
|
assert(i == -1);
|
|
assert(std::addressof(*opt) != std::addressof(i));
|
|
assert(std::addressof(*opt) == std::addressof(j));
|
|
assert(*opt == 2);
|
|
}
|
|
|
|
{ // test that no copy is made when assigning
|
|
TracedCopyMove t1{};
|
|
TracedCopyMove t2{};
|
|
|
|
optional<TracedCopyMove&> o(t1);
|
|
|
|
o = t2;
|
|
assert(std::addressof(*o) == &t2);
|
|
assert(o->constCopy == 0);
|
|
assert(o->nonConstCopy == 0);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
#endif
|
|
|
|
int main(int, char**)
|
|
{
|
|
test_sfinae();
|
|
// Test with instrumented type
|
|
test_with_test_type();
|
|
// Test with various scalar types
|
|
test_with_type<int>();
|
|
test_with_type<MyEnum, MyEnum>();
|
|
test_with_type<int, MyEnum>();
|
|
test_with_type<Fn, Fn>();
|
|
// Test types with multi argument constructors
|
|
test_with_type_multi<ConstexprTestTypes::TestType>();
|
|
test_with_type_multi<TrivialTestTypes::TestType>();
|
|
// Test move only types
|
|
{
|
|
optional<std::unique_ptr<int>> opt;
|
|
opt = std::unique_ptr<int>(new int(3));
|
|
assert(static_cast<bool>(opt) == true);
|
|
assert(**opt == 3);
|
|
}
|
|
{
|
|
optional<std::unique_ptr<int>> opt(std::unique_ptr<int>(new int(2)));
|
|
opt = std::unique_ptr<int>(new int(3));
|
|
assert(static_cast<bool>(opt) == true);
|
|
assert(**opt == 3);
|
|
}
|
|
test_throws();
|
|
|
|
static_assert(pr38638(3) == 5, "");
|
|
|
|
#if TEST_STD_VER >= 26
|
|
test_with_ref<int>(3);
|
|
test_with_ref<ConstexprTestTypes::Copyable>({});
|
|
static_assert(test_with_ref<int>(3));
|
|
static_assert(test_with_ref<ConstexprTestTypes::Copyable>({}));
|
|
#endif
|
|
return 0;
|
|
}
|