folly copyright 2015 -> copyright 2016
[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
21 #include <glog/logging.h>
22 #include <gtest/gtest.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 template <std::size_t> struct T {};
37 template <std::size_t> struct S {};
38 template <std::size_t> struct P {};
39
40 TEST(as_stl_allocator, sanity_check) {
41   typedef StlAllocator<SysArena, int> stl_arena_alloc;
42
43   EXPECT_TRUE((std::is_same<
44     as_stl_allocator<int, SysArena>::type,
45     stl_arena_alloc
46   >::value));
47
48   EXPECT_TRUE((std::is_same<
49     as_stl_allocator<int, stl_arena_alloc>::type,
50     stl_arena_alloc
51   >::value));
52 }
53
54 TEST(StlAllocator, void_allocator) {
55   typedef StlAllocator<SysArena, void> void_allocator;
56   SysArena arena;
57   void_allocator valloc(&arena);
58
59   typedef void_allocator::rebind<int>::other int_allocator;
60   int_allocator ialloc(valloc);
61
62   auto i = std::allocate_shared<int>(ialloc, 10);
63   ASSERT_NE(nullptr, i.get());
64   EXPECT_EQ(10, *i);
65   i.reset();
66   ASSERT_EQ(nullptr, i.get());
67 }
68
69 TEST(rebind_allocator, sanity_check) {
70   std::allocator<long> alloc;
71
72   auto i = std::allocate_shared<int>(
73     rebind_allocator<int, decltype(alloc)>(alloc), 10
74   );
75   ASSERT_NE(nullptr, i.get());
76   EXPECT_EQ(10, *i);
77   i.reset();
78   ASSERT_EQ(nullptr, i.get());
79
80   auto d = std::allocate_shared<double>(
81     rebind_allocator<double>(alloc), 5.6
82   );
83   ASSERT_NE(nullptr, d.get());
84   EXPECT_EQ(5.6, *d);
85   d.reset();
86   ASSERT_EQ(nullptr, d.get());
87
88   auto s = std::allocate_shared<std::string>(
89     rebind_allocator<std::string>(alloc), "HELLO, WORLD"
90   );
91   ASSERT_NE(nullptr, s.get());
92   EXPECT_EQ("HELLO, WORLD", *s);
93   s.reset();
94   ASSERT_EQ(nullptr, s.get());
95 }
96
97 int main(int argc, char **argv) {
98   FLAGS_logtostderr = true;
99   google::InitGoogleLogging(argv[0]);
100   testing::InitGoogleTest(&argc, argv);
101
102   return RUN_ALL_TESTS();
103 }