throwing_ptr
Smart pointers that throw on dereference if null
unique_ptr_to_array_assignment_from_convertible.cpp
Go to the documentation of this file.
1 // Copyright Claudio Bantaloukas 2017-2018.
2 // Distributed under the Boost Software License, Version 1.0.
3 // (See accompanying file LICENSE or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
5 
6 #include <catch.hpp>
7 #include <throwing/unique_ptr.hpp>
8 
9 namespace {
10 class A {
11  int dummy_a;
12 
13 public:
14  int dummy() { return dummy_a; }
15 };
16 
17 struct DeleterA {
18  DeleterA() : called(false) {}
19  void operator()(A *p) {
20  called = true;
21  delete p;
22  }
23  bool called;
24 };
25 } // namespace
26 
27 TEST_CASE("move assignment from std::unique_ptr to array of convertible "
28  "type to std::unique_ptr",
29  "[unique_ptr][assignment][array][conv.qual]") {
30  const A *p1 = new A[10];
31  std::unique_ptr<const A[]> t_ptr1(p1);
32  A *p2 = new A[10];
33  std::unique_ptr<A[]> t_ptr2(p2);
34  t_ptr1 = std::move(t_ptr2);
35  REQUIRE(t_ptr1.get() == p2);
36  REQUIRE(!t_ptr2);
37 }
38 
39 TEST_CASE("move assignment from throwing::unique_ptr to array of convertible "
40  "type to throwing::unique_ptr",
41  "[unique_ptr][assignment][array][conv.qual]") {
42  const A *p1 = new A[10];
43  throwing::unique_ptr<const A[]> t_ptr1(p1);
44  A *p2 = new A[10];
45  throwing::unique_ptr<A[]> t_ptr2(p2);
46  t_ptr1 = std::move(t_ptr2);
47  REQUIRE(t_ptr1.get() == p2);
48  REQUIRE(!t_ptr2);
49 }
50 
51 TEST_CASE("move assignment from std::unique_ptr to array of convertible "
52  "type to throwing::unique_ptr",
53  "[unique_ptr][assignment][array][conv.qual]") {
54  const A *p1 = new A[10];
55  throwing::unique_ptr<const A[]> t_ptr1(p1);
56  A *p2 = new A[10];
57  std::unique_ptr<A[]> t_ptr2(p2);
58  t_ptr1 = std::move(t_ptr2);
59  REQUIRE(t_ptr1.get() == p2);
60  REQUIRE(!t_ptr2);
61 }
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")