-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
138 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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,24 @@ | ||
add_library(literals_zs STATIC ${TEST_ZS_ROOT}/literals.zs) | ||
zserio_generate_cpp( | ||
TARGET literals_zs | ||
SRC_DIR ${TEST_ZS_ROOT} | ||
GEN_DIR ${CMAKE_CURRENT_BINARY_DIR}/gen | ||
EXTRA_ARGS ${ZSERIO_EXTRA_ARGS} | ||
GENERATED_SOURCES_VAR GENERATED_SOURCES | ||
OUTPUT_VAR ZSERIO_LOG | ||
ERROR_VAR ZSERIO_LOG | ||
) | ||
target_link_libraries(literals_zs PUBLIC ZserioCpp17Runtime) | ||
if (ZSERIO_LOG) | ||
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/zserio_log.txt "${ZSERIO_LOG}") | ||
check_zserio_warnings("${ZSERIO_LOG}" 0) | ||
endif () | ||
|
||
add_custom_test(literals | ||
DEPENDS | ||
literals_zs | ||
SOURCES | ||
${CMAKE_CURRENT_SOURCE_DIR}/cpp/LiteralsTest.cpp | ||
GENERATED_SOURCES | ||
${GENERATED_SOURCES} | ||
) |
This file contains 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,2 @@ | ||
readability-uppercase-literal-suffix:gen/literals/FLOAT16.h | ||
readability-uppercase-literal-suffix:gen/literals/FLOAT32.h |
This file contains 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,112 @@ | ||
#include <string_view> | ||
|
||
#include "gtest/gtest.h" | ||
#include "literals/BINARY_NEGATIVE.h" | ||
#include "literals/BINARY_POSITIVE.h" | ||
#include "literals/BINARY_POSITIVE_WITH_CAPITAL_B.h" | ||
#include "literals/BINARY_POSITIVE_WITH_SIGN.h" | ||
#include "literals/BOOLEAN_FALSE.h" | ||
#include "literals/BOOLEAN_TRUE.h" | ||
#include "literals/DECIMAL_NEGATIVE.h" | ||
#include "literals/DECIMAL_POSITIVE.h" | ||
#include "literals/DECIMAL_POSITIVE_WITH_SIGN.h" | ||
#include "literals/DECIMAL_ZERO.h" | ||
#include "literals/FLOAT16.h" | ||
#include "literals/FLOAT32.h" | ||
#include "literals/FLOAT64.h" | ||
#include "literals/HEXADECIMAL_NEGATIVE.h" | ||
#include "literals/HEXADECIMAL_POSITIVE.h" | ||
#include "literals/HEXADECIMAL_POSITIVE_WITH_CAPITAL_X.h" | ||
#include "literals/HEXADECIMAL_POSITIVE_WITH_SIGN.h" | ||
#include "literals/OCTAL_NEGATIVE.h" | ||
#include "literals/OCTAL_POSITIVE.h" | ||
#include "literals/OCTAL_POSITIVE_WITH_SIGN.h" | ||
#include "literals/OCTAL_ZERO.h" | ||
#include "literals/STRING.h" | ||
|
||
namespace literals | ||
{ | ||
|
||
TEST(LiteralsTest, Boolean) | ||
{ | ||
static_assert(BOOLEAN_TRUE, "shall be constexpr"); | ||
|
||
zserio::Bool expectedBoolean = true; | ||
ASSERT_EQ(expectedBoolean, BOOLEAN_TRUE); | ||
|
||
expectedBoolean = false; | ||
ASSERT_EQ(expectedBoolean, BOOLEAN_FALSE); | ||
} | ||
|
||
TEST(LiteralsTest, Decimal) | ||
{ | ||
static_assert(DECIMAL_NEGATIVE == -255, "shall be constexpr"); | ||
|
||
ASSERT_EQ(static_cast<zserio::Int32>(255), DECIMAL_POSITIVE); | ||
ASSERT_EQ(static_cast<zserio::Int32>(255), DECIMAL_POSITIVE_WITH_SIGN); | ||
ASSERT_EQ(static_cast<zserio::Int32>(-255), DECIMAL_NEGATIVE); | ||
ASSERT_EQ(static_cast<zserio::Int32>(0), DECIMAL_ZERO); | ||
} | ||
|
||
TEST(LiteralsTest, Hexadecimal) | ||
{ | ||
static_assert(255 == HEXADECIMAL_POSITIVE, "shall be constexpr"); | ||
|
||
ASSERT_EQ(static_cast<zserio::Int32>(255), HEXADECIMAL_POSITIVE); | ||
ASSERT_EQ(static_cast<zserio::Int32>(255), HEXADECIMAL_POSITIVE_WITH_CAPITAL_X); | ||
ASSERT_EQ(static_cast<zserio::Int32>(255), HEXADECIMAL_POSITIVE_WITH_SIGN); | ||
ASSERT_EQ(static_cast<zserio::Int32>(-255), HEXADECIMAL_NEGATIVE); | ||
} | ||
|
||
TEST(LiteralsTest, Octal) | ||
{ | ||
static_assert(255 == HEXADECIMAL_POSITIVE, "shall be constexpr"); | ||
|
||
ASSERT_EQ(static_cast<zserio::Int32>(255), OCTAL_POSITIVE); | ||
ASSERT_EQ(static_cast<zserio::Int32>(255), OCTAL_POSITIVE_WITH_SIGN); | ||
ASSERT_EQ(static_cast<zserio::Int32>(-255), OCTAL_NEGATIVE); | ||
ASSERT_EQ(static_cast<zserio::Int32>(0), OCTAL_ZERO); | ||
} | ||
|
||
TEST(LiteralsTest, Binary) | ||
{ | ||
static_assert(BINARY_POSITIVE == 0xff, "shall be constexpr"); | ||
|
||
ASSERT_EQ(static_cast<zserio::Int32>(255), BINARY_POSITIVE); | ||
ASSERT_EQ(static_cast<zserio::Int32>(255), BINARY_POSITIVE_WITH_CAPITAL_B); | ||
ASSERT_EQ(static_cast<zserio::Int32>(255), BINARY_POSITIVE_WITH_SIGN); | ||
ASSERT_EQ(static_cast<zserio::Int32>(-255), BINARY_NEGATIVE); | ||
} | ||
|
||
TEST(LiteralsTest, float16Literal) | ||
{ | ||
constexpr zserio::Float16 diff = 15.2F - FLOAT16 < 0.0F ? FLOAT16 - 15.2F : 15.2F - FLOAT16; | ||
static_assert(diff <= std::numeric_limits<float>::epsilon(), "shall be constexpr"); | ||
|
||
ASSERT_TRUE(diff <= std::numeric_limits<float>::epsilon()); | ||
} | ||
|
||
TEST(LiteralsTest, float32Literal) | ||
{ | ||
constexpr zserio::Float32 diff = (15.23F - FLOAT32) < 0.0F ? FLOAT32 - 15.23F : 15.23F - FLOAT32; | ||
static_assert(diff <= std::numeric_limits<float>::epsilon(), "shall be constexpr"); | ||
|
||
ASSERT_TRUE(diff <= std::numeric_limits<float>::epsilon()); | ||
} | ||
|
||
TEST(LiteralsTest, float64Literal) | ||
{ | ||
constexpr zserio::Float64 diff = 15.234 - FLOAT64 < 0.0 ? FLOAT64 - 15.234 : 15.234 - FLOAT64; | ||
static_assert(diff <= std::numeric_limits<double>::epsilon(), "shall be constexpr"); | ||
|
||
ASSERT_TRUE(diff <= std::numeric_limits<double>::epsilon()); | ||
} | ||
|
||
TEST(LiteralsTest, String) | ||
{ | ||
static_assert(STRING.size() == 44, "shall be constexpr"); | ||
|
||
ASSERT_EQ(std::string_view("String with escaped values \x31 \x32 \063 \n \t \f \r \\ \""), STRING); | ||
} | ||
|
||
} // namespace literals |