blob: f629f622854ed7c9c3cb21489c1a6e41935b48f7 [file] [log] [blame]
Davide Pesavento2a588152018-02-19 18:10:03 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Davide Pesaventoc52cd5e2022-03-05 20:40:54 -05003 * Copyright (c) 2014-2022, Regents of the University of California,
Davide Pesavento2a588152018-02-19 18:10:03 -05004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
10 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26#include "nfdc/help.hpp"
27
28#include "tests/test-common.hpp"
29
Davide Pesaventocf9e1c72019-12-22 17:56:07 -050030#include <boost/test/tools/output_test_stream.hpp>
Davide Pesaventocf9e1c72019-12-22 17:56:07 -050031
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040032namespace nfd::tools::nfdc::tests {
Davide Pesavento2a588152018-02-19 18:10:03 -050033
Davide Pesavento2a588152018-02-19 18:10:03 -050034BOOST_AUTO_TEST_SUITE(Nfdc)
Davide Pesaventocf7db2f2019-03-24 23:17:28 -040035BOOST_AUTO_TEST_SUITE(TestHelp)
Davide Pesavento2a588152018-02-19 18:10:03 -050036
37BOOST_AUTO_TEST_CASE(Basic)
38{
39 CommandParser parser;
40 ExecuteCommand dummyExecute = [] (ExecuteContext&) { BOOST_ERROR("should not be called"); };
41
42 boost::test_tools::output_test_stream out;
Alexander Afanasyevc414ca52021-06-09 12:15:19 -040043 const std::string header("nfdc [-h|--help] [-V|--version] [-f|--batch <batch-file>] [<command> [<args>]]\n\n");
Davide Pesavento2a588152018-02-19 18:10:03 -050044 const std::string trailer("\nSee 'nfdc help <command>' to read about a specific subcommand.\n");
45
46 helpList(out, parser);
47 BOOST_CHECK(out.is_equal(header + "All subcommands:\n"
48 " (none)\n"));
49
50 parser.addCommand(CommandDefinition("status", "show"), dummyExecute);
51 parser.addCommand(CommandDefinition("face", "list"), dummyExecute);
52 parser.addCommand(CommandDefinition("route", "list"), dummyExecute);
53 parser.addCommand(CommandDefinition("route", "add"), dummyExecute);
54 parser.addCommand(CommandDefinition("batch", "command"), dummyExecute,
55 AVAILABLE_IN_BATCH | AVAILABLE_IN_HELP);
56
57 helpList(out, parser);
58 BOOST_CHECK(out.is_equal(header +
59 "All subcommands:\n"
60 " status show \n"
61 " face list \n"
62 " route list \n"
63 " route add \n" + trailer));
64
65 helpList(out, parser, ParseMode::ONE_SHOT, "route");
66 BOOST_CHECK(out.is_equal(header +
67 "Subcommands starting with route:\n"
68 " route list \n"
69 " route add \n" + trailer));
70
71 helpList(out, parser, ParseMode::ONE_SHOT, "hello");
72 BOOST_CHECK(out.is_equal(header +
73 "Subcommands starting with hello:\n"
74 " (none)\n"));
75
76 helpList(out, parser, ParseMode::BATCH);
77 BOOST_CHECK(out.is_equal(header +
78 "All subcommands:\n"
79 " status show \n"
80 " face list \n"
81 " route list \n"
82 " route add \n"
83 " batch command \n" + trailer));
84
85 BOOST_CHECK_EQUAL(help(out, parser, {}), 2);
86 BOOST_CHECK(out.is_empty());
87
88 BOOST_CHECK_EQUAL(help(out, parser, {"help"}), 0);
89 BOOST_CHECK(out.is_equal(header +
90 "All subcommands:\n"
91 " status show \n"
92 " face list \n"
93 " route list \n"
94 " route add \n" + trailer));
95}
96
97BOOST_AUTO_TEST_SUITE_END() // TestCommandParser
98BOOST_AUTO_TEST_SUITE_END() // Nfdc
99
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400100} // namespace nfd::tools::nfdc::tests