/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this file, * You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "mozilla/Assertions.h" #include "mozilla/TypeTraits.h" using mozilla::IsArray; using mozilla::IsBaseOf; using mozilla::IsClass; using mozilla::IsConvertible; using mozilla::IsEmpty; using mozilla::IsLvalueReference; using mozilla::IsReference; using mozilla::IsRvalueReference; using mozilla::IsSame; using mozilla::IsSigned; using mozilla::IsUnsigned; using mozilla::MakeSigned; using mozilla::MakeUnsigned; static_assert(!IsArray::value, "bool not an array"); static_assert(IsArray::value, "bool[] is an array"); static_assert(IsArray::value, "bool[5] is an array"); static_assert(!IsLvalueReference::value, "bool not an lvalue reference"); static_assert(!IsLvalueReference::value, "bool* not an lvalue reference"); static_assert(IsLvalueReference::value, "bool& is an lvalue reference"); static_assert(!IsLvalueReference::value, "bool&& not an lvalue reference"); static_assert(!IsLvalueReference::value, "void not an lvalue reference"); static_assert(!IsLvalueReference::value, "void* not an lvalue reference"); static_assert(!IsLvalueReference::value, "int not an lvalue reference"); static_assert(!IsLvalueReference::value, "int* not an lvalue reference"); static_assert(IsLvalueReference::value, "int& is an lvalue reference"); static_assert(!IsLvalueReference::value, "int&& not an lvalue reference"); static_assert(!IsRvalueReference::value, "bool not an rvalue reference"); static_assert(!IsRvalueReference::value, "bool* not an rvalue reference"); static_assert(!IsRvalueReference::value, "bool& not an rvalue reference"); static_assert(IsRvalueReference::value, "bool&& is an rvalue reference"); static_assert(!IsRvalueReference::value, "void not an rvalue reference"); static_assert(!IsRvalueReference::value, "void* not an rvalue reference"); static_assert(!IsRvalueReference::value, "int not an rvalue reference"); static_assert(!IsRvalueReference::value, "int* not an rvalue reference"); static_assert(!IsRvalueReference::value, "int& not an rvalue reference"); static_assert(IsRvalueReference::value, "int&& is an rvalue reference"); static_assert(!IsReference::value, "bool not a reference"); static_assert(!IsReference::value, "bool* not a reference"); static_assert(IsReference::value, "bool& is a reference"); static_assert(IsReference::value, "bool&& is a reference"); static_assert(!IsReference::value, "void not a reference"); static_assert(!IsReference::value, "void* not a reference"); static_assert(!IsReference::value, "int not a reference"); static_assert(!IsReference::value, "int* not a reference"); static_assert(IsReference::value, "int& is a reference"); static_assert(IsReference::value, "int&& is a reference"); struct S1 {}; union U1 { int x; }; static_assert(!IsClass::value, "int isn't a class"); static_assert(IsClass::value, "S is a class"); static_assert(!IsClass::value, "U isn't a class"); static_assert(!mozilla::IsEmpty::value, "not a class => not empty"); static_assert(!mozilla::IsEmpty::value, "not a class => not empty"); static_assert(!mozilla::IsEmpty::value, "not a class => not empty"); struct E1 {}; struct E2 { int : 0; }; struct E3 : E1 {}; struct E4 : E2 {}; static_assert(IsEmpty::value, "S should be empty"); static_assert(mozilla::IsEmpty::value && mozilla::IsEmpty::value && mozilla::IsEmpty::value && mozilla::IsEmpty::value, "all empty"); union U2 { E1 e1; }; static_assert(!mozilla::IsEmpty::value, "not a class => not empty"); struct NE1 { int x; }; struct NE2 : virtual E1 {}; struct NE3 : E2 { virtual ~NE3() {} }; struct NE4 { virtual void f() {} }; static_assert(!mozilla::IsEmpty::value && !mozilla::IsEmpty::value && !mozilla::IsEmpty::value && !mozilla::IsEmpty::value, "all empty"); static_assert(!IsSigned::value, "bool shouldn't be signed"); static_assert(IsUnsigned::value, "bool should be unsigned"); static_assert(!IsSigned::value, "const bool shouldn't be signed"); static_assert(IsUnsigned::value, "const bool should be unsigned"); static_assert(!IsSigned::value, "volatile bool shouldn't be signed"); static_assert(IsUnsigned::value, "volatile bool should be unsigned"); static_assert(!IsSigned::value, "unsigned char shouldn't be signed"); static_assert(IsUnsigned::value, "unsigned char should be unsigned"); static_assert(IsSigned::value, "signed char should be signed"); static_assert(!IsUnsigned::value, "signed char shouldn't be unsigned"); static_assert(!IsSigned::value, "unsigned short shouldn't be signed"); static_assert(IsUnsigned::value, "unsigned short should be unsigned"); static_assert(IsSigned::value, "short should be signed"); static_assert(!IsUnsigned::value, "short shouldn't be unsigned"); static_assert(!IsSigned::value, "unsigned int shouldn't be signed"); static_assert(IsUnsigned::value, "unsigned int should be unsigned"); static_assert(IsSigned::value, "int should be signed"); static_assert(!IsUnsigned::value, "int shouldn't be unsigned"); static_assert(!IsSigned::value, "unsigned long shouldn't be signed"); static_assert(IsUnsigned::value, "unsigned long should be unsigned"); static_assert(IsSigned::value, "long should be signed"); static_assert(!IsUnsigned::value, "long shouldn't be unsigned"); static_assert(IsSigned::value, "float should be signed"); static_assert(!IsUnsigned::value, "float shouldn't be unsigned"); static_assert(IsSigned::value, "const float should be signed"); static_assert(!IsUnsigned::value, "const float shouldn't be unsigned"); static_assert(IsSigned::value, "double should be signed"); static_assert(!IsUnsigned::value, "double shouldn't be unsigned"); static_assert(IsSigned::value, "volatile double should be signed"); static_assert(!IsUnsigned::value, "volatile double shouldn't be unsigned"); static_assert(IsSigned::value, "long double should be signed"); static_assert(!IsUnsigned::value, "long double shouldn't be unsigned"); static_assert(IsSigned::value, "const volatile long double should be signed"); static_assert(!IsUnsigned::value, "const volatile long double shouldn't be unsigned"); namespace CPlusPlus11IsBaseOf { // Adapted from C++11 ยง 20.9.6. struct B {}; struct B1 : B {}; struct B2 : B {}; struct D : private B1, private B2 {}; static void StandardIsBaseOfTests() { static_assert((IsBaseOf::value) == true, "IsBaseOf fails on diamond"); static_assert((IsBaseOf::value) == true, "IsBaseOf fails on diamond plus constness change"); static_assert((IsBaseOf::value) == true, "IsBaseOf fails on diamond plus constness change"); static_assert((IsBaseOf::value) == true, "IsBaseOf fails on constness change"); static_assert((IsBaseOf::value) == false, "IsBaseOf got the direction of inheritance wrong"); static_assert((IsBaseOf::value) == false, "IsBaseOf should return false on references"); static_assert((IsBaseOf::value) == false, "IsBaseOf should return false on arrays"); // We fail at the following test. To fix it, we need to specialize IsBaseOf // for all built-in types. // static_assert((IsBaseOf::value) == false); } } /* namespace CPlusPlus11IsBaseOf */ class A { }; class B : public A { }; class C : private A { }; class D { }; class E : public A { }; class F : public B, public E { }; static void TestIsBaseOf() { static_assert((IsBaseOf::value), "A is a base of B"); static_assert((!IsBaseOf::value), "B is not a base of A"); static_assert((IsBaseOf::value), "A is a base of C"); static_assert((!IsBaseOf::value), "C is not a base of A"); static_assert((IsBaseOf::value), "A is a base of F"); static_assert((!IsBaseOf::value), "F is not a base of A"); static_assert((!IsBaseOf::value), "A is not a base of D"); static_assert((!IsBaseOf::value), "D is not a base of A"); static_assert((IsBaseOf::value), "B is the same as B (and therefore, a base of B)"); } static void TestIsConvertible() { // Pointer type convertibility static_assert((IsConvertible::value), "A* should convert to A*"); static_assert((IsConvertible::value), "B* should convert to A*"); static_assert((!IsConvertible::value), "A* shouldn't convert to B*"); static_assert((!IsConvertible::value), "A* shouldn't convert to C*"); static_assert((!IsConvertible::value), "A* shouldn't convert to unrelated D*"); static_assert((!IsConvertible::value), "D* shouldn't convert to unrelated A*"); // Instance type convertibility static_assert((IsConvertible::value), "A is A"); static_assert((IsConvertible::value), "B converts to A"); static_assert((!IsConvertible::value), "D and A are unrelated"); static_assert((!IsConvertible::value), "A and D are unrelated"); // These cases seem to require C++11 support to properly implement them, so // for now just disable them. //static_assert((!IsConvertible::value), // "C* shouldn't convert to A* (private inheritance)"); //static_assert((!IsConvertible::value), // "C doesn't convert to A (private inheritance)"); } static_assert(IsSame::Type, const signed char>::value, "const unsigned char won't signify correctly"); static_assert(IsSame::Type, volatile signed short>::value, "volatile unsigned short won't signify correctly"); static_assert(IsSame::Type, const volatile signed int>::value, "const volatile unsigned int won't signify correctly"); static_assert(IsSame::Type, signed long>::value, "unsigned long won't signify correctly"); static_assert(IsSame::Type, const signed char>::value, "const signed char won't signify correctly"); static_assert(IsSame::Type, volatile signed short>::value, "volatile signed short won't signify correctly"); static_assert(IsSame::Type, const volatile signed int>::value, "const volatile signed int won't signify correctly"); static_assert(IsSame::Type, signed long>::value, "signed long won't signify correctly"); static_assert(IsSame::Type, signed char>::value, "char won't signify correctly"); static_assert(IsSame::Type, volatile signed char>::value, "volatile char won't signify correctly"); static_assert(IsSame::Type, const signed char>::value, "const char won't signify correctly"); static_assert(IsSame::Type, const unsigned char>::value, "const signed char won't unsignify correctly"); static_assert(IsSame::Type, volatile unsigned short>::value, "volatile signed short won't unsignify correctly"); static_assert(IsSame::Type, const volatile unsigned int>::value, "const volatile signed int won't unsignify correctly"); static_assert(IsSame::Type, unsigned long>::value, "signed long won't unsignify correctly"); static_assert(IsSame::Type, const unsigned char>::value, "const unsigned char won't unsignify correctly"); static_assert(IsSame::Type, volatile unsigned short>::value, "volatile unsigned short won't unsignify correctly"); static_assert(IsSame::Type, const volatile unsigned int>::value, "const volatile unsigned int won't unsignify correctly"); static_assert(IsSame::Type, unsigned long>::value, "signed long won't unsignify correctly"); static_assert(IsSame::Type, unsigned char>::value, "char won't unsignify correctly"); static_assert(IsSame::Type, volatile unsigned char>::value, "volatile char won't unsignify correctly"); static_assert(IsSame::Type, const unsigned char>::value, "const char won't unsignify correctly"); int main() { CPlusPlus11IsBaseOf::StandardIsBaseOfTests(); TestIsBaseOf(); TestIsConvertible(); }