aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bounds_tests.cpp
blob: d10bf6dddd460b1bd1fee15acac5cbc3888b28b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/////////////////////////////////////////////////////////////////////////////// 
// 
// Copyright (c) 2015 Microsoft Corporation. All rights reserved. 
// 
// This code is licensed under the MIT License (MIT). 
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
// THE SOFTWARE. 
// 
///////////////////////////////////////////////////////////////////////////////

#include <UnitTest++/UnitTest++.h> 
#include <gsl/multi_span>
#include <vector>

using namespace std;
using namespace gsl;;

namespace 
{
    void use(std::ptrdiff_t&) {}
}

SUITE(bounds_test)
{
	TEST(basic_bounds)
	{
		for (auto point : static_bounds<dynamic_range, 3, 4 > { 2 })
		{
			for (decltype(point)::size_type j = 0;
			     j < static_cast<decltype(point)::size_type>(decltype(point)::rank);
			     j++)
			{
				use(j);
				use(point[j]);
			}
		}
	}
	
	TEST(bounds_basic)
	{
		static_bounds<3, 4, 5> b;
		auto a = b.slice();
		(void)a;           
		static_bounds<4, dynamic_range, 2> x{ 4 };
		x.slice().slice();
	}
	
	TEST (arrayview_iterator)
	{
		static_bounds<4, dynamic_range, 2> bounds{ 3 };
		
		auto itr = bounds.begin();
		(void)itr;	
#ifdef CONFIRM_COMPILATION_ERRORS
		multi_span<int, 4, dynamic_range, 2> av(nullptr, bounds);
	
		auto itr2 = av.cbegin();
	
		for (auto& v : av) {
			v = 4;
		}
		fill(av.begin(), av.end(), 0);
#endif			
	}
	
	TEST (bounds_convertible)
	{
		static_bounds<7, 4, 2> b1;
		static_bounds<7, dynamic_range, 2> b2 = b1;
		(void)b2;	
#ifdef CONFIRM_COMPILATION_ERRORS
		static_bounds<7, dynamic_range, 1> b4 = b2; 
#endif
	
		static_bounds<dynamic_range, dynamic_range, dynamic_range> b3 = b1;
		static_bounds<7, 4, 2> b4 = b3; 
		(void)b4;

		static_bounds<dynamic_range> b11;
	
		static_bounds<dynamic_range> b5;
		static_bounds<34> b6;
		
		b5 = static_bounds<20>();
		CHECK_THROW(b6 = b5, fail_fast);
		b5 = static_bounds<34>();
		b6 = b5;

		CHECK(b5 == b6);
		CHECK(b5.size() == b6.size());
	}                                 
}

int main(int, const char *[])
{
	return UnitTest::RunAllTests();
}