2011-10-23 13:07:43 +02:00
/*
* Cppcheck - A tool for static C / C + + code analysis
2018-06-10 22:07:21 +02:00
* Copyright ( C ) 2007 - 2018 Cppcheck team .
2011-10-23 13:07:43 +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/>.
*/
2017-05-27 04:33:47 +02:00
2011-10-23 13:07:43 +02:00
# include "checkboost.h"
2017-05-27 04:33:47 +02:00
# include "settings.h"
2011-10-23 13:07:43 +02:00
# include "testsuite.h"
2017-05-27 04:33:47 +02:00
# include "tokenize.h"
2011-10-23 13:07:43 +02:00
class TestBoost : public TestFixture {
public :
2014-11-20 14:20:09 +01:00
TestBoost ( ) : TestFixture ( " TestBoost " ) {
2013-08-07 16:27:37 +02:00
}
2011-10-23 13:07:43 +02:00
private :
2015-10-07 18:33:57 +02:00
Settings settings ;
2018-05-15 16:37:40 +02:00
void run ( ) override {
2015-10-07 18:33:57 +02:00
settings . addEnabled ( " style " ) ;
settings . addEnabled ( " performance " ) ;
2011-10-23 13:07:43 +02:00
TEST_CASE ( BoostForeachContainerModification )
}
2014-11-20 14:20:09 +01:00
void check ( const char code [ ] ) {
2011-10-23 13:07:43 +02:00
// Clear the error buffer..
errout . str ( " " ) ;
// Tokenize..
Tokenizer tokenizer ( & settings , this ) ;
2012-07-16 13:17:14 +02:00
std : : istringstream istr ( code ) ;
2011-10-23 13:07:43 +02:00
tokenizer . tokenize ( istr , " test.cpp " ) ;
2013-12-30 17:45:28 +01:00
tokenizer . simplifyTokenList2 ( ) ;
2011-10-23 13:07:43 +02:00
// Check..
CheckBoost checkBoost ;
checkBoost . runSimplifiedChecks ( & tokenizer , & settings , this ) ;
}
2014-11-20 14:20:09 +01:00
void BoostForeachContainerModification ( ) {
2011-10-23 13:07:43 +02:00
check ( " void f() { \n "
" vector<int> data; \n "
" BOOST_FOREACH(int i, data) { \n "
" data.push_back(123); \n "
" } \n "
" } " ) ;
2012-08-02 11:40:08 +02:00
ASSERT_EQUALS ( " [test.cpp:4]: (error) BOOST_FOREACH caches the end() iterator. It's undefined behavior if you modify the container inside. \n " , errout . str ( ) ) ;
2011-10-23 13:07:43 +02:00
check ( " void f() { \n "
" set<int> data; \n "
" BOOST_FOREACH(int i, data) { \n "
" data.insert(123); \n "
" } \n "
" } " ) ;
2012-08-02 11:40:08 +02:00
ASSERT_EQUALS ( " [test.cpp:4]: (error) BOOST_FOREACH caches the end() iterator. It's undefined behavior if you modify the container inside. \n " , errout . str ( ) ) ;
2011-10-23 13:07:43 +02:00
check ( " void f() { \n "
" set<int> data; \n "
" BOOST_FOREACH(const int &i, data) { \n "
" data.erase(123); \n "
" } \n "
" } " ) ;
2012-08-02 11:40:08 +02:00
ASSERT_EQUALS ( " [test.cpp:4]: (error) BOOST_FOREACH caches the end() iterator. It's undefined behavior if you modify the container inside. \n " , errout . str ( ) ) ;
2011-10-23 13:07:43 +02:00
// Check single line usage
check ( " void f() { \n "
" set<int> data; \n "
" BOOST_FOREACH(const int &i, data) \n "
" data.clear(); \n "
" } " ) ;
2012-08-02 11:40:08 +02:00
ASSERT_EQUALS ( " [test.cpp:4]: (error) BOOST_FOREACH caches the end() iterator. It's undefined behavior if you modify the container inside. \n " , errout . str ( ) ) ;
2011-10-23 13:07:43 +02:00
// Container returned as result of a function -> Be quiet
check ( " void f() { \n "
" BOOST_FOREACH(const int &i, get_data()) \n "
" data.insert(i); \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2014-08-31 20:40:52 +02:00
// Break after modification (#4788)
check ( " void f() { \n "
" vector<int> data; \n "
" BOOST_FOREACH(int i, data) { \n "
" data.push_back(123); \n "
" break; \n "
" } \n "
" } " ) ;
ASSERT_EQUALS ( " " , errout . str ( ) ) ;
2011-10-23 13:07:43 +02:00
}
} ;
REGISTER_TEST ( TestBoost )