xref: /xnu-8796.141.3/tests/bounded_array_src/begin_end.cpp (revision 1b191cb58250d0705d8a51287127505aa4bc0789)
1*1b191cb5SApple OSS Distributions //
2*1b191cb5SApple OSS Distributions // Tests for
3*1b191cb5SApple OSS Distributions //  iterator begin();
4*1b191cb5SApple OSS Distributions //  const_iterator begin() const;
5*1b191cb5SApple OSS Distributions //
6*1b191cb5SApple OSS Distributions //  iterator end();
7*1b191cb5SApple OSS Distributions //  const_iterator end() const;
8*1b191cb5SApple OSS Distributions //
9*1b191cb5SApple OSS Distributions 
10*1b191cb5SApple OSS Distributions #include <libkern/c++/bounded_array.h>
11*1b191cb5SApple OSS Distributions #include "test_policy.h"
12*1b191cb5SApple OSS Distributions #include <darwintest.h>
13*1b191cb5SApple OSS Distributions #include <type_traits>
14*1b191cb5SApple OSS Distributions 
15*1b191cb5SApple OSS Distributions struct T { int i; };
16*1b191cb5SApple OSS Distributions 
17*1b191cb5SApple OSS Distributions template <typename T>
18*1b191cb5SApple OSS Distributions static void
tests()19*1b191cb5SApple OSS Distributions tests()
20*1b191cb5SApple OSS Distributions {
21*1b191cb5SApple OSS Distributions 	// Check begin()/end() for a non-empty array
22*1b191cb5SApple OSS Distributions 	{
23*1b191cb5SApple OSS Distributions 		test_bounded_array<T, 5> array = {T{0}, T{1}, T{2}, T{3}, T{4}};
24*1b191cb5SApple OSS Distributions 		test_bounded_ptr<T> begin = array.begin();
25*1b191cb5SApple OSS Distributions 		test_bounded_ptr<T> end = array.end();
26*1b191cb5SApple OSS Distributions 		CHECK(begin.discard_bounds() == array.data());
27*1b191cb5SApple OSS Distributions 		CHECK(end.unsafe_discard_bounds() == array.data() + 5);
28*1b191cb5SApple OSS Distributions 	}
29*1b191cb5SApple OSS Distributions 	{
30*1b191cb5SApple OSS Distributions 		test_bounded_array<T, 5> const array = {T{0}, T{1}, T{2}, T{3}, T{4}};
31*1b191cb5SApple OSS Distributions 		test_bounded_ptr<T const> begin = array.begin();
32*1b191cb5SApple OSS Distributions 		test_bounded_ptr<T const> end = array.end();
33*1b191cb5SApple OSS Distributions 		CHECK(begin.discard_bounds() == array.data());
34*1b191cb5SApple OSS Distributions 		CHECK(end.unsafe_discard_bounds() == array.data() + 5);
35*1b191cb5SApple OSS Distributions 	}
36*1b191cb5SApple OSS Distributions 
37*1b191cb5SApple OSS Distributions 	// Check begin()/end() for an empty array
38*1b191cb5SApple OSS Distributions 	{
39*1b191cb5SApple OSS Distributions 		test_bounded_array<T, 0> array = {};
40*1b191cb5SApple OSS Distributions 		test_bounded_ptr<T> begin = array.begin();
41*1b191cb5SApple OSS Distributions 		test_bounded_ptr<T> end = array.end();
42*1b191cb5SApple OSS Distributions 		CHECK(begin.unsafe_discard_bounds() == array.data());
43*1b191cb5SApple OSS Distributions 		CHECK(end.unsafe_discard_bounds() == array.data());
44*1b191cb5SApple OSS Distributions 	}
45*1b191cb5SApple OSS Distributions 	{
46*1b191cb5SApple OSS Distributions 		test_bounded_array<T, 0> const array = {};
47*1b191cb5SApple OSS Distributions 		test_bounded_ptr<T const> begin = array.begin();
48*1b191cb5SApple OSS Distributions 		test_bounded_ptr<T const> end = array.end();
49*1b191cb5SApple OSS Distributions 		CHECK(begin.unsafe_discard_bounds() == array.data());
50*1b191cb5SApple OSS Distributions 		CHECK(end.unsafe_discard_bounds() == array.data());
51*1b191cb5SApple OSS Distributions 	}
52*1b191cb5SApple OSS Distributions 
53*1b191cb5SApple OSS Distributions 	// Check associated types
54*1b191cb5SApple OSS Distributions 	{
55*1b191cb5SApple OSS Distributions 		using A = test_bounded_array<T, 10>;
56*1b191cb5SApple OSS Distributions 		static_assert(std::is_same_v<typename A::iterator, test_bounded_ptr<T> >);
57*1b191cb5SApple OSS Distributions 		static_assert(std::is_same_v<typename A::const_iterator, test_bounded_ptr<T const> >);
58*1b191cb5SApple OSS Distributions 	}
59*1b191cb5SApple OSS Distributions }
60*1b191cb5SApple OSS Distributions 
61*1b191cb5SApple OSS Distributions T_DECL(begin_end, "bounded_array.begin_end") {
62*1b191cb5SApple OSS Distributions 	tests<T>();
63*1b191cb5SApple OSS Distributions }
64