summaryrefslogtreecommitdiffstats
path: root/base/template_util_unittest.cc
blob: ea5f0ff8a676675e8ddf4637860c05d7473806ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/template_util.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace base {
namespace {

struct AStruct {};
class AClass {};
enum AnEnum {};

class Parent {};
class Child : public Parent {};

TEST(TemplateUtilTest, IsPointer) {
  EXPECT_FALSE(is_pointer<int>::value);
  EXPECT_FALSE(is_pointer<int&>::value);
  EXPECT_TRUE(is_pointer<int*>::value);
  EXPECT_TRUE(is_pointer<const int*>::value);
}

TEST(TemplateUtilTest, IsArray) {
  EXPECT_FALSE(is_array<int>::value);
  EXPECT_FALSE(is_array<int*>::value);
  EXPECT_FALSE(is_array<int(*)[3]>::value);
  EXPECT_TRUE(is_array<int[]>::value);
  EXPECT_TRUE(is_array<const int[]>::value);
  EXPECT_TRUE(is_array<int[3]>::value);
}

TEST(TemplateUtilTest, IsNonConstReference) {
  EXPECT_FALSE(is_non_const_reference<int>::value);
  EXPECT_FALSE(is_non_const_reference<const int&>::value);
  EXPECT_TRUE(is_non_const_reference<int&>::value);
}

TEST(TemplateUtilTest, IsConvertible) {
  // Extra parens needed to make EXPECT_*'s parsing happy. Otherwise,
  // it sees the equivalent of
  //
  //  EXPECT_TRUE( (is_convertible < Child), (Parent > ::value));
  //
  // Silly C++.
  EXPECT_TRUE( (is_convertible<Child, Parent>::value) );
  EXPECT_FALSE( (is_convertible<Parent, Child>::value) );
  EXPECT_FALSE( (is_convertible<Parent, AStruct>::value) );

  EXPECT_TRUE( (is_convertible<int, double>::value) );
  EXPECT_TRUE( (is_convertible<int*, void*>::value) );
  EXPECT_FALSE( (is_convertible<void*, int*>::value) );
}

TEST(TemplateUtilTest, IsClass) {
  EXPECT_TRUE(is_class<AStruct>::value);
  EXPECT_TRUE(is_class<AClass>::value);

  EXPECT_FALSE(is_class<AnEnum>::value);
  EXPECT_FALSE(is_class<int>::value);
  EXPECT_FALSE(is_class<char*>::value);
  EXPECT_FALSE(is_class<int&>::value);
  EXPECT_FALSE(is_class<char[3]>::value);
}

}  // namespace
}  // namespace base