Skip to content

Commit

Permalink
Working towards cpp17 tests
Browse files Browse the repository at this point in the history
Progress towards USCiLab#448

Lots of warnings from g++7.2, these are addressed in USCiLab#423 which hasn't been merged yet.
CMAKE can be cleaned up a bit - may put back in the ability to use older cmake and just throw errors as necessary,
otherwise just force people to use at least cmake 3.1
  • Loading branch information
AzothAmmo authored and fiesh committed Mar 23, 2018
1 parent 6d1d395 commit 732395d
Show file tree
Hide file tree
Showing 10 changed files with 261 additions and 67 deletions.
20 changes: 11 additions & 9 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required (VERSION 2.6.2)
cmake_minimum_required (VERSION 3.1)
project (cereal)

option(SKIP_PORTABILITY_TEST "Skip portability (32 bit) tests" OFF)
Expand All @@ -14,6 +14,16 @@ else()
set(CEREAL_THREAD_LIBS "")
endif()

# Default to C++11
if(NOT DEFINED CMAKE_CXX_STANDARD OR CMAKE_CXX_STANDARD STREQUAL "98")
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
endif()

if(CMAKE_CXX_STANDARD GREATER 14)
cmake_minimum_required(VERSION 3.8)
endif()

if(MSVC)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /bigobj /W3 /WX")
else()
Expand All @@ -22,14 +32,6 @@ else()
if(WITH_WERROR)
set(CMAKE_CXX_FLAGS "-Werror ${CMAKE_CXX_FLAGS}")
endif(WITH_WERROR)
if(CMAKE_VERSION VERSION_LESS 3.1)
set(CMAKE_CXX_FLAGS "-std=c++11 ${CMAKE_CXX_FLAGS}")
else()
if(NOT DEFINED CMAKE_CXX_STANDARD OR CMAKE_CXX_STANDARD STREQUAL "98")
set(CMAKE_CXX_STANDARD 11)
endif()
set(CMAKE_CXX_STANDARD_REQUIRED ON)
endif()
endif()

if(NOT CMAKE_VERSION VERSION_LESS 3.0)
Expand Down
11 changes: 11 additions & 0 deletions include/cereal/macros.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,15 @@
#endif // end !defined(CEREAL_HAS_NOEXCEPT)
#endif // ifndef CEREAL_NOEXCEPT

// ######################################################################
//! Checks if C++17 is available
#if __cplusplus >= 201703L
#define CEREAL_HAS_CPP17
#endif

//! Checks if C++14 is available
#if __cplusplus >= 201402L
#define CEREAL_HAS_CPP14
#endif

#endif // CEREAL_MACROS_HPP_
6 changes: 4 additions & 2 deletions include/cereal/types/optional.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! \file optional.hpp
\brief Support for std::optional
\ingroup OtherTypes */
\ingroup STLSupport */
/*
Copyright (c) 2017, Juan Pedro Bolivar Puente
All rights reserved.
Expand Down Expand Up @@ -30,10 +30,11 @@
#ifndef CEREAL_TYPES_STD_OPTIONAL_
#define CEREAL_TYPES_STD_OPTIONAL_

#include <cereal/cereal.hpp>
#include "cereal/cereal.hpp"
#include <optional>

namespace cereal {
//! Saving for std::optional
template <class Archive, typename T> inline
void CEREAL_SAVE_FUNCTION_NAME(Archive& ar, const std::optional<T>& optional)
{
Expand All @@ -45,6 +46,7 @@ namespace cereal {
}
}

//! Loading for std::optional
template <class Archive, typename T> inline
void CEREAL_LOAD_FUNCTION_NAME(Archive& ar, std::optional<T>& optional)
{
Expand Down
2 changes: 1 addition & 1 deletion include/cereal/types/variant.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! \file variant.hpp
\brief Support for std::variant
\ingroup OtherTypes */
\ingroup STLSupport */
/*
Copyright (c) 2014, 2017, Randolph Voorhies, Shane Grant, Juan Pedro
Bolivar Puente. All rights reserved.
Expand Down
4 changes: 4 additions & 0 deletions unittests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ if(NOT MSVC)
endforeach()
endif(NOT MSVC)

if(CMAKE_CXX_STANDARD GREATER 14)
add_subdirectory(cpp17)
endif()

if(NOT CMAKE_VERSION VERSION_LESS 3.0)
add_test(test_cmake_config_module ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_SOURCE_DIR}/cmake-config-module.cmake)
endif()
38 changes: 38 additions & 0 deletions unittests/cpp17/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
file(GLOB TESTS RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.cpp)

# Build all of the non-special tests
foreach(TEST_SOURCE ${TESTS})
message(STATUS ${TEST_SOURCE})

string(REPLACE ".cpp" "" TEST_TARGET "${TEST_SOURCE}")
set(TEST_TARGET "test_cpp17_${TEST_TARGET}")

add_executable(${TEST_TARGET} ${TEST_SOURCE})
target_link_libraries(${TEST_TARGET} ${CEREAL_THREAD_LIBS})
add_test("${TEST_TARGET}" "${TEST_TARGET}")

# If we are on a 64-bit machine, create an extra 32-bit version of the test if portability testing is enabled
if((NOT MSVC) AND (${CMAKE_SIZEOF_VOID_P} EQUAL 8) AND (NOT SKIP_PORTABILITY_TEST))
add_executable(${TEST_TARGET}_32 ${TEST_SOURCE})
set_target_properties(${TEST_TARGET}_32 PROPERTIES
COMPILE_FLAGS "-m32" LINK_FLAGS "-m32")
add_test("${TEST_TARGET}_32" "${TEST_TARGET}_32")
endif()

endforeach()

if(NOT MSVC)
# add tests to coverage
foreach(TEST_SOURCE ${TESTS})
string(REPLACE ".cpp" "" COVERAGE_TARGET "${TEST_SOURCE}")
set(COVERAGE_TARGET "coverage_${COVERAGE_TARGET}")

add_dependencies(coverage ${COVERAGE_TARGET})

add_executable(${COVERAGE_TARGET} EXCLUDE_FROM_ALL ${TEST_SOURCE})
set_target_properties(${COVERAGE_TARGET} PROPERTIES COMPILE_FLAGS "-coverage")
set_target_properties(${COVERAGE_TARGET} PROPERTIES LINK_FLAGS "-coverage")
set_target_properties(${COVERAGE_TARGET} PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/coverage")
target_link_libraries(${COVERAGE_TARGET} ${CEREAL_THREAD_LIBS})
endforeach()
endif(NOT MSVC)
58 changes: 3 additions & 55 deletions include/cereal/types/optional.cpp → unittests/cpp17/optional.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,61 +26,9 @@
*/

#define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
#include "optional.hpp"

#include "common.hpp"

#if __cplusplus >= 201703L

#include <cereal/types/optional.hpp>

template <class IArchive, class OArchive> inline
void test_std_optional()
{
std::random_device rd;
std::mt19937 gen(rd());

std::optional<int> o_bv1 = random_value<int>(gen);
std::optional<double> o_bv2 = random_value<double>(gen);
std::optional<std::string> o_bv3 = random_basic_string<char>(gen);
std::optional<int> o_bv4 = std::nullopt;
std::optional<double> o_bv5 = std::nullopt;
std::optional<std::string> o_bv6 = std::nullopt;

std::ostringstream os;
{
OArchive oar(os);

oar(o_bv1);
oar(o_bv2);
oar(o_bv3);
oar(o_bv4);
oar(o_bv5);
oar(o_bv6);
}

decltype(o_bv1) i_bv1;
decltype(o_bv2) i_bv2;
decltype(o_bv3) i_bv3;
decltype(o_bv4) i_bv4;
decltype(o_bv5) i_bv5;
decltype(o_bv6) i_bv6;

std::istringstream is(os.str());
{
IArchive iar(is);

iar(i_bv1);
iar(i_bv2);
iar(i_bv3);
}

CHECK_EQ( *i_bv1, std::get<int>(o_bv1) );
CHECK_EQ( *i_bv2, doctest::Approx(std::get<double>(o_bv2)).epsilon(1e-5) );
CHECK_EQ( *i_bv3, std::get<std::string>(o_bv3) );
CHECK( !i_bv4 );
CHECK( !i_bv5 );
CHECK( !i_bv6 );
}
#ifdef CEREAL_HAS_CPP17

TEST_SUITE("std_optional");

Expand All @@ -106,4 +54,4 @@ TEST_CASE("json_std_optional")

TEST_SUITE_END();

#endif // is c++17
#endif // CEREAL_HAS_CPP17
92 changes: 92 additions & 0 deletions unittests/cpp17/optional.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
/*
Copyright (c) 2017, Juan Pedro Bolivar Puente
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of cereal nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL RANDOLPH VOORHIES AND SHANE GRANT BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef CEREAL_TEST_OPTIONAL_H_
#define CEREAL_TEST_OPTIONAL_H_
#include "../common.hpp"

#ifdef CEREAL_HAS_CPP17
#include <cereal/types/optional.hpp>

template <class IArchive, class OArchive> inline
void test_std_optional()
{
std::random_device rd;
std::mt19937 gen(rd());

std::optional<int> o_o1 = random_value<int>(gen);
std::optional<double> o_o2 = random_value<double>(gen);
std::optional<std::string> o_o3 = random_basic_string<char>(gen);
std::optional<int> o_o4 = std::nullopt;
std::optional<double> o_o5 = std::nullopt;
std::optional<std::string> o_o6 = std::nullopt;
std::optional<std::optional<long>> o_o7 = std::make_optional<std::optional<long>>( std::make_optional<long>( random_value<long>(gen) ) );

std::ostringstream os;
{
OArchive oar(os);

oar(o_o1);
oar(o_o2);
oar(o_o3);
oar(o_o4);
oar(o_o5);
oar(o_o6);
oar(o_o7);
}

decltype(o_o1) i_o1;
decltype(o_o2) i_o2;
decltype(o_o3) i_o3;
decltype(o_o4) i_o4;
decltype(o_o5) i_o5;
decltype(o_o6) i_o6;
decltype(o_o7) i_o7;

std::istringstream is(os.str());
{
IArchive iar(is);

iar(i_o1);
iar(i_o2);
iar(i_o3);
iar(i_o4);
iar(i_o5);
iar(i_o6);
iar(i_o7);
}

CHECK_EQ( *i_o1, *o_o1 );
CHECK_EQ( *i_o2, doctest::Approx(*o_o2).epsilon(1e-5) );
CHECK_EQ( *i_o3, *o_o3 );
CHECK_EQ( *i_o4, *o_o4 );
CHECK_EQ( *i_o5, *o_o5 );
CHECK_EQ( *i_o6, *o_o6 );
CHECK_EQ( **i_o7, **o_o7 );
}

#endif // CEREAL_HAS_CPP17
#endif // CEREAL_TEST_OPTIONAL_H_
Loading

0 comments on commit 732395d

Please sign in to comment.