1bf74382cdc1623fcff246495bdfe602a342bf39
[folly.git] / folly / portability / test / ConstexprTest.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/portability/Constexpr.h>
18
19 #include <gtest/gtest.h>
20
21 namespace {
22
23 class ConstexprTest : public testing::Test {};
24 }
25
26 TEST_F(ConstexprTest, constexpr_abs_unsigned) {
27   constexpr auto v = uint32_t(17);
28   constexpr auto a = folly::constexpr_abs(v);
29   EXPECT_EQ(17, a);
30   EXPECT_TRUE((std::is_same<const uint32_t, decltype(a)>::value));
31 }
32
33 TEST_F(ConstexprTest, constexpr_abs_signed_positive) {
34   constexpr auto v = int32_t(17);
35   constexpr auto a = folly::constexpr_abs(v);
36   EXPECT_EQ(17, a);
37   EXPECT_TRUE((std::is_same<const uint32_t, decltype(a)>::value));
38 }
39
40 TEST_F(ConstexprTest, constexpr_abs_signed_negative) {
41   constexpr auto v = int32_t(-17);
42   constexpr auto a = folly::constexpr_abs(v);
43   EXPECT_EQ(17, a);
44   EXPECT_TRUE((std::is_same<const uint32_t, decltype(a)>::value));
45 }
46
47 TEST_F(ConstexprTest, constexpr_abs_float_positive) {
48   constexpr auto v = 17.5f;
49   constexpr auto a = folly::constexpr_abs(v);
50   EXPECT_EQ(17.5, a);
51   EXPECT_TRUE((std::is_same<const float, decltype(a)>::value));
52 }
53
54 TEST_F(ConstexprTest, constexpr_abs_float_negative) {
55   constexpr auto v = -17.5f;
56   constexpr auto a = folly::constexpr_abs(v);
57   EXPECT_EQ(17.5, a);
58   EXPECT_TRUE((std::is_same<const float, decltype(a)>::value));
59 }
60
61 TEST_F(ConstexprTest, constexpr_abs_double_positive) {
62   constexpr auto v = 17.5;
63   constexpr auto a = folly::constexpr_abs(v);
64   EXPECT_EQ(17.5, a);
65   EXPECT_TRUE((std::is_same<const double, decltype(a)>::value));
66 }
67
68 TEST_F(ConstexprTest, constexpr_abs_double_negative) {
69   constexpr auto v = -17.5;
70   constexpr auto a = folly::constexpr_abs(v);
71   EXPECT_EQ(17.5, a);
72   EXPECT_TRUE((std::is_same<const double, decltype(a)>::value));
73 }