/* Copyright (c) 2014, Randolph Voorhies, Shane Grant 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_POD_H_ #define CEREAL_TEST_POD_H_ #include "common.hpp" template inline void test_pod() { std::random_device rd; std::mt19937 gen(rd()); for(size_t i=0; i<100; ++i) { bool const o_bool = random_value(gen) % 2 ? true : false; char const o_char = random_value(gen); unsigned char const o_uchar = random_value(gen); uint8_t const o_uint8 = random_value(gen); int8_t const o_int8 = random_value(gen); uint16_t const o_uint16 = random_value(gen); int16_t const o_int16 = random_value(gen); uint32_t const o_uint32 = random_value(gen); int32_t const o_int32 = random_value(gen); uint64_t const o_uint64 = random_value(gen); int64_t const o_int64 = random_value(gen); float const o_float = random_value(gen); double const o_double = random_value(gen); long double const o_long_double = random_value(gen); long const o_long = random_value(gen); unsigned long const o_ulong = random_value(gen); long long const o_long_long = random_value(gen); unsigned long long const o_ulong_long = random_value(gen); std::ostringstream os; { OArchive oar(os); oar(o_bool); oar(o_char); oar(o_uchar); oar(o_uint8); oar(o_int8); oar(o_uint16); oar(o_int16); oar(o_uint32); oar(o_int32); oar(o_uint64); oar(o_int64); oar(o_float); oar(o_double); oar(o_long_double); oar(o_long); oar(o_ulong); oar(o_long_long); oar(o_ulong_long); } bool i_bool = false; char i_char = 0; unsigned char i_uchar = 0; uint8_t i_uint8 = 0; int8_t i_int8 = 0; uint16_t i_uint16 = 0; int16_t i_int16 = 0; uint32_t i_uint32 = 0; int32_t i_int32 = 0; uint64_t i_uint64 = 0; int64_t i_int64 = 0; float i_float = 0; double i_double = 0; long double i_long_double = 0; long i_long = 0; unsigned long i_ulong = 0; long long i_long_long = 0; unsigned long long i_ulong_long = 0; std::istringstream is(os.str()); { IArchive iar(is); iar(i_bool); iar(i_char); iar(i_uchar); iar(i_uint8); iar(i_int8); iar(i_uint16); iar(i_int16); iar(i_uint32); iar(i_int32); iar(i_uint64); iar(i_int64); iar(i_float); iar(i_double); iar(i_long_double); iar(i_long); iar(i_ulong); iar(i_long_long); iar(i_ulong_long); } CHECK_EQ(i_bool , o_bool); CHECK_EQ(i_char , o_char); CHECK_EQ(i_uchar , o_uchar); CHECK_EQ(i_uint8 , o_uint8); CHECK_EQ(i_int8 , o_int8); CHECK_EQ(i_uint16 , o_uint16); CHECK_EQ(i_int16 , o_int16); CHECK_EQ(i_uint32 , o_uint32); CHECK_EQ(i_int32 , o_int32); CHECK_EQ(i_uint64 , o_uint64); CHECK_EQ(i_int64 , o_int64); CHECK_EQ(i_float , doctest::Approx(o_float).epsilon(1e-5F)); CHECK_EQ(i_double , doctest::Approx(o_double).epsilon(1e-5)); CHECK_EQ(i_long_double, doctest::Approx(o_long_double).epsilon(1e-5L)); CHECK_EQ(i_long, o_long); CHECK_EQ(i_ulong, o_ulong); CHECK_EQ(i_long_long, o_long_long); CHECK_EQ(i_ulong_long, o_ulong_long); } } #endif // CEREAL_TEST_POD_H_