2
0
mirror of https://github.com/boostorg/uuid.git synced 2026-01-19 04:42:16 +00:00

Add boost/uuid/constants.hpp

This commit is contained in:
Peter Dimov
2025-09-08 21:49:23 +03:00
parent 90e5f88c46
commit 5496dd3bbe
7 changed files with 62 additions and 5 deletions

View File

@@ -81,6 +81,8 @@ boost_test(TYPE run SOURCES test_detail_random_provider.cpp LINK_LIBRARIES Boost
boost_test(TYPE run SOURCES test_serialization.cpp LINK_LIBRARIES Boost::serialization)
boost_test(TYPE run SOURCES test_constants.cpp)
boost_test(TYPE compile SOURCES test_uuid_cx.cpp)
boost_test(TYPE run SOURCES test_string_generator_cx.cpp)

View File

@@ -203,6 +203,10 @@ run test_entropy_error.cpp ;
run test_detail_random_provider.cpp
: : : <library>/boost/array//boost_array ;
# constants
run test_constants.cpp ;
# constexpr tests
compile test_uuid_cx.cpp ;

23
test/test_constants.cpp Normal file
View File

@@ -0,0 +1,23 @@
// Copyright 2025 Peter Dimov
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt
#include <boost/uuid/constants.hpp>
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_io.hpp>
#include <boost/uuid/string_generator.hpp>
#include <boost/core/lightweight_test.hpp>
using namespace boost::uuids;
int main()
{
BOOST_TEST_EQ( ns::dns(), string_generator()("6ba7b810-9dad-11d1-80b4-00c04fd430c8"));
BOOST_TEST_EQ( ns::url(), string_generator()("6ba7b811-9dad-11d1-80b4-00c04fd430c8"));
BOOST_TEST_EQ( ns::oid(), string_generator()("6ba7b812-9dad-11d1-80b4-00c04fd430c8"));
BOOST_TEST_EQ( ns::x500dn(), string_generator()("6ba7b814-9dad-11d1-80b4-00c04fd430c8"));
BOOST_TEST_EQ( nil_uuid(), string_generator()("00000000-0000-0000-0000-000000000000"));
return boost::report_errors();
}