throwing_ptr
Smart pointers that throw on dereference if null
unique_ptr_dereference.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 Foo {
11  int bar = 42;
12  int foo() const { return bar; }
13 };
14 } // namespace
15 
16 TEST_CASE("unique_ptr dereference via * throws on nullptr",
17  "[unique_ptr][dereference][nullptr]") {
18  throwing::unique_ptr<int> nothing;
19  REQUIRE_THROWS_AS((*nothing)++, throwing::base_null_ptr_exception);
20  REQUIRE_THROWS_AS((*nothing)++, throwing::null_ptr_exception<int>);
21 }
22 
23 TEST_CASE("unique_ptr dereference via -> throws on nullptr",
24  "[unique_ptr][dereference][nullptr]") {
25  throwing::unique_ptr<Foo> nothing;
26  REQUIRE_THROWS_AS(nothing->foo(), throwing::base_null_ptr_exception);
27  REQUIRE_THROWS_AS(nothing->foo(), throwing::null_ptr_exception<Foo>);
28 }
29 
30 TEST_CASE("type specific unique_ptr exceptions are caught by base exception",
31  "[unique_ptr][exception]") {
32  throwing::unique_ptr<int> nothing;
33  try {
34  (*nothing)++;
35  } catch (const throwing::null_ptr_exception<float> &) {
36  FAIL();
37  } catch (const throwing::base_null_ptr_exception &e) {
38  REQUIRE(std::string(e.what()) == "Dereference of nullptr");
39  }
40 }
41 
42 TEST_CASE(
43  "type specific unique_ptr exceptions are caught by using correct type",
44  "[unique_ptr][exception]") {
45  throwing::unique_ptr<int> nothing;
46  try {
47  (*nothing)++;
48  } catch (const throwing::null_ptr_exception<float> &) {
49  FAIL();
50  } catch (const throwing::null_ptr_exception<int> &) {
51  }
52 }
53 
54 TEST_CASE("unique_ptr exceptions have non-empty what()",
55  "[unique_ptr][exception]") {
56  throwing::unique_ptr<int> nothing;
57  try {
58  (*nothing)++;
59  } catch (const throwing::base_null_ptr_exception &e) {
60  std::string what = e.what_type();
61  REQUIRE_FALSE(what.empty());
62  }
63 }
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")