Skip to content

Commit

Permalink
subparser: use full parser path instead of just parser name in usage(…
Browse files Browse the repository at this point in the history
…) message
  • Loading branch information
rouault committed Nov 8, 2024
1 parent 84c0205 commit bd5bb36
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion include/argparse/argparse.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2067,7 +2067,7 @@ class ArgumentParser {
std::stringstream stream;

std::string curline("Usage: ");
curline += this->m_program_name;
curline += this->m_parser_path;
const bool multiline_usage =
this->m_usage_max_line_width < (std::numeric_limits<std::size_t>::max)();
const size_t indent_size = curline.size();
Expand Down
26 changes: 26 additions & 0 deletions test/test_subparsers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -280,3 +280,29 @@ TEST_CASE("Check set_suppress" * test_suite("subparsers")) {
REQUIRE(contains(program.help().str(), "command_2") == true);
}
}


TEST_CASE("Help of subparsers" * test_suite("subparsers")) {
argparse::ArgumentParser program("test");

argparse::ArgumentParser command_1("add", "1.0", argparse::default_arguments::version);

std::stringstream buffer;
command_1.add_argument("--help")
.action([&](const auto &) { buffer << command_1; })
.default_value(false)
.implicit_value(true)
.nargs(0);

program.add_subparser(command_1);

REQUIRE(command_1.usage() == "Usage: test add [--version] [--help]");

REQUIRE(buffer.str().empty());
program.parse_args({"test", "add", "--help"});
REQUIRE(buffer.str() == "Usage: test add [--version] [--help]\n"
"\n"
"Optional arguments:\n"
" -v, --version prints version information and exits \n"
" --help \n");
}

0 comments on commit bd5bb36

Please sign in to comment.