throwing_ptr
Smart pointers that throw on dereference if null
shared_ptr_access.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 struct Foo {
11  int foo() const { return 42; }
12 };
13 } // namespace
14 
15 TEST_CASE("shared_ptr get returns correctly with nullptr",
16  "[shared_ptr][access][nullptr]") {
17  throwing::shared_ptr<int> nothing;
18  REQUIRE(nothing.get() == nullptr);
19 
20  throwing::shared_ptr<int> nothing_nullptr(nullptr);
21  REQUIRE(nothing.get() == nullptr);
22 
23  throwing::shared_ptr<int> nothing_null(NULL);
24  REQUIRE(nothing.get() == nullptr);
25 }
26 
27 TEST_CASE("shared_ptr get returns correct address", "[shared_ptr][access]") {
28  int *ptr = new int;
29  throwing::shared_ptr<int> t_ptr(ptr);
30  REQUIRE(t_ptr.get() == ptr);
31 }
32 
33 TEST_CASE("shared_ptr dereference via * throws on nullptr",
34  "[shared_ptr][dereference][nullptr]") {
35  throwing::shared_ptr<int> nothing;
36  REQUIRE_THROWS_AS((*nothing)++, throwing::base_null_ptr_exception);
37  REQUIRE_THROWS_AS((*nothing)++, throwing::null_ptr_exception<int>);
38 }
39 
40 TEST_CASE("shared_ptr dereference via -> throws on nullptr",
41  "[shared_ptr][dereference][nullptr]") {
42  throwing::shared_ptr<Foo> nothing;
43  REQUIRE_THROWS_AS(nothing->foo(), throwing::base_null_ptr_exception);
44  REQUIRE_THROWS_AS(nothing->foo(), throwing::null_ptr_exception<Foo>);
45 }
46 
47 TEST_CASE("type specific shared_ptr exceptions are caught by base exception",
48  "[shared_ptr][exception]") {
49  throwing::shared_ptr<int> nothing;
50  try {
51  (*nothing)++;
52  } catch (const throwing::null_ptr_exception<float> &) {
53  FAIL();
54  } catch (const throwing::base_null_ptr_exception &e) {
55  REQUIRE(std::string(e.what()) == "Dereference of nullptr");
56  }
57 }
58 
59 TEST_CASE(
60  "type specific shared_ptr exceptions are caught by using correct type",
61  "[shared_ptr][exception]") {
62  throwing::shared_ptr<int> nothing;
63  try {
64  (*nothing)++;
65  } catch (const throwing::null_ptr_exception<float> &) {
66  FAIL();
67  } catch (const throwing::null_ptr_exception<int> &) {
68  }
69 }
70 
71 TEST_CASE("shared_ptr exceptions have non-empty what()",
72  "[shared_ptr][exception]") {
73  throwing::shared_ptr<int> nothing;
74  try {
75  (*nothing)++;
76  } catch (const throwing::base_null_ptr_exception &e) {
77  std::string what = e.what_type();
78  REQUIRE_FALSE(what.empty());
79  }
80 }
81 
82 TEST_CASE("shared_ptr use count works", "[shared_ptr][use count]") {
83  Foo *foo = new Foo;
84  throwing::shared_ptr<Foo> ptr;
85  REQUIRE(ptr.use_count() == 0l);
86  ptr.reset(foo);
87  REQUIRE(ptr.use_count() == 1l);
88  auto ptr2 = ptr;
89  REQUIRE(ptr.use_count() == 2l);
90  REQUIRE(ptr2.use_count() == 2l);
91  ptr.reset();
92  REQUIRE(ptr.use_count() == 0l);
93  REQUIRE(ptr2.use_count() == 1l);
94  ptr2.reset();
95  REQUIRE(ptr.use_count() == 0l);
96  REQUIRE(ptr2.use_count() == 0l);
97 }
98 
99 TEST_CASE("operator bool works", "[shared_ptr]") {
100  Foo *foo = new Foo;
101  throwing::shared_ptr<Foo> ptr;
102  REQUIRE_FALSE(ptr);
103  ptr.reset(foo);
104  REQUIRE(ptr);
105  ptr.reset();
106  REQUIRE_FALSE(ptr);
107 }
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")