Making StlAllocator<Alloc, void> usable when rebinding.
[folly.git] / folly / test / MemoryTest.cpp
1 /*
2  * Copyright 2013 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 template <std::size_t> struct T {};
29 template <std::size_t> struct S {};
30 template <std::size_t> struct P {};
31
32 TEST(as_stl_allocator, sanity_check) {
33   typedef StlAllocator<SysArena, int> stl_arena_alloc;
34
35   EXPECT_TRUE((std::is_same<
36     as_stl_allocator<int, SysArena>::type,
37     stl_arena_alloc
38   >::value));
39
40   EXPECT_TRUE((std::is_same<
41     as_stl_allocator<int, stl_arena_alloc>::type,
42     stl_arena_alloc
43   >::value));
44 }
45
46 TEST(StlAllocator, void_allocator) {
47   typedef StlAllocator<SysArena, void> void_allocator;
48   SysArena arena;
49   void_allocator valloc(&arena);
50
51   typedef void_allocator::rebind<int>::other int_allocator;
52   int_allocator ialloc(valloc);
53
54   auto i = std::allocate_shared<int>(ialloc, 10);
55   ASSERT_NE(nullptr, i.get());
56   EXPECT_EQ(10, *i);
57   i.reset();
58   ASSERT_EQ(nullptr, i.get());
59 }
60
61 int main(int argc, char **argv) {
62   FLAGS_logtostderr = true;
63   google::InitGoogleLogging(argv[0]);
64   testing::InitGoogleTest(&argc, argv);
65
66   return RUN_ALL_TESTS();
67 }