2011-07-30 21:43:21 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2013-01-01 17:29:08 +01:00
|
|
|
* Copyright (C) 2007-2013 Daniel Marjamäki and Cppcheck team.
|
2011-07-30 21:43:21 +02:00
|
|
|
*
|
|
|
|
* 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;
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
class TestAssignIf : public TestFixture {
|
2011-07-30 21:43:21 +02:00
|
|
|
public:
|
2013-08-07 16:27:37 +02:00
|
|
|
TestAssignIf() : TestFixture("TestAssignIf") {
|
|
|
|
}
|
2011-07-30 21:43:21 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void run() {
|
2011-08-01 09:35:48 +02:00
|
|
|
TEST_CASE(assignAndCompare); // assignment and comparison don't match
|
2013-04-23 06:47:15 +02:00
|
|
|
TEST_CASE(mismatchingBitAnd); // overlapping bitmasks
|
2011-08-01 09:35:48 +02:00
|
|
|
TEST_CASE(compare); // mismatching LHS/RHS in comparison
|
|
|
|
TEST_CASE(multicompare); // mismatching comparisons
|
2011-07-30 21:43:21 +02:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void check(const char code[]) {
|
2011-07-30 21:43:21 +02:00
|
|
|
// Clear the error buffer..
|
|
|
|
errout.str("");
|
|
|
|
|
|
|
|
Settings settings;
|
2011-08-07 09:28:08 +02:00
|
|
|
settings.addEnabled("style");
|
2011-07-30 21:43:21 +02:00
|
|
|
|
|
|
|
// Tokenize..
|
|
|
|
Tokenizer tokenizer(&settings, this);
|
|
|
|
std::istringstream istr(code);
|
|
|
|
tokenizer.tokenize(istr, "test.cpp");
|
2013-04-13 18:23:53 +02:00
|
|
|
const std::string str1(tokenizer.tokens()->stringifyList(0,true));
|
2013-12-30 17:45:28 +01:00
|
|
|
tokenizer.simplifyTokenList2();
|
2013-04-13 18:23:53 +02:00
|
|
|
const std::string str2(tokenizer.tokens()->stringifyList(0,true));
|
|
|
|
|
|
|
|
// Ensure that the test case is not bad.
|
|
|
|
if (str1 != str2) {
|
2013-04-16 16:54:19 +02:00
|
|
|
warn(("Unsimplified code in test case. It looks like this test "
|
|
|
|
"should either be cleaned up or moved to TestTokenizer or "
|
|
|
|
"TestSimplifyTokens instead.\nstr1="+str1+"\nstr2="+str2).c_str());
|
2013-04-13 18:23:53 +02:00
|
|
|
}
|
|
|
|
|
2011-07-30 21:43:21 +02:00
|
|
|
|
|
|
|
// Check char variable usage..
|
2011-07-31 11:23:38 +02:00
|
|
|
CheckAssignIf checkAssignIf(&tokenizer, &settings, this);
|
|
|
|
checkAssignIf.assignIf();
|
|
|
|
checkAssignIf.comparison();
|
2011-08-01 11:33:09 +02:00
|
|
|
checkAssignIf.multiCondition();
|
2011-07-30 21:43:21 +02:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void assignAndCompare() {
|
2011-08-19 16:10:09 +02:00
|
|
|
// &
|
2011-07-30 21:43:21 +02:00
|
|
|
check("void foo(int x)\n"
|
|
|
|
"{\n"
|
|
|
|
" int y = x & 4;\n"
|
|
|
|
" if (y == 3);\n"
|
2013-03-19 09:18:58 +01:00
|
|
|
"}");
|
2012-09-28 17:03:16 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:3] -> [test.cpp:4]: (style) Mismatching assignment and comparison, comparison 'y==3' is always false.\n", errout.str());
|
2011-07-31 10:48:31 +02:00
|
|
|
|
|
|
|
check("void foo(int x)\n"
|
|
|
|
"{\n"
|
|
|
|
" int y = x & 4;\n"
|
|
|
|
" if (y != 3);\n"
|
2013-03-19 09:18:58 +01:00
|
|
|
"}");
|
2012-09-28 17:03:16 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:3] -> [test.cpp:4]: (style) Mismatching assignment and comparison, comparison 'y!=3' is always true.\n", errout.str());
|
2012-09-26 20:15:46 +02:00
|
|
|
|
2011-08-19 16:10:09 +02:00
|
|
|
// |
|
|
|
|
check("void foo(int x) {\n"
|
|
|
|
" int y = x | 0x14;\n"
|
|
|
|
" if (y == 0x710);\n"
|
|
|
|
"}");
|
2012-09-28 17:03:16 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:2] -> [test.cpp:3]: (style) Mismatching assignment and comparison, comparison 'y==1808' is always false.\n", errout.str());
|
2011-08-19 16:10:09 +02:00
|
|
|
|
|
|
|
check("void foo(int x) {\n"
|
|
|
|
" int y = x | 0x14;\n"
|
|
|
|
" if (y == 0x71f);\n"
|
|
|
|
"}");
|
|
|
|
ASSERT_EQUALS("", errout.str());
|
2012-09-28 17:03:16 +02:00
|
|
|
|
2012-11-29 10:19:52 +01:00
|
|
|
// various simple assignments
|
|
|
|
check("void foo(int x) {\n"
|
|
|
|
" int y = (x+1) | 1;\n"
|
|
|
|
" if (y == 2);\n"
|
|
|
|
"}");
|
|
|
|
ASSERT_EQUALS("[test.cpp:2] -> [test.cpp:3]: (style) Mismatching assignment and comparison, comparison 'y==2' is always false.\n", errout.str());
|
|
|
|
|
|
|
|
check("void foo() {\n"
|
|
|
|
" int y = 1 | x();\n"
|
|
|
|
" if (y == 2);\n"
|
|
|
|
"}");
|
|
|
|
ASSERT_EQUALS("[test.cpp:2] -> [test.cpp:3]: (style) Mismatching assignment and comparison, comparison 'y==2' is always false.\n", errout.str());
|
|
|
|
|
2012-09-28 17:03:16 +02:00
|
|
|
// multiple conditions
|
|
|
|
check("void foo(int x) {\n"
|
|
|
|
" int y = x & 4;\n"
|
|
|
|
" if ((y == 3) && (z == 1));\n"
|
2013-03-19 09:18:58 +01:00
|
|
|
"}");
|
2012-09-28 17:03:16 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:2] -> [test.cpp:3]: (style) Mismatching assignment and comparison, comparison 'y==3' is always false.\n", errout.str());
|
|
|
|
|
|
|
|
check("void foo(int x) {\n"
|
|
|
|
" int y = x & 4;\n"
|
|
|
|
" if ((x==123) || ((y == 3) && (z == 1)));\n"
|
2013-03-19 09:18:58 +01:00
|
|
|
"}");
|
2012-09-28 17:03:16 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:2] -> [test.cpp:3]: (style) Mismatching assignment and comparison, comparison 'y==3' is always false.\n", errout.str());
|
|
|
|
|
|
|
|
check("void f(int x) {\n"
|
|
|
|
" int y = x & 7;\n"
|
|
|
|
" if (setvalue(&y) && y != 8);\n"
|
|
|
|
"}");
|
|
|
|
ASSERT_EQUALS("", errout.str());
|
2012-09-29 10:33:54 +02:00
|
|
|
|
|
|
|
// recursive checking into scopes
|
|
|
|
check("void f(int x) {\n"
|
|
|
|
" int y = x & 7;\n"
|
|
|
|
" if (z) y=0;\n"
|
2013-04-13 18:23:53 +02:00
|
|
|
" else { if (y==8); }\n" // always false
|
2012-09-29 10:33:54 +02:00
|
|
|
"}");
|
|
|
|
ASSERT_EQUALS("[test.cpp:2] -> [test.cpp:4]: (style) Mismatching assignment and comparison, comparison 'y==8' is always false.\n", errout.str());
|
2012-09-29 10:41:12 +02:00
|
|
|
|
|
|
|
// while
|
|
|
|
check("void f(int x) {\n"
|
|
|
|
" int y = x & 7;\n"
|
|
|
|
" while (y==8);\n" // local variable => always false
|
|
|
|
"}");
|
2012-09-29 10:54:09 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:2] -> [test.cpp:3]: (style) Mismatching assignment and comparison, comparison 'y==8' is always false.\n", errout.str());
|
2012-09-29 10:41:12 +02:00
|
|
|
|
|
|
|
check("void f(int x) {\n"
|
|
|
|
" extern int y; y = x & 7;\n"
|
|
|
|
" while (y==8);\n" // non-local variable => no error
|
|
|
|
"}");
|
|
|
|
ASSERT_EQUALS("", errout.str());
|
2012-09-29 19:22:34 +02:00
|
|
|
|
|
|
|
// calling function
|
|
|
|
check("void f(int x) {\n"
|
|
|
|
" int y = x & 7;\n"
|
|
|
|
" do_something();\n"
|
|
|
|
" if (y==8);\n" // local variable => always false
|
|
|
|
"}");
|
|
|
|
ASSERT_EQUALS("[test.cpp:2] -> [test.cpp:4]: (style) Mismatching assignment and comparison, comparison 'y==8' is always false.\n", errout.str());
|
|
|
|
|
2013-07-29 11:43:08 +02:00
|
|
|
check("void f(int x) {\n"
|
|
|
|
" int y = x & 7;\n"
|
|
|
|
" do_something(&y);\n" // passing variable => no error
|
|
|
|
" if (y==8);\n"
|
|
|
|
"}");
|
|
|
|
ASSERT_EQUALS("", errout.str());
|
|
|
|
|
2013-07-29 12:27:57 +02:00
|
|
|
check("void do_something(int);\n"
|
|
|
|
"void f(int x) {\n"
|
|
|
|
" int y = x & 7;\n"
|
2013-08-13 14:08:54 +02:00
|
|
|
" do_something(y);\n"
|
2013-07-29 12:27:57 +02:00
|
|
|
" if (y==8);\n"
|
|
|
|
"}");
|
2013-08-13 14:08:54 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:3] -> [test.cpp:5]: (style) Mismatching assignment and comparison, comparison 'y==8' is always false.\n", errout.str());
|
2013-07-29 12:27:57 +02:00
|
|
|
|
2012-09-29 19:22:34 +02:00
|
|
|
check("void f(int x) {\n"
|
|
|
|
" extern int y; y = x & 7;\n"
|
|
|
|
" do_something();\n"
|
|
|
|
" if (y==8);\n" // non-local variable => no error
|
|
|
|
"}");
|
|
|
|
ASSERT_EQUALS("", errout.str());
|
2012-12-27 15:40:00 +01:00
|
|
|
|
|
|
|
// #4434 : false positive: ?:
|
|
|
|
check("void f(int x) {\n"
|
|
|
|
" x = x & 1;\n"
|
|
|
|
" x = x & 1 ? 1 : -1;\n"
|
|
|
|
" if(x != -1) { }\n"
|
|
|
|
"}");
|
|
|
|
ASSERT_EQUALS("", errout.str());
|
2013-04-23 06:47:15 +02:00
|
|
|
|
|
|
|
// #4735
|
|
|
|
check("void f() {\n"
|
|
|
|
" int x = *(char*)&0x12345678;\n"
|
|
|
|
" if (x==18) { }\n"
|
|
|
|
"}");
|
|
|
|
ASSERT_EQUALS("", errout.str());
|
2013-07-29 11:43:08 +02:00
|
|
|
|
|
|
|
// bailout: no variable info
|
|
|
|
check("void foo(int x) {\n"
|
|
|
|
" y = 2 | x;\n" // y not declared => no error
|
|
|
|
" if(y == 1) {}\n"
|
|
|
|
"}");
|
|
|
|
ASSERT_EQUALS("", errout.str());
|
|
|
|
|
|
|
|
// bailout: negative number
|
|
|
|
check("void foo(int x) {\n"
|
|
|
|
" int y = -2 | x;\n" // negative number => no error
|
|
|
|
" if (y==1) {}\n"
|
|
|
|
"}");
|
|
|
|
ASSERT_EQUALS("", errout.str());
|
|
|
|
|
|
|
|
// bailout: pass variable to function
|
|
|
|
check("void foo(int x) {\n"
|
|
|
|
" int y = 2 | x;\n"
|
|
|
|
" bar(&y);\n" // pass variable to function => no error
|
|
|
|
" if (y==1) {}\n"
|
|
|
|
"}");
|
|
|
|
ASSERT_EQUALS("", errout.str());
|
2011-07-30 21:43:21 +02:00
|
|
|
}
|
2011-07-31 11:23:38 +02:00
|
|
|
|
2013-01-21 19:59:34 +01:00
|
|
|
void mismatchingBitAnd() {
|
|
|
|
check("void f(int a) {\n"
|
|
|
|
" int b = a & 0xf0;\n"
|
|
|
|
" b &= 1;\n"
|
|
|
|
"}");
|
|
|
|
ASSERT_EQUALS("[test.cpp:2] -> [test.cpp:3]: (style) Mismatching bitmasks. Result is always 0 (X = Y & 0xf0; Z = X & 0x1; => Z=0).\n", errout.str());
|
|
|
|
|
|
|
|
check("void f(int a) {\n"
|
|
|
|
" int b = a & 0xf0;\n"
|
|
|
|
" int c = b & 1;\n"
|
|
|
|
"}");
|
|
|
|
ASSERT_EQUALS("[test.cpp:2] -> [test.cpp:3]: (style) Mismatching bitmasks. Result is always 0 (X = Y & 0xf0; Z = X & 0x1; => Z=0).\n", errout.str());
|
2013-04-07 04:25:10 +02:00
|
|
|
|
|
|
|
check("void f(int a) {\n"
|
|
|
|
" int b = a;"
|
|
|
|
" switch (x) {\n"
|
|
|
|
" case 1: b &= 1; break;\n"
|
|
|
|
" case 2: b &= 2; break;\n"
|
|
|
|
" };\n"
|
|
|
|
"}");
|
|
|
|
ASSERT_EQUALS("", errout.str());
|
2013-01-21 19:59:34 +01:00
|
|
|
}
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void compare() {
|
2011-07-31 17:09:53 +02:00
|
|
|
check("void foo(int x)\n"
|
|
|
|
"{\n"
|
|
|
|
" if ((x & 4) == 3);\n"
|
2013-03-19 09:18:58 +01:00
|
|
|
"}");
|
2012-07-07 20:31:18 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:3]: (style) Expression '(X & 0x4) == 0x3' is always false.\n", errout.str());
|
2011-07-31 17:09:53 +02:00
|
|
|
|
2012-09-14 19:13:44 +02:00
|
|
|
check("void foo(int x)\n"
|
|
|
|
"{\n"
|
|
|
|
" if ((x | 4) == 3);\n"
|
2013-03-19 09:18:58 +01:00
|
|
|
"}");
|
2012-09-14 19:13:44 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:3]: (style) Expression '(X | 0x4) == 0x3' is always false.\n", errout.str());
|
|
|
|
|
|
|
|
check("void foo(int x)\n"
|
|
|
|
"{\n"
|
|
|
|
" if ((x | 4) != 3);\n"
|
2013-03-19 09:18:58 +01:00
|
|
|
"}");
|
2012-09-14 19:13:44 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:3]: (style) Expression '(X | 0x4) != 0x3' is always true.\n", errout.str());
|
2012-11-29 09:58:55 +01:00
|
|
|
|
|
|
|
check("void foo(int x)\n"
|
|
|
|
"{\n"
|
2013-11-07 14:38:08 +01:00
|
|
|
" if ((x & y & 4 & z ) == 3);\n"
|
2013-03-19 09:18:58 +01:00
|
|
|
"}");
|
2012-11-29 09:58:55 +01:00
|
|
|
ASSERT_EQUALS("[test.cpp:3]: (style) Expression '(X & 0x4) == 0x3' is always false.\n", errout.str());
|
2011-07-31 11:23:38 +02:00
|
|
|
}
|
2011-08-01 09:35:48 +02:00
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
void multicompare() {
|
2011-08-01 09:35:48 +02:00
|
|
|
check("void foo(int x)\n"
|
|
|
|
"{\n"
|
|
|
|
" if (x & 7);\n"
|
2013-04-13 18:23:53 +02:00
|
|
|
" else { if (x == 1); }\n"
|
2013-03-19 09:18:58 +01:00
|
|
|
"}");
|
2012-07-07 20:31:18 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:4]: (style) Expression is always false because 'else if' condition matches previous condition at line 3.\n", errout.str());
|
2011-08-01 09:35:48 +02:00
|
|
|
|
2011-08-01 11:33:09 +02:00
|
|
|
check("void foo(int x)\n"
|
|
|
|
"{\n"
|
|
|
|
" if (x & 7);\n"
|
2013-04-13 18:23:53 +02:00
|
|
|
" else { if (x & 1); }\n"
|
2013-03-19 09:18:58 +01:00
|
|
|
"}");
|
2012-07-07 20:31:18 +02:00
|
|
|
ASSERT_EQUALS("[test.cpp:4]: (style) Expression is always false because 'else if' condition matches previous condition at line 3.\n", errout.str());
|
2011-08-01 09:35:48 +02:00
|
|
|
}
|
2011-07-30 21:43:21 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
REGISTER_TEST(TestAssignIf)
|