throwing_ptr
Smart pointers that throw on dereference if null
unique_ptr_reset.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 namespace {
10 struct Deleter{
11  Deleter() : called(false) {}
12  void operator()(int *p) {
13  called = true;
14  delete p;
15  }
16  bool called;
17 };
18 struct ArrayDeleter{
19  ArrayDeleter() : called(false) {}
20  void operator()(int *p) {
21  called = true;
22  delete [] p;
23  }
24  bool called;
25 };
26 }
27 
28 TEST_CASE("unique_ptr to single object reset",
29  "[unique_ptr][reset]") {
30  throwing::unique_ptr<int, Deleter> uptr(new int);
31  REQUIRE(uptr.get());
32  REQUIRE(!uptr.get_deleter().called);
33  uptr.reset(new int);
34  REQUIRE(uptr.get());
35  REQUIRE(uptr.get_deleter().called);
36 }
37 
38 TEST_CASE("unique_ptr to single object reset with nullptr",
39  "[unique_ptr][reset][nullptr]") {
40  throwing::unique_ptr<int, Deleter> uptr(new int);
41  REQUIRE(uptr.get());
42  REQUIRE(!uptr.get_deleter().called);
43  uptr.reset(nullptr);
44  REQUIRE(!uptr.get());
45  REQUIRE(uptr.get_deleter().called);
46 }
47 
48 TEST_CASE("unique_ptr to array reset",
49  "[unique_ptr][array][reset]") {
50  throwing::unique_ptr<int[], ArrayDeleter> uptr(new int[10]);
51  REQUIRE(uptr.get());
52  REQUIRE(!uptr.get_deleter().called);
53  uptr.reset(new int[10]);
54  REQUIRE(uptr.get());
55  REQUIRE(uptr.get_deleter().called);
56 }
57 
58 TEST_CASE("unique_ptr to array reset with nullptr",
59  "[unique_ptr][reset][nullptr]") {
60  throwing::unique_ptr<int[], ArrayDeleter> uptr(new int[10]);
61  REQUIRE(uptr.get());
62  REQUIRE(!uptr.get_deleter().called);
63  uptr.reset(nullptr);
64  REQUIRE(!uptr.get());
65  REQUIRE(uptr.get_deleter().called);
66 }
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")