blob: a1c70f352429f8cb88cc948022fa19f40b96b20a [file] [log] [blame]
// (C) Copyright Andy Tompkins 2007. Permission to copy, use, modify, sell and
// distribute this software is granted provided this copyright notice appears
// in all copies. This software is provided "as is" without express or implied
// warranty, and with no claim as to its suitability for any purpose.
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
// libs/uuid/test/test_uuid_no_simd.cpp -------------------------------//
// This test is a subset of libs/uuid/test/test_uuid.cpp, compiled without any
// SIMD optimizations. The test specifically verifies generic implementations
// of the routines.
#define BOOST_UUID_NO_SIMD
#include <iostream>
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_io.hpp>
#include <boost/detail/lightweight_test.hpp>
#include <boost/current_function.hpp>
void test_uuid_equal_array(char const * file, int line, char const * function,
boost::uuids::uuid const& lhs, const unsigned char (&rhs)[16])
{
for (size_t i=0; i<16; i++) {
if ( *(lhs.begin()+i) != rhs[i]) {
std::cerr << file << "(" << line << "): uuid " << lhs << " not equal " << "{";
for (size_t j=0; j<16; j++) {
if (j != 0) {
std::cerr << " ";
}
std::cerr << std::hex << (int)rhs[j];
}
std::cerr << "} in function '" << function << "'" << std::endl;
++boost::detail::test_errors();
return;
}
}
}
#define BOOST_TEST_UUID(lhs, rhs) ( test_uuid_equal_array(__FILE__, __LINE__, BOOST_CURRENT_FUNCTION, lhs, rhs) )
int main(int, char*[])
{
using namespace boost::uuids;
{ // uuid::operator=()
uuid u1 = {{0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15}};
uuid u2 = u1;
BOOST_TEST_EQ(u2, u1);
}
{ // uuid::is_nil()
uuid u1 = {{0}};
BOOST_TEST_EQ(u1.is_nil(), true);
uuid u2 = {{1,0}};
BOOST_TEST_EQ(u2.is_nil(), false);
}
{ // uuid::swap(), swap()
uuid u1 = {{0}};
uuid u2 = {{0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15}};
u1.swap(u2);
unsigned char values1[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
unsigned char values2[] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
BOOST_TEST_UUID(u1, values2);
BOOST_TEST_UUID(u2, values1);
swap(u1, u2);
BOOST_TEST_UUID(u1, values1);
BOOST_TEST_UUID(u2, values2);
}
{ // test comparsion
uuid u1 = {{0}};
uuid u2 = {{1,0}};
uuid u3 = {{255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255}};
uuid u4 = {{0,1,0}};
uuid u5 = {{0,255,0}};
BOOST_TEST_EQ(u1, u1);
BOOST_TEST_NE(u1, u2);
BOOST_TEST(u1 < u2);
BOOST_TEST(u2 < u3);
BOOST_TEST(u1 < u4);
BOOST_TEST(u1 < u5);
BOOST_TEST(u4 < u5);
BOOST_TEST(u4 < u2);
BOOST_TEST(u5 < u2);
BOOST_TEST(u1 <= u1);
BOOST_TEST(u1 <= u2);
BOOST_TEST(u2 <= u3);
BOOST_TEST(u2 >= u1);
BOOST_TEST(u3 >= u1);
BOOST_TEST(u3 >= u3);
BOOST_TEST(u2 >= u1);
BOOST_TEST(u3 >= u1);
}
return boost::report_errors();
}