throwing_ptr
Smart pointers that throw on dereference if null
shared_ptr_cast.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/shared_ptr.hpp>
8 
9 namespace {
10 class Base {
11 public:
12  virtual ~Base() = default;
13  virtual bool mutating() { return true; }
14  virtual bool is_derived() const { return false; }
15 };
16 
17 class Derived : public Base {
18 public:
19  virtual ~Derived() = default;
20  virtual bool is_derived() const { return true; }
21 };
22 
23 struct Reintepretable {
24  int a;
25 };
26 
27 } // namespace
28 
29 TEST_CASE("static_pointer_cast to base class", "[shared_ptr][cast]") {
30  auto base_ptr = throwing::make_shared<Base>();
31  REQUIRE_FALSE(base_ptr->is_derived());
32  auto derived_ptr = throwing::make_shared<Derived>();
33  REQUIRE(derived_ptr->is_derived());
34 
35  // static_pointer_cast to go up class hierarchy
36  base_ptr = throwing::static_pointer_cast<Base>(derived_ptr);
37  REQUIRE(derived_ptr->is_derived());
38 }
39 
40 TEST_CASE("dynamic_pointer_cast to derived class", "[shared_ptr][cast]") {
41  auto base_ptr = throwing::make_shared<Base>();
42  REQUIRE_FALSE(base_ptr->is_derived());
43  auto derived_ptr = throwing::make_shared<Derived>();
44  REQUIRE(derived_ptr->is_derived());
45 
46  // static_pointer_cast to go up class hierarchy
47  base_ptr = throwing::static_pointer_cast<Base>(derived_ptr);
48 
49  // dynamic_pointer_cast to go down/across class hierarchy
50  auto downcast_ptr = throwing::dynamic_pointer_cast<Derived>(base_ptr);
51  REQUIRE(downcast_ptr);
52  REQUIRE(downcast_ptr->is_derived());
53 }
54 
55 TEST_CASE("const_pointer_cast", "[shared_ptr][cast]") {
56  const auto const_ptr = throwing::make_shared<Base>();
57  auto non_const_ptr = throwing::const_pointer_cast<Base>(const_ptr);
58  REQUIRE(non_const_ptr->mutating());
59 }
60 
61 TEST_CASE("reinterpret_pointer_cast", "[shared_ptr][cast]") {
62  auto p = throwing::make_shared<Reintepretable>();
63  REQUIRE(p);
64  auto reinterpreted = throwing::reinterpret_pointer_cast<int>(p);
65  REQUIRE(reinterpreted);
66  REQUIRE(p.use_count() == 2);
67 }
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")