Fix SimpleBarrier
[folly.git] / folly / test / MemoryTest.cpp
1 /*
2  * Copyright 2016 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <folly/Memory.h>
18 #include <folly/Arena.h>
19 #include <folly/String.h>
20 #include <folly/portability/GTest.h>
21
22 #include <glog/logging.h>
23
24 #include <type_traits>
25
26 using namespace folly;
27
28 TEST(make_unique, compatible_with_std_make_unique) {
29   //  HACK: To enforce that `folly::` is imported here.
30   to_shared_ptr(std::unique_ptr<std::string>());
31
32   using namespace std;
33   make_unique<string>("hello, world");
34 }
35
36 TEST(allocate_sys_buffer, compiles) {
37   auto buf = allocate_sys_buffer(256);
38   //  Freed at the end of the scope.
39 }
40
41 template <std::size_t> struct T {};
42 template <std::size_t> struct S {};
43 template <std::size_t> struct P {};
44
45 TEST(as_stl_allocator, sanity_check) {
46   typedef StlAllocator<SysArena, int> stl_arena_alloc;
47
48   EXPECT_TRUE((std::is_same<
49     as_stl_allocator<int, SysArena>::type,
50     stl_arena_alloc
51   >::value));
52
53   EXPECT_TRUE((std::is_same<
54     as_stl_allocator<int, stl_arena_alloc>::type,
55     stl_arena_alloc
56   >::value));
57 }
58
59 TEST(StlAllocator, void_allocator) {
60   typedef StlAllocator<SysArena, void> void_allocator;
61   SysArena arena;
62   void_allocator valloc(&arena);
63
64   typedef void_allocator::rebind<int>::other int_allocator;
65   int_allocator ialloc(valloc);
66
67   auto i = std::allocate_shared<int>(ialloc, 10);
68   ASSERT_NE(nullptr, i.get());
69   EXPECT_EQ(10, *i);
70   i.reset();
71   ASSERT_EQ(nullptr, i.get());
72 }
73
74 TEST(rebind_allocator, sanity_check) {
75   std::allocator<long> alloc;
76
77   auto i = std::allocate_shared<int>(
78     rebind_allocator<int, decltype(alloc)>(alloc), 10
79   );
80   ASSERT_NE(nullptr, i.get());
81   EXPECT_EQ(10, *i);
82   i.reset();
83   ASSERT_EQ(nullptr, i.get());
84
85   auto d = std::allocate_shared<double>(
86     rebind_allocator<double>(alloc), 5.6
87   );
88   ASSERT_NE(nullptr, d.get());
89   EXPECT_EQ(5.6, *d);
90   d.reset();
91   ASSERT_EQ(nullptr, d.get());
92
93   auto s = std::allocate_shared<std::string>(
94     rebind_allocator<std::string>(alloc), "HELLO, WORLD"
95   );
96   ASSERT_NE(nullptr, s.get());
97   EXPECT_EQ("HELLO, WORLD", *s);
98   s.reset();
99   ASSERT_EQ(nullptr, s.get());
100 }