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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
|
// This source code is released into the public domain.
#include <catch2/catch_test_macros.hpp>
import nihil.std;
import nihil.cli;
import nihil.core;
namespace {
inline auto constexpr *test_tags = "[nihil][nihil.cli][nihil.cli_parse_flags]";
SCENARIO("Parsing several flags with flag_parser", test_tags)
{
using namespace std::literals;
using nihil::cli::option;
using nihil::cli::options;
GIVEN ("A flag definition") {
struct test_flags
{
bool a_flag{};
bool b_flag{};
std::string s_flag;
};
auto flags = options<test_flags>(option('a', &test_flags::a_flag),
option('b', &test_flags::b_flag),
option('s', "sflag", &test_flags::s_flag));
WHEN ("We parse '-a'") {
auto ret = posix_parse(flags, std::array{"-a"sv}).value();
THEN ("a_flag is set") {
REQUIRE(ret.a_flag);
}
AND_THEN ("The other flags are not") {
REQUIRE(!ret.b_flag);
REQUIRE(ret.s_flag.empty());
}
}
WHEN ("We parse '-ab'") {
auto ret = posix_parse(flags, std::array{"-ab"sv}).value();
THEN ("a_flag and b_flag are set") {
REQUIRE(ret.a_flag);
REQUIRE(ret.b_flag);
}
AND_THEN ("s_flag is not set") {
REQUIRE(ret.s_flag.empty());
}
}
WHEN ("We parse '-sarg'") {
auto ret = posix_parse(flags, std::array{"-sarg"sv}).value();
THEN ("s_flag is set to 'arg'") {
REQUIRE(ret.s_flag == "arg");
}
AND_THEN ("The other flags are not set") {
REQUIRE(!ret.a_flag);
REQUIRE(!ret.b_flag);
}
}
WHEN ("We parse '-s arg'") {
auto ret = posix_parse(flags, std::array{"-s"sv, "arg"sv}).value();
THEN ("s_flag is set to 'arg'") {
REQUIRE(ret.s_flag == "arg");
}
AND_THEN ("The other flags are not set") {
REQUIRE(!ret.a_flag);
REQUIRE(!ret.b_flag);
}
}
WHEN ("We parse '-a -sarg'") {
auto ret = posix_parse(flags, std::array{"-a"sv, "-sarg"sv}).value();
THEN ("a_flag is set and s_flag is set to 'arg'") {
REQUIRE(ret.a_flag);
REQUIRE(ret.s_flag == "arg");
}
AND_THEN ("b_flag is not set") {
REQUIRE(!ret.b_flag);
}
}
WHEN ("We parse '-asarg'") {
auto ret = posix_parse(flags, std::array{"-asarg"sv}).value();
THEN ("a_flag is set and s_flag is set to 'arg'") {
REQUIRE(ret.a_flag);
REQUIRE(ret.s_flag == "arg");
}
AND_THEN ("b_flag is not set") {
REQUIRE(!ret.b_flag);
}
}
}
}
SCENARIO("Calling flag_parser with incorrect options", test_tags)
{
using namespace std::literals;
using nihil::cli::option;
using nihil::cli::options;
GIVEN ("A flag definition") {
struct test_flags
{
bool a_flag{};
std::string s_flag;
};
auto flags = options<test_flags>(option('a', &test_flags::a_flag),
option('s', "sflag", &test_flags::s_flag));
WHEN ("We parse '-x'") {
auto ret = posix_parse(flags, std::array{"-x"sv});
THEN ("An unknown argument error is returned") {
REQUIRE(!ret);
REQUIRE(std::format("{}", ret.error()) == "-x: unknown option");
}
}
WHEN ("We parse '-s'") {
auto ret = posix_parse(flags, std::array{"-s"sv});
THEN ("A missing argument error is returned") {
REQUIRE(!ret);
REQUIRE(std::format("{}", ret.error()) == "-s: argument required");
}
}
}
}
SCENARIO("Terminating the option list with '--'", test_tags)
{
using namespace std::literals;
using nihil::cli::option;
using nihil::cli::options;
GIVEN ("A flag parser with -a and -b options") {
struct test_flags
{
bool a_flag{};
bool b_flag{};
std::string arg1;
};
auto flags = options<test_flags>(option('a', &test_flags::a_flag),
option('b', &test_flags::b_flag),
option("arg1", &test_flags::arg1));
WHEN ("We parse '-a -- -b'") {
auto ret = posix_parse(flags, std::array{"-a"sv, "--"sv, "-b"sv});
THEN ("The parse was successful") {
if (!ret) {
INFO(ret.error());
FAIL();
}
}
AND_THEN ("a_flag is set and b_flag is not") {
REQUIRE(ret->a_flag == true);
REQUIRE(ret->b_flag == false);
}
AND_THEN ("arg1 is set") {
REQUIRE(ret->arg1 == "-b");
}
}
}
}
SCENARIO("Creating a posix_usage() string", test_tags)
{
using namespace std::literals;
using nihil::cli::option;
using nihil::cli::options;
GIVEN ("A flag parser with only boolean options") {
struct test_flags
{
bool a_flag{};
bool b_flag{};
};
auto flags = options<test_flags>(option('a', &test_flags::a_flag),
option('b', &test_flags::b_flag));
WHEN ("We call posix_usage()") {
auto usage = posix_usage(flags);
THEN ("The option list is '[-ab]'") {
REQUIRE(usage == "[-ab]");
}
}
}
GIVEN ("A flag parser with boolean and string options") {
struct test_flags
{
bool a_flag{};
bool b_flag{};
std::string c_flag;
std::optional<std::string> d_flag;
};
auto flags = options<test_flags>(option('a', &test_flags::a_flag),
option('b', &test_flags::b_flag),
option('c', "cflag", &test_flags::c_flag),
option('d', "dflag", &test_flags::d_flag));
WHEN ("We call posix_usage()") {
auto usage = posix_usage(flags);
THEN ("The option list is '[-ab] -c <cflag> [-d <dflag>]'") {
REQUIRE(usage == "[-ab] -c <cflag> [-d <dflag>]");
}
}
}
GIVEN ("A flag parser with only string options") {
struct test_flags
{
std::string c_flag;
std::string d_flag;
};
auto flags = options<test_flags>(option('c', "cflag", &test_flags::c_flag),
option('d', "dflag", &test_flags::d_flag));
WHEN ("We call posix_usage()") {
auto usage = posix_usage(flags);
THEN ("The option list is '-c <cflag> -d <dflag>'") {
REQUIRE(usage == "-c <cflag> -d <dflag>");
}
}
}
}
SCENARIO("Calling posix_parse() with an (argc, argv) vector", test_tags)
{
using namespace std::literals;
using nihil::cli::option;
using nihil::cli::options;
GIVEN ("A flag definition")
{
struct test_flags
{
bool a_flag{};
bool b_flag{};
std::string s_flag;
};
auto flags = options<test_flags>(option('a', &test_flags::a_flag),
option('b', &test_flags::b_flag),
option('s', "sflag", &test_flags::s_flag));
WHEN ("We parse '-a -s foo'") {
// const_cast the args to char** to match the actual signature of main().
auto argv = std::array{"progname", "-a", "-s", "foo",
static_cast<char const *>(nullptr)};
auto ret = posix_parse(flags, argv.size() - 1,
const_cast<char **>(argv.data()))
.value();
THEN ("a_flag and s_flag are set") {
REQUIRE(ret.a_flag);
REQUIRE(ret.s_flag == "foo");
}
AND_THEN ("b_flag is not set") {
REQUIRE(!ret.b_flag);
}
}
}
}
SCENARIO("Calling posix_parse() with required arguments", test_tags)
{
using namespace std::literals;
using nihil::cli::option;
using nihil::cli::options;
GIVEN ("An options parser with two required arguments")
{
struct test_flags
{
std::string arg1;
std::string arg2;
};
auto flags = options<test_flags>(option("arg1", &test_flags::arg1),
option("arg2", &test_flags::arg2));
WHEN ("We parse 'foo bar'") {
auto ret = posix_parse(flags, std::array{"foo", "bar"});
THEN ("The parse was successful") {
if (!ret) {
INFO(ret.error());
FAIL();
}
}
AND_THEN("Both arg1 and arg2 are set correctly")
{
REQUIRE(ret->arg1 == "foo");
REQUIRE(ret->arg2 == "bar");
}
}
WHEN ("We parse '-- -foo -bar'") {
auto ret = posix_parse(flags, std::array{"--", "-foo", "-bar"});
THEN ("The parse was successful") {
if (!ret) {
INFO(ret.error());
FAIL();
}
}
AND_THEN("Both arg1 and arg2 are set correctly")
{
REQUIRE(ret->arg1 == "-foo");
REQUIRE(ret->arg2 == "-bar");
}
}
}
}
SCENARIO("Calling posix_parse() with required and optional arguments", test_tags)
{
using namespace std::literals;
using nihil::cli::option;
using nihil::cli::options;
GIVEN ("An options parser with a required and an optional argument")
{
struct test_flags
{
std::string arg1;
std::optional<std::string> arg2;
};
auto flags = options<test_flags>(option("arg1", &test_flags::arg1),
option("arg2", &test_flags::arg2));
WHEN ("We parse 'foo bar'") {
auto ret = posix_parse(flags, std::array{"foo", "bar"});
THEN ("The parse was successful") {
if (!ret) {
INFO(ret.error());
FAIL();
}
}
AND_THEN("Both arg1 and arg2 are set correctly")
{
REQUIRE(ret->arg1 == "foo");
REQUIRE(ret->arg2 == "bar");
}
}
WHEN ("We parse 'foo'") {
auto ret = posix_parse(flags, std::array{"foo"});
THEN ("The parse was successful") {
if (!ret) {
INFO(ret.error());
FAIL();
}
}
AND_THEN("arg1 is set and arg2 is not")
{
REQUIRE(ret->arg1 == "foo");
REQUIRE(ret->arg2.has_value() == false);
}
}
}
}
SCENARIO("Parsing integers with posix_parse()", test_tags)
{
using namespace std::literals;
using nihil::cli::option;
using nihil::cli::options;
GIVEN ("An options parser with an int16_t flag")
{
struct test_flags
{
std::int16_t iflag{};
};
auto flags = options<test_flags>(option('i', "iflag", &test_flags::iflag));
WHEN ("The value is a small positive integer") {
auto ret = posix_parse(flags, std::array{"-i", "30000"});
THEN ("The parse was successful") {
if (!ret) {
INFO(ret.error());
FAIL();
}
}
AND_THEN("iflag is set correctly")
{
REQUIRE(ret->iflag == 30000);
}
}
WHEN ("The value is a small negative integer") {
auto ret = posix_parse(flags, std::array{"-i", "-30000"});
THEN ("The parse was successful") {
if (!ret) {
INFO(ret.error());
FAIL();
}
}
AND_THEN("iflag is set correctly")
{
REQUIRE(ret->iflag == -30000);
}
}
WHEN ("The value is a large positive integer") {
auto ret = posix_parse(flags, std::array{"-i", "40000"});
THEN ("The parse failed") {
REQUIRE(!ret);
REQUIRE(std::format("{}", ret.error()) == "-i: value too large");
}
}
WHEN ("The value is a large negative integer") {
auto ret = posix_parse(flags, std::array{"-i", "-40000"});
THEN ("The parse failed") {
REQUIRE(!ret);
REQUIRE(std::format("{}", ret.error()) == "-i: value too small");
}
}
WHEN ("The value is not a number") {
auto ret = posix_parse(flags, std::array{"-i", "foo"});
THEN ("The parse failed") {
REQUIRE(!ret);
REQUIRE(std::format("{}", ret.error()) ==
"-i: expected an integer");
}
}
}
GIVEN ("An options parser with a uint16_t flag")
{
struct test_flags
{
std::uint16_t iflag{};
};
auto flags = options<test_flags>(option('i', "iflag", &test_flags::iflag));
WHEN ("The value is a positive integer") {
auto ret = posix_parse(flags, std::array{"-i", "60000"});
THEN ("The parse was successful") {
if (!ret) {
INFO(ret.error());
FAIL();
}
}
AND_THEN("iflag is set correctly")
{
REQUIRE(ret->iflag == 60000);
}
}
WHEN ("The value is a large positive integer") {
auto ret = posix_parse(flags, std::array{"-i", "80000"});
THEN ("The parse failed") {
REQUIRE(!ret);
REQUIRE(std::format("{}", ret.error()) == "-i: value too large");
}
}
WHEN ("The value is a negative integer") {
auto ret = posix_parse(flags, std::array{"-i", "-1"});
THEN ("The parse failed") {
REQUIRE(!ret);
REQUIRE(std::format("{}", ret.error()) ==
"-i: expected a non-negative integer");
}
}
WHEN ("The value is not a number") {
auto ret = posix_parse(flags, std::array{"-i", "foo"});
THEN ("The parse failed") {
REQUIRE(!ret);
REQUIRE(std::format("{}", ret.error()) ==
"-i: expected an integer");
}
}
}
}
} // anonymous namespace
|