Add couple of basic tests for CmdLineParser.
This commit is contained in:
parent
e800490b50
commit
f36666572a
|
@ -370,8 +370,13 @@ bool CmdLineParser::ParseFromArgs(int argc, const char* const argv[])
|
|||
}
|
||||
|
||||
|
||||
if (argc <= 1 || _showHelp)
|
||||
if (argc <= 1)
|
||||
_showHelp = true;
|
||||
|
||||
if (_showHelp)
|
||||
{
|
||||
PrintHelp();
|
||||
}
|
||||
else if (_pathnames.empty())
|
||||
{
|
||||
std::cout << "cppcheck: No C or C++ source files found.";
|
||||
|
|
|
@ -76,6 +76,14 @@ public:
|
|||
return _pathnames;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return if help is shown to user.
|
||||
*/
|
||||
bool GetShowHelp() const
|
||||
{
|
||||
return _showHelp;
|
||||
}
|
||||
|
||||
protected:
|
||||
|
||||
/**
|
||||
|
|
|
@ -44,7 +44,7 @@
|
|||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="..\lib"
|
||||
AdditionalIncludeDirectories="..\lib;..\cli"
|
||||
PreprocessorDefinitions="_DEBUG,WIN32,UNIT_TESTING;_CRT_SECURE_NO_WARNINGS"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="1"
|
||||
|
@ -128,7 +128,7 @@
|
|||
Optimization="2"
|
||||
EnableIntrinsicFunctions="true"
|
||||
WholeProgramOptimization="true"
|
||||
AdditionalIncludeDirectories="..\lib"
|
||||
AdditionalIncludeDirectories="..\lib;..\cli"
|
||||
PreprocessorDefinitions="NDEBUG,WIN32,UNIT_TESTING;_CRT_SECURE_NO_WARNINGS"
|
||||
RuntimeLibrary="0"
|
||||
TreatWChar_tAsBuiltInType="false"
|
||||
|
@ -222,6 +222,10 @@
|
|||
RelativePath="..\lib\checkunusedfunctions.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\cli\cmdlineparser.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\lib\cppcheck.cpp"
|
||||
>
|
||||
|
@ -274,6 +278,10 @@
|
|||
RelativePath="testclass.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\testcmdlineparser.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="testconstructors.cpp"
|
||||
>
|
||||
|
@ -428,6 +436,10 @@
|
|||
RelativePath="..\lib\classinfo.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\cli\cmdlineparser.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\lib\cppcheck.h"
|
||||
>
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
</Midl>
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<AdditionalIncludeDirectories>..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>..\lib;..\cli;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>_DEBUG;WIN32;UNIT_TESTING;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
|
||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
||||
|
@ -94,7 +94,7 @@
|
|||
<Optimization>MaxSpeed</Optimization>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<AdditionalIncludeDirectories>..\lib;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<AdditionalIncludeDirectories>..\lib;..\cli;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<PreprocessorDefinitions>NDEBUG;WIN32;UNIT_TESTING;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
||||
<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>
|
||||
|
@ -120,6 +120,7 @@
|
|||
</Bscmake>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\cli\cmdlineparser.cpp" />
|
||||
<ClCompile Include="..\lib\checkautovariables.cpp" />
|
||||
<ClCompile Include="..\lib\checkbufferoverrun.cpp" />
|
||||
<ClCompile Include="..\lib\checkclass.cpp" />
|
||||
|
@ -144,6 +145,7 @@
|
|||
<ClCompile Include="testbufferoverrun.cpp" />
|
||||
<ClCompile Include="testcharvar.cpp" />
|
||||
<ClCompile Include="testclass.cpp" />
|
||||
<ClCompile Include="testcmdlineparser.cpp" />
|
||||
<ClCompile Include="testconstructors.cpp" />
|
||||
<ClCompile Include="testcppcheck.cpp" />
|
||||
<ClCompile Include="testdivision.cpp" />
|
||||
|
@ -169,6 +171,7 @@
|
|||
<ClCompile Include="tinyxml\tinyxmlparser.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\cli\cmdlineparser.h" />
|
||||
<ClInclude Include="..\lib\check.h" />
|
||||
<ClInclude Include="..\lib\checkautovariables.h" />
|
||||
<ClInclude Include="..\lib\checkbufferoverrun.h" />
|
||||
|
|
|
@ -152,6 +152,12 @@
|
|||
<ClCompile Include="..\lib\timer.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\cli\cmdlineparser.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="testcmdlineparser.cpp">
|
||||
<Filter>Source Files</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="testsuite.h">
|
||||
|
@ -226,5 +232,8 @@
|
|||
<ClInclude Include="..\lib\timer.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\cli\cmdlineparser.h">
|
||||
<Filter>Header Files</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -0,0 +1,118 @@
|
|||
/*
|
||||
* Cppcheck - A tool for static C/C++ code analysis
|
||||
* Copyright (C) 2007-2010 Daniel Marjamäki and Cppcheck team.
|
||||
*
|
||||
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include <iostream>
|
||||
#include "testsuite.h"
|
||||
#include "cmdlineparser.h"
|
||||
#include "settings.h"
|
||||
|
||||
extern std::ostringstream errout;
|
||||
extern std::ostringstream output;
|
||||
|
||||
class RedirectInputOutput
|
||||
{
|
||||
public:
|
||||
RedirectInputOutput()
|
||||
{
|
||||
// flush all old output
|
||||
std::cout.flush();
|
||||
std::cerr.flush();
|
||||
|
||||
_oldCout = std::cout.rdbuf(); // back up cout's streambuf
|
||||
_oldCerr = std::cerr.rdbuf(); // back up cerr's streambuf
|
||||
|
||||
std::cout.rdbuf(_out.rdbuf()); // assign streambuf to cout
|
||||
std::cerr.rdbuf(_err.rdbuf()); // assign streambuf to cerr
|
||||
}
|
||||
|
||||
~RedirectInputOutput()
|
||||
{
|
||||
std::cout.rdbuf(_oldCout); // restore cout's original streambuf
|
||||
std::cerr.rdbuf(_oldCerr); // restore cerrs's original streambuf
|
||||
|
||||
errout << _err.str();
|
||||
output << _out.str();
|
||||
}
|
||||
|
||||
private:
|
||||
std::stringstream _out;
|
||||
std::stringstream _err;
|
||||
std::streambuf* _oldCout;
|
||||
std::streambuf *_oldCerr;
|
||||
};
|
||||
|
||||
#define REDIRECT RedirectInputOutput redir;
|
||||
|
||||
class TestCmdlineParser : public TestFixture
|
||||
{
|
||||
public:
|
||||
TestCmdlineParser() : TestFixture("TestCmdlineParser")
|
||||
{ }
|
||||
|
||||
private:
|
||||
|
||||
void run()
|
||||
{
|
||||
TEST_CASE(nooptions);
|
||||
TEST_CASE(helpshort);
|
||||
TEST_CASE(helplong);
|
||||
TEST_CASE(showversion);
|
||||
}
|
||||
|
||||
void nooptions()
|
||||
{
|
||||
REDIRECT;
|
||||
const char *argv[] = {"cppcheck"};
|
||||
Settings settings;
|
||||
CmdLineParser parser(&settings);
|
||||
ASSERT(parser.ParseFromArgs(1, argv));
|
||||
ASSERT_EQUALS(true, parser.GetShowHelp());
|
||||
}
|
||||
|
||||
void helpshort()
|
||||
{
|
||||
REDIRECT;
|
||||
const char *argv[] = {"cppcheck", "-h"};
|
||||
Settings settings;
|
||||
CmdLineParser parser(&settings);
|
||||
ASSERT(parser.ParseFromArgs(2, argv));
|
||||
ASSERT_EQUALS(true, parser.GetShowHelp());
|
||||
}
|
||||
|
||||
void helplong()
|
||||
{
|
||||
REDIRECT;
|
||||
const char *argv[] = {"cppcheck", "--help"};
|
||||
Settings settings;
|
||||
CmdLineParser parser(&settings);
|
||||
ASSERT(parser.ParseFromArgs(2, argv));
|
||||
ASSERT_EQUALS(true, parser.GetShowHelp());
|
||||
}
|
||||
|
||||
void showversion()
|
||||
{
|
||||
REDIRECT;
|
||||
const char *argv[] = {"cppcheck", "--version"};
|
||||
Settings settings;
|
||||
CmdLineParser parser(&settings);
|
||||
ASSERT(parser.ParseFromArgs(2, argv));
|
||||
ASSERT_EQUALS(true, parser.GetShowVersion());
|
||||
}
|
||||
};
|
||||
|
||||
REGISTER_TEST(TestCmdlineParser)
|
Loading…
Reference in New Issue