throwing_ptr
Smart pointers that throw on dereference if null
Functions
shared_ptr_access.cpp File Reference

Go to the source code of this file.

Functions

 TEST_CASE ("shared_ptr get returns correctly with nullptr", "[shared_ptr][access][nullptr]")
 
 TEST_CASE ("shared_ptr get returns correct address", "[shared_ptr][access]")
 
 TEST_CASE ("shared_ptr dereference via * throws on nullptr", "[shared_ptr][dereference][nullptr]")
 
 TEST_CASE ("shared_ptr dereference via -> throws on nullptr", "[shared_ptr][dereference][nullptr]")
 
 TEST_CASE ("type specific shared_ptr exceptions are caught by base exception", "[shared_ptr][exception]")
 
 TEST_CASE ("type specific shared_ptr exceptions are caught by using correct type", "[shared_ptr][exception]")
 
 TEST_CASE ("shared_ptr exceptions have non-empty what()", "[shared_ptr][exception]")
 
 TEST_CASE ("shared_ptr use count works", "[shared_ptr][use count]")
 
 TEST_CASE ("operator bool works", "[shared_ptr]")
 

Function Documentation

◆ TEST_CASE() [1/9]

TEST_CASE ( "shared_ptr get returns correctly with nullptr"  ,
""  [shared_ptr][access][nullptr] 
)

Definition at line 15 of file shared_ptr_access.cpp.

16  {
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 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63
element_type * get() const TSP_NOEXCEPT
Returns the stored pointer.
Definition: shared_ptr.hpp:407

◆ TEST_CASE() [2/9]

TEST_CASE ( "shared_ptr get returns correct address"  ,
""  [shared_ptr][access] 
)

Definition at line 27 of file shared_ptr_access.cpp.

27  {
28  int *ptr = new int;
29  throwing::shared_ptr<int> t_ptr(ptr);
30  REQUIRE(t_ptr.get() == ptr);
31 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63

◆ TEST_CASE() [3/9]

TEST_CASE ( "shared_ptr dereference via * throws on nullptr"  ,
""  [shared_ptr][dereference][nullptr] 
)

Definition at line 33 of file shared_ptr_access.cpp.

34  {
36  REQUIRE_THROWS_AS((*nothing)++, throwing::base_null_ptr_exception);
37  REQUIRE_THROWS_AS((*nothing)++, throwing::null_ptr_exception<int>);
38 }
Base class thrown upon dereferencing a null shared_ptr.
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63
Concrete class thrown upon dereferencing a null shared_ptr.

◆ TEST_CASE() [4/9]

TEST_CASE ( "shared_ptr dereference via -> throws on nullptr"  ,
""  [shared_ptr][dereference][nullptr] 
)

Definition at line 40 of file shared_ptr_access.cpp.

41  {
43  REQUIRE_THROWS_AS(nothing->foo(), throwing::base_null_ptr_exception);
44  REQUIRE_THROWS_AS(nothing->foo(), throwing::null_ptr_exception<Foo>);
45 }
Base class thrown upon dereferencing a null shared_ptr.
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63
Concrete class thrown upon dereferencing a null shared_ptr.

◆ TEST_CASE() [5/9]

TEST_CASE ( "type specific shared_ptr exceptions are caught by base exception"  ,
""  [shared_ptr][exception] 
)

Definition at line 47 of file shared_ptr_access.cpp.

48  {
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 }
Base class thrown upon dereferencing a null shared_ptr.
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63
Concrete class thrown upon dereferencing a null shared_ptr.

◆ TEST_CASE() [6/9]

TEST_CASE ( "type specific shared_ptr exceptions are caught by using correct type"  ,
""  [shared_ptr][exception] 
)

Definition at line 59 of file shared_ptr_access.cpp.

61  {
63  try {
64  (*nothing)++;
65  } catch (const throwing::null_ptr_exception<float> &) {
66  FAIL();
67  } catch (const throwing::null_ptr_exception<int> &) {
68  }
69 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63
Concrete class thrown upon dereferencing a null shared_ptr.

◆ TEST_CASE() [7/9]

TEST_CASE ( "shared_ptr exceptions have non-empty what()"  ,
""  [shared_ptr][exception] 
)

Definition at line 71 of file shared_ptr_access.cpp.

72  {
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 }
Base class thrown upon dereferencing a null shared_ptr.
virtual std::string what_type() const
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63

◆ TEST_CASE() [8/9]

TEST_CASE ( "shared_ptr use count works"  ,
""  [shared_ptr][use count] 
)

Definition at line 82 of file shared_ptr_access.cpp.

82  {
83  Foo *foo = new Foo;
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 }
long use_count() const TSP_NOEXCEPT
Returns the number of different shared_ptr instances (this included) managing the current object...
Definition: shared_ptr.hpp:470
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63
void reset() TSP_NOEXCEPT
Releases the ownership of the managed object, if any.
Definition: shared_ptr.hpp:356

◆ TEST_CASE() [9/9]

TEST_CASE ( "operator bool works"  ,
""  [shared_ptr] 
)

Definition at line 99 of file shared_ptr_access.cpp.

99  {
100  Foo *foo = new Foo;
102  REQUIRE_FALSE(ptr);
103  ptr.reset(foo);
104  REQUIRE(ptr);
105  ptr.reset();
106  REQUIRE_FALSE(ptr);
107 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63
void reset() TSP_NOEXCEPT
Releases the ownership of the managed object, if any.
Definition: shared_ptr.hpp:356