File: util_test.cpp

package info (click to toggle)
megaglest 3.13.0-10.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,448 kB
  • sloc: cpp: 144,271; ansic: 11,861; sh: 3,233; perl: 1,904; python: 1,751; objc: 142; asm: 42; makefile: 21
file content (199 lines) | stat: -rw-r--r-- 6,087 bytes parent folder | download | duplicates (6)
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
// ==============================================================
//	This file is part of MegaGlest Unit Tests (www.megaglest.org)
//
//	Copyright (C) 2013 Mark Vejvoda
//
//	You can redistribute this code and/or modify it under
//	the terms of the GNU General Public License as published
//	by the Free Software Foundation; either version 2 of the
//	License, or (at your option) any later version
// ==============================================================

#include <cppunit/extensions/HelperMacros.h>
#include "util.h"
#include <memory>
#include <vector>
#include <algorithm>

#ifdef WIN32
#include <io.h>
#else
#include <unistd.h>
#endif

using namespace Shared::Util;

//
// Tests for util classes
//
// **NOTE: IMPORTANT!
// AFTER 3.7.0 we moved to 2 digit compatibility checks

class UtilTest : public CppUnit::TestFixture {
	// Register the suite of tests for this fixture
	CPPUNIT_TEST_SUITE( UtilTest );

	CPPUNIT_TEST( test_checkVersionComptability_2_digit_versions );
	CPPUNIT_TEST( test_checkVersionComptability_3_digit_versions );
	CPPUNIT_TEST( test_checkVersionComptability_mixed_digit_versions );

	CPPUNIT_TEST_SUITE_END();
	// End of Fixture registration

public:

	void test_checkVersionComptability_2_digit_versions() {
		bool debug_verbose_tests = false;
		SystemFlags::VERBOSE_MODE_ENABLED = debug_verbose_tests;
		// -------- START

		// 2 digit version checks
		bool result = checkVersionComptability("v4.0", "v3.9");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v3.9-dev", "v4.0");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v4.0-dev", "v4.0");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v3.9-dev", "v3.9");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v3.8", "v3.9");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v3.8-dev", "v3.9");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v3.8-dev", "v3.8");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v3.8-beta2", "v3.8");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v3.8-beta1", "v3.8");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v3.8-beta1", "v3.8");
		CPPUNIT_ASSERT_EQUAL( false,result );

		// -------- END
		SystemFlags::VERBOSE_MODE_ENABLED = false;
	}

	void test_checkVersionComptability_3_digit_versions() {
		bool debug_verbose_tests = false;
		SystemFlags::VERBOSE_MODE_ENABLED = debug_verbose_tests;
		// -------- START

		// 3 digit version checks
		bool result = checkVersionComptability("v3.9.0", "v3.9.1");
		CPPUNIT_ASSERT_EQUAL( true,result );

		result = checkVersionComptability("v3.9.0-dev", "v3.9.0");
		CPPUNIT_ASSERT_EQUAL( true,result );

		result = checkVersionComptability("v3.8.0-beta2", "v3.9.0");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v3.8.0-beta1", "v3.9.0");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v3.8.0-dev", "v3.9.0");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v3.8.1", "v3.8.2");
		CPPUNIT_ASSERT_EQUAL( true,result );

		result = checkVersionComptability("v3.8.0-beta2", "v3.8.0");
		CPPUNIT_ASSERT_EQUAL( true,result );

		result = checkVersionComptability("v3.8.0-dev", "v3.8.0");
		CPPUNIT_ASSERT_EQUAL( true,result );

		result = checkVersionComptability("v3.8.0-beta2", "v3.8.0-dev");
		CPPUNIT_ASSERT_EQUAL( true,result );

		result = checkVersionComptability("v3.8.0-beta1", "v3.8.0-dev");
		CPPUNIT_ASSERT_EQUAL( true,result );

		result = checkVersionComptability("v3.8.0-beta1", "v3.8.0-beta2");
		CPPUNIT_ASSERT_EQUAL( true,result );

		result = checkVersionComptability("v3.7.1", "v3.7.2-dev");
		CPPUNIT_ASSERT_EQUAL( true,result );

		result = checkVersionComptability("v3.7.1", "v3.7.2");
		CPPUNIT_ASSERT_EQUAL( true,result );

		result = checkVersionComptability("v3.7.1-dev", "v3.7.1");
		CPPUNIT_ASSERT_EQUAL( true,result );

		// **NOTE: IMPORTANT!
		// AFTER 3.7.0 we moved to 2 digit compatibility checks
		result = checkVersionComptability("v3.7.0", "v3.7.1-dev");
		CPPUNIT_ASSERT_EQUAL( false,result );

		// -------- END
		SystemFlags::VERBOSE_MODE_ENABLED = false;
	}

	void test_checkVersionComptability_mixed_digit_versions() {
		bool debug_verbose_tests = false;
		SystemFlags::VERBOSE_MODE_ENABLED = debug_verbose_tests;
		// -------- START

		bool result = checkVersionComptability("v3.8.0-dev", "v3.9");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v3.8.0-beta2", "v3.9");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v3.8.0-beta1", "v3.9");
		CPPUNIT_ASSERT_EQUAL( false,result );

		// Mixed digit version checks
		result = checkVersionComptability("v3.8", "v3.8.2");
		CPPUNIT_ASSERT_EQUAL( true,result );

		result = checkVersionComptability("v3.8", "v3.8.1");
		CPPUNIT_ASSERT_EQUAL( true,result );

		result = checkVersionComptability("v3.8.0-dev", "v3.8");
		CPPUNIT_ASSERT_EQUAL( true,result );

		result = checkVersionComptability("v3.8.0-beta2", "v3.8");
		CPPUNIT_ASSERT_EQUAL( true,result );

		result = checkVersionComptability("v3.8.0-beta1", "v3.8");
		CPPUNIT_ASSERT_EQUAL( true,result );

		result = checkVersionComptability("v3.7.2-dev", "v3.8-dev");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v3.7.1", "v3.8");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v3.7.1", "v3.8-dev");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v3.7.1", "v3.8-beta2");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v3.7.1", "v3.8-beta1");
		CPPUNIT_ASSERT_EQUAL( false,result );

		result = checkVersionComptability("v3.7.0", "v3.8");
		CPPUNIT_ASSERT_EQUAL( false,result );

		// -------- END
		SystemFlags::VERBOSE_MODE_ENABLED = false;
	}

};


// Test Suite Registrations
CPPUNIT_TEST_SUITE_REGISTRATION( UtilTest );
//