throwing_ptr
Smart pointers that throw on dereference if null
unique_ptr_swap.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/unique_ptr.hpp>
8 
9 TEST_CASE("unique_ptr swap swaps pointers", "[unique_ptr][swap]") {
10  int *ptr1 = new int;
11  throwing::unique_ptr<int> t_ptr1(ptr1);
12  int *ptr2 = new int;
13  throwing::unique_ptr<int> t_ptr2(ptr2);
14  REQUIRE(t_ptr1.get() == ptr1);
15  REQUIRE(t_ptr2.get() == ptr2);
16  t_ptr1.swap(t_ptr2);
17  REQUIRE(t_ptr1.get() == ptr2);
18  REQUIRE(t_ptr2.get() == ptr1);
19  std::swap(t_ptr1, t_ptr2);
20  REQUIRE(t_ptr1.get() == ptr1);
21  REQUIRE(t_ptr2.get() == ptr2);
22 }
23 
24 TEST_CASE("unique_ptr swap null pointers", "[unique_ptr][swap][nullptr]") {
25  throwing::unique_ptr<int> t_ptr1(new int);
26  throwing::unique_ptr<int> t_ptr2;
27  REQUIRE(t_ptr1.get() != nullptr);
28  REQUIRE(t_ptr2.get() == nullptr);
29  t_ptr1.swap(t_ptr2);
30  REQUIRE(t_ptr1.get() == nullptr);
31  REQUIRE(t_ptr2.get() != nullptr);
32  std::swap(t_ptr1, t_ptr2);
33  REQUIRE(t_ptr1.get() != nullptr);
34  REQUIRE(t_ptr2.get() == nullptr);
35 }
36 
37 TEST_CASE("unique_ptr to array swap swaps pointers",
38  "[unique_ptr][array][swap]") {
39  int *ptr1 = new int;
40  throwing::unique_ptr<int> t_ptr1(ptr1);
41  int *ptr2 = new int;
42  throwing::unique_ptr<int> t_ptr2(ptr2);
43  REQUIRE(t_ptr1.get() == ptr1);
44  REQUIRE(t_ptr2.get() == ptr2);
45  t_ptr1.swap(t_ptr2);
46  REQUIRE(t_ptr1.get() == ptr2);
47  REQUIRE(t_ptr2.get() == ptr1);
48  std::swap(t_ptr1, t_ptr2);
49  REQUIRE(t_ptr1.get() == ptr1);
50  REQUIRE(t_ptr2.get() == ptr2);
51 }
52 
53 TEST_CASE("unique_ptr to array swap null pointers",
54  "[unique_ptr][array][swap][nullptr]") {
55  throwing::unique_ptr<int[]> t_ptr1(new int[10]);
56  throwing::unique_ptr<int[]> t_ptr2;
57  REQUIRE(t_ptr1.get() != nullptr);
58  REQUIRE(t_ptr2.get() == nullptr);
59  t_ptr1.swap(t_ptr2);
60  REQUIRE(t_ptr1.get() == nullptr);
61  REQUIRE(t_ptr2.get() != nullptr);
62  std::swap(t_ptr1, t_ptr2);
63  REQUIRE(t_ptr1.get() != nullptr);
64  REQUIRE(t_ptr2.get() == nullptr);
65 }
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")