7 #include <throwing/shared_ptr.hpp> 14 int dummy() {
return dummy_a; }
21 int dummy() {
return dummy_b; }
25 void operator()(A *p)
const {
delete p; }
31 int dummy() {
return dummy_; }
39 TEST_CASE(
"shared_ptr constructor from pointer",
"[shared_ptr][constructor]") {
41 throwing::shared_ptr<A> t_ptr1(ptr1);
42 REQUIRE(t_ptr1.get() == ptr1);
45 TEST_CASE(
"shared_ptr constructor from pointer and deleter",
46 "[shared_ptr][constructor]") {
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);
53 TEST_CASE(
"shared_ptr constructor from pointer and lambda deleter",
56 bool lamda_called =
false;
58 throwing::shared_ptr<A> t_ptr1(ptr1, [&lamda_called](A *p) {
62 REQUIRE(t_ptr1.get() == ptr1);
63 REQUIRE_FALSE(lamda_called);
65 REQUIRE(lamda_called);
68 TEST_CASE(
"shared_ptr constructor from pointer to derived class",
69 "[shared_ptr][constructor]") {
71 throwing::shared_ptr<A> t_ptr1(ptr1);
72 REQUIRE(t_ptr1.get() == ptr1);
75 TEST_CASE(
"shared_ptr constructor from pointer to base type",
76 "[shared_ptr][constructor]") {
78 throwing::shared_ptr<
int> t_ptr1(ptr1);
79 REQUIRE(t_ptr1.get() == ptr1);
82 TEST_CASE(
"shared_ptr constructor from nullptr and deleter",
83 "[shared_ptr][constructor]") {
84 bool lamda_called =
false;
86 throwing::shared_ptr<A> t_ptr1(
nullptr, [&lamda_called](A *p) {
90 REQUIRE(t_ptr1.get() ==
nullptr);
91 REQUIRE_FALSE(lamda_called);
93 REQUIRE(lamda_called);
96 TEST_CASE(
"shared_ptr constructor from nullptr, lambda deleter and allocator",
97 "[shared_ptr][constructor]") {
99 std::allocator<
void *> allocator;
100 bool lamda_called =
false;
102 throwing::shared_ptr<A> t_ptr1(ptr1,
103 [&lamda_called](A *p) {
108 REQUIRE(t_ptr1.get() == ptr1);
109 REQUIRE_FALSE(lamda_called);
111 REQUIRE(lamda_called);
114 TEST_CASE(
"shared_ptr aliasing constructor",
"[shared_ptr][constructor]") {
115 Container *ptr1 =
new Container;
116 bool lamda_called =
false;
118 throwing::shared_ptr<Container> t_ptr1(ptr1,
119 [&lamda_called](Container *p) {
123 REQUIRE(t_ptr1.get() == ptr1);
124 REQUIRE_FALSE(lamda_called);
126 throwing::shared_ptr<Contained>(t_ptr1, &ptr1->things);
127 REQUIRE_FALSE(lamda_called);
129 REQUIRE_FALSE(lamda_called);
130 via_aliasing.reset();
131 REQUIRE(lamda_called);
135 TEST_CASE(
"shared_ptr copy constructor",
"[shared_ptr][constructor]") {
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());
141 REQUIRE(t_ptr2.get() == ptr1);
144 TEST_CASE(
"shared_ptr copy constructor from derived",
"Construction") {
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());
150 REQUIRE(t_ptr2.get() == ptr1);
153 TEST_CASE(
"shared_ptr move constructor",
"[shared_ptr][constructor]") {
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);
161 TEST_CASE(
"shared_ptr move constructor from derived",
162 "[shared_ptr][constructor]") {
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);
170 TEST_CASE(
"shared_ptr constructor from std::shared_ptr",
171 "[shared_ptr][constructor]") {
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());
177 REQUIRE(t_ptr2.get() == ptr1);
180 TEST_CASE(
"shared_ptr constructor from std::shared_ptr to derived",
181 "[shared_ptr][constructor]") {
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());
187 REQUIRE(t_ptr2.get() == ptr1);
190 TEST_CASE(
"shared_ptr move constructor from std::shared_ptr",
191 "[shared_ptr][constructor]") {
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);
199 TEST_CASE(
"shared_ptr move constructor from std::shared_ptr to derived",
200 "[shared_ptr][constructor]") {
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);
208 TEST_CASE(
"shared_ptr constructor from derived std::weak_ptr",
209 "[shared_ptr][constructor]") {
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());
216 REQUIRE(t_ptr2.get() == ptr1);
219 TEST_CASE(
"shared_ptr move constructor from std::unique_ptr",
220 "[shared_ptr][constructor]") {
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);
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")