throwing_ptr
Smart pointers that throw on dereference if null
shared_ptr_to_array.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/shared_ptr.hpp>
8 
9 namespace {
10 struct Foo {
11  int foo() const { return 42; }
12 };
13 } // namespace
14 
15 TEST_CASE("shared_ptr to array from nullptr: get returns nullptr",
16  "[shared_ptr][array][access]") {
17  throwing::shared_ptr<int[10]> nothing;
18  REQUIRE(nothing.get() == nullptr);
19 
20  throwing::shared_ptr<int[10]> nothing_nullptr(nullptr);
21  REQUIRE(nothing.get() == nullptr);
22 
23  throwing::shared_ptr<int[10]> nothing_null(NULL);
24  REQUIRE(nothing.get() == nullptr);
25 }
26 
27 TEST_CASE("shared_ptr to array: get returns first element",
28  "[shared_ptr][array][access]") {
29  int *ptr = new int[10];
30  throwing::shared_ptr<int[10]> t_ptr(ptr);
31  REQUIRE(t_ptr.get() == ptr);
32 }
33 
34 TEST_CASE("dereferencing null shared_ptr to array throws",
35  "[shared_ptr][array][access]") {
36  throwing::shared_ptr<Foo[100]> nothing;
37  REQUIRE_THROWS_AS(nothing[0], throwing::base_null_ptr_exception);
38  REQUIRE_THROWS_AS(nothing[0], throwing::null_ptr_exception<Foo[100]>);
39 }
40 
41 TEST_CASE("shared_ptr to array: [0] returns first element",
42  "[shared_ptr][array][access]") {
43  int *ptr = new int[10];
44  throwing::shared_ptr<int[10]> t_ptr(ptr);
45  REQUIRE(&t_ptr[0] == ptr);
46 }
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")