File: test_string_convert.cpp

package info (click to toggle)
clasp 3.3.5-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,716 kB
  • sloc: cpp: 69,712; ansic: 207; xml: 182; sh: 92; makefile: 28
file content (442 lines) | stat: -rw-r--r-- 17,217 bytes parent folder | download | duplicates (3)
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
//
// Copyright (c) 2017 Benjamin Kaufmann
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to
// deal in the Software without restriction, including without limitation the
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
// sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// 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 <catch/catch.hpp>
#include <potassco/string_convert.h>
#include <string>
#include <vector>
namespace Potassco {
namespace Test {

TEST_CASE("String conversion", "[string]") {
	errno = 0;
	SECTION("empty string is not an int") {
		REQUIRE_THROWS(Potassco::string_cast<int>(""));
		REQUIRE_THROWS(Potassco::string_cast<unsigned>(""));
		int iVal; unsigned uVal;
		REQUIRE_FALSE(Potassco::xconvert("", iVal));
		REQUIRE_FALSE(Potassco::xconvert("", uVal));
	}
	SECTION("at least one digit") {
		REQUIRE_THROWS(Potassco::string_cast<int>("+"));
		REQUIRE_THROWS(Potassco::string_cast<unsigned>("+"));
		int iVal; unsigned uVal;
		REQUIRE_FALSE(Potassco::xconvert("+", iVal));
		REQUIRE_FALSE(Potassco::xconvert("+", uVal));
	}
	SECTION("overflow is an error") {
		REQUIRE_THROWS(Potassco::string_cast<int64_t>("18446744073709551616"));
		REQUIRE_THROWS(Potassco::string_cast<uint64_t>("18446744073709551616"));
		int64_t iVal;  uint64_t uVal;
		REQUIRE_FALSE(Potassco::xconvert("18446744073709551616", iVal));
		REQUIRE(errno == ERANGE);
		REQUIRE_FALSE(Potassco::xconvert("18446744073709551616", uVal));
	}
	SECTION("positive and negative ints convert to string") {
		REQUIRE(Potassco::string_cast(10) == "10");
		REQUIRE(Potassco::string_cast(-10) == "-10");
	}
	SECTION("unsigned -1 converts to named limit") {
		REQUIRE(Potassco::string_cast(static_cast<unsigned int>(-1)) == "umax");
		REQUIRE(Potassco::string_cast(static_cast<unsigned long>(-1)) == "umax");
		REQUIRE(Potassco::string_cast<unsigned int>("umax") == static_cast<unsigned int>(-1));
		REQUIRE(Potassco::string_cast<unsigned long>("umax") == static_cast<unsigned long>(-1));
		REQUIRE(Potassco::string_cast<unsigned long long>("umax") == static_cast<unsigned long long>(-1));
		REQUIRE(Potassco::string_cast<uint64_t>("umax") == static_cast<uint64_t>(-1));
	}
	SECTION("-1 is only signed value accepted as unsigned") {
		REQUIRE(Potassco::string_cast<unsigned int>("-1") == static_cast<unsigned int>(-1));
		REQUIRE_THROWS_AS(Potassco::string_cast<unsigned long long>("-2"), Potassco::bad_string_cast);
	}
	SECTION("umax does not apply to signed int") {
		REQUIRE_THROWS_AS(Potassco::string_cast<int>("umax"), Potassco::bad_string_cast);
		REQUIRE_THROWS_AS(Potassco::string_cast<long>("umax"), Potassco::bad_string_cast);
		REQUIRE_THROWS_AS(Potassco::string_cast<long long>("umax"), Potassco::bad_string_cast);
		REQUIRE_THROWS_AS(Potassco::string_cast<int64_t>("umax"), Potassco::bad_string_cast);
	}
	SECTION("named limits convert to signed ints") {
		REQUIRE(Potassco::string_cast<int>("imax") == INT_MAX);
		REQUIRE(Potassco::string_cast<int>("imin") == INT_MIN);

		REQUIRE(Potassco::string_cast<long>("imax") == LONG_MAX);
		REQUIRE(Potassco::string_cast<long>("imin") == LONG_MIN);

		REQUIRE(Potassco::string_cast<long long>("imax") == LLONG_MAX);
		REQUIRE(Potassco::string_cast<long long>("imin") == LLONG_MIN);
	}

	SECTION("double converts to string") {
		REQUIRE(Potassco::string_cast(10.2) == "10.2");
	}
	SECTION("double conversion is reversible") {
		const double d = 0.00000001;
		REQUIRE(Potassco::string_cast<double>(Potassco::string_cast(d)) == d);
	}
	SECTION("Pairs can be converted") {
		const std::pair<int, bool> p(10, false);
		REQUIRE(Potassco::string_cast(p) == "10,false");
		REQUIRE((Potassco::string_cast<std::pair<int, bool> >("10,false") == p));

		typedef std::pair<int, int> IntPair;
		IntPair x;
		std::string value("(1,2)");
		bool ok = Potassco::string_cast(value, x);
		REQUIRE(ok);
		REQUIRE(x == IntPair(1, 2));
		REQUIRE(Potassco::string_cast("7", x));
		REQUIRE(x == IntPair(7, 2));

		REQUIRE(!Potassco::string_cast("9,", x));
		REQUIRE(x == IntPair(7, 2));
	}
	SECTION("Pairs can be nested") {
		typedef std::pair<int, int> IntPair;
		std::pair<IntPair, IntPair> x;
		std::string value("((1,2),(3,4))");
		REQUIRE(Potassco::string_cast(value, x));
		REQUIRE((x.first == IntPair(1, 2) && x.second == IntPair(3, 4)));
		value = "3,4,5,6";
		REQUIRE(Potassco::string_cast(value, x));
		REQUIRE((x.first == IntPair(3, 4) && x.second == IntPair(5, 6)));
		value = "99";
		REQUIRE(Potassco::string_cast(value, x));
		REQUIRE((x.first == IntPair(99, 4) && x.second == IntPair(5, 6)));
	}
	SECTION("Sequence can be converted") {
		REQUIRE(Potassco::toString(1, 2, 3) == "1,2,3");
		REQUIRE(Potassco::toString(1, "Hallo") == "1,Hallo");
	}
	SECTION("conversion works with long long") {
		long long mx = LLONG_MAX, mn = LLONG_MIN, y;
		REQUIRE((Potassco::stringTo(Potassco::toString(mx).c_str(), y) && mx == y));
		REQUIRE((Potassco::stringTo(Potassco::toString(mn).c_str(), y) && mn == y));
	}
	SECTION("conversion works with long long even if errno is initially set") {
		long long mx = LLONG_MAX, y;
		unsigned long long umx = ULLONG_MAX, z;
		errno = ERANGE;
		REQUIRE((Potassco::stringTo(Potassco::toString(mx).c_str(), y) && mx == y));
		errno = ERANGE;
		StringBuilder str;
		str.appendFormat("%llu", ULLONG_MAX);
		REQUIRE((Potassco::stringTo(str.c_str(), z) && umx == z));
	}

	SECTION("double parsing is locale-independent") {
		typedef std::pair<std::string, std::string> P;
		P lcg[] = {P("de", "DE"), P("el", "GR"), P("ru", "RU"), P("es", "ES"), P("it", "IT")};
		const char* x = 0;
#if defined(_MSC_VER) && _MSC_VER <= 1600
		x = setlocale(LC_ALL, "deu_deu");
#endif
		for (const P* it = lcg, *end = it + sizeof(lcg)/sizeof(P); it != end && !x; ++it) {
			x = setlocale(LC_ALL, std::string(it->first).append(1, '_').append(it->second).c_str());
			if (x != 0) { break; }
			x = setlocale(LC_ALL, std::string(it->first).append(1, '-').append(it->second).c_str());
		}
		if (x) {
			REQUIRE(Potassco::string_cast<double>("12.32") == 12.32);
			setlocale(LC_ALL, "C");
		}
		else {
			WARN("could not set locale - test ignored");
		}
	}

	SECTION("vectors can be converted") {
		typedef std::vector<int> Vec;
		Vec x;
		std::string value("[1,2,3,4]");
		REQUIRE(Potassco::string_cast(value, x));
		REQUIRE(x.size() == 4);
		REQUIRE(x[0] == 1);
		REQUIRE(x[1] == 2);
		REQUIRE(x[2] == 3);
		REQUIRE(x[3] == 4);
		x = Potassco::string_cast<Vec>("1,2,3");
		REQUIRE(x.size() == 3);
		REQUIRE(!Potassco::string_cast("1,2,", x));
	}
	SECTION("vectors can be nested") {
		typedef std::vector<int> Vec;
		typedef std::vector<Vec> VecVec;
		VecVec x;
		std::string value("[[1,2],[3,4]]");
		REQUIRE(Potassco::string_cast(value, x));
		REQUIRE((x.size() == 2 && x[0].size() == 2 && x[1].size() == 2));
		REQUIRE(x[0][0] == 1);
		REQUIRE(x[0][1] == 2);
		REQUIRE(x[1][0] == 3);
		REQUIRE(x[1][1] == 4);
	}
}
TEST_CASE("String builder", "[string]") {
	errno = 0;
	SECTION("vsprintf behaves as expected") {
		char buf[5], buf2[6];
		struct Temp {
			int operator()(char* s, std::size_t n, const char* fmt, ...) const {
				va_list args;
				va_start(args, fmt);
				int r = Potassco::vsnprintf(s, n, fmt, args);
				va_end(args);
				return r;
			}
		} t;
		REQUIRE(t(buf, sizeof(buf), "%s", "Hello") == 5);
		REQUIRE(errno == 0);
		REQUIRE(buf[4] == 0);
		REQUIRE(std::strcmp(buf, "Hell") == 0);
		REQUIRE(t(buf2, sizeof(buf2), "%s", "Hello") == 5);
		REQUIRE(errno == 0);
		REQUIRE(std::strcmp(buf2, "Hello") == 0);
	}
	SECTION("empty builder") {
		StringBuilder builder;
		REQUIRE(std::strcmp(builder.c_str(), "") == 0);
		REQUIRE(builder.size() == 0);
	}
	SECTION("append string") {
		StringBuilder builder;
		builder.append("Hello");
		REQUIRE(std::strcmp(builder.c_str(), "Hello") == 0);
		builder.append(" World");
		REQUIRE(std::strcmp(builder.c_str(), "Hello World") == 0);
		builder.append("!");
		REQUIRE(std::strcmp(builder.c_str(), "Hello World!") == 0);
	}
	SECTION("append format") {
		StringBuilder builder;
		builder.appendFormat("Hello %d", 100);
		REQUIRE(std::strcmp(builder.c_str(), "Hello 100") == 0);
		builder.appendFormat("%s - %u!!!", " World", 22u);
		REQUIRE(std::strcmp(builder.c_str(), "Hello 100 World - 22!!!") == 0);
	}
	SECTION("append format grow") {
		std::stringstream exp;
		std::srand(0);
		StringBuilder builder;
		builder.append("Start ");
		exp << builder.c_str();
		for (int i = 0; i != 100; ++i) {
			int n = std::rand();
			exp << " " << n;
			builder.appendFormat(" %d", n);
		}
		REQUIRE(std::strcmp(builder.c_str(), exp.str().c_str()) == 0);
	}
	SECTION("small buffer append") {
		StringBuilder builder;
		const char* address = builder.c_str();
		std::string str;
		do {
			builder.append("X", 1);
			str.append(1, 'X');
			REQUIRE(std::strcmp(builder.c_str(), str.c_str()) == 0);
		} while (address == builder.c_str());
		REQUIRE(builder.size() == 64);
	}
	SECTION("small buffer append format") {
		StringBuilder builder;
		const char* address = builder.c_str();
		std::string str;
		do {
			builder.appendFormat("%d", 1);
			REQUIRE(errno == 0);
			str.append(1, '1');
			REQUIRE(std::strcmp(builder.c_str(), str.c_str()) == 0);
		} while (address == builder.c_str());
		REQUIRE(builder.size() == 64);
	}
	SECTION("small buffer resize") {
		StringBuilder builder;
		builder.append(5, 'X');
		builder.resize(2);
		REQUIRE(builder.size() == 2);
		REQUIRE(std::strcmp(builder.c_str(), "XX") == 0);
		builder.resize(4, '^');
		REQUIRE(builder.size() == 4);
		REQUIRE(std::strcmp(builder.c_str(), "XX^^") == 0);
		builder[2] = 'Y';
		builder[3] = 'Z';
		REQUIRE(std::strcmp(builder.c_str(), "XXYZ") == 0);
	}
	SECTION("append to string") {
		std::string exp(1024, '?');
		std::string res;
		StringBuilder sb(res);
		for (std::size_t i = 0; i != exp.size(); ++i) {
			sb.append("?");
			REQUIRE(res == exp.substr(0, i + 1));
			REQUIRE(std::strcmp(sb.c_str(), exp.substr(0, i + 1).c_str()) == 0);
		}
		REQUIRE(res == exp);
	}
	SECTION("fixed array buffer append") {
		char buf[10];
		StringBuilder fixed(buf, sizeof(buf));
		fixed.append("123456789");
		REQUIRE(fixed.size() == 9);
		REQUIRE(fixed.c_str() == buf);
		REQUIRE(std::strcmp(fixed.c_str(), "123456789") == 0);
		fixed.append("1");
		REQUIRE(std::strcmp(fixed.c_str(), "123456789") == 0);
		REQUIRE(errno == ERANGE);
		errno = 0;
		fixed.resize(3);
		REQUIRE(std::strcmp(fixed.c_str(), "123") == 0);
		fixed.resize(7, '+');
		REQUIRE(std::strcmp(fixed.c_str(), "123++++") == 0);
		REQUIRE_THROWS(fixed.resize(sizeof(buf)));
	}
	SECTION("fixed array buffer append format") {
		char buf[10];
		StringBuilder fixed(buf, sizeof(buf));
		for (int i = 1; i != 10; ++i) {
			fixed.appendFormat("%d", i);
		}
		REQUIRE(fixed.size() == 9);
		REQUIRE(fixed.c_str() == buf);
		REQUIRE(std::strcmp(fixed.c_str(), "123456789") == 0);
		fixed.appendFormat("%d", 1);
		REQUIRE(std::strcmp(fixed.c_str(), "123456789") == 0);
		REQUIRE(errno == ERANGE);
		errno = 0;
	}
	SECTION("fixed array buffer append number") {
		char buf[5];
		StringBuilder fixed(buf, sizeof(buf));
		fixed.append(1234567);
		REQUIRE(errno == ERANGE);
		REQUIRE(fixed.size() == (sizeof(buf) - 1));
		REQUIRE(std::strcmp(fixed.c_str(), "1234") == 0);
		errno = 0;
	}
	SECTION("dynamic array buffer append format") {
		char buf[10];
		StringBuilder dynamic(buf, sizeof(buf), StringBuilder::Dynamic);
		dynamic.append("123456789");
		REQUIRE(dynamic.size() == 9);
		REQUIRE(dynamic.c_str() == buf);
		dynamic.appendFormat("%d", 123);
		REQUIRE(std::strcmp(dynamic.c_str(), "123456789123") == 0);
		REQUIRE(dynamic.size() == 12);
		REQUIRE(dynamic.c_str() != buf);
	}
	SECTION("buffer append number types") {
		StringBuilder str;
		str.append(static_cast<char>(127)).append(" ").append(static_cast<signed char>(-128)).append(" ").append(static_cast<unsigned char>(255));
		REQUIRE(std::strcmp(str.c_str(), "127 -128 255") == 0);
		str.clear().append(true).append(" ").append(false);
		REQUIRE(std::strcmp(str.c_str(), "1 0") == 0);
		str.clear().append(static_cast<wchar_t>(255));
		REQUIRE(std::strcmp(str.c_str(), "255") == 0);
		str.clear().append(static_cast<short>(-32768)).append(" ").append(static_cast<unsigned short>(65535));
		REQUIRE(std::strcmp(str.c_str(), "-32768 65535") == 0);
		str.clear().append(static_cast<int>(-1)).append(" ").append(static_cast<unsigned int>(1234));
		REQUIRE(std::strcmp(str.c_str(), "-1 1234") == 0);
		str.clear().append(static_cast<long>(-1)).append(" ").append(static_cast<unsigned long>(1234));
		REQUIRE(std::strcmp(str.c_str(), "-1 1234") == 0);
		str.clear().append(static_cast<long long>(-1)).append(" ").append(static_cast<unsigned long long>(1234));
		REQUIRE(std::strcmp(str.c_str(), "-1 1234") == 0);
		str.clear().append(12.34f).append(" ").append(12.34);
		REQUIRE(std::strcmp(str.c_str(), "12.34 12.34") == 0);

		str.clear()
			.append(static_cast<int32_t>(-1)).append(" ").append(static_cast<int64_t>(-1)).append(" ")
			.append(static_cast<uint32_t>(1234)).append(" ").append(static_cast<uint64_t>(1234));
		REQUIRE(std::strcmp(str.c_str(), "-1 -1 1234 1234") == 0);
	}
}

TEST_CASE("Macro test", "[macro]") {
	SECTION("test fail function") {
		REQUIRE_THROWS_AS(fail(Potassco::error_logic, 0, 0, 0, "Message with %d parameters {'%s', '%s'}", 2, "Foo", "Bar"), std::logic_error);
		REQUIRE_THROWS_WITH(fail(Potassco::error_logic, 0, 0, 0, "Message with %d parameters {'%s', '%s'}", 2, "Foo", "Bar"),
			"Message with 2 parameters {'Foo', 'Bar'}");

		REQUIRE_THROWS_AS(fail(Potassco::error_assert, 0, 0, "false", 0), std::logic_error);
		REQUIRE_THROWS_AS(fail(Potassco::error_runtime, 0, 0, "false", 0), std::runtime_error);
	}
	SECTION("calling fail with success is a logic error") {
		REQUIRE_THROWS_AS(fail(0, 0, 0, 0, 0), std::invalid_argument);
	}
	SECTION("test check") {
		REQUIRE_NOTHROW(POTASSCO_CHECK(true, EINVAL));
		REQUIRE_THROWS_AS(POTASSCO_CHECK(false, EINVAL), std::invalid_argument);
		REQUIRE_THROWS_AS(POTASSCO_CHECK(false, Potassco::error_assert), std::logic_error);
		REQUIRE_THROWS_AS(POTASSCO_CHECK(false, Potassco::error_logic), std::logic_error);
		REQUIRE_THROWS_AS(POTASSCO_CHECK(false, Potassco::error_runtime), std::runtime_error);
		REQUIRE_THROWS_AS(POTASSCO_CHECK(false, ENOMEM), std::bad_alloc);
	}
	SECTION("test check takes arguments") {
		REQUIRE_THROWS_WITH(POTASSCO_CHECK(false, EINVAL, "Shall fail %d", 123), Catch::Contains("Shall fail 123"));
	}
	SECTION("test require") {
		REQUIRE_NOTHROW(POTASSCO_REQUIRE(true));
		REQUIRE_NOTHROW(POTASSCO_REQUIRE(true, "with arg"));
		REQUIRE_THROWS_AS(POTASSCO_REQUIRE(false), std::logic_error);
		REQUIRE_THROWS_WITH(POTASSCO_REQUIRE(false, "Shall fail %d", 123), "Shall fail 123");
	}
	SECTION("test require without message contains expression") {
		REQUIRE_THROWS_WITH(POTASSCO_REQUIRE(false), Catch::Contains("check('false') failed"));
	}
	SECTION("test assert") {
		REQUIRE_NOTHROW(POTASSCO_ASSERT(true));
		REQUIRE_NOTHROW(POTASSCO_ASSERT(true, "with arg"));
		REQUIRE_THROWS_AS(POTASSCO_ASSERT(false), std::logic_error);
	}
	SECTION("test assert contains location") {
		REQUIRE_THROWS_WITH(POTASSCO_ASSERT(false), Catch::Contains(POTASSCO_FORMAT("%s@%u: assertion failure: check('false')", POTASSCO_FUNC_NAME, __LINE__)));
		REQUIRE_THROWS_WITH(POTASSCO_ASSERT(false, "Shall fail %d", 123), Catch::Contains(POTASSCO_FORMAT("%s@%u: assertion failure: Shall fail 123", POTASSCO_FUNC_NAME, __LINE__)));
	}
}
struct Foo_t {
	POTASSCO_ENUM_CONSTANTS(Foo_t, Value1 = 0, Value2 = 1, Value3 = 2, Value4, Value5 = 7, Value6);
};
TEST_CASE("Enum test", "[enum]") {
	static_assert(Foo_t::eMin == 0, "Wrong minimal value");
	static_assert(Foo_t::eMax == 8, "Wrong maximal value");
	SECTION("has enum class") {
		EnumClass ec = Foo_t::enumClass();
		REQUIRE(ec.min == Foo_t::eMin);
		REQUIRE(ec.max == Foo_t::eMax);
		REQUIRE(std::strcmp("Foo_t", ec.name) == 0);
	}
	SECTION("test enum to string") {
		Foo_t x = Foo_t::Value2;
		Foo_t y = Foo_t::Value4;
		Foo_t z = Foo_t::Value6;
		REQUIRE(toString(x) == "Value2");
		REQUIRE(toString(y) == "Value4");
		REQUIRE(toString(z) == "Value6");
		REQUIRE(toString(Foo_t::Value6) == "8");
	}
	SECTION("test enum from string") {
		REQUIRE(string_cast<Foo_t>("Value3") == Foo_t::Value3);
		REQUIRE(string_cast<Foo_t>("7") == Foo_t::Value5);
		REQUIRE(string_cast<Foo_t>("Value4") == Foo_t::Value4);
		REQUIRE(string_cast<Foo_t>("8") == Foo_t::Value6);
		REQUIRE_THROWS(string_cast<Foo_t>("9"));
		REQUIRE_THROWS(string_cast<Foo_t>("Value98"));
	}
}

}}