2011-07-30 21:43:21 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
|
|
|
* Copyright (C) 2007-2011 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 "tokenize.h"
|
|
|
|
#include "checkassignif.h"
|
|
|
|
#include "testsuite.h"
|
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
extern std::ostringstream errout;
|
|
|
|
|
|
|
|
class TestAssignIf : public TestFixture
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TestAssignIf() : TestFixture("TestAssignIf")
|
|
|
|
{ }
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
|
|
void run()
|
|
|
|
{
|
2011-07-31 11:23:38 +02:00
|
|
|
TEST_CASE(assignAndCompare);
|
|
|
|
TEST_CASE(compare);
|
2011-07-30 21:43:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void check(const char code[])
|
|
|
|
{
|
|
|
|
// Clear the error buffer..
|
|
|
|
errout.str("");
|
|
|
|
|
|
|
|
Settings settings;
|
|
|
|
settings._checkCodingStyle = true;
|
|
|
|
|
|
|
|
// Tokenize..
|
|
|
|
Tokenizer tokenizer(&settings, this);
|
|
|
|
std::istringstream istr(code);
|
|
|
|
tokenizer.tokenize(istr, "test.cpp");
|
|
|
|
tokenizer.setVarId();
|
|
|
|
tokenizer.simplifyTokenList();
|
|
|
|
|
|
|
|
// Check char variable usage..
|
2011-07-31 11:23:38 +02:00
|
|
|
CheckAssignIf checkAssignIf(&tokenizer, &settings, this);
|
|
|
|
checkAssignIf.assignIf();
|
|
|
|
checkAssignIf.comparison();
|
2011-07-30 21:43:21 +02:00
|
|
|
}
|
|
|
|
|
2011-07-31 11:23:38 +02:00
|
|
|
void assignAndCompare()
|
2011-07-30 21:43:21 +02:00
|
|
|
{
|
|
|
|
check("void foo(int x)\n"
|
|
|
|
"{\n"
|
|
|
|
" int y = x & 4;\n"
|
|
|
|
" if (y == 3);\n"
|
|
|
|
"}\n");
|
2011-07-31 10:48:31 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:4]: (style) Mismatching assignment and comparison, comparison is always false\n", errout.str());
|
|
|
|
|
|
|
|
check("void foo(int x)\n"
|
|
|
|
"{\n"
|
|
|
|
" int y = x & 4;\n"
|
|
|
|
" if (y != 3);\n"
|
|
|
|
"}\n");
|
|
|
|
ASSERT_EQUALS("[test.cpp:4]: (style) Mismatching assignment and comparison, comparison is always true\n", errout.str());
|
2011-07-30 21:43:21 +02:00
|
|
|
}
|
2011-07-31 11:23:38 +02:00
|
|
|
|
|
|
|
void compare()
|
|
|
|
{
|
|
|
|
check("void foo(int x)\n"
|
|
|
|
"{\n"
|
|
|
|
" if (x & 4 == 3);\n"
|
|
|
|
"}\n");
|
|
|
|
ASSERT_EQUALS("[test.cpp:3]: (style) Comparison is always false\n", errout.str());
|
|
|
|
|
|
|
|
check("void foo(int x)\n"
|
|
|
|
"{\n"
|
|
|
|
" if (x & 4 != 3);\n"
|
|
|
|
"}\n");
|
|
|
|
ASSERT_EQUALS("[test.cpp:3]: (style) Comparison is always true\n", errout.str());
|
|
|
|
}
|
2011-07-30 21:43:21 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
REGISTER_TEST(TestAssignIf)
|
|
|
|
|