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

Go to the source code of this file.

Functions

 TEST_CASE ("shared_ptr constructor from pointer", "[shared_ptr][constructor]")
 
 TEST_CASE ("shared_ptr constructor from pointer and deleter", "[shared_ptr][constructor]")
 
 TEST_CASE ("shared_ptr constructor from pointer and lambda deleter", "Construction")
 
 TEST_CASE ("shared_ptr constructor from pointer to derived class", "[shared_ptr][constructor]")
 
 TEST_CASE ("shared_ptr constructor from pointer to base type", "[shared_ptr][constructor]")
 
 TEST_CASE ("shared_ptr constructor from nullptr and deleter", "[shared_ptr][constructor]")
 
 TEST_CASE ("shared_ptr constructor from nullptr, lambda deleter and allocator", "[shared_ptr][constructor]")
 
 TEST_CASE ("shared_ptr aliasing constructor", "[shared_ptr][constructor]")
 
 TEST_CASE ("shared_ptr copy constructor", "[shared_ptr][constructor]")
 
 TEST_CASE ("shared_ptr copy constructor from derived", "Construction")
 
 TEST_CASE ("shared_ptr move constructor", "[shared_ptr][constructor]")
 
 TEST_CASE ("shared_ptr move constructor from derived", "[shared_ptr][constructor]")
 
 TEST_CASE ("shared_ptr constructor from std::shared_ptr", "[shared_ptr][constructor]")
 
 TEST_CASE ("shared_ptr constructor from std::shared_ptr to derived", "[shared_ptr][constructor]")
 
 TEST_CASE ("shared_ptr move constructor from std::shared_ptr", "[shared_ptr][constructor]")
 
 TEST_CASE ("shared_ptr move constructor from std::shared_ptr to derived", "[shared_ptr][constructor]")
 
 TEST_CASE ("shared_ptr constructor from derived std::weak_ptr", "[shared_ptr][constructor]")
 
 TEST_CASE ("shared_ptr move constructor from std::unique_ptr", "[shared_ptr][constructor]")
 

Function Documentation

◆ TEST_CASE() [1/18]

TEST_CASE ( "shared_ptr constructor from pointer"  ,
""  [shared_ptr][constructor] 
)

Definition at line 39 of file shared_ptr_construction.cpp.

39  {
40  A *ptr1 = new A;
41  throwing::shared_ptr<A> t_ptr1(ptr1);
42  REQUIRE(t_ptr1.get() == ptr1);
43 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63

◆ TEST_CASE() [2/18]

TEST_CASE ( "shared_ptr constructor from pointer and deleter"  ,
""  [shared_ptr][constructor] 
)

Definition at line 45 of file shared_ptr_construction.cpp.

46  {
47  A *ptr1 = new A;
48  throwing::shared_ptr<A> t_ptr1(ptr1, A_D());
49  REQUIRE(t_ptr1.get() == ptr1);
50  REQUIRE(throwing::get_deleter<A_D>(t_ptr1) != nullptr);
51 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63

◆ TEST_CASE() [3/18]

TEST_CASE ( "shared_ptr constructor from pointer and lambda deleter"  ,
"Construction"   
)

Definition at line 53 of file shared_ptr_construction.cpp.

54  {
55  A *ptr1 = new A;
56  bool lamda_called = false;
57  {
58  throwing::shared_ptr<A> t_ptr1(ptr1, [&lamda_called](A *p) {
59  delete p;
60  lamda_called = true;
61  });
62  REQUIRE(t_ptr1.get() == ptr1);
63  REQUIRE_FALSE(lamda_called);
64  }
65  REQUIRE(lamda_called);
66 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63

◆ TEST_CASE() [4/18]

TEST_CASE ( "shared_ptr constructor from pointer to derived class"  ,
""  [shared_ptr][constructor] 
)

Definition at line 68 of file shared_ptr_construction.cpp.

69  {
70  B *ptr1 = new B;
71  throwing::shared_ptr<A> t_ptr1(ptr1);
72  REQUIRE(t_ptr1.get() == ptr1);
73 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63

◆ TEST_CASE() [5/18]

TEST_CASE ( "shared_ptr constructor from pointer to base type"  ,
""  [shared_ptr][constructor] 
)

Definition at line 75 of file shared_ptr_construction.cpp.

76  {
77  int *ptr1 = new int;
78  throwing::shared_ptr<int> t_ptr1(ptr1);
79  REQUIRE(t_ptr1.get() == ptr1);
80 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63

◆ TEST_CASE() [6/18]

TEST_CASE ( "shared_ptr constructor from nullptr and deleter"  ,
""  [shared_ptr][constructor] 
)

Definition at line 82 of file shared_ptr_construction.cpp.

83  {
84  bool lamda_called = false;
85  {
86  throwing::shared_ptr<A> t_ptr1(nullptr, [&lamda_called](A *p) {
87  delete p;
88  lamda_called = true;
89  });
90  REQUIRE(t_ptr1.get() == nullptr);
91  REQUIRE_FALSE(lamda_called);
92  }
93  REQUIRE(lamda_called);
94 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63

◆ TEST_CASE() [7/18]

TEST_CASE ( "shared_ptr constructor from  nullptr,
lambda deleter and allocator"  ,
""  [shared_ptr][constructor] 
)

Definition at line 96 of file shared_ptr_construction.cpp.

97  {
98  A *ptr1 = new A;
99  std::allocator<void *> allocator;
100  bool lamda_called = false;
101  {
102  throwing::shared_ptr<A> t_ptr1(ptr1,
103  [&lamda_called](A *p) {
104  delete p;
105  lamda_called = true;
106  },
107  allocator);
108  REQUIRE(t_ptr1.get() == ptr1);
109  REQUIRE_FALSE(lamda_called);
110  }
111  REQUIRE(lamda_called);
112 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63

◆ TEST_CASE() [8/18]

TEST_CASE ( "shared_ptr aliasing constructor"  ,
""  [shared_ptr][constructor] 
)

Definition at line 114 of file shared_ptr_construction.cpp.

114  {
115  Container *ptr1 = new Container;
116  bool lamda_called = false;
117  {
119  [&lamda_called](Container *p) {
120  delete p;
121  lamda_called = true;
122  });
123  REQUIRE(t_ptr1.get() == ptr1);
124  REQUIRE_FALSE(lamda_called);
125  auto via_aliasing =
126  throwing::shared_ptr<Contained>(t_ptr1, &ptr1->things);
127  REQUIRE_FALSE(lamda_called);
128  t_ptr1.reset();
129  REQUIRE_FALSE(lamda_called);
130  via_aliasing.reset();
131  REQUIRE(lamda_called);
132  }
133 }
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/18]

TEST_CASE ( "shared_ptr copy constructor"  ,
""  [shared_ptr][constructor] 
)

Definition at line 135 of file shared_ptr_construction.cpp.

135  {
136  A *ptr1 = new A;
137  auto t_ptr1 = throwing::shared_ptr<A>(ptr1);
138  throwing::shared_ptr<A> t_ptr2(t_ptr1);
139  REQUIRE(t_ptr2.get() == t_ptr1.get());
140  t_ptr1.reset();
141  REQUIRE(t_ptr2.get() == ptr1);
142 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63

◆ TEST_CASE() [10/18]

TEST_CASE ( "shared_ptr copy constructor from derived"  ,
"Construction"   
)

Definition at line 144 of file shared_ptr_construction.cpp.

144  {
145  B *ptr1 = new B;
146  auto t_ptr1 = throwing::shared_ptr<B>(ptr1);
147  throwing::shared_ptr<A> t_ptr2 = t_ptr1;
148  REQUIRE(t_ptr2.get() == t_ptr1.get());
149  t_ptr1.reset();
150  REQUIRE(t_ptr2.get() == ptr1);
151 }
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
void reset() TSP_NOEXCEPT
Releases the ownership of the managed object, if any.
Definition: shared_ptr.hpp:356

◆ TEST_CASE() [11/18]

TEST_CASE ( "shared_ptr move constructor"  ,
""  [shared_ptr][constructor] 
)

Definition at line 153 of file shared_ptr_construction.cpp.

153  {
154  A *ptr1 = new A;
155  auto t_ptr1 = throwing::shared_ptr<A>(ptr1);
156  throwing::shared_ptr<A> t_ptr2(std::move(t_ptr1));
157  REQUIRE(t_ptr1.get() == nullptr);
158  REQUIRE(t_ptr2.get() == ptr1);
159 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63

◆ TEST_CASE() [12/18]

TEST_CASE ( "shared_ptr move constructor from derived"  ,
""  [shared_ptr][constructor] 
)

Definition at line 161 of file shared_ptr_construction.cpp.

162  {
163  B *ptr1 = new B;
164  auto t_ptr1 = throwing::shared_ptr<B>(ptr1);
165  throwing::shared_ptr<A> t_ptr2(std::move(t_ptr1));
166  REQUIRE(t_ptr1.get() == nullptr);
167  REQUIRE(t_ptr2.get() == ptr1);
168 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63

◆ TEST_CASE() [13/18]

TEST_CASE ( "shared_ptr constructor from std::shared_ptr"  ,
""  [shared_ptr][constructor] 
)

Definition at line 170 of file shared_ptr_construction.cpp.

171  {
172  A *ptr1 = new A;
173  auto t_ptr1 = std::shared_ptr<A>(ptr1);
174  throwing::shared_ptr<A> t_ptr2(t_ptr1);
175  REQUIRE(t_ptr2.get() == t_ptr1.get());
176  t_ptr1.reset();
177  REQUIRE(t_ptr2.get() == ptr1);
178 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63

◆ TEST_CASE() [14/18]

TEST_CASE ( "shared_ptr constructor from std::shared_ptr to derived"  ,
""  [shared_ptr][constructor] 
)

Definition at line 180 of file shared_ptr_construction.cpp.

181  {
182  B *ptr1 = new B;
183  auto t_ptr1 = std::shared_ptr<B>(ptr1);
184  throwing::shared_ptr<A> t_ptr2(t_ptr1);
185  REQUIRE(t_ptr2.get() == t_ptr1.get());
186  t_ptr1.reset();
187  REQUIRE(t_ptr2.get() == ptr1);
188 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63

◆ TEST_CASE() [15/18]

TEST_CASE ( "shared_ptr move constructor from std::shared_ptr"  ,
""  [shared_ptr][constructor] 
)

Definition at line 190 of file shared_ptr_construction.cpp.

191  {
192  A *ptr1 = new A;
193  auto t_ptr1 = std::shared_ptr<A>(ptr1);
194  throwing::shared_ptr<A> t_ptr2(std::move(t_ptr1));
195  REQUIRE(t_ptr1.get() == nullptr);
196  REQUIRE(t_ptr2.get() == ptr1);
197 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63

◆ TEST_CASE() [16/18]

TEST_CASE ( "shared_ptr move constructor from std::shared_ptr to derived"  ,
""  [shared_ptr][constructor] 
)

Definition at line 199 of file shared_ptr_construction.cpp.

200  {
201  B *ptr1 = new B;
202  auto t_ptr1 = std::shared_ptr<B>(ptr1);
203  throwing::shared_ptr<A> t_ptr2(std::move(t_ptr1));
204  REQUIRE(t_ptr1.get() == nullptr);
205  REQUIRE(t_ptr2.get() == ptr1);
206 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63

◆ TEST_CASE() [17/18]

TEST_CASE ( "shared_ptr constructor from derived std::weak_ptr"  ,
""  [shared_ptr][constructor] 
)

Definition at line 208 of file shared_ptr_construction.cpp.

209  {
210  B *ptr1 = new B;
211  auto t_ptr1 = std::shared_ptr<B>(ptr1);
212  std::weak_ptr<B> weak = t_ptr1;
213  throwing::shared_ptr<A> t_ptr2(weak);
214  REQUIRE(t_ptr2.get() == t_ptr1.get());
215  t_ptr1.reset();
216  REQUIRE(t_ptr2.get() == ptr1);
217 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63

◆ TEST_CASE() [18/18]

TEST_CASE ( "shared_ptr move constructor from std::unique_ptr"  ,
""  [shared_ptr][constructor] 
)

Definition at line 219 of file shared_ptr_construction.cpp.

220  {
221  B *ptr1 = new B;
222  auto u_ptr1 = std::unique_ptr<B>(ptr1);
223  throwing::shared_ptr<A> t_ptr2(std::move(u_ptr1));
224  REQUIRE(u_ptr1.get() == nullptr);
225  REQUIRE(t_ptr2.get() == ptr1);
226 }
Wrapper aroung std::shared_ptr that throws when a wrapped null pointer is dereferenced.
Definition: shared_ptr.hpp:63