-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathprogram_args.cpp
176 lines (150 loc) · 5.12 KB
/
program_args.cpp
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
#include "acl/utility/program_args.hpp"
#include "catch2/catch_all.hpp"
// NOLINTBEGIN
struct arg_formatter
{
std::string text;
inline void operator()(acl::program_document_type type, std::string_view, std::string_view,
std::string_view txt) noexcept
{
text += txt;
}
};
TEST_CASE("Validate program args creation and destruction", "[program_args][basic]")
{
char buffer[] = "arg=1";
std::array<char*, 1> args = {buffer};
acl::program_args<> pgargs;
arg_formatter argfmt;
pgargs.parse_args(1, args.data());
REQUIRE(pgargs.decl<int>("arg").doc("help_int").value() == 1);
pgargs.doc(std::ref(argfmt));
REQUIRE(argfmt.text != "");
}
TEST_CASE("Validate program args switches", "[program_args][switches]")
{
const char* arg_set[] = {"--help", "--one=foo", "-2=bar"};
acl::program_args pgargs;
arg_formatter argfmt;
pgargs.parse_args(3, arg_set);
pgargs.doc("settings");
auto one = pgargs.decl("one").doc("first_arg").value();
auto two = pgargs.decl("two", "2").doc("second_arg").value();
pgargs.doc(std::ref(argfmt));
REQUIRE(argfmt.text.find("settings") != std::string_view::npos);
REQUIRE(argfmt.text.find("first_arg") != std::string_view::npos);
REQUIRE(argfmt.text.find("second_arg") != std::string_view::npos);
REQUIRE(one.has_value() == true);
REQUIRE(one.value() == "foo");
REQUIRE(two.value() == "bar");
REQUIRE(pgargs.get_max_arg_length() != 4);
REQUIRE(pgargs.must_print_help());
}
TEST_CASE("Validate program args sink", "[program_args][sink]")
{
const char* arg_set[] = {"--help", "--one=foo", "-2=100"};
acl::program_args pgargs;
pgargs.parse_args(3, arg_set);
struct sink
{
std::string_view one;
int two = 0;
bool flag = false;
};
sink sink_;
pgargs.sink(sink_.one, "one", "", "one documentation");
pgargs.sink(sink_.two, "two", "2", "two documentation");
pgargs.sink(sink_.flag, "flag", "3", "three documentation");
auto arg_len = pgargs.get_max_arg_length();
std::string arg_doc;
pgargs.doc(
[arg_len, &arg_doc](acl::program_document_type doc_type, std::string_view type, std::string_view flag,
std::string_view desc)
{
switch (doc_type)
{
case acl::program_document_type::brief_doc:
break;
case acl::program_document_type::full_doc:
break;
case acl::program_document_type::arg_doc:
arg_doc += type;
arg_doc += ", ";
arg_doc += flag;
arg_doc += " - ";
arg_doc += desc;
arg_doc += "| ";
break;
}
});
REQUIRE(sink_.one == "foo");
REQUIRE(sink_.two == 100);
REQUIRE(sink_.flag == false);
REQUIRE(arg_doc ==
"help, - | one, - one documentation| two, 2 - two documentation| flag, 3 - three documentation| ");
}
TEST_CASE("Validate program args vector access", "[program_args][sink]")
{
const char* arg_set[] = {"--help", "--one=foo", "-2=100", "--result=result"};
std::string result;
acl::program_args pgargs;
pgargs.parse_args(4, arg_set);
struct sink
{
std::string_view one;
int two = 0;
bool flag = false;
};
sink sink_;
pgargs.sink(sink_.two, "two", "2");
pgargs.sink(sink_.flag, "flag", "3");
pgargs.sink(sink_.two, "two", "2");
pgargs.sink(sink_.two, "two", "2");
pgargs.sink(result, "result");
REQUIRE(sink_.two == 100);
REQUIRE(sink_.flag == false);
REQUIRE(result == "result");
}
TEST_CASE("Validate program args vector", "[program_args][vector]")
{
const char* arg_set[] = {"--help", "--flag", "--one=[foo, bar, 2]", "-2=[100, 20, 30]", "-c=[3.4, 4.1, 6.1]"};
acl::program_args pgargs;
pgargs.parse_args(5, arg_set);
bool help = false;
bool flag = false;
bool flag_2 = false;
std::vector<std::string_view> one;
std::vector<int> two;
std::vector<float> three;
pgargs.sink(help, "help");
pgargs.sink(flag, "flag");
pgargs.sink(flag_2, "flag_2");
pgargs.sink(one, "one", "a");
pgargs.sink(two, "two", "2");
pgargs.sink(three, "three", "c");
REQUIRE(help == true);
REQUIRE(flag == true);
REQUIRE(flag_2 == false);
REQUIRE(one == std::vector<std::string_view>{"foo", "bar", "2"});
REQUIRE(two == std::vector<int>{100, 20, 30});
REQUIRE(three == std::vector<float>{3.4f, 4.1f, 6.1f});
}
TEST_CASE("Validate program args parse failure", "[program_args][failure]")
{
const char* arg_set[] = {"--help", "--flag", "--one=foo", "-2=[100, 20, 30", "-c=3.4, 4.1, 6.1]"};
acl::program_args pgargs;
pgargs.parse_args(5, arg_set);
bool help = false;
bool flag = false;
bool flag_2 = false;
std::vector<std::string_view> one;
std::vector<int> two;
std::vector<float> three;
pgargs.sink(help, "help");
pgargs.sink(flag, "flag");
pgargs.sink(flag_2, "flag_2");
REQUIRE(pgargs.sink(one, "one", "a") == false);
REQUIRE(pgargs.sink(two, "two", "2") == false);
REQUIRE(pgargs.sink(three, "three", "c") == false);
}
// NOLINTEND