2008-12-18 22:28:57 +01:00
/*
2009-01-21 21:04:20 +01:00
* Cppcheck - A tool for static C / C + + code analysis
2010-04-13 21:23:17 +02:00
* Copyright ( C ) 2007 - 2010 Daniel Marjamäki and Cppcheck team .
2008-12-18 22:28:57 +01: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
2009-09-27 17:08:31 +02:00
* along with this program . If not , see < http : //www.gnu.org/licenses/>.
2008-12-18 22:28:57 +01:00
*/
// Check for dangerous division..
// such as "svar / uvar". Treating "svar" as unsigned data is not good
2009-10-25 12:49:06 +01:00
# include "tokenize.h"
# include "checkother.h"
2008-12-18 22:28:57 +01:00
# include "testsuite.h"
# include <sstream>
extern std : : ostringstream errout ;
class TestRedundantIf : public TestFixture
{
public :
TestRedundantIf ( ) : TestFixture ( " TestRedundantIf " )
{ }
private :
2009-01-05 16:49:57 +01:00
void check ( const char code [ ] )
2008-12-18 22:28:57 +01:00
{
// Tokenize..
Tokenizer tokenizer ;
std : : istringstream istr ( code ) ;
2009-01-05 16:49:57 +01:00
tokenizer . tokenize ( istr , " test.cpp " ) ;
2008-12-18 22:28:57 +01:00
// Clear the error buffer..
errout . str ( " " ) ;
// Check for redundant condition..
2009-03-20 18:16:21 +01:00
Settings settings ;
2009-08-04 21:32:14 +02:00
CheckOther checkOther ( & tokenizer , & settings , this ) ;
2008-12-18 22:28:57 +01:00
checkOther . redundantCondition2 ( ) ;
}
void run ( )
{
2009-01-05 16:49:57 +01:00
TEST_CASE ( remove1 ) ;
TEST_CASE ( remove2 ) ;
2008-12-18 22:28:57 +01:00
}
void remove1 ( )
{
2009-01-05 16:49:57 +01:00
check ( " void f() \n "
" { \n "
" if (haystack.find(needle) != haystack.end()) \n "
" haystack.remove(needle); "
" } \n " ) ;
2009-05-31 21:48:55 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (style) Redundant condition. The remove function in the STL will not do anything if element doesn't exist \n " , errout . str ( ) ) ;
2008-12-18 22:28:57 +01:00
}
void remove2 ( )
{
2009-01-05 16:49:57 +01:00
check ( " void f() \n "
" { \n "
" if (haystack.find(needle) != haystack.end()) \n "
" { \n "
" haystack.remove(needle); \n "
" } \n "
" } \n " ) ;
2009-05-31 21:48:55 +02:00
ASSERT_EQUALS ( " [test.cpp:3]: (style) Redundant condition. The remove function in the STL will not do anything if element doesn't exist \n " , errout . str ( ) ) ;
2008-12-18 22:28:57 +01:00
}
} ;
2009-01-05 16:49:57 +01:00
REGISTER_TEST ( TestRedundantIf )
2008-12-18 22:28:57 +01:00