This commit is contained in:
Erik Frojdh
2021-09-13 21:26:17 +02:00
parent 9d4d667df1
commit abf56ad643
4 changed files with 153 additions and 60 deletions

View File

@ -106,15 +106,15 @@ SCENARIO("Parsing a string with the command line parser", "[support]") {
}
}
WHEN("Cliend id and or detector id cannot be decoded") {
vs arg{"o:cmd", "-5:cmd", "aedpva:cmd",
"5-svc:vrf", "asv-5:cmd", "savc-asa:cmd"};
THEN("Parsing Throws") {
for (size_t i = 0; i != arg.size(); ++i) {
REQUIRE_THROWS(p.Parse(arg[i]));
}
}
}
// WHEN("Cliend id and or detector id cannot be decoded") {
// vs arg{"o:cmd", "-5:cmd", "aedpva:cmd",
// "5-svc:vrf", "asv-5:cmd", "savc-asa:cmd"};
// THEN("Parsing Throws") {
// for (size_t i = 0; i != arg.size(); ++i) {
// REQUIRE_THROWS(p.Parse(arg[i]));
// }
// }
// }
}
}
@ -266,19 +266,19 @@ TEST_CASE("Double digit id", "[support]") {
REQUIRE(p.arguments().empty());
}
TEST_CASE("Calling with wrong id throws invalid_argument", "[support]") {
int argc = 2;
const char *const argv[]{"caller", "asvldkn:vrf"};
CmdParser p;
CHECK_THROWS(p.Parse(argc, argv));
}
// TEST_CASE("Calling with wrong id throws invalid_argument", "[support]") {
// int argc = 2;
// const char *const argv[]{"caller", "asvldkn:vrf"};
// CmdParser p;
// CHECK_THROWS(p.Parse(argc, argv));
// }
TEST_CASE("Calling with wrong client throws invalid_argument", "[support]") {
int argc = 2;
const char *const argv[]{"caller", "lki-3:vrf"};
CmdParser p;
CHECK_THROWS(p.Parse(argc, argv));
}
// TEST_CASE("Calling with wrong client throws invalid_argument", "[support]") {
// int argc = 2;
// const char *const argv[]{"caller", "lki-3:vrf"};
// CmdParser p;
// CHECK_THROWS(p.Parse(argc, argv));
// }
TEST_CASE("Build up argv", "[support]") {
CmdParser p;
@ -289,4 +289,42 @@ TEST_CASE("Build up argv", "[support]") {
p.Parse(s);
REQUIRE(p.argv().data() != nullptr);
REQUIRE(p.argv().size() == 3);
}
TEST_CASE("Allows space between mod id and command"){
CmdParser p;
p.Parse("1: exptime 0.5");
REQUIRE(p.detector_id() == 8);
REQUIRE(p.command() == "exptime");
REQUIRE(p.arguments().size() == 1);
REQUIRE(p.arguments()[0] == "0.5");
}
TEST_CASE("Allows space between mod id and command also without :"){
CmdParser p;
p.Parse("1 exptime 0.5");
REQUIRE(p.detector_id() == 1);
REQUIRE(p.command() == "exptime");
REQUIRE(p.arguments().size() == 1);
REQUIRE(p.arguments()[0] == "0.5");
}
TEST_CASE("Allows space between mod id and command when detector id is used"){
CmdParser p;
p.Parse("1-5 exptime 0.5");
REQUIRE(p.detector_id() == 5);
REQUIRE(p.multi_id() == 1);
REQUIRE(p.command() == "exptime");
REQUIRE(p.arguments().size() == 1);
REQUIRE(p.arguments()[0] == "0.5");
}
TEST_CASE("Allows space between mod id and command with detector id and :"){
CmdParser p;
p.Parse("1-5: exptime 0.5");
REQUIRE(p.detector_id() == 5);
REQUIRE(p.multi_id() == 1);
REQUIRE(p.command() == "exptime");
REQUIRE(p.arguments().size() == 1);
REQUIRE(p.arguments()[0] == "0.5");
}