xref: /freebsd/contrib/kyua/cli/cmd_debug.cpp (revision b0d29bc4)
1*b0d29bc4SBrooks Davis // Copyright 2011 The Kyua Authors.
2*b0d29bc4SBrooks Davis // All rights reserved.
3*b0d29bc4SBrooks Davis //
4*b0d29bc4SBrooks Davis // Redistribution and use in source and binary forms, with or without
5*b0d29bc4SBrooks Davis // modification, are permitted provided that the following conditions are
6*b0d29bc4SBrooks Davis // met:
7*b0d29bc4SBrooks Davis //
8*b0d29bc4SBrooks Davis // * Redistributions of source code must retain the above copyright
9*b0d29bc4SBrooks Davis //   notice, this list of conditions and the following disclaimer.
10*b0d29bc4SBrooks Davis // * Redistributions in binary form must reproduce the above copyright
11*b0d29bc4SBrooks Davis //   notice, this list of conditions and the following disclaimer in the
12*b0d29bc4SBrooks Davis //   documentation and/or other materials provided with the distribution.
13*b0d29bc4SBrooks Davis // * Neither the name of Google Inc. nor the names of its contributors
14*b0d29bc4SBrooks Davis //   may be used to endorse or promote products derived from this software
15*b0d29bc4SBrooks Davis //   without specific prior written permission.
16*b0d29bc4SBrooks Davis //
17*b0d29bc4SBrooks Davis // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18*b0d29bc4SBrooks Davis // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19*b0d29bc4SBrooks Davis // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20*b0d29bc4SBrooks Davis // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21*b0d29bc4SBrooks Davis // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22*b0d29bc4SBrooks Davis // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23*b0d29bc4SBrooks Davis // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24*b0d29bc4SBrooks Davis // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25*b0d29bc4SBrooks Davis // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26*b0d29bc4SBrooks Davis // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27*b0d29bc4SBrooks Davis // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28*b0d29bc4SBrooks Davis 
29*b0d29bc4SBrooks Davis #include "cli/cmd_debug.hpp"
30*b0d29bc4SBrooks Davis 
31*b0d29bc4SBrooks Davis #include <cstdlib>
32*b0d29bc4SBrooks Davis 
33*b0d29bc4SBrooks Davis #include "cli/common.ipp"
34*b0d29bc4SBrooks Davis #include "drivers/debug_test.hpp"
35*b0d29bc4SBrooks Davis #include "engine/filters.hpp"
36*b0d29bc4SBrooks Davis #include "utils/cmdline/exceptions.hpp"
37*b0d29bc4SBrooks Davis #include "utils/cmdline/options.hpp"
38*b0d29bc4SBrooks Davis #include "utils/cmdline/parser.ipp"
39*b0d29bc4SBrooks Davis #include "utils/cmdline/ui.hpp"
40*b0d29bc4SBrooks Davis #include "utils/format/macros.hpp"
41*b0d29bc4SBrooks Davis 
42*b0d29bc4SBrooks Davis namespace cmdline = utils::cmdline;
43*b0d29bc4SBrooks Davis namespace config = utils::config;
44*b0d29bc4SBrooks Davis 
45*b0d29bc4SBrooks Davis using cli::cmd_debug;
46*b0d29bc4SBrooks Davis 
47*b0d29bc4SBrooks Davis 
48*b0d29bc4SBrooks Davis /// Default constructor for cmd_debug.
cmd_debug(void)49*b0d29bc4SBrooks Davis cmd_debug::cmd_debug(void) : cli_command(
50*b0d29bc4SBrooks Davis     "debug", "test_case", 1, 1,
51*b0d29bc4SBrooks Davis     "Executes a single test case providing facilities for debugging")
52*b0d29bc4SBrooks Davis {
53*b0d29bc4SBrooks Davis     add_option(build_root_option);
54*b0d29bc4SBrooks Davis     add_option(kyuafile_option);
55*b0d29bc4SBrooks Davis 
56*b0d29bc4SBrooks Davis     add_option(cmdline::path_option(
57*b0d29bc4SBrooks Davis         "stdout", "Where to direct the standard output of the test case",
58*b0d29bc4SBrooks Davis         "path", "/dev/stdout"));
59*b0d29bc4SBrooks Davis 
60*b0d29bc4SBrooks Davis     add_option(cmdline::path_option(
61*b0d29bc4SBrooks Davis         "stderr", "Where to direct the standard error of the test case",
62*b0d29bc4SBrooks Davis         "path", "/dev/stderr"));
63*b0d29bc4SBrooks Davis }
64*b0d29bc4SBrooks Davis 
65*b0d29bc4SBrooks Davis 
66*b0d29bc4SBrooks Davis /// Entry point for the "debug" subcommand.
67*b0d29bc4SBrooks Davis ///
68*b0d29bc4SBrooks Davis /// \param ui Object to interact with the I/O of the program.
69*b0d29bc4SBrooks Davis /// \param cmdline Representation of the command line to the subcommand.
70*b0d29bc4SBrooks Davis /// \param user_config The runtime debuguration of the program.
71*b0d29bc4SBrooks Davis ///
72*b0d29bc4SBrooks Davis /// \return 0 if everything is OK, 1 if any of the necessary documents cannot be
73*b0d29bc4SBrooks Davis /// opened.
74*b0d29bc4SBrooks Davis int
run(cmdline::ui * ui,const cmdline::parsed_cmdline & cmdline,const config::tree & user_config)75*b0d29bc4SBrooks Davis cmd_debug::run(cmdline::ui* ui, const cmdline::parsed_cmdline& cmdline,
76*b0d29bc4SBrooks Davis                const config::tree& user_config)
77*b0d29bc4SBrooks Davis {
78*b0d29bc4SBrooks Davis     const std::string& test_case_name = cmdline.arguments()[0];
79*b0d29bc4SBrooks Davis     if (test_case_name.find(':') == std::string::npos)
80*b0d29bc4SBrooks Davis         throw cmdline::usage_error(F("'%s' is not a test case identifier "
81*b0d29bc4SBrooks Davis                                      "(missing ':'?)") % test_case_name);
82*b0d29bc4SBrooks Davis     const engine::test_filter filter = engine::test_filter::parse(
83*b0d29bc4SBrooks Davis         test_case_name);
84*b0d29bc4SBrooks Davis 
85*b0d29bc4SBrooks Davis     const drivers::debug_test::result result = drivers::debug_test::drive(
86*b0d29bc4SBrooks Davis         kyuafile_path(cmdline), build_root_path(cmdline), filter, user_config,
87*b0d29bc4SBrooks Davis         cmdline.get_option< cmdline::path_option >("stdout"),
88*b0d29bc4SBrooks Davis         cmdline.get_option< cmdline::path_option >("stderr"));
89*b0d29bc4SBrooks Davis 
90*b0d29bc4SBrooks Davis     ui->out(F("%s  ->  %s") % cli::format_test_case_id(result.test_case) %
91*b0d29bc4SBrooks Davis             cli::format_result(result.test_result));
92*b0d29bc4SBrooks Davis 
93*b0d29bc4SBrooks Davis     return result.test_result.good() ? EXIT_SUCCESS : EXIT_FAILURE;
94*b0d29bc4SBrooks Davis }
95