-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[libc] Add type_traits tests #65956
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
[libc] Add type_traits tests #65956
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,300 @@ | ||
//===-- Unittests for type_traits -----------------------------------------===// | ||
// | ||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
// See https://llvm.org/LICENSE.txt for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#include "src/__support/CPP/type_traits.h" | ||
#include "test/UnitTest/Test.h" | ||
|
||
// TODO: Split this file if it becomes too big. | ||
|
||
namespace __llvm_libc::cpp { | ||
|
||
class Class {}; | ||
union Union {}; | ||
struct Struct {}; | ||
enum Enum {}; | ||
enum class EnumClass {}; | ||
|
||
using UnqualObjectTypes = testing::TypeList<int, float, Class, Union, Struct>; | ||
|
||
TYPED_TEST(LlvmLibcTypeTraitsTest, add_lvalue_reference, UnqualObjectTypes) { | ||
// non-ref cv, adds ref | ||
EXPECT_TRUE((is_same_v<add_lvalue_reference_t<T>, T &>)); | ||
EXPECT_TRUE((is_same_v<add_lvalue_reference_t<const T>, const T &>)); | ||
EXPECT_TRUE((is_same_v<add_lvalue_reference_t<volatile T>, volatile T &>)); | ||
EXPECT_TRUE(( | ||
is_same_v<add_lvalue_reference_t<const volatile T>, const volatile T &>)); | ||
|
||
// pointer cv, adds ref | ||
EXPECT_TRUE((is_same_v<add_lvalue_reference_t<T *>, T *&>)); | ||
EXPECT_TRUE((is_same_v<add_lvalue_reference_t<const T *>, const T *&>)); | ||
EXPECT_TRUE((is_same_v<add_lvalue_reference_t<volatile T *>, volatile T *&>)); | ||
EXPECT_TRUE((is_same_v<add_lvalue_reference_t<const volatile T *>, | ||
const volatile T *&>)); | ||
|
||
// ref cv, returns same type | ||
EXPECT_TRUE((is_same_v<add_lvalue_reference_t<T &>, T &>)); | ||
EXPECT_TRUE((is_same_v<add_lvalue_reference_t<const T &>, const T &>)); | ||
EXPECT_TRUE((is_same_v<add_lvalue_reference_t<volatile T &>, volatile T &>)); | ||
EXPECT_TRUE((is_same_v<add_lvalue_reference_t<const volatile T &>, | ||
const volatile T &>)); | ||
} | ||
|
||
TEST(LlvmLibcTypeTraitsTest, add_lvalue_reference_void) { | ||
// void cannot be referenced | ||
EXPECT_TRUE((is_same_v<add_lvalue_reference_t<void>, void>)); | ||
EXPECT_TRUE((is_same_v<add_lvalue_reference_t<const void>, const void>)); | ||
EXPECT_TRUE( | ||
(is_same_v<add_lvalue_reference_t<volatile void>, volatile void>)); | ||
EXPECT_TRUE((is_same_v<add_lvalue_reference_t<const volatile void>, | ||
const volatile void>)); | ||
} | ||
|
||
TYPED_TEST(LlvmLibcTypeTraitsTest, add_pointer, UnqualObjectTypes) { | ||
// object types -> pointer type | ||
EXPECT_TRUE((is_same_v<add_pointer_t<T>, T *>)); | ||
gchatelet marked this conversation as resolved.
Show resolved
Hide resolved
|
||
EXPECT_TRUE((is_same_v<add_pointer_t<const T>, const T *>)); | ||
EXPECT_TRUE((is_same_v<add_pointer_t<volatile T>, volatile T *>)); | ||
EXPECT_TRUE((is_same_v<add_pointer_t<const volatile T>, const volatile T *>)); | ||
|
||
// pointer types -> pointer type | ||
EXPECT_TRUE((is_same_v<add_pointer_t<T *>, T **>)); | ||
EXPECT_TRUE((is_same_v<add_pointer_t<const T *>, const T **>)); | ||
EXPECT_TRUE((is_same_v<add_pointer_t<volatile T *>, volatile T **>)); | ||
EXPECT_TRUE( | ||
(is_same_v<add_pointer_t<const volatile T *>, const volatile T **>)); | ||
|
||
// reference type -> pointer type | ||
EXPECT_TRUE((is_same_v<add_pointer_t<T &>, T *>)); | ||
EXPECT_TRUE((is_same_v<add_pointer_t<const T &>, const T *>)); | ||
EXPECT_TRUE((is_same_v<add_pointer_t<volatile T &>, volatile T *>)); | ||
EXPECT_TRUE( | ||
(is_same_v<add_pointer_t<const volatile T &>, const volatile T *>)); | ||
} | ||
|
||
TEST(LlvmLibcTypeTraitsTest, add_pointer_void) { | ||
// void -> pointer type | ||
EXPECT_TRUE((is_same_v<add_pointer_t<void>, void *>)); | ||
EXPECT_TRUE((is_same_v<add_pointer_t<const void>, const void *>)); | ||
EXPECT_TRUE((is_same_v<add_pointer_t<volatile void>, volatile void *>)); | ||
EXPECT_TRUE( | ||
(is_same_v<add_pointer_t<const volatile void>, const volatile void *>)); | ||
} | ||
|
||
TYPED_TEST(LlvmLibcTypeTraitsTest, add_rvalue_reference, UnqualObjectTypes) { | ||
|
||
// non-ref cv, adds ref | ||
EXPECT_TRUE((is_same_v<add_rvalue_reference_t<T>, T &&>)); | ||
EXPECT_TRUE((is_same_v<add_rvalue_reference_t<const T>, const T &&>)); | ||
EXPECT_TRUE((is_same_v<add_rvalue_reference_t<volatile T>, volatile T &&>)); | ||
EXPECT_TRUE((is_same_v<add_rvalue_reference_t<const volatile T>, | ||
const volatile T &&>)); | ||
|
||
// ref cv, returns same type | ||
EXPECT_TRUE((is_same_v<add_rvalue_reference_t<T &>, T &>)); | ||
EXPECT_TRUE((is_same_v<add_rvalue_reference_t<const T &>, const T &>)); | ||
EXPECT_TRUE((is_same_v<add_rvalue_reference_t<volatile T &>, volatile T &>)); | ||
EXPECT_TRUE((is_same_v<add_rvalue_reference_t<const volatile T &>, | ||
const volatile T &>)); | ||
} | ||
|
||
TEST(LlvmLibcTypeTraitsTest, add_rvalue_reference_void) { | ||
// void cannot be referenced | ||
EXPECT_TRUE((is_same_v<add_rvalue_reference_t<void>, void>)); | ||
EXPECT_TRUE((is_same_v<add_rvalue_reference_t<const void>, const void>)); | ||
EXPECT_TRUE( | ||
(is_same_v<add_rvalue_reference_t<volatile void>, volatile void>)); | ||
EXPECT_TRUE((is_same_v<add_rvalue_reference_t<const volatile void>, | ||
const volatile void>)); | ||
} | ||
|
||
TEST(LlvmLibcTypeTraitsTest, bool_constant) { | ||
EXPECT_TRUE((bool_constant<true>::value)); | ||
legrosbuffle marked this conversation as resolved.
Show resolved
Hide resolved
|
||
EXPECT_FALSE((bool_constant<false>::value)); | ||
} | ||
|
||
TEST(LlvmLibcTypeTraitsTest, conditional_t) { | ||
EXPECT_TRUE((is_same_v<conditional_t<true, int, float>, int>)); | ||
EXPECT_TRUE((is_same_v<conditional_t<false, int, float>, float>)); | ||
} | ||
|
||
TEST(LlvmLibcTypeTraitsTest, decay) { | ||
EXPECT_TRUE((is_same_v<decay_t<int>, int>)); | ||
|
||
// array decay | ||
EXPECT_TRUE((is_same_v<decay_t<int[2]>, int *>)); | ||
EXPECT_TRUE((is_same_v<decay_t<int[2]>, int *>)); | ||
EXPECT_TRUE((is_same_v<decay_t<int[2][4]>, int(*)[4]>)); | ||
|
||
// cv ref decay | ||
EXPECT_TRUE((is_same_v<decay_t<int &>, int>)); | ||
EXPECT_TRUE((is_same_v<decay_t<const int &>, int>)); | ||
EXPECT_TRUE((is_same_v<decay_t<volatile int &>, int>)); | ||
EXPECT_TRUE((is_same_v<decay_t<const volatile int &>, int>)); | ||
} | ||
|
||
// TODO enable_if | ||
|
||
TEST(LlvmLibcTypeTraitsTest, false_type) { EXPECT_FALSE((false_type::value)); } | ||
|
||
TEST(LlvmLibcTypeTraitsTest, integral_constant) { | ||
EXPECT_EQ((integral_constant<int, 4>::value), 4); | ||
legrosbuffle marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
using IntegralAndFloatingTypes = | ||
testing::TypeList<bool, char, short, int, long, long long, unsigned char, | ||
unsigned short, unsigned int, unsigned long, | ||
unsigned long long, float, double, long double>; | ||
|
||
TYPED_TEST(LlvmLibcTypeTraitsTest, is_arithmetic, IntegralAndFloatingTypes) { | ||
EXPECT_TRUE((is_arithmetic_v<T>)); | ||
EXPECT_TRUE((is_arithmetic_v<const T>)); | ||
EXPECT_TRUE((is_arithmetic_v<volatile T>)); | ||
EXPECT_TRUE((is_arithmetic_v<const volatile T>)); | ||
|
||
EXPECT_FALSE((is_arithmetic_v<T *>)); | ||
EXPECT_FALSE((is_arithmetic_v<T &>)); | ||
} | ||
|
||
TEST(LlvmLibcTypeTraitsTest, is_arithmetic_non_integral) { | ||
EXPECT_FALSE((is_arithmetic_v<Union>)); | ||
EXPECT_FALSE((is_arithmetic_v<Class>)); | ||
EXPECT_FALSE((is_arithmetic_v<Struct>)); | ||
EXPECT_FALSE((is_arithmetic_v<Enum>)); | ||
} | ||
|
||
TEST(LlvmLibcTypeTraitsTest, is_array) { | ||
EXPECT_FALSE((is_array_v<int>)); | ||
EXPECT_FALSE((is_array_v<float>)); | ||
EXPECT_FALSE((is_array_v<Struct>)); | ||
EXPECT_FALSE((is_array_v<int *>)); | ||
|
||
EXPECT_TRUE((is_array_v<Class[]>)); | ||
EXPECT_TRUE((is_array_v<Union[4]>)); | ||
gchatelet marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
TEST(LlvmLibcTypeTraitsTest, is_base_of) { | ||
gchatelet marked this conversation as resolved.
Show resolved
Hide resolved
|
||
struct A {}; | ||
EXPECT_TRUE((is_base_of_v<A, A>)); | ||
|
||
// Test public, protected and private inheritance. | ||
struct B : public A {}; | ||
EXPECT_TRUE((is_base_of_v<A, B>)); | ||
EXPECT_FALSE((is_base_of_v<B, A>)); | ||
|
||
struct C : protected A {}; | ||
EXPECT_TRUE((is_base_of_v<A, C>)); | ||
EXPECT_FALSE((is_base_of_v<C, A>)); | ||
|
||
struct D : private A {}; | ||
EXPECT_TRUE((is_base_of_v<A, D>)); | ||
EXPECT_FALSE((is_base_of_v<D, A>)); | ||
|
||
// Test inheritance chain. | ||
struct E : private B {}; | ||
EXPECT_TRUE((is_base_of_v<A, E>)); | ||
} | ||
|
||
TEST(LlvmLibcTypeTraitsTest, is_class) { | ||
gchatelet marked this conversation as resolved.
Show resolved
Hide resolved
|
||
EXPECT_TRUE((is_class_v<Struct>)); | ||
EXPECT_TRUE((is_class_v<Class>)); | ||
|
||
// Pointer or ref do not qualify. | ||
EXPECT_FALSE((is_class_v<Class *>)); | ||
EXPECT_FALSE((is_class_v<Class &>)); | ||
|
||
// Neither other types. | ||
EXPECT_FALSE((is_class_v<Union>)); | ||
EXPECT_FALSE((is_class_v<int>)); | ||
EXPECT_FALSE((is_class_v<EnumClass>)); | ||
} | ||
|
||
TYPED_TEST(LlvmLibcTypeTraitsTest, is_const, UnqualObjectTypes) { | ||
gchatelet marked this conversation as resolved.
Show resolved
Hide resolved
|
||
EXPECT_FALSE((is_const_v<T>)); | ||
EXPECT_TRUE((is_const_v<const T>)); | ||
|
||
using Aliased = const T; | ||
EXPECT_TRUE((is_const_v<Aliased>)); | ||
} | ||
|
||
// TODO is_convertible | ||
|
||
TYPED_TEST(LlvmLibcTypeTraitsTest, is_destructible, UnqualObjectTypes) { | ||
EXPECT_TRUE((is_destructible_v<T>)); | ||
} | ||
TEST(LlvmLibcTypeTraitsTest, is_destructible_no_destructor) { | ||
struct S { | ||
~S() = delete; | ||
}; | ||
EXPECT_FALSE((is_destructible_v<S>)); | ||
} | ||
|
||
TYPED_TEST(LlvmLibcTypeTraitsTest, is_enum, UnqualObjectTypes) { | ||
EXPECT_FALSE((is_enum_v<T>)); | ||
} | ||
TEST(LlvmLibcTypeTraitsTest, is_enum_enum) { | ||
EXPECT_TRUE((is_enum_v<Enum>)); | ||
EXPECT_TRUE((is_enum_v<EnumClass>)); | ||
} | ||
|
||
// TODO is_floating_point | ||
|
||
// TODO is_function | ||
|
||
// TODO is_integral | ||
|
||
// TODO is_lvalue_reference | ||
|
||
// TODO is_member_pointer | ||
|
||
// TODO is_null_pointer | ||
|
||
// TODO is_pointer | ||
|
||
// TODO is_reference | ||
|
||
// TODO is_rvalue_reference | ||
|
||
// TODO is_same | ||
|
||
// TODO is_scalar | ||
|
||
// TODO is_signed | ||
|
||
// TODO is_trivially_constructible | ||
|
||
// TODO is_trivially_copyable | ||
|
||
// TODO is_trivially_destructible | ||
|
||
// TODO is_union | ||
|
||
// TODO is_unsigned | ||
|
||
// TODO is_void | ||
|
||
// TODO make_signed | ||
|
||
// TODO make_unsigned | ||
|
||
// TODO remove_all_extents | ||
|
||
// TODO remove_cv | ||
|
||
// TODO remove_cvref | ||
|
||
// TODO remove_extent | ||
|
||
// TODO remove_reference | ||
|
||
TEST(LlvmLibcTypeTraitsTest, true_type) { EXPECT_TRUE((true_type::value)); } | ||
|
||
// TODO type_identity | ||
|
||
// TODO void_t | ||
|
||
} // namespace __llvm_libc::cpp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.