(search & replace). Please feel free to add your name to any files to which you added any contributions. ALL SOURCECODE IS LICENCED UNDER THE TERMS AND CONDITIONS OF THE GPL (2 and above)
126 lines
3.5 KiB
C++
126 lines
3.5 KiB
C++
/*
|
|
Suite - helper class for running collections of tests
|
|
|
|
Copyright (C) CinelerraCV
|
|
2007, Hermann Vosseler <Ichthyostega@web.de>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
* *****************************************************/
|
|
|
|
|
|
#include "common/test/testoption.hpp"
|
|
#include "common/test/suite.hpp"
|
|
|
|
#include "nobugcfg.h"
|
|
#include "common/error.hpp"
|
|
|
|
|
|
|
|
typedef boost::program_options::options_description Syntax;
|
|
typedef boost::program_options::variables_map VarMap;
|
|
|
|
namespace op = boost::program_options;
|
|
|
|
using util::VectS;
|
|
|
|
namespace test
|
|
{
|
|
|
|
|
|
/** set up an options parser to use the current commandline.
|
|
* reconizes the following options
|
|
* \code
|
|
* --help
|
|
* --group <groupID>
|
|
* \endcode
|
|
*/
|
|
TestOption::TestOption (util::Cmdline& cmdline)
|
|
: syntax("Run a collection of test cases. Supported parameters"),
|
|
parameters()
|
|
{
|
|
syntax.add_options()
|
|
("help,h", "produce help message")
|
|
("group,g", op::value<string>()->default_value(Suite::ALLGROUP),
|
|
"the group (selection) of testcases to execute")
|
|
("describe", op::bool_switch(),
|
|
"ennumerate all testcases in this Suite in a format usable with ./test.sh.")
|
|
("id", op::value<VectS>(),
|
|
"an individual testcase to be called.\nIf not specified, run all.")
|
|
;
|
|
|
|
// the testcase-ID is really an positional parameter
|
|
op::positional_options_description posopt;
|
|
posopt.add("id", -1);
|
|
|
|
op::parsed_options parsed =
|
|
op::command_line_parser (cmdline)
|
|
.options (syntax)
|
|
.positional(posopt)
|
|
.allow_unregistered()
|
|
.run();
|
|
|
|
op::store (parsed, parameters);
|
|
op::notify(parameters);
|
|
|
|
// remove all recognized options from original cmdline vector
|
|
cmdline = op::collect_unrecognized(parsed.options, op::include_positional);
|
|
|
|
if (parameters.count("help"))
|
|
std::cerr << *this;
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @return the Tests-Group as given on cmdline, or Suite::ALLGROUP as default
|
|
*/
|
|
const string
|
|
TestOption::getTestgroup ()
|
|
{
|
|
ASSERT (parameters.count ("group"));
|
|
return parameters["group"].as<string>();
|
|
}
|
|
|
|
/** @return ID of a single test to run, empty string if not specified
|
|
*/
|
|
const string
|
|
TestOption::getTestID ()
|
|
{
|
|
if (parameters.count ("id") &&
|
|
parameters["id"].as<VectS>().size() > 0)
|
|
return parameters["id"].as<VectS>()[0];
|
|
else
|
|
return string ();
|
|
}
|
|
|
|
/** @return \c true if --describe switch was given */
|
|
const bool
|
|
TestOption::getDescribe ()
|
|
{
|
|
return parameters["describe"].as<bool>();
|
|
}
|
|
|
|
|
|
|
|
ostream&
|
|
operator<< (ostream& os, const TestOption& to)
|
|
{
|
|
return os << to.syntax;
|
|
}
|
|
|
|
|
|
|
|
} // namespace test
|