////////////////////////////////////////////////////////////////////////////// // // (C) Copyright Ion Gaztanaga 2025-2026. 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) // // See http://www.boost.org/libs/container for documentation. // ////////////////////////////////////////////////////////////////////////////// #include #include #include "segmented_test_helper.hpp" #include using namespace boost::container; void test_copy_full_range() { test_detail::seg_vector sv; int a1[] = {1, 2, 3}; int a2[] = {4, 5}; int a3[] = {6, 7, 8, 9}; sv.add_segment_range(a1, a1 + 3); sv.add_segment_range(a2, a2 + 2); sv.add_segment_range(a3, a3 + 4); boost::container::vector out(9, 0); boost::container::vector::iterator result = segmented_copy(sv.begin(), sv.end(), out.begin()); BOOST_TEST(result == out.end()); for(int i = 0; i < 9; ++i) BOOST_TEST_EQ(out[static_cast(i)], i + 1); } void test_copy_empty() { test_detail::seg_vector sv; boost::container::vector out; boost::container::vector::iterator result = segmented_copy(sv.begin(), sv.end(), out.begin()); BOOST_TEST(result == out.begin()); } void test_copy_single_segment() { test_detail::seg_vector sv; int a[] = {10, 20, 30}; sv.add_segment_range(a, a + 3); boost::container::vector out(3, 0); segmented_copy(sv.begin(), sv.end(), out.begin()); BOOST_TEST_EQ(out[0], 10); BOOST_TEST_EQ(out[1], 20); BOOST_TEST_EQ(out[2], 30); } void test_copy_non_segmented() { boost::container::vector in; in.push_back(1); in.push_back(2); in.push_back(3); boost::container::vector out(3, 0); segmented_copy(in.begin(), in.end(), out.begin()); BOOST_TEST_EQ(out[0], 1); BOOST_TEST_EQ(out[1], 2); BOOST_TEST_EQ(out[2], 3); } void test_copy_sentinel_segmented() { test_detail::seg_vector sv; int a1[] = {1, 2, 3}; int a2[] = {4, 5}; int a3[] = {6, 7, 8, 9}; sv.add_segment_range(a1, a1 + 3); sv.add_segment_range(a2, a2 + 2); sv.add_segment_range(a3, a3 + 4); boost::container::vector out(9, 0); boost::container::vector::iterator result = segmented_copy(sv.begin(), test_detail::make_sentinel(sv.end()), out.begin()); BOOST_TEST(result == out.end()); for(int i = 0; i < 9; ++i) BOOST_TEST_EQ(out[static_cast(i)], i + 1); } void test_copy_sentinel_non_segmented() { boost::container::vector in; in.push_back(1); in.push_back(2); in.push_back(3); boost::container::vector out(3, 0); segmented_copy(in.begin(), test_detail::make_sentinel(in.end()), out.begin()); BOOST_TEST_EQ(out[0], 1); BOOST_TEST_EQ(out[1], 2); BOOST_TEST_EQ(out[2], 3); } void test_copy_seg2() { test_detail::seg2_vector sv2; int a1[] = {1, 2, 3}; int a2[] = {4, 5}; int a3[] = {6, 7, 8, 9}; sv2.add_flat_segment_range(a1, a1 + 3); sv2.add_flat_segment_range(a2, a2 + 2); sv2.add_flat_segment_range(a3, a3 + 4); boost::container::vector out(9, 0); boost::container::vector::iterator result = segmented_copy(sv2.begin(), sv2.end(), out.begin()); BOOST_TEST(result == out.end()); for(int i = 0; i < 9; ++i) BOOST_TEST_EQ(out[static_cast(i)], i + 1); } void test_copy_segmented_output() { test_detail::seg_vector sv; int a1[] = {1, 2, 3}; int a2[] = {4, 5}; int a3[] = {6, 7, 8, 9}; sv.add_segment_range(a1, a1 + 3); sv.add_segment_range(a2, a2 + 2); sv.add_segment_range(a3, a3 + 4); test_detail::seg_vector out; out.add_segment(4, 0); out.add_segment(3, 0); out.add_segment(2, 0); typedef test_detail::seg_vector::iterator iter_t; iter_t result = segmented_copy(sv.begin(), sv.end(), out.begin()); BOOST_TEST(result == out.end()); iter_t it = out.begin(); for(int i = 0; i < 9; ++i, ++it) BOOST_TEST_EQ(*it, i + 1); } void test_copy_seg2_to_seg2() { test_detail::seg2_vector sv2; int a1[] = {1, 2, 3}; int a2[] = {4, 5}; int a3[] = {6, 7, 8, 9}; sv2.add_flat_segment_range(a1, a1 + 3); sv2.add_flat_segment_range(a2, a2 + 2); sv2.add_flat_segment_range(a3, a3 + 4); test_detail::seg2_vector out; { test_detail::seg_vector s1; s1.add_segment(5, 0); test_detail::seg_vector s2; s2.add_segment(4, 0); out.add_segment(s1); out.add_segment(s2); } typedef test_detail::seg2_vector::iterator iter_t; iter_t result = segmented_copy(sv2.begin(), sv2.end(), out.begin()); BOOST_TEST(result == out.end()); iter_t it = out.begin(); for(int i = 0; i < 9; ++i, ++it) BOOST_TEST_EQ(*it, i + 1); } void test_copy_seg_to_seg_misaligned() { test_detail::seg_vector sv; int a1[] = {1, 2, 3, 4, 5}; int a2[] = {6, 7, 8}; sv.add_segment_range(a1, a1 + 5); sv.add_segment_range(a2, a2 + 3); test_detail::seg_vector out; out.add_segment(2, 0); out.add_segment(3, 0); out.add_segment(3, 0); typedef test_detail::seg_vector::iterator iter_t; iter_t result = segmented_copy(sv.begin(), sv.end(), out.begin()); BOOST_TEST(result == out.end()); iter_t it = out.begin(); for(int i = 0; i < 8; ++i, ++it) BOOST_TEST_EQ(*it, i + 1); } int main() { test_copy_full_range(); test_copy_empty(); test_copy_single_segment(); test_copy_non_segmented(); test_copy_sentinel_segmented(); test_copy_sentinel_non_segmented(); test_copy_seg2(); test_copy_segmented_output(); test_copy_seg2_to_seg2(); test_copy_seg_to_seg_misaligned(); return boost::report_errors(); }