cmake/Source/kwsys/testCommandLineArguments1.cxx

92 lines
2.8 KiB
C++
Raw Normal View History

2017-04-14 19:02:05 +02:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing#kwsys for details. */
#include "kwsysPrivate.h"
#include KWSYS_HEADER(CommandLineArguments.hxx)
// Work-around CMake dependency scanning limitation. This must
// duplicate the above list of headers.
#if 0
2018-08-09 18:06:22 +02:00
# include "CommandLineArguments.hxx.in"
#endif
2015-11-17 17:22:37 +01:00
#include <iostream>
#include <vector>
2020-08-30 11:54:41 +02:00
#include <cassert> /* assert */
#include <cstring> /* strcmp */
int testCommandLineArguments1(int argc, char* argv[])
{
kwsys::CommandLineArguments arg;
arg.Initialize(argc, argv);
int n = 0;
2020-02-01 23:06:01 +01:00
char* m = nullptr;
2015-11-17 17:22:37 +01:00
std::string p;
int res = 0;
2020-08-30 11:54:41 +02:00
using argT = kwsys::CommandLineArguments;
arg.AddArgument("-n", argT::SPACE_ARGUMENT, &n, "Argument N");
arg.AddArgument("-m", argT::EQUAL_ARGUMENT, &m, "Argument M");
arg.AddBooleanArgument("-p", &p, "Argument P");
arg.StoreUnusedArguments(true);
2017-04-14 19:02:05 +02:00
if (!arg.Parse()) {
2015-11-17 17:22:37 +01:00
std::cerr << "Problem parsing arguments" << std::endl;
res = 1;
2017-04-14 19:02:05 +02:00
}
if (n != 24) {
2015-11-17 17:22:37 +01:00
std::cout << "Problem setting N. Value of N: " << n << std::endl;
res = 1;
2017-04-14 19:02:05 +02:00
}
if (!m || strcmp(m, "test value") != 0) {
2015-11-17 17:22:37 +01:00
std::cout << "Problem setting M. Value of M: " << m << std::endl;
res = 1;
2017-04-14 19:02:05 +02:00
}
if (p != "1") {
2015-11-17 17:22:37 +01:00
std::cout << "Problem setting P. Value of P: " << p << std::endl;
res = 1;
2017-04-14 19:02:05 +02:00
}
2015-11-17 17:22:37 +01:00
std::cout << "Value of N: " << n << std::endl;
std::cout << "Value of M: " << m << std::endl;
std::cout << "Value of P: " << p << std::endl;
2020-08-30 11:54:41 +02:00
delete[] m;
2020-02-01 23:06:01 +01:00
char** newArgv = nullptr;
int newArgc = 0;
arg.GetUnusedArguments(&newArgc, &newArgv);
int cc;
2020-02-01 23:06:01 +01:00
const char* valid_unused_args[9] = { nullptr,
2017-04-14 19:02:05 +02:00
"--ignored",
"--second-ignored",
"third-ignored",
"some",
"junk",
"at",
"the",
"end" };
if (newArgc != 9) {
2015-11-17 17:22:37 +01:00
std::cerr << "Bad number of unused arguments: " << newArgc << std::endl;
res = 1;
2017-04-14 19:02:05 +02:00
}
for (cc = 0; cc < newArgc; ++cc) {
2015-04-27 22:25:09 +02:00
assert(newArgv[cc]); /* Quiet Clang scan-build. */
2015-11-17 17:22:37 +01:00
std::cout << "Unused argument[" << cc << "] = [" << newArgv[cc] << "]"
2017-04-14 19:02:05 +02:00
<< std::endl;
if (cc >= 9) {
2015-11-17 17:22:37 +01:00
std::cerr << "Too many unused arguments: " << cc << std::endl;
res = 1;
2017-04-14 19:02:05 +02:00
} else if (valid_unused_args[cc] &&
strcmp(valid_unused_args[cc], newArgv[cc]) != 0) {
std::cerr << "Bad unused argument [" << cc << "] \"" << newArgv[cc]
<< "\" should be: \"" << valid_unused_args[cc] << "\""
<< std::endl;
res = 1;
}
2017-04-14 19:02:05 +02:00
}
arg.DeleteRemainingArguments(newArgc, &newArgv);
return res;
}