throwing_ptr
Smart pointers that throw on dereference if null
shared_ptr_atomic.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 TEST_CASE("atomic_is_lock_free std::shared_ptr compatibility",
10  "[shared_ptr][atomic]") {
11  const auto std_p = std::make_shared<int>(42);
12  const auto p = throwing::make_shared<int>(42);
13  REQUIRE(atomic_is_lock_free(&p) == atomic_is_lock_free(&std_p));
14 }
15 
16 TEST_CASE("atomic_load works in the same thread", "[shared_ptr][atomic]") {
17  const auto p = throwing::make_shared<int>(42);
18  auto p2 = atomic_load(&p);
19  REQUIRE(*p2 == 42);
20 }
21 
22 TEST_CASE("atomic_load_explicit works in the same thread",
23  "[shared_ptr][atomic]") {
24  const auto p = throwing::make_shared<int>(42);
25  auto p2 = atomic_load_explicit(&p, std::memory_order_seq_cst);
26  REQUIRE(*p2 == 42);
27 }
28 
29 TEST_CASE("atomic_store works in the same thread", "[shared_ptr][atomic]") {
30  const auto p1 = throwing::make_shared<int>(1);
31  auto p2 = throwing::make_shared<int>(2);
32 
33  atomic_store(&p2, p1);
34  REQUIRE(*p2 == 1);
35 }
36 
37 TEST_CASE("atomic_store_explicit works in the same thread",
38  "[shared_ptr][atomic]") {
39  const auto p1 = throwing::make_shared<int>(1);
40  auto p2 = throwing::make_shared<int>(2);
41 
42  atomic_store_explicit(&p2, p1, std::memory_order_seq_cst);
43  REQUIRE(*p2 == 1);
44 }
45 
46 TEST_CASE("atomic_exchange works in the same thread", "[shared_ptr][atomic]") {
47  const auto p1 = throwing::make_shared<int>(1);
48  auto p2 = throwing::make_shared<int>(2);
49  auto p3 = atomic_exchange(&p2, p1);
50  REQUIRE(*p2 == 1);
51  REQUIRE(*p3 == 2);
52 }
53 
54 TEST_CASE("atomic_exchange_explicit works in the same thread",
55  "[shared_ptr][atomic]") {
56  const auto p1 = throwing::make_shared<int>(1);
57  auto p2 = throwing::make_shared<int>(2);
58  auto p3 = atomic_exchange_explicit(&p2, p1, std::memory_order_seq_cst);
59  REQUIRE(*p2 == 1);
60  REQUIRE(*p3 == 2);
61 }
62 
63 TEST_CASE("atomic_compare_exchange_weak works in the same thread",
64  "[shared_ptr][atomic]") {
65  auto p = throwing::make_shared<int>(1);
66  auto expected = p;
67  auto desired = throwing::make_shared<int>(2);
68 
69  REQUIRE(atomic_compare_exchange_weak(&p, &expected, desired));
70  REQUIRE(*p == 2);
71 }
72 
73 TEST_CASE("atomic_compare_exchange_weak works in the same thread, compares "
74  "pointer, not value",
75  "[shared_ptr][atomic]") {
76  auto p = throwing::make_shared<int>(1);
77  auto expected = throwing::make_shared<int>(1);
78  auto desired = throwing::make_shared<int>(3);
79 
80  REQUIRE_FALSE(atomic_compare_exchange_weak(&p, &expected, desired));
81  REQUIRE(*expected == 1);
82 }
83 
84 TEST_CASE("atomic_compare_exchange_strong works in the same thread",
85  "[shared_ptr][atomic]") {
86  auto p = throwing::make_shared<int>(1);
87  auto expected = p;
88  auto desired = throwing::make_shared<int>(2);
89 
90  REQUIRE(atomic_compare_exchange_strong(&p, &expected, desired));
91  REQUIRE(*p == 2);
92 }
93 
94 TEST_CASE("atomic_compare_exchange_strong works in the same thread, compares "
95  "pointer, not value",
96  "[shared_ptr][atomic]") {
97  auto p = throwing::make_shared<int>(1);
98  auto expected = throwing::make_shared<int>(1);
99  auto desired = throwing::make_shared<int>(3);
100 
101  REQUIRE_FALSE(atomic_compare_exchange_strong(&p, &expected, desired));
102  REQUIRE(*expected == 1);
103 }
104 
105 TEST_CASE("atomic_compare_exchange_weak_explicit works in the same thread",
106  "[shared_ptr][atomic]") {
107  auto p = throwing::make_shared<int>(1);
108  auto expected = p;
109  auto desired = throwing::make_shared<int>(2);
110 
111  REQUIRE(atomic_compare_exchange_weak_explicit(&p, &expected, desired,
112  std::memory_order_seq_cst,
113  std::memory_order_seq_cst));
114  REQUIRE(*p == 2);
115 }
116 
117 TEST_CASE("atomic_compare_exchange_strong_explicit works in the same thread, "
118  "compares pointer, not value",
119  "[shared_ptr][atomic]") {
120  auto p = throwing::make_shared<int>(1);
121  auto expected = throwing::make_shared<int>(1);
122  auto desired = throwing::make_shared<int>(3);
123 
124  REQUIRE_FALSE(atomic_compare_exchange_strong_explicit(
125  &p, &expected, desired, std::memory_order_seq_cst,
126  std::memory_order_seq_cst));
127  REQUIRE(*expected == 1);
128 }
TEST_CASE("unique_ptr to array reset to convertible", "[unique_ptr][array][reset][conv.qual]")