throwing_ptr
Smart pointers that throw on dereference if null
unique_ptr_assignment.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 class B : public A {
18  int dummy_b;
19 
20 public:
21  int dummy() { return dummy_b; }
22 };
23 
24 struct DeleterA {
25  DeleterA() : called(false) {}
26  void operator()(A *p) {
27  called = true;
28  delete p;
29  }
30  bool called;
31 };
32 } // namespace
33 
34 TEST_CASE("move assignment from throwing::unique_ptr",
35  "[unique_ptr][assignment]") {
36  A *ptr1 = new A;
37  throwing::unique_ptr<A> t_ptr1(ptr1);
38  throwing::unique_ptr<A> t_ptr2;
39  t_ptr2 = std::move(t_ptr1);
40  REQUIRE(t_ptr2.get() == ptr1);
41  REQUIRE(t_ptr1.get() == nullptr);
42 }
43 
44 TEST_CASE("move assignment from throwing::unique_ptr to derived class",
45  "[unique_ptr][assignment]") {
46  B *ptr1 = new B;
47  throwing::unique_ptr<B> t_ptr1(ptr1);
48  throwing::unique_ptr<A> t_ptr2;
49  t_ptr2 = std::move(t_ptr1);
50  REQUIRE(t_ptr2.get() == ptr1);
51  REQUIRE(t_ptr1.get() == nullptr);
52 }
53 
54 TEST_CASE("move assignment from std::unique_ptr to derived class",
55  "[unique_ptr][assignment]") {
56  B *ptr1 = new B;
57  std::unique_ptr<B> t_ptr1(ptr1);
58  throwing::unique_ptr<A> t_ptr2;
59  t_ptr2 = std::move(t_ptr1);
60  REQUIRE(t_ptr2.get() == ptr1);
61  REQUIRE(t_ptr1.get() == nullptr);
62 }
63 
64 TEST_CASE("assignment from nullptr", "[unique_ptr][assignment][nullptr]") {
65  throwing::unique_ptr<A, DeleterA> t_ptr(new A);
66  REQUIRE(t_ptr.get());
67  t_ptr = nullptr;
68  REQUIRE_FALSE(t_ptr.get());
69  REQUIRE(t_ptr.get_deleter().called);
70 }
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")