FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cppcheck/test/testassert.cpp at master · napcode/cppcheck · GitHub
napcode
/
cppcheck
Public
forked from
cppcheck-opensource/cppcheck
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cppcheck
/
test
/
testassert.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
234 lines (203 loc) · 7.55 KB
Breadcrumbs
cppcheck
/
test
/
testassert.cpp
Copy path
File metadata and controls
234 lines (203 loc) · 7.55 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
/*
* Cppcheck - A tool for static C/C++ code analysis
* Copyright (C) 2007-2019 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
"
checkassert.h
"
#
include
"
settings.h
"
#
include
"
testsuite.h
"
#
include
"
tokenize.h
"
class
TestAssert
:
public
TestFixture
{
public:
TestAssert
() : TestFixture(
"
TestAssert
"
) {}
private:
Settings settings;
void
check
(
const
char
code[],
const
char
*filename =
"
test.cpp
"
) {
//
Clear the error buffer..
errout.
str
(
"
"
);
//
Tokenize..
Tokenizer
tokenizer
(&settings,
this
);
std::istringstream
istr
(code);
tokenizer.
tokenize
(istr, filename);
//
Check..
CheckAssert checkAssert;
checkAssert.
runChecks
(&tokenizer, &settings,
this
);
}
void
run
() OVERRIDE {
settings.
addEnabled
(
"
warning
"
);
TEST_CASE
(assignmentInAssert);
TEST_CASE
(functionCallInAssert);
TEST_CASE
(memberFunctionCallInAssert);
TEST_CASE
(safeFunctionCallInAssert);
}
void
safeFunctionCallInAssert
() {
check
(
"
int a;
\n
"
"
bool b = false;
\n
"
"
int foo() {
\n
"
"
if (b) { a = 1+2 };
\n
"
"
return a;
\n
"
"
}
\n
"
"
assert(foo() == 3);
\n
"
);
ASSERT_EQUALS
(
"
"
, errout.
str
());
check
(
"
int foo(int a) {
\n
"
"
int b=a+1;
\n
"
"
return b;
\n
"
"
}
\n
"
"
assert(foo(1) == 2);
\n
"
);
ASSERT_EQUALS
(
"
"
, errout.
str
());
}
void
functionCallInAssert
() {
check
(
"
int a;
\n
"
"
int foo() {
\n
"
"
a = 1+2;
\n
"
"
return a;
\n
"
"
}
\n
"
"
assert(foo() == 3);
\n
"
);
ASSERT_EQUALS
(
"
[test.cpp:6]: (warning) Assert statement calls a function which may have desired side effects: 'foo'.
\n
"
, errout.
str
());
//
Ticket #4937 "false positive: Assert calls a function which may have desired side effects"
check
(
"
struct SquarePack {
\n
"
"
static bool isRank1Or8( Square sq ) {
\n
"
"
sq &= 0x38;
\n
"
"
return sq == 0 || sq == 0x38;
\n
"
"
}
\n
"
"
};
\n
"
"
void foo() {
\n
"
"
assert( !SquarePack::isRank1Or8(push2) );
\n
"
"
}
\n
"
);
ASSERT_EQUALS
(
"
"
, errout.
str
());
check
(
"
struct SquarePack {
\n
"
"
static bool isRank1Or8( Square &sq ) {
\n
"
"
sq &= 0x38;
\n
"
"
return sq == 0 || sq == 0x38;
\n
"
"
}
\n
"
"
};
\n
"
"
void foo() {
\n
"
"
assert( !SquarePack::isRank1Or8(push2) );
\n
"
"
}
\n
"
);
ASSERT_EQUALS
(
"
[test.cpp:8]: (warning) Assert statement calls a function which may have desired side effects: 'isRank1Or8'.
\n
"
, errout.
str
());
check
(
"
struct SquarePack {
\n
"
"
static bool isRank1Or8( Square *sq ) {
\n
"
"
*sq &= 0x38;
\n
"
"
return *sq == 0 || *sq == 0x38;
\n
"
"
}
\n
"
"
};
\n
"
"
void foo() {
\n
"
"
assert( !SquarePack::isRank1Or8(push2) );
\n
"
"
}
\n
"
);
ASSERT_EQUALS
(
"
[test.cpp:8]: (warning) Assert statement calls a function which may have desired side effects: 'isRank1Or8'.
\n
"
, errout.
str
());
check
(
"
struct SquarePack {
\n
"
"
static bool isRank1Or8( Square *sq ) {
\n
"
"
sq &= 0x38;
\n
"
"
return sq == 0 || sq == 0x38;
\n
"
"
}
\n
"
"
};
\n
"
"
void foo() {
\n
"
"
assert( !SquarePack::isRank1Or8(push2) );
\n
"
"
}
\n
"
);
ASSERT_EQUALS
(
"
"
, errout.
str
());
}
void
memberFunctionCallInAssert
() {
check
(
"
struct SquarePack {
\n
"
"
void Foo();
\n
"
"
};
\n
"
"
void foo(SquarePack s) {
\n
"
"
assert( s.Foo(); );
\n
"
"
}
"
);
ASSERT_EQUALS
(
"
[test.cpp:5]: (warning) Assert statement calls a function which may have desired side effects: 'Foo'.
\n
"
, errout.
str
());
check
(
"
struct SquarePack {
\n
"
"
void Foo() const;
\n
"
"
};
\n
"
"
void foo(SquarePack* s) {
\n
"
"
assert( s->Foo(); );
\n
"
"
}
"
);
ASSERT_EQUALS
(
"
"
, errout.
str
());
check
(
"
struct SquarePack {
\n
"
"
static void Foo();
\n
"
"
};
\n
"
"
void foo(SquarePack* s) {
\n
"
"
assert( s->Foo(); );
\n
"
"
}
"
);
ASSERT_EQUALS
(
"
"
, errout.
str
());
check
(
"
struct SquarePack {
\n
"
"
};
\n
"
"
void foo(SquarePack* s) {
\n
"
"
assert( s->Foo(); );
\n
"
"
}
"
);
ASSERT_EQUALS
(
"
"
, errout.
str
());
}
void
assignmentInAssert
() {
check
(
"
void f() {
\n
"
"
int a; a = 0;
\n
"
"
assert(a = 2);
\n
"
"
return a;
\n
"
"
}
\n
"
);
ASSERT_EQUALS
(
"
[test.cpp:3]: (warning) Assert statement modifies 'a'.
\n
"
, errout.
str
());
check
(
"
void f(int a) {
\n
"
"
assert(a == 2);
\n
"
"
return a;
\n
"
"
}
\n
"
);
ASSERT_EQUALS
(
"
"
, errout.
str
());
check
(
"
void f(int a, int b) {
\n
"
"
assert(a == 2 && b = 1);
\n
"
"
return a;
\n
"
"
}
\n
"
);
ASSERT_EQUALS
(
"
[test.cpp:2]: (warning) Assert statement modifies 'b'.
\n
"
, errout.
str
());
check
(
"
void f() {
\n
"
"
int a; a = 0;
\n
"
"
assert(a += 2);
\n
"
"
return a;
\n
"
"
}
\n
"
);
ASSERT_EQUALS
(
"
[test.cpp:3]: (warning) Assert statement modifies 'a'.
\n
"
, errout.
str
());
check
(
"
void f() {
\n
"
"
int a; a = 0;
\n
"
"
assert(a *= 2);
\n
"
"
return a;
\n
"
"
}
\n
"
);
ASSERT_EQUALS
(
"
[test.cpp:3]: (warning) Assert statement modifies 'a'.
\n
"
, errout.
str
());
check
(
"
void f() {
\n
"
"
int a; a = 0;
\n
"
"
assert(a -= 2);
\n
"
"
return a;
\n
"
"
}
\n
"
);
ASSERT_EQUALS
(
"
[test.cpp:3]: (warning) Assert statement modifies 'a'.
\n
"
, errout.
str
());
check
(
"
void f() {
\n
"
"
int a = 0;
\n
"
"
assert(a--);
\n
"
"
return a;
\n
"
"
}
\n
"
);
ASSERT_EQUALS
(
"
[test.cpp:3]: (warning) Assert statement modifies 'a'.
\n
"
, errout.
str
());
check
(
"
void f() {
\n
"
"
assert(std::all_of(first, last, []() {
\n
"
"
auto tmp = x.someValue();
\n
"
"
auto const expected = someOtherValue;
\n
"
"
return tmp == expected;
\n
"
"
}));
\n
"
"
}
\n
"
);
ASSERT_EQUALS
(
"
"
, errout.
str
());
}
};
REGISTER_TEST
(TestAssert)
Back
|
FazBrowse Home
|
New Git URL