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