From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- mfbt/tests/TestEnumTypeTraits.cpp | 159 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 159 insertions(+) create mode 100644 mfbt/tests/TestEnumTypeTraits.cpp (limited to 'mfbt/tests/TestEnumTypeTraits.cpp') diff --git a/mfbt/tests/TestEnumTypeTraits.cpp b/mfbt/tests/TestEnumTypeTraits.cpp new file mode 100644 index 0000000000..1065c92a7b --- /dev/null +++ b/mfbt/tests/TestEnumTypeTraits.cpp @@ -0,0 +1,159 @@ +/* -*- 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/EnumTypeTraits.h" + +#include + +using namespace mozilla; + +/* Feature check for EnumTypeFitsWithin. */ + +#define MAKE_FIXED_EMUM_FOR_TYPE(IntType) \ + enum FixedEnumFor_##IntType : IntType{ \ + A_##IntType, \ + B_##IntType, \ + C_##IntType, \ + }; + +template +static void TestShouldFit() { + static_assert(EnumTypeFitsWithin::value, + "Should fit within exact/promoted integral type"); +} + +template +static void TestShouldNotFit() { + static_assert(!EnumTypeFitsWithin::value, + "Should not fit within"); +} + +void TestFitForTypes() { + // check for int8_t + MAKE_FIXED_EMUM_FOR_TYPE(int8_t); + TestShouldFit(); + TestShouldFit(); + TestShouldFit(); + TestShouldFit(); + + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldNotFit(); + + // check for uint8_t + MAKE_FIXED_EMUM_FOR_TYPE(uint8_t); + TestShouldFit(); + TestShouldFit(); + TestShouldFit(); + TestShouldFit(); + + TestShouldNotFit(); + TestShouldFit(); + TestShouldFit(); + TestShouldFit(); + + // check for int16_t + MAKE_FIXED_EMUM_FOR_TYPE(int16_t); + TestShouldNotFit(); + TestShouldFit(); + TestShouldFit(); + TestShouldFit(); + + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldNotFit(); + + // check for uint16_t + MAKE_FIXED_EMUM_FOR_TYPE(uint16_t); + TestShouldNotFit(); + TestShouldFit(); + TestShouldFit(); + TestShouldFit(); + + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldFit(); + TestShouldFit(); + + // check for int32_t + MAKE_FIXED_EMUM_FOR_TYPE(int32_t); + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldFit(); + TestShouldFit(); + + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldNotFit(); + + // check for uint32_t + MAKE_FIXED_EMUM_FOR_TYPE(uint32_t); + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldFit(); + TestShouldFit(); + + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldFit(); + + // check for int64_t + MAKE_FIXED_EMUM_FOR_TYPE(int64_t); + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldFit(); + + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldNotFit(); + + // check for uint64_t + MAKE_FIXED_EMUM_FOR_TYPE(uint64_t); + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldFit(); + + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldNotFit(); + TestShouldNotFit(); +} + +// - + +template +static constexpr void AssertSameTypeAndValue(T a, U b) { + static_assert(std::is_same_v); + MOZ_ASSERT(a == b); +} + +void TestUnderlyingValue() { + enum class Pet : int16_t { Cat, Dog, Fish }; + enum class Plant { Flower, Tree, Vine }; + + AssertSameTypeAndValue(UnderlyingValue(Pet::Cat), int16_t(0)); + AssertSameTypeAndValue(UnderlyingValue(Pet::Dog), int16_t(1)); + AssertSameTypeAndValue(UnderlyingValue(Pet::Fish), int16_t(2)); + + AssertSameTypeAndValue(UnderlyingValue(Plant::Flower), int(0)); + AssertSameTypeAndValue(UnderlyingValue(Plant::Tree), int(1)); + AssertSameTypeAndValue(UnderlyingValue(Plant::Vine), int(2)); +} + +// - + +int main() { + TestFitForTypes(); + TestUnderlyingValue(); + return 0; +} -- cgit v1.2.3