blob: 7adc71837d786fd6d7e36c1932551bf395fc89af [file] [log] [blame]
Manuel Klimek4da21662012-07-06 05:48:52 +00001//===- unittest/Tooling/ASTMatchersTest.cpp - AST matcher unit tests ------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "ASTMatchersTest.h"
11#include "clang/ASTMatchers/ASTMatchers.h"
12#include "clang/ASTMatchers/ASTMatchFinder.h"
13#include "clang/Tooling/Tooling.h"
14#include "gtest/gtest.h"
15
16namespace clang {
17namespace ast_matchers {
18
Benjamin Kramer78a0ce42012-07-10 17:30:44 +000019#if GTEST_HAS_DEATH_TEST
Manuel Klimek4da21662012-07-06 05:48:52 +000020TEST(HasNameDeathTest, DiesOnEmptyName) {
21 ASSERT_DEBUG_DEATH({
Daniel Jasper2dc75ed2012-08-24 05:12:34 +000022 DeclarationMatcher HasEmptyName = recordDecl(hasName(""));
Manuel Klimek4da21662012-07-06 05:48:52 +000023 EXPECT_TRUE(notMatches("class X {};", HasEmptyName));
24 }, "");
25}
26
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +000027TEST(HasNameDeathTest, DiesOnEmptyPattern) {
28 ASSERT_DEBUG_DEATH({
Daniel Jasper2dc75ed2012-08-24 05:12:34 +000029 DeclarationMatcher HasEmptyName = recordDecl(matchesName(""));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +000030 EXPECT_TRUE(notMatches("class X {};", HasEmptyName));
31 }, "");
32}
33
Manuel Klimek4da21662012-07-06 05:48:52 +000034TEST(IsDerivedFromDeathTest, DiesOnEmptyBaseName) {
35 ASSERT_DEBUG_DEATH({
Daniel Jasper2dc75ed2012-08-24 05:12:34 +000036 DeclarationMatcher IsDerivedFromEmpty = recordDecl(isDerivedFrom(""));
Manuel Klimek4da21662012-07-06 05:48:52 +000037 EXPECT_TRUE(notMatches("class X {};", IsDerivedFromEmpty));
38 }, "");
39}
Benjamin Kramer78a0ce42012-07-10 17:30:44 +000040#endif
Manuel Klimek4da21662012-07-06 05:48:52 +000041
Manuel Klimek715c9562012-07-25 10:02:02 +000042TEST(Decl, MatchesDeclarations) {
43 EXPECT_TRUE(notMatches("", decl(usingDecl())));
44 EXPECT_TRUE(matches("namespace x { class X {}; } using x::X;",
45 decl(usingDecl())));
46}
47
Manuel Klimek4da21662012-07-06 05:48:52 +000048TEST(NameableDeclaration, MatchesVariousDecls) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +000049 DeclarationMatcher NamedX = namedDecl(hasName("X"));
Manuel Klimek4da21662012-07-06 05:48:52 +000050 EXPECT_TRUE(matches("typedef int X;", NamedX));
51 EXPECT_TRUE(matches("int X;", NamedX));
52 EXPECT_TRUE(matches("class foo { virtual void X(); };", NamedX));
53 EXPECT_TRUE(matches("void foo() try { } catch(int X) { }", NamedX));
54 EXPECT_TRUE(matches("void foo() { int X; }", NamedX));
55 EXPECT_TRUE(matches("namespace X { }", NamedX));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +000056 EXPECT_TRUE(matches("enum X { A, B, C };", NamedX));
Manuel Klimek4da21662012-07-06 05:48:52 +000057
58 EXPECT_TRUE(notMatches("#define X 1", NamedX));
59}
60
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +000061TEST(NameableDeclaration, REMatchesVariousDecls) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +000062 DeclarationMatcher NamedX = namedDecl(matchesName("::X"));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +000063 EXPECT_TRUE(matches("typedef int Xa;", NamedX));
64 EXPECT_TRUE(matches("int Xb;", NamedX));
65 EXPECT_TRUE(matches("class foo { virtual void Xc(); };", NamedX));
66 EXPECT_TRUE(matches("void foo() try { } catch(int Xdef) { }", NamedX));
67 EXPECT_TRUE(matches("void foo() { int Xgh; }", NamedX));
68 EXPECT_TRUE(matches("namespace Xij { }", NamedX));
69 EXPECT_TRUE(matches("enum X { A, B, C };", NamedX));
70
71 EXPECT_TRUE(notMatches("#define Xkl 1", NamedX));
72
Daniel Jasper2dc75ed2012-08-24 05:12:34 +000073 DeclarationMatcher StartsWithNo = namedDecl(matchesName("::no"));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +000074 EXPECT_TRUE(matches("int no_foo;", StartsWithNo));
75 EXPECT_TRUE(matches("class foo { virtual void nobody(); };", StartsWithNo));
76
Daniel Jasper2dc75ed2012-08-24 05:12:34 +000077 DeclarationMatcher Abc = namedDecl(matchesName("a.*b.*c"));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +000078 EXPECT_TRUE(matches("int abc;", Abc));
79 EXPECT_TRUE(matches("int aFOObBARc;", Abc));
80 EXPECT_TRUE(notMatches("int cab;", Abc));
81 EXPECT_TRUE(matches("int cabc;", Abc));
82}
83
Manuel Klimek4da21662012-07-06 05:48:52 +000084TEST(DeclarationMatcher, MatchClass) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +000085 DeclarationMatcher ClassMatcher(recordDecl());
Manuel Klimeke265c872012-07-10 14:21:30 +000086#if !defined(_MSC_VER)
Manuel Klimek4da21662012-07-06 05:48:52 +000087 EXPECT_FALSE(matches("", ClassMatcher));
Manuel Klimeke265c872012-07-10 14:21:30 +000088#else
89 // Matches class type_info.
90 EXPECT_TRUE(matches("", ClassMatcher));
91#endif
Manuel Klimek4da21662012-07-06 05:48:52 +000092
Daniel Jasper2dc75ed2012-08-24 05:12:34 +000093 DeclarationMatcher ClassX = recordDecl(recordDecl(hasName("X")));
Manuel Klimek4da21662012-07-06 05:48:52 +000094 EXPECT_TRUE(matches("class X;", ClassX));
95 EXPECT_TRUE(matches("class X {};", ClassX));
96 EXPECT_TRUE(matches("template<class T> class X {};", ClassX));
97 EXPECT_TRUE(notMatches("", ClassX));
98}
99
100TEST(DeclarationMatcher, ClassIsDerived) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000101 DeclarationMatcher IsDerivedFromX = recordDecl(isDerivedFrom("X"));
Manuel Klimek4da21662012-07-06 05:48:52 +0000102
103 EXPECT_TRUE(matches("class X {}; class Y : public X {};", IsDerivedFromX));
104 EXPECT_TRUE(matches("class X {}; class Y : public X {};", IsDerivedFromX));
105 EXPECT_TRUE(matches("class X {};", IsDerivedFromX));
106 EXPECT_TRUE(matches("class X;", IsDerivedFromX));
107 EXPECT_TRUE(notMatches("class Y;", IsDerivedFromX));
108 EXPECT_TRUE(notMatches("", IsDerivedFromX));
109
110 DeclarationMatcher ZIsDerivedFromX =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000111 recordDecl(hasName("Z"), isDerivedFrom("X"));
Manuel Klimek4da21662012-07-06 05:48:52 +0000112 EXPECT_TRUE(
113 matches("class X {}; class Y : public X {}; class Z : public Y {};",
114 ZIsDerivedFromX));
115 EXPECT_TRUE(
116 matches("class X {};"
117 "template<class T> class Y : public X {};"
118 "class Z : public Y<int> {};", ZIsDerivedFromX));
119 EXPECT_TRUE(matches("class X {}; template<class T> class Z : public X {};",
120 ZIsDerivedFromX));
121 EXPECT_TRUE(
122 matches("template<class T> class X {}; "
123 "template<class T> class Z : public X<T> {};",
124 ZIsDerivedFromX));
125 EXPECT_TRUE(
126 matches("template<class T, class U=T> class X {}; "
127 "template<class T> class Z : public X<T> {};",
128 ZIsDerivedFromX));
129 EXPECT_TRUE(
130 notMatches("template<class X> class A { class Z : public X {}; };",
131 ZIsDerivedFromX));
132 EXPECT_TRUE(
133 matches("template<class X> class A { public: class Z : public X {}; }; "
134 "class X{}; void y() { A<X>::Z z; }", ZIsDerivedFromX));
135 EXPECT_TRUE(
136 matches("template <class T> class X {}; "
137 "template<class Y> class A { class Z : public X<Y> {}; };",
138 ZIsDerivedFromX));
139 EXPECT_TRUE(
140 notMatches("template<template<class T> class X> class A { "
141 " class Z : public X<int> {}; };", ZIsDerivedFromX));
142 EXPECT_TRUE(
143 matches("template<template<class T> class X> class A { "
144 " public: class Z : public X<int> {}; }; "
145 "template<class T> class X {}; void y() { A<X>::Z z; }",
146 ZIsDerivedFromX));
147 EXPECT_TRUE(
148 notMatches("template<class X> class A { class Z : public X::D {}; };",
149 ZIsDerivedFromX));
150 EXPECT_TRUE(
151 matches("template<class X> class A { public: "
152 " class Z : public X::D {}; }; "
153 "class Y { public: class X {}; typedef X D; }; "
154 "void y() { A<Y>::Z z; }", ZIsDerivedFromX));
155 EXPECT_TRUE(
156 matches("class X {}; typedef X Y; class Z : public Y {};",
157 ZIsDerivedFromX));
158 EXPECT_TRUE(
159 matches("template<class T> class Y { typedef typename T::U X; "
160 " class Z : public X {}; };", ZIsDerivedFromX));
161 EXPECT_TRUE(matches("class X {}; class Z : public ::X {};",
162 ZIsDerivedFromX));
163 EXPECT_TRUE(
164 notMatches("template<class T> class X {}; "
165 "template<class T> class A { class Z : public X<T>::D {}; };",
166 ZIsDerivedFromX));
167 EXPECT_TRUE(
168 matches("template<class T> class X { public: typedef X<T> D; }; "
169 "template<class T> class A { public: "
170 " class Z : public X<T>::D {}; }; void y() { A<int>::Z z; }",
171 ZIsDerivedFromX));
172 EXPECT_TRUE(
173 notMatches("template<class X> class A { class Z : public X::D::E {}; };",
174 ZIsDerivedFromX));
175 EXPECT_TRUE(
176 matches("class X {}; typedef X V; typedef V W; class Z : public W {};",
177 ZIsDerivedFromX));
178 EXPECT_TRUE(
179 matches("class X {}; class Y : public X {}; "
180 "typedef Y V; typedef V W; class Z : public W {};",
181 ZIsDerivedFromX));
182 EXPECT_TRUE(
183 matches("template<class T, class U> class X {}; "
184 "template<class T> class A { class Z : public X<T, int> {}; };",
185 ZIsDerivedFromX));
186 EXPECT_TRUE(
187 notMatches("template<class X> class D { typedef X A; typedef A B; "
188 " typedef B C; class Z : public C {}; };",
189 ZIsDerivedFromX));
190 EXPECT_TRUE(
191 matches("class X {}; typedef X A; typedef A B; "
192 "class Z : public B {};", ZIsDerivedFromX));
193 EXPECT_TRUE(
194 matches("class X {}; typedef X A; typedef A B; typedef B C; "
195 "class Z : public C {};", ZIsDerivedFromX));
196 EXPECT_TRUE(
197 matches("class U {}; typedef U X; typedef X V; "
198 "class Z : public V {};", ZIsDerivedFromX));
199 EXPECT_TRUE(
200 matches("class Base {}; typedef Base X; "
201 "class Z : public Base {};", ZIsDerivedFromX));
202 EXPECT_TRUE(
203 matches("class Base {}; typedef Base Base2; typedef Base2 X; "
204 "class Z : public Base {};", ZIsDerivedFromX));
205 EXPECT_TRUE(
206 notMatches("class Base {}; class Base2 {}; typedef Base2 X; "
207 "class Z : public Base {};", ZIsDerivedFromX));
208 EXPECT_TRUE(
209 matches("class A {}; typedef A X; typedef A Y; "
210 "class Z : public Y {};", ZIsDerivedFromX));
211 EXPECT_TRUE(
212 notMatches("template <typename T> class Z;"
213 "template <> class Z<void> {};"
214 "template <typename T> class Z : public Z<void> {};",
215 IsDerivedFromX));
216 EXPECT_TRUE(
217 matches("template <typename T> class X;"
218 "template <> class X<void> {};"
219 "template <typename T> class X : public X<void> {};",
220 IsDerivedFromX));
221 EXPECT_TRUE(matches(
222 "class X {};"
223 "template <typename T> class Z;"
224 "template <> class Z<void> {};"
225 "template <typename T> class Z : public Z<void>, public X {};",
226 ZIsDerivedFromX));
227
228 // FIXME: Once we have better matchers for template type matching,
229 // get rid of the Variable(...) matching and match the right template
230 // declarations directly.
231 const char *RecursiveTemplateOneParameter =
232 "class Base1 {}; class Base2 {};"
233 "template <typename T> class Z;"
234 "template <> class Z<void> : public Base1 {};"
235 "template <> class Z<int> : public Base2 {};"
236 "template <> class Z<float> : public Z<void> {};"
237 "template <> class Z<double> : public Z<int> {};"
238 "template <typename T> class Z : public Z<float>, public Z<double> {};"
239 "void f() { Z<float> z_float; Z<double> z_double; Z<char> z_char; }";
240 EXPECT_TRUE(matches(
241 RecursiveTemplateOneParameter,
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000242 varDecl(hasName("z_float"),
243 hasInitializer(hasType(recordDecl(isDerivedFrom("Base1")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000244 EXPECT_TRUE(notMatches(
245 RecursiveTemplateOneParameter,
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000246 varDecl(hasName("z_float"),
247 hasInitializer(hasType(recordDecl(isDerivedFrom("Base2")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000248 EXPECT_TRUE(matches(
249 RecursiveTemplateOneParameter,
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000250 varDecl(hasName("z_char"),
251 hasInitializer(hasType(recordDecl(isDerivedFrom("Base1"),
252 isDerivedFrom("Base2")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000253
254 const char *RecursiveTemplateTwoParameters =
255 "class Base1 {}; class Base2 {};"
256 "template <typename T1, typename T2> class Z;"
257 "template <typename T> class Z<void, T> : public Base1 {};"
258 "template <typename T> class Z<int, T> : public Base2 {};"
259 "template <typename T> class Z<float, T> : public Z<void, T> {};"
260 "template <typename T> class Z<double, T> : public Z<int, T> {};"
261 "template <typename T1, typename T2> class Z : "
262 " public Z<float, T2>, public Z<double, T2> {};"
263 "void f() { Z<float, void> z_float; Z<double, void> z_double; "
264 " Z<char, void> z_char; }";
265 EXPECT_TRUE(matches(
266 RecursiveTemplateTwoParameters,
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000267 varDecl(hasName("z_float"),
268 hasInitializer(hasType(recordDecl(isDerivedFrom("Base1")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000269 EXPECT_TRUE(notMatches(
270 RecursiveTemplateTwoParameters,
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000271 varDecl(hasName("z_float"),
272 hasInitializer(hasType(recordDecl(isDerivedFrom("Base2")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000273 EXPECT_TRUE(matches(
274 RecursiveTemplateTwoParameters,
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000275 varDecl(hasName("z_char"),
276 hasInitializer(hasType(recordDecl(isDerivedFrom("Base1"),
277 isDerivedFrom("Base2")))))));
Daniel Jasper20b802d2012-07-17 07:39:27 +0000278 EXPECT_TRUE(matches(
279 "namespace ns { class X {}; class Y : public X {}; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000280 recordDecl(isDerivedFrom("::ns::X"))));
Daniel Jasper20b802d2012-07-17 07:39:27 +0000281 EXPECT_TRUE(notMatches(
282 "class X {}; class Y : public X {};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000283 recordDecl(isDerivedFrom("::ns::X"))));
Daniel Jasper20b802d2012-07-17 07:39:27 +0000284
285 EXPECT_TRUE(matches(
286 "class X {}; class Y : public X {};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000287 recordDecl(isDerivedFrom(recordDecl(hasName("X")).bind("test")))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000288}
289
Dmitri Gribenko8456ae62012-08-17 18:42:47 +0000290TEST(ClassTemplate, DoesNotMatchClass) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000291 DeclarationMatcher ClassX = classTemplateDecl(hasName("X"));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +0000292 EXPECT_TRUE(notMatches("class X;", ClassX));
293 EXPECT_TRUE(notMatches("class X {};", ClassX));
294}
295
296TEST(ClassTemplate, MatchesClassTemplate) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000297 DeclarationMatcher ClassX = classTemplateDecl(hasName("X"));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +0000298 EXPECT_TRUE(matches("template<typename T> class X {};", ClassX));
299 EXPECT_TRUE(matches("class Z { template<class T> class X {}; };", ClassX));
300}
301
302TEST(ClassTemplate, DoesNotMatchClassTemplateExplicitSpecialization) {
303 EXPECT_TRUE(notMatches("template<typename T> class X { };"
304 "template<> class X<int> { int a; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000305 classTemplateDecl(hasName("X"),
306 hasDescendant(fieldDecl(hasName("a"))))));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +0000307}
308
309TEST(ClassTemplate, DoesNotMatchClassTemplatePartialSpecialization) {
310 EXPECT_TRUE(notMatches("template<typename T, typename U> class X { };"
311 "template<typename T> class X<T, int> { int a; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000312 classTemplateDecl(hasName("X"),
313 hasDescendant(fieldDecl(hasName("a"))))));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +0000314}
315
Daniel Jasper6a124492012-07-12 08:50:38 +0000316TEST(AllOf, AllOverloadsWork) {
317 const char Program[] =
318 "struct T { }; int f(int, T*); void g(int x) { T t; f(x, &t); }";
319 EXPECT_TRUE(matches(Program,
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000320 callExpr(allOf(callee(functionDecl(hasName("f"))),
321 hasArgument(0, declRefExpr(to(varDecl())))))));
Daniel Jasper6a124492012-07-12 08:50:38 +0000322 EXPECT_TRUE(matches(Program,
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000323 callExpr(allOf(callee(functionDecl(hasName("f"))),
324 hasArgument(0, declRefExpr(to(varDecl()))),
325 hasArgument(1, hasType(pointsTo(
326 recordDecl(hasName("T")))))))));
Daniel Jasper6a124492012-07-12 08:50:38 +0000327}
328
Manuel Klimek4da21662012-07-06 05:48:52 +0000329TEST(DeclarationMatcher, MatchAnyOf) {
330 DeclarationMatcher YOrZDerivedFromX =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000331 recordDecl(anyOf(hasName("Y"), allOf(isDerivedFrom("X"), hasName("Z"))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000332 EXPECT_TRUE(
333 matches("class X {}; class Z : public X {};", YOrZDerivedFromX));
334 EXPECT_TRUE(matches("class Y {};", YOrZDerivedFromX));
335 EXPECT_TRUE(
336 notMatches("class X {}; class W : public X {};", YOrZDerivedFromX));
337 EXPECT_TRUE(notMatches("class Z {};", YOrZDerivedFromX));
338
Daniel Jasperff2fcb82012-07-15 19:57:12 +0000339 DeclarationMatcher XOrYOrZOrU =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000340 recordDecl(anyOf(hasName("X"), hasName("Y"), hasName("Z"), hasName("U")));
Daniel Jasperff2fcb82012-07-15 19:57:12 +0000341 EXPECT_TRUE(matches("class X {};", XOrYOrZOrU));
342 EXPECT_TRUE(notMatches("class V {};", XOrYOrZOrU));
343
Manuel Klimek4da21662012-07-06 05:48:52 +0000344 DeclarationMatcher XOrYOrZOrUOrV =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000345 recordDecl(anyOf(hasName("X"), hasName("Y"), hasName("Z"), hasName("U"),
346 hasName("V")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000347 EXPECT_TRUE(matches("class X {};", XOrYOrZOrUOrV));
348 EXPECT_TRUE(matches("class Y {};", XOrYOrZOrUOrV));
349 EXPECT_TRUE(matches("class Z {};", XOrYOrZOrUOrV));
350 EXPECT_TRUE(matches("class U {};", XOrYOrZOrUOrV));
351 EXPECT_TRUE(matches("class V {};", XOrYOrZOrUOrV));
352 EXPECT_TRUE(notMatches("class A {};", XOrYOrZOrUOrV));
353}
354
355TEST(DeclarationMatcher, MatchHas) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000356 DeclarationMatcher HasClassX = recordDecl(has(recordDecl(hasName("X"))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000357 EXPECT_TRUE(matches("class Y { class X {}; };", HasClassX));
358 EXPECT_TRUE(matches("class X {};", HasClassX));
359
360 DeclarationMatcher YHasClassX =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000361 recordDecl(hasName("Y"), has(recordDecl(hasName("X"))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000362 EXPECT_TRUE(matches("class Y { class X {}; };", YHasClassX));
363 EXPECT_TRUE(notMatches("class X {};", YHasClassX));
364 EXPECT_TRUE(
365 notMatches("class Y { class Z { class X {}; }; };", YHasClassX));
366}
367
368TEST(DeclarationMatcher, MatchHasRecursiveAllOf) {
369 DeclarationMatcher Recursive =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000370 recordDecl(
371 has(recordDecl(
372 has(recordDecl(hasName("X"))),
373 has(recordDecl(hasName("Y"))),
Manuel Klimek4da21662012-07-06 05:48:52 +0000374 hasName("Z"))),
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000375 has(recordDecl(
376 has(recordDecl(hasName("A"))),
377 has(recordDecl(hasName("B"))),
Manuel Klimek4da21662012-07-06 05:48:52 +0000378 hasName("C"))),
379 hasName("F"));
380
381 EXPECT_TRUE(matches(
382 "class F {"
383 " class Z {"
384 " class X {};"
385 " class Y {};"
386 " };"
387 " class C {"
388 " class A {};"
389 " class B {};"
390 " };"
391 "};", Recursive));
392
393 EXPECT_TRUE(matches(
394 "class F {"
395 " class Z {"
396 " class A {};"
397 " class X {};"
398 " class Y {};"
399 " };"
400 " class C {"
401 " class X {};"
402 " class A {};"
403 " class B {};"
404 " };"
405 "};", Recursive));
406
407 EXPECT_TRUE(matches(
408 "class O1 {"
409 " class O2 {"
410 " class F {"
411 " class Z {"
412 " class A {};"
413 " class X {};"
414 " class Y {};"
415 " };"
416 " class C {"
417 " class X {};"
418 " class A {};"
419 " class B {};"
420 " };"
421 " };"
422 " };"
423 "};", Recursive));
424}
425
426TEST(DeclarationMatcher, MatchHasRecursiveAnyOf) {
427 DeclarationMatcher Recursive =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000428 recordDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +0000429 anyOf(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000430 has(recordDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +0000431 anyOf(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000432 has(recordDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +0000433 hasName("X"))),
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000434 has(recordDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +0000435 hasName("Y"))),
436 hasName("Z")))),
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000437 has(recordDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +0000438 anyOf(
439 hasName("C"),
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000440 has(recordDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +0000441 hasName("A"))),
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000442 has(recordDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +0000443 hasName("B")))))),
444 hasName("F")));
445
446 EXPECT_TRUE(matches("class F {};", Recursive));
447 EXPECT_TRUE(matches("class Z {};", Recursive));
448 EXPECT_TRUE(matches("class C {};", Recursive));
449 EXPECT_TRUE(matches("class M { class N { class X {}; }; };", Recursive));
450 EXPECT_TRUE(matches("class M { class N { class B {}; }; };", Recursive));
451 EXPECT_TRUE(
452 matches("class O1 { class O2 {"
453 " class M { class N { class B {}; }; }; "
454 "}; };", Recursive));
455}
456
457TEST(DeclarationMatcher, MatchNot) {
458 DeclarationMatcher NotClassX =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000459 recordDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +0000460 isDerivedFrom("Y"),
461 unless(hasName("Y")),
462 unless(hasName("X")));
463 EXPECT_TRUE(notMatches("", NotClassX));
464 EXPECT_TRUE(notMatches("class Y {};", NotClassX));
465 EXPECT_TRUE(matches("class Y {}; class Z : public Y {};", NotClassX));
466 EXPECT_TRUE(notMatches("class Y {}; class X : public Y {};", NotClassX));
467 EXPECT_TRUE(
468 notMatches("class Y {}; class Z {}; class X : public Y {};",
469 NotClassX));
470
471 DeclarationMatcher ClassXHasNotClassY =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000472 recordDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +0000473 hasName("X"),
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000474 has(recordDecl(hasName("Z"))),
Manuel Klimek4da21662012-07-06 05:48:52 +0000475 unless(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000476 has(recordDecl(hasName("Y")))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000477 EXPECT_TRUE(matches("class X { class Z {}; };", ClassXHasNotClassY));
478 EXPECT_TRUE(notMatches("class X { class Y {}; class Z {}; };",
479 ClassXHasNotClassY));
480}
481
482TEST(DeclarationMatcher, HasDescendant) {
483 DeclarationMatcher ZDescendantClassX =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000484 recordDecl(
485 hasDescendant(recordDecl(hasName("X"))),
Manuel Klimek4da21662012-07-06 05:48:52 +0000486 hasName("Z"));
487 EXPECT_TRUE(matches("class Z { class X {}; };", ZDescendantClassX));
488 EXPECT_TRUE(
489 matches("class Z { class Y { class X {}; }; };", ZDescendantClassX));
490 EXPECT_TRUE(
491 matches("class Z { class A { class Y { class X {}; }; }; };",
492 ZDescendantClassX));
493 EXPECT_TRUE(
494 matches("class Z { class A { class B { class Y { class X {}; }; }; }; };",
495 ZDescendantClassX));
496 EXPECT_TRUE(notMatches("class Z {};", ZDescendantClassX));
497
498 DeclarationMatcher ZDescendantClassXHasClassY =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000499 recordDecl(
500 hasDescendant(recordDecl(has(recordDecl(hasName("Y"))),
Manuel Klimek4da21662012-07-06 05:48:52 +0000501 hasName("X"))),
502 hasName("Z"));
503 EXPECT_TRUE(matches("class Z { class X { class Y {}; }; };",
504 ZDescendantClassXHasClassY));
505 EXPECT_TRUE(
506 matches("class Z { class A { class B { class X { class Y {}; }; }; }; };",
507 ZDescendantClassXHasClassY));
508 EXPECT_TRUE(notMatches(
509 "class Z {"
510 " class A {"
511 " class B {"
512 " class X {"
513 " class C {"
514 " class Y {};"
515 " };"
516 " };"
517 " }; "
518 " };"
519 "};", ZDescendantClassXHasClassY));
520
521 DeclarationMatcher ZDescendantClassXDescendantClassY =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000522 recordDecl(
523 hasDescendant(recordDecl(hasDescendant(recordDecl(hasName("Y"))),
524 hasName("X"))),
Manuel Klimek4da21662012-07-06 05:48:52 +0000525 hasName("Z"));
526 EXPECT_TRUE(
527 matches("class Z { class A { class X { class B { class Y {}; }; }; }; };",
528 ZDescendantClassXDescendantClassY));
529 EXPECT_TRUE(matches(
530 "class Z {"
531 " class A {"
532 " class X {"
533 " class B {"
534 " class Y {};"
535 " };"
536 " class Y {};"
537 " };"
538 " };"
539 "};", ZDescendantClassXDescendantClassY));
540}
541
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000542TEST(Enum, DoesNotMatchClasses) {
543 EXPECT_TRUE(notMatches("class X {};", enumDecl(hasName("X"))));
544}
545
546TEST(Enum, MatchesEnums) {
547 EXPECT_TRUE(matches("enum X {};", enumDecl(hasName("X"))));
548}
549
550TEST(EnumConstant, Matches) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000551 DeclarationMatcher Matcher = enumConstantDecl(hasName("A"));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000552 EXPECT_TRUE(matches("enum X{ A };", Matcher));
553 EXPECT_TRUE(notMatches("enum X{ B };", Matcher));
554 EXPECT_TRUE(notMatches("enum X {};", Matcher));
555}
556
Manuel Klimek4da21662012-07-06 05:48:52 +0000557TEST(StatementMatcher, Has) {
558 StatementMatcher HasVariableI =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000559 expr(hasType(pointsTo(recordDecl(hasName("X")))),
560 has(declRefExpr(to(varDecl(hasName("i"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000561
562 EXPECT_TRUE(matches(
563 "class X; X *x(int); void c() { int i; x(i); }", HasVariableI));
564 EXPECT_TRUE(notMatches(
565 "class X; X *x(int); void c() { int i; x(42); }", HasVariableI));
566}
567
568TEST(StatementMatcher, HasDescendant) {
569 StatementMatcher HasDescendantVariableI =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000570 expr(hasType(pointsTo(recordDecl(hasName("X")))),
571 hasDescendant(declRefExpr(to(varDecl(hasName("i"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000572
573 EXPECT_TRUE(matches(
574 "class X; X *x(bool); bool b(int); void c() { int i; x(b(i)); }",
575 HasDescendantVariableI));
576 EXPECT_TRUE(notMatches(
577 "class X; X *x(bool); bool b(int); void c() { int i; x(b(42)); }",
578 HasDescendantVariableI));
579}
580
581TEST(TypeMatcher, MatchesClassType) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000582 TypeMatcher TypeA = hasDeclaration(recordDecl(hasName("A")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000583
584 EXPECT_TRUE(matches("class A { public: A *a; };", TypeA));
585 EXPECT_TRUE(notMatches("class A {};", TypeA));
586
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000587 TypeMatcher TypeDerivedFromA = hasDeclaration(recordDecl(isDerivedFrom("A")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000588
589 EXPECT_TRUE(matches("class A {}; class B : public A { public: B *b; };",
590 TypeDerivedFromA));
591 EXPECT_TRUE(notMatches("class A {};", TypeA));
592
593 TypeMatcher TypeAHasClassB = hasDeclaration(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000594 recordDecl(hasName("A"), has(recordDecl(hasName("B")))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000595
596 EXPECT_TRUE(
597 matches("class A { public: A *a; class B {}; };", TypeAHasClassB));
598}
599
Manuel Klimek579b1202012-09-07 09:26:10 +0000600// Implements a run method that returns whether BoundNodes contains a
601// Decl bound to Id that can be dynamically cast to T.
Manuel Klimek4da21662012-07-06 05:48:52 +0000602// Optionally checks that the check succeeded a specific number of times.
603template <typename T>
604class VerifyIdIsBoundToDecl : public BoundNodesCallback {
605public:
Manuel Klimek579b1202012-09-07 09:26:10 +0000606 // Create an object that checks that a node of type \c T was bound to \c Id.
Manuel Klimek4da21662012-07-06 05:48:52 +0000607 // Does not check for a certain number of matches.
Manuel Klimek579b1202012-09-07 09:26:10 +0000608 explicit VerifyIdIsBoundToDecl(llvm::StringRef Id)
Manuel Klimek4da21662012-07-06 05:48:52 +0000609 : Id(Id), ExpectedCount(-1), Count(0) {}
610
Manuel Klimek579b1202012-09-07 09:26:10 +0000611 // Create an object that checks that a node of type \c T was bound to \c Id.
612 // Checks that there were exactly \c ExpectedCount matches.
613 VerifyIdIsBoundToDecl(llvm::StringRef Id, int ExpectedCount)
Manuel Klimek4da21662012-07-06 05:48:52 +0000614 : Id(Id), ExpectedCount(ExpectedCount), Count(0) {}
615
Manuel Klimek579b1202012-09-07 09:26:10 +0000616 // Create an object that checks that a node of type \c T was bound to \c Id.
617 // Checks that there was exactly one match with the name \c ExpectedDeclName.
618 // Note that \c T must be a NamedDecl for this to work.
619 VerifyIdIsBoundToDecl(llvm::StringRef Id, llvm::StringRef ExpectedDeclName)
620 : Id(Id), ExpectedCount(1), Count(0), ExpectedDeclName(ExpectedDeclName) {}
621
Manuel Klimek4da21662012-07-06 05:48:52 +0000622 ~VerifyIdIsBoundToDecl() {
Manuel Klimek579b1202012-09-07 09:26:10 +0000623 if (ExpectedCount != -1)
Manuel Klimek4da21662012-07-06 05:48:52 +0000624 EXPECT_EQ(ExpectedCount, Count);
Manuel Klimek579b1202012-09-07 09:26:10 +0000625 if (!ExpectedDeclName.empty())
626 EXPECT_EQ(ExpectedDeclName, DeclName);
Manuel Klimek4da21662012-07-06 05:48:52 +0000627 }
628
629 virtual bool run(const BoundNodes *Nodes) {
Manuel Klimek579b1202012-09-07 09:26:10 +0000630 if (const Decl *Node = Nodes->getDeclAs<T>(Id)) {
Manuel Klimek4da21662012-07-06 05:48:52 +0000631 ++Count;
Manuel Klimek579b1202012-09-07 09:26:10 +0000632 if (const NamedDecl *Named = llvm::dyn_cast<NamedDecl>(Node)) {
633 DeclName = Named->getNameAsString();
634 }
Manuel Klimek4da21662012-07-06 05:48:52 +0000635 return true;
636 }
637 return false;
638 }
639
640private:
641 const std::string Id;
642 const int ExpectedCount;
643 int Count;
Manuel Klimek579b1202012-09-07 09:26:10 +0000644 const std::string ExpectedDeclName;
645 std::string DeclName;
Manuel Klimek4da21662012-07-06 05:48:52 +0000646};
647template <typename T>
648class VerifyIdIsBoundToStmt : public BoundNodesCallback {
649public:
650 explicit VerifyIdIsBoundToStmt(const std::string &Id) : Id(Id) {}
651 virtual bool run(const BoundNodes *Nodes) {
652 const T *Node = Nodes->getStmtAs<T>(Id);
653 return Node != NULL;
654 }
655private:
656 const std::string Id;
657};
658
659TEST(Matcher, BindMatchedNodes) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000660 DeclarationMatcher ClassX = has(recordDecl(hasName("::X")).bind("x"));
Manuel Klimek4da21662012-07-06 05:48:52 +0000661
662 EXPECT_TRUE(matchAndVerifyResultTrue("class X {};",
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000663 ClassX, new VerifyIdIsBoundToDecl<CXXRecordDecl>("x")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000664
665 EXPECT_TRUE(matchAndVerifyResultFalse("class X {};",
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000666 ClassX, new VerifyIdIsBoundToDecl<CXXRecordDecl>("other-id")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000667
668 TypeMatcher TypeAHasClassB = hasDeclaration(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000669 recordDecl(hasName("A"), has(recordDecl(hasName("B")).bind("b"))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000670
671 EXPECT_TRUE(matchAndVerifyResultTrue("class A { public: A *a; class B {}; };",
672 TypeAHasClassB,
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000673 new VerifyIdIsBoundToDecl<Decl>("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000674
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000675 StatementMatcher MethodX =
676 callExpr(callee(methodDecl(hasName("x")))).bind("x");
Manuel Klimek4da21662012-07-06 05:48:52 +0000677
678 EXPECT_TRUE(matchAndVerifyResultTrue("class A { void x() { x(); } };",
679 MethodX,
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000680 new VerifyIdIsBoundToStmt<CXXMemberCallExpr>("x")));
681}
682
683TEST(Matcher, BindTheSameNameInAlternatives) {
684 StatementMatcher matcher = anyOf(
685 binaryOperator(hasOperatorName("+"),
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000686 hasLHS(expr().bind("x")),
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000687 hasRHS(integerLiteral(equals(0)))),
688 binaryOperator(hasOperatorName("+"),
689 hasLHS(integerLiteral(equals(0))),
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000690 hasRHS(expr().bind("x"))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000691
692 EXPECT_TRUE(matchAndVerifyResultTrue(
693 // The first branch of the matcher binds x to 0 but then fails.
694 // The second branch binds x to f() and succeeds.
695 "int f() { return 0 + f(); }",
696 matcher,
697 new VerifyIdIsBoundToStmt<CallExpr>("x")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000698}
699
Manuel Klimek66341c52012-08-30 19:41:06 +0000700TEST(Matcher, BindsIDForMemoizedResults) {
701 // Using the same matcher in two match expressions will make memoization
702 // kick in.
703 DeclarationMatcher ClassX = recordDecl(hasName("X")).bind("x");
704 EXPECT_TRUE(matchAndVerifyResultTrue(
705 "class A { class B { class X {}; }; };",
706 DeclarationMatcher(anyOf(
707 recordDecl(hasName("A"), hasDescendant(ClassX)),
708 recordDecl(hasName("B"), hasDescendant(ClassX)))),
709 new VerifyIdIsBoundToDecl<Decl>("x", 2)));
710}
711
Manuel Klimek4da21662012-07-06 05:48:52 +0000712TEST(HasType, TakesQualTypeMatcherAndMatchesExpr) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000713 TypeMatcher ClassX = hasDeclaration(recordDecl(hasName("X")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000714 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000715 matches("class X {}; void y(X &x) { x; }", expr(hasType(ClassX))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000716 EXPECT_TRUE(
717 notMatches("class X {}; void y(X *x) { x; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000718 expr(hasType(ClassX))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000719 EXPECT_TRUE(
720 matches("class X {}; void y(X *x) { x; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000721 expr(hasType(pointsTo(ClassX)))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000722}
723
724TEST(HasType, TakesQualTypeMatcherAndMatchesValueDecl) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000725 TypeMatcher ClassX = hasDeclaration(recordDecl(hasName("X")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000726 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000727 matches("class X {}; void y() { X x; }", varDecl(hasType(ClassX))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000728 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000729 notMatches("class X {}; void y() { X *x; }", varDecl(hasType(ClassX))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000730 EXPECT_TRUE(
731 matches("class X {}; void y() { X *x; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000732 varDecl(hasType(pointsTo(ClassX)))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000733}
734
735TEST(HasType, TakesDeclMatcherAndMatchesExpr) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000736 DeclarationMatcher ClassX = recordDecl(hasName("X"));
Manuel Klimek4da21662012-07-06 05:48:52 +0000737 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000738 matches("class X {}; void y(X &x) { x; }", expr(hasType(ClassX))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000739 EXPECT_TRUE(
740 notMatches("class X {}; void y(X *x) { x; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000741 expr(hasType(ClassX))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000742}
743
744TEST(HasType, TakesDeclMatcherAndMatchesValueDecl) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000745 DeclarationMatcher ClassX = recordDecl(hasName("X"));
Manuel Klimek4da21662012-07-06 05:48:52 +0000746 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000747 matches("class X {}; void y() { X x; }", varDecl(hasType(ClassX))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000748 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000749 notMatches("class X {}; void y() { X *x; }", varDecl(hasType(ClassX))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000750}
751
752TEST(Matcher, Call) {
753 // FIXME: Do we want to overload Call() to directly take
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000754 // Matcher<Decl>, too?
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000755 StatementMatcher MethodX = callExpr(hasDeclaration(methodDecl(hasName("x"))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000756
757 EXPECT_TRUE(matches("class Y { void x() { x(); } };", MethodX));
758 EXPECT_TRUE(notMatches("class Y { void x() {} };", MethodX));
759
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000760 StatementMatcher MethodOnY =
761 memberCallExpr(on(hasType(recordDecl(hasName("Y")))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000762
763 EXPECT_TRUE(
764 matches("class Y { public: void x(); }; void z() { Y y; y.x(); }",
765 MethodOnY));
766 EXPECT_TRUE(
767 matches("class Y { public: void x(); }; void z(Y &y) { y.x(); }",
768 MethodOnY));
769 EXPECT_TRUE(
770 notMatches("class Y { public: void x(); }; void z(Y *&y) { y->x(); }",
771 MethodOnY));
772 EXPECT_TRUE(
773 notMatches("class Y { public: void x(); }; void z(Y y[]) { y->x(); }",
774 MethodOnY));
775 EXPECT_TRUE(
776 notMatches("class Y { public: void x(); }; void z() { Y *y; y->x(); }",
777 MethodOnY));
778
779 StatementMatcher MethodOnYPointer =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000780 memberCallExpr(on(hasType(pointsTo(recordDecl(hasName("Y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000781
782 EXPECT_TRUE(
783 matches("class Y { public: void x(); }; void z() { Y *y; y->x(); }",
784 MethodOnYPointer));
785 EXPECT_TRUE(
786 matches("class Y { public: void x(); }; void z(Y *&y) { y->x(); }",
787 MethodOnYPointer));
788 EXPECT_TRUE(
789 matches("class Y { public: void x(); }; void z(Y y[]) { y->x(); }",
790 MethodOnYPointer));
791 EXPECT_TRUE(
792 notMatches("class Y { public: void x(); }; void z() { Y y; y.x(); }",
793 MethodOnYPointer));
794 EXPECT_TRUE(
795 notMatches("class Y { public: void x(); }; void z(Y &y) { y.x(); }",
796 MethodOnYPointer));
797}
798
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000799TEST(HasType, MatchesAsString) {
800 EXPECT_TRUE(
801 matches("class Y { public: void x(); }; void z() {Y* y; y->x(); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000802 memberCallExpr(on(hasType(asString("class Y *"))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000803 EXPECT_TRUE(matches("class X { void x(int x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000804 methodDecl(hasParameter(0, hasType(asString("int"))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000805 EXPECT_TRUE(matches("namespace ns { struct A {}; } struct B { ns::A a; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000806 fieldDecl(hasType(asString("ns::A")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000807 EXPECT_TRUE(matches("namespace { struct A {}; } struct B { A a; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000808 fieldDecl(hasType(asString("struct <anonymous>::A")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000809}
810
Manuel Klimek4da21662012-07-06 05:48:52 +0000811TEST(Matcher, OverloadedOperatorCall) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000812 StatementMatcher OpCall = operatorCallExpr();
Manuel Klimek4da21662012-07-06 05:48:52 +0000813 // Unary operator
814 EXPECT_TRUE(matches("class Y { }; "
815 "bool operator!(Y x) { return false; }; "
816 "Y y; bool c = !y;", OpCall));
817 // No match -- special operators like "new", "delete"
818 // FIXME: operator new takes size_t, for which we need stddef.h, for which
819 // we need to figure out include paths in the test.
820 // EXPECT_TRUE(NotMatches("#include <stddef.h>\n"
821 // "class Y { }; "
822 // "void *operator new(size_t size) { return 0; } "
823 // "Y *y = new Y;", OpCall));
824 EXPECT_TRUE(notMatches("class Y { }; "
825 "void operator delete(void *p) { } "
826 "void a() {Y *y = new Y; delete y;}", OpCall));
827 // Binary operator
828 EXPECT_TRUE(matches("class Y { }; "
829 "bool operator&&(Y x, Y y) { return true; }; "
830 "Y a; Y b; bool c = a && b;",
831 OpCall));
832 // No match -- normal operator, not an overloaded one.
833 EXPECT_TRUE(notMatches("bool x = true, y = true; bool t = x && y;", OpCall));
834 EXPECT_TRUE(notMatches("int t = 5 << 2;", OpCall));
835}
836
837TEST(Matcher, HasOperatorNameForOverloadedOperatorCall) {
838 StatementMatcher OpCallAndAnd =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000839 operatorCallExpr(hasOverloadedOperatorName("&&"));
Manuel Klimek4da21662012-07-06 05:48:52 +0000840 EXPECT_TRUE(matches("class Y { }; "
841 "bool operator&&(Y x, Y y) { return true; }; "
842 "Y a; Y b; bool c = a && b;", OpCallAndAnd));
843 StatementMatcher OpCallLessLess =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000844 operatorCallExpr(hasOverloadedOperatorName("<<"));
Manuel Klimek4da21662012-07-06 05:48:52 +0000845 EXPECT_TRUE(notMatches("class Y { }; "
846 "bool operator&&(Y x, Y y) { return true; }; "
847 "Y a; Y b; bool c = a && b;",
848 OpCallLessLess));
849}
850
851TEST(Matcher, ThisPointerType) {
Manuel Klimek9f174082012-07-24 13:37:29 +0000852 StatementMatcher MethodOnY =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000853 memberCallExpr(thisPointerType(recordDecl(hasName("Y"))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000854
855 EXPECT_TRUE(
856 matches("class Y { public: void x(); }; void z() { Y y; y.x(); }",
857 MethodOnY));
858 EXPECT_TRUE(
859 matches("class Y { public: void x(); }; void z(Y &y) { y.x(); }",
860 MethodOnY));
861 EXPECT_TRUE(
862 matches("class Y { public: void x(); }; void z(Y *&y) { y->x(); }",
863 MethodOnY));
864 EXPECT_TRUE(
865 matches("class Y { public: void x(); }; void z(Y y[]) { y->x(); }",
866 MethodOnY));
867 EXPECT_TRUE(
868 matches("class Y { public: void x(); }; void z() { Y *y; y->x(); }",
869 MethodOnY));
870
871 EXPECT_TRUE(matches(
872 "class Y {"
873 " public: virtual void x();"
874 "};"
875 "class X : public Y {"
876 " public: virtual void x();"
877 "};"
878 "void z() { X *x; x->Y::x(); }", MethodOnY));
879}
880
881TEST(Matcher, VariableUsage) {
882 StatementMatcher Reference =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000883 declRefExpr(to(
884 varDecl(hasInitializer(
885 memberCallExpr(thisPointerType(recordDecl(hasName("Y"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000886
887 EXPECT_TRUE(matches(
888 "class Y {"
889 " public:"
890 " bool x() const;"
891 "};"
892 "void z(const Y &y) {"
893 " bool b = y.x();"
894 " if (b) {}"
895 "}", Reference));
896
897 EXPECT_TRUE(notMatches(
898 "class Y {"
899 " public:"
900 " bool x() const;"
901 "};"
902 "void z(const Y &y) {"
903 " bool b = y.x();"
904 "}", Reference));
905}
906
Daniel Jasper9bd28092012-07-30 05:03:25 +0000907TEST(Matcher, FindsVarDeclInFuncitonParameter) {
908 EXPECT_TRUE(matches(
909 "void f(int i) {}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000910 varDecl(hasName("i"))));
Daniel Jasper9bd28092012-07-30 05:03:25 +0000911}
912
Manuel Klimek4da21662012-07-06 05:48:52 +0000913TEST(Matcher, CalledVariable) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000914 StatementMatcher CallOnVariableY = expr(
915 memberCallExpr(on(declRefExpr(to(varDecl(hasName("y")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000916
917 EXPECT_TRUE(matches(
918 "class Y { public: void x() { Y y; y.x(); } };", CallOnVariableY));
919 EXPECT_TRUE(matches(
920 "class Y { public: void x() const { Y y; y.x(); } };", CallOnVariableY));
921 EXPECT_TRUE(matches(
922 "class Y { public: void x(); };"
923 "class X : public Y { void z() { X y; y.x(); } };", CallOnVariableY));
924 EXPECT_TRUE(matches(
925 "class Y { public: void x(); };"
926 "class X : public Y { void z() { X *y; y->x(); } };", CallOnVariableY));
927 EXPECT_TRUE(notMatches(
928 "class Y { public: void x(); };"
929 "class X : public Y { void z() { unsigned long y; ((X*)y)->x(); } };",
930 CallOnVariableY));
931}
932
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000933TEST(UnaryExprOrTypeTraitExpr, MatchesSizeOfAndAlignOf) {
934 EXPECT_TRUE(matches("void x() { int a = sizeof(a); }",
935 unaryExprOrTypeTraitExpr()));
936 EXPECT_TRUE(notMatches("void x() { int a = sizeof(a); }",
937 alignOfExpr(anything())));
938 // FIXME: Uncomment once alignof is enabled.
939 // EXPECT_TRUE(matches("void x() { int a = alignof(a); }",
940 // unaryExprOrTypeTraitExpr()));
941 // EXPECT_TRUE(notMatches("void x() { int a = alignof(a); }",
942 // sizeOfExpr()));
943}
944
945TEST(UnaryExpressionOrTypeTraitExpression, MatchesCorrectType) {
946 EXPECT_TRUE(matches("void x() { int a = sizeof(a); }", sizeOfExpr(
947 hasArgumentOfType(asString("int")))));
948 EXPECT_TRUE(notMatches("void x() { int a = sizeof(a); }", sizeOfExpr(
949 hasArgumentOfType(asString("float")))));
950 EXPECT_TRUE(matches(
951 "struct A {}; void x() { A a; int b = sizeof(a); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000952 sizeOfExpr(hasArgumentOfType(hasDeclaration(recordDecl(hasName("A")))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000953 EXPECT_TRUE(notMatches("void x() { int a = sizeof(a); }", sizeOfExpr(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000954 hasArgumentOfType(hasDeclaration(recordDecl(hasName("string")))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000955}
956
Manuel Klimek4da21662012-07-06 05:48:52 +0000957TEST(MemberExpression, DoesNotMatchClasses) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000958 EXPECT_TRUE(notMatches("class Y { void x() {} };", memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +0000959}
960
961TEST(MemberExpression, MatchesMemberFunctionCall) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000962 EXPECT_TRUE(matches("class Y { void x() { x(); } };", memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +0000963}
964
965TEST(MemberExpression, MatchesVariable) {
966 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000967 matches("class Y { void x() { this->y; } int y; };", memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +0000968 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000969 matches("class Y { void x() { y; } int y; };", memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +0000970 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000971 matches("class Y { void x() { Y y; y.y; } int y; };", memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +0000972}
973
974TEST(MemberExpression, MatchesStaticVariable) {
975 EXPECT_TRUE(matches("class Y { void x() { this->y; } static int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000976 memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +0000977 EXPECT_TRUE(notMatches("class Y { void x() { y; } static int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000978 memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +0000979 EXPECT_TRUE(notMatches("class Y { void x() { Y::y; } static int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000980 memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +0000981}
982
Daniel Jasper6a124492012-07-12 08:50:38 +0000983TEST(IsInteger, MatchesIntegers) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000984 EXPECT_TRUE(matches("int i = 0;", varDecl(hasType(isInteger()))));
985 EXPECT_TRUE(matches(
986 "long long i = 0; void f(long long) { }; void g() {f(i);}",
987 callExpr(hasArgument(0, declRefExpr(
988 to(varDecl(hasType(isInteger()))))))));
Daniel Jasper6a124492012-07-12 08:50:38 +0000989}
990
991TEST(IsInteger, ReportsNoFalsePositives) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000992 EXPECT_TRUE(notMatches("int *i;", varDecl(hasType(isInteger()))));
Daniel Jasper6a124492012-07-12 08:50:38 +0000993 EXPECT_TRUE(notMatches("struct T {}; T t; void f(T *) { }; void g() {f(&t);}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000994 callExpr(hasArgument(0, declRefExpr(
995 to(varDecl(hasType(isInteger()))))))));
Daniel Jasper6a124492012-07-12 08:50:38 +0000996}
997
Manuel Klimek4da21662012-07-06 05:48:52 +0000998TEST(IsArrow, MatchesMemberVariablesViaArrow) {
999 EXPECT_TRUE(matches("class Y { void x() { this->y; } int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001000 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001001 EXPECT_TRUE(matches("class Y { void x() { y; } int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001002 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001003 EXPECT_TRUE(notMatches("class Y { void x() { (*this).y; } int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001004 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001005}
1006
1007TEST(IsArrow, MatchesStaticMemberVariablesViaArrow) {
1008 EXPECT_TRUE(matches("class Y { void x() { this->y; } static int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001009 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001010 EXPECT_TRUE(notMatches("class Y { void x() { y; } static int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001011 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001012 EXPECT_TRUE(notMatches("class Y { void x() { (*this).y; } static int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001013 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001014}
1015
1016TEST(IsArrow, MatchesMemberCallsViaArrow) {
1017 EXPECT_TRUE(matches("class Y { void x() { this->x(); } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001018 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001019 EXPECT_TRUE(matches("class Y { void x() { x(); } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001020 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001021 EXPECT_TRUE(notMatches("class Y { void x() { Y y; y.x(); } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001022 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001023}
1024
1025TEST(Callee, MatchesDeclarations) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001026 StatementMatcher CallMethodX = callExpr(callee(methodDecl(hasName("x"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001027
1028 EXPECT_TRUE(matches("class Y { void x() { x(); } };", CallMethodX));
1029 EXPECT_TRUE(notMatches("class Y { void x() {} };", CallMethodX));
1030}
1031
1032TEST(Callee, MatchesMemberExpressions) {
1033 EXPECT_TRUE(matches("class Y { void x() { this->x(); } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001034 callExpr(callee(memberExpr()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001035 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001036 notMatches("class Y { void x() { this->x(); } };", callExpr(callee(callExpr()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001037}
1038
1039TEST(Function, MatchesFunctionDeclarations) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001040 StatementMatcher CallFunctionF = callExpr(callee(functionDecl(hasName("f"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001041
1042 EXPECT_TRUE(matches("void f() { f(); }", CallFunctionF));
1043 EXPECT_TRUE(notMatches("void f() { }", CallFunctionF));
1044
Manuel Klimeke265c872012-07-10 14:21:30 +00001045#if !defined(_MSC_VER)
1046 // FIXME: Make this work for MSVC.
Manuel Klimek4da21662012-07-06 05:48:52 +00001047 // Dependent contexts, but a non-dependent call.
1048 EXPECT_TRUE(matches("void f(); template <int N> void g() { f(); }",
1049 CallFunctionF));
1050 EXPECT_TRUE(
1051 matches("void f(); template <int N> struct S { void g() { f(); } };",
1052 CallFunctionF));
Manuel Klimeke265c872012-07-10 14:21:30 +00001053#endif
Manuel Klimek4da21662012-07-06 05:48:52 +00001054
1055 // Depedent calls don't match.
1056 EXPECT_TRUE(
1057 notMatches("void f(int); template <typename T> void g(T t) { f(t); }",
1058 CallFunctionF));
1059 EXPECT_TRUE(
1060 notMatches("void f(int);"
1061 "template <typename T> struct S { void g(T t) { f(t); } };",
1062 CallFunctionF));
1063}
1064
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00001065TEST(FunctionTemplate, MatchesFunctionTemplateDeclarations) {
1066 EXPECT_TRUE(
1067 matches("template <typename T> void f(T t) {}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001068 functionTemplateDecl(hasName("f"))));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00001069}
1070
1071TEST(FunctionTemplate, DoesNotMatchFunctionDeclarations) {
1072 EXPECT_TRUE(
1073 notMatches("void f(double d); void f(int t) {}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001074 functionTemplateDecl(hasName("f"))));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00001075}
1076
1077TEST(FunctionTemplate, DoesNotMatchFunctionTemplateSpecializations) {
1078 EXPECT_TRUE(
1079 notMatches("void g(); template <typename T> void f(T t) {}"
1080 "template <> void f(int t) { g(); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001081 functionTemplateDecl(hasName("f"),
1082 hasDescendant(declRefExpr(to(
1083 functionDecl(hasName("g"))))))));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00001084}
1085
Manuel Klimek4da21662012-07-06 05:48:52 +00001086TEST(Matcher, Argument) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001087 StatementMatcher CallArgumentY = expr(callExpr(
1088 hasArgument(0, declRefExpr(to(varDecl(hasName("y")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001089
1090 EXPECT_TRUE(matches("void x(int) { int y; x(y); }", CallArgumentY));
1091 EXPECT_TRUE(
1092 matches("class X { void x(int) { int y; x(y); } };", CallArgumentY));
1093 EXPECT_TRUE(notMatches("void x(int) { int z; x(z); }", CallArgumentY));
1094
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001095 StatementMatcher WrongIndex = expr(callExpr(
1096 hasArgument(42, declRefExpr(to(varDecl(hasName("y")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001097 EXPECT_TRUE(notMatches("void x(int) { int y; x(y); }", WrongIndex));
1098}
1099
1100TEST(Matcher, AnyArgument) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001101 StatementMatcher CallArgumentY = expr(callExpr(
1102 hasAnyArgument(declRefExpr(to(varDecl(hasName("y")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001103 EXPECT_TRUE(matches("void x(int, int) { int y; x(1, y); }", CallArgumentY));
1104 EXPECT_TRUE(matches("void x(int, int) { int y; x(y, 42); }", CallArgumentY));
1105 EXPECT_TRUE(notMatches("void x(int, int) { x(1, 2); }", CallArgumentY));
1106}
1107
1108TEST(Matcher, ArgumentCount) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001109 StatementMatcher Call1Arg = expr(callExpr(argumentCountIs(1)));
Manuel Klimek4da21662012-07-06 05:48:52 +00001110
1111 EXPECT_TRUE(matches("void x(int) { x(0); }", Call1Arg));
1112 EXPECT_TRUE(matches("class X { void x(int) { x(0); } };", Call1Arg));
1113 EXPECT_TRUE(notMatches("void x(int, int) { x(0, 0); }", Call1Arg));
1114}
1115
1116TEST(Matcher, References) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001117 DeclarationMatcher ReferenceClassX = varDecl(
1118 hasType(references(recordDecl(hasName("X")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001119 EXPECT_TRUE(matches("class X {}; void y(X y) { X &x = y; }",
1120 ReferenceClassX));
1121 EXPECT_TRUE(
1122 matches("class X {}; void y(X y) { const X &x = y; }", ReferenceClassX));
1123 EXPECT_TRUE(
1124 notMatches("class X {}; void y(X y) { X x = y; }", ReferenceClassX));
1125 EXPECT_TRUE(
1126 notMatches("class X {}; void y(X *y) { X *&x = y; }", ReferenceClassX));
1127}
1128
1129TEST(HasParameter, CallsInnerMatcher) {
1130 EXPECT_TRUE(matches("class X { void x(int) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001131 methodDecl(hasParameter(0, varDecl()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001132 EXPECT_TRUE(notMatches("class X { void x(int) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001133 methodDecl(hasParameter(0, hasName("x")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001134}
1135
1136TEST(HasParameter, DoesNotMatchIfIndexOutOfBounds) {
1137 EXPECT_TRUE(notMatches("class X { void x(int) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001138 methodDecl(hasParameter(42, varDecl()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001139}
1140
1141TEST(HasType, MatchesParameterVariableTypesStrictly) {
1142 EXPECT_TRUE(matches("class X { void x(X x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001143 methodDecl(hasParameter(0, hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001144 EXPECT_TRUE(notMatches("class X { void x(const X &x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001145 methodDecl(hasParameter(0, hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001146 EXPECT_TRUE(matches("class X { void x(const X *x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001147 methodDecl(hasParameter(0,
1148 hasType(pointsTo(recordDecl(hasName("X"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001149 EXPECT_TRUE(matches("class X { void x(const X &x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001150 methodDecl(hasParameter(0,
1151 hasType(references(recordDecl(hasName("X"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001152}
1153
1154TEST(HasAnyParameter, MatchesIndependentlyOfPosition) {
1155 EXPECT_TRUE(matches("class Y {}; class X { void x(X x, Y y) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001156 methodDecl(hasAnyParameter(hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001157 EXPECT_TRUE(matches("class Y {}; class X { void x(Y y, X x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001158 methodDecl(hasAnyParameter(hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001159}
1160
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001161TEST(Returns, MatchesReturnTypes) {
1162 EXPECT_TRUE(matches("class Y { int f() { return 1; } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001163 functionDecl(returns(asString("int")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001164 EXPECT_TRUE(notMatches("class Y { int f() { return 1; } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001165 functionDecl(returns(asString("float")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001166 EXPECT_TRUE(matches("class Y { Y getMe() { return *this; } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001167 functionDecl(returns(hasDeclaration(
1168 recordDecl(hasName("Y")))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001169}
1170
Daniel Jasper8cc7efa2012-08-15 18:52:19 +00001171TEST(IsExternC, MatchesExternCFunctionDeclarations) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001172 EXPECT_TRUE(matches("extern \"C\" void f() {}", functionDecl(isExternC())));
1173 EXPECT_TRUE(matches("extern \"C\" { void f() {} }",
1174 functionDecl(isExternC())));
1175 EXPECT_TRUE(notMatches("void f() {}", functionDecl(isExternC())));
Daniel Jasper8cc7efa2012-08-15 18:52:19 +00001176}
1177
Manuel Klimek4da21662012-07-06 05:48:52 +00001178TEST(HasAnyParameter, DoesntMatchIfInnerMatcherDoesntMatch) {
1179 EXPECT_TRUE(notMatches("class Y {}; class X { void x(int) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001180 methodDecl(hasAnyParameter(hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001181}
1182
1183TEST(HasAnyParameter, DoesNotMatchThisPointer) {
1184 EXPECT_TRUE(notMatches("class Y {}; class X { void x() {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001185 methodDecl(hasAnyParameter(hasType(pointsTo(
1186 recordDecl(hasName("X"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001187}
1188
1189TEST(HasName, MatchesParameterVariableDeclartions) {
1190 EXPECT_TRUE(matches("class Y {}; class X { void x(int x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001191 methodDecl(hasAnyParameter(hasName("x")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001192 EXPECT_TRUE(notMatches("class Y {}; class X { void x(int) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001193 methodDecl(hasAnyParameter(hasName("x")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001194}
1195
Daniel Jasper371f9392012-08-01 08:40:24 +00001196TEST(Matcher, MatchesClassTemplateSpecialization) {
1197 EXPECT_TRUE(matches("template<typename T> struct A {};"
1198 "template<> struct A<int> {};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001199 classTemplateSpecializationDecl()));
Daniel Jasper371f9392012-08-01 08:40:24 +00001200 EXPECT_TRUE(matches("template<typename T> struct A {}; A<int> a;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001201 classTemplateSpecializationDecl()));
Daniel Jasper371f9392012-08-01 08:40:24 +00001202 EXPECT_TRUE(notMatches("template<typename T> struct A {};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001203 classTemplateSpecializationDecl()));
Daniel Jasper371f9392012-08-01 08:40:24 +00001204}
1205
1206TEST(Matcher, MatchesTypeTemplateArgument) {
1207 EXPECT_TRUE(matches(
1208 "template<typename T> struct B {};"
1209 "B<int> b;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001210 classTemplateSpecializationDecl(hasAnyTemplateArgument(refersToType(
Daniel Jasper371f9392012-08-01 08:40:24 +00001211 asString("int"))))));
1212}
1213
1214TEST(Matcher, MatchesDeclarationReferenceTemplateArgument) {
1215 EXPECT_TRUE(matches(
1216 "struct B { int next; };"
1217 "template<int(B::*next_ptr)> struct A {};"
1218 "A<&B::next> a;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001219 classTemplateSpecializationDecl(hasAnyTemplateArgument(
1220 refersToDeclaration(fieldDecl(hasName("next")))))));
Daniel Jasper371f9392012-08-01 08:40:24 +00001221}
1222
1223TEST(Matcher, MatchesSpecificArgument) {
1224 EXPECT_TRUE(matches(
1225 "template<typename T, typename U> class A {};"
1226 "A<bool, int> a;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001227 classTemplateSpecializationDecl(hasTemplateArgument(
Daniel Jasper371f9392012-08-01 08:40:24 +00001228 1, refersToType(asString("int"))))));
1229 EXPECT_TRUE(notMatches(
1230 "template<typename T, typename U> class A {};"
1231 "A<int, bool> a;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001232 classTemplateSpecializationDecl(hasTemplateArgument(
Daniel Jasper371f9392012-08-01 08:40:24 +00001233 1, refersToType(asString("int"))))));
1234}
1235
Manuel Klimek4da21662012-07-06 05:48:52 +00001236TEST(Matcher, ConstructorCall) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001237 StatementMatcher Constructor = expr(constructExpr());
Manuel Klimek4da21662012-07-06 05:48:52 +00001238
1239 EXPECT_TRUE(
1240 matches("class X { public: X(); }; void x() { X x; }", Constructor));
1241 EXPECT_TRUE(
1242 matches("class X { public: X(); }; void x() { X x = X(); }",
1243 Constructor));
1244 EXPECT_TRUE(
1245 matches("class X { public: X(int); }; void x() { X x = 0; }",
1246 Constructor));
1247 EXPECT_TRUE(matches("class X {}; void x(int) { X x; }", Constructor));
1248}
1249
1250TEST(Matcher, ConstructorArgument) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001251 StatementMatcher Constructor = expr(constructExpr(
1252 hasArgument(0, declRefExpr(to(varDecl(hasName("y")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001253
1254 EXPECT_TRUE(
1255 matches("class X { public: X(int); }; void x() { int y; X x(y); }",
1256 Constructor));
1257 EXPECT_TRUE(
1258 matches("class X { public: X(int); }; void x() { int y; X x = X(y); }",
1259 Constructor));
1260 EXPECT_TRUE(
1261 matches("class X { public: X(int); }; void x() { int y; X x = y; }",
1262 Constructor));
1263 EXPECT_TRUE(
1264 notMatches("class X { public: X(int); }; void x() { int z; X x(z); }",
1265 Constructor));
1266
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001267 StatementMatcher WrongIndex = expr(constructExpr(
1268 hasArgument(42, declRefExpr(to(varDecl(hasName("y")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001269 EXPECT_TRUE(
1270 notMatches("class X { public: X(int); }; void x() { int y; X x(y); }",
1271 WrongIndex));
1272}
1273
1274TEST(Matcher, ConstructorArgumentCount) {
1275 StatementMatcher Constructor1Arg =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001276 expr(constructExpr(argumentCountIs(1)));
Manuel Klimek4da21662012-07-06 05:48:52 +00001277
1278 EXPECT_TRUE(
1279 matches("class X { public: X(int); }; void x() { X x(0); }",
1280 Constructor1Arg));
1281 EXPECT_TRUE(
1282 matches("class X { public: X(int); }; void x() { X x = X(0); }",
1283 Constructor1Arg));
1284 EXPECT_TRUE(
1285 matches("class X { public: X(int); }; void x() { X x = 0; }",
1286 Constructor1Arg));
1287 EXPECT_TRUE(
1288 notMatches("class X { public: X(int, int); }; void x() { X x(0, 0); }",
1289 Constructor1Arg));
1290}
1291
1292TEST(Matcher, BindTemporaryExpression) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001293 StatementMatcher TempExpression = expr(bindTemporaryExpr());
Manuel Klimek4da21662012-07-06 05:48:52 +00001294
1295 std::string ClassString = "class string { public: string(); ~string(); }; ";
1296
1297 EXPECT_TRUE(
1298 matches(ClassString +
1299 "string GetStringByValue();"
1300 "void FunctionTakesString(string s);"
1301 "void run() { FunctionTakesString(GetStringByValue()); }",
1302 TempExpression));
1303
1304 EXPECT_TRUE(
1305 notMatches(ClassString +
1306 "string* GetStringPointer(); "
1307 "void FunctionTakesStringPtr(string* s);"
1308 "void run() {"
1309 " string* s = GetStringPointer();"
1310 " FunctionTakesStringPtr(GetStringPointer());"
1311 " FunctionTakesStringPtr(s);"
1312 "}",
1313 TempExpression));
1314
1315 EXPECT_TRUE(
1316 notMatches("class no_dtor {};"
1317 "no_dtor GetObjByValue();"
1318 "void ConsumeObj(no_dtor param);"
1319 "void run() { ConsumeObj(GetObjByValue()); }",
1320 TempExpression));
1321}
1322
Sam Panzere16acd32012-08-24 22:04:44 +00001323TEST(MaterializeTemporaryExpr, MatchesTemporary) {
1324 std::string ClassString =
1325 "class string { public: string(); int length(); }; ";
1326
1327 EXPECT_TRUE(
1328 matches(ClassString +
1329 "string GetStringByValue();"
1330 "void FunctionTakesString(string s);"
1331 "void run() { FunctionTakesString(GetStringByValue()); }",
1332 materializeTemporaryExpr()));
1333
1334 EXPECT_TRUE(
1335 notMatches(ClassString +
1336 "string* GetStringPointer(); "
1337 "void FunctionTakesStringPtr(string* s);"
1338 "void run() {"
1339 " string* s = GetStringPointer();"
1340 " FunctionTakesStringPtr(GetStringPointer());"
1341 " FunctionTakesStringPtr(s);"
1342 "}",
1343 materializeTemporaryExpr()));
1344
1345 EXPECT_TRUE(
1346 notMatches(ClassString +
1347 "string GetStringByValue();"
1348 "void run() { int k = GetStringByValue().length(); }",
1349 materializeTemporaryExpr()));
1350
1351 EXPECT_TRUE(
1352 notMatches(ClassString +
1353 "string GetStringByValue();"
1354 "void run() { GetStringByValue(); }",
1355 materializeTemporaryExpr()));
1356}
1357
Manuel Klimek4da21662012-07-06 05:48:52 +00001358TEST(ConstructorDeclaration, SimpleCase) {
1359 EXPECT_TRUE(matches("class Foo { Foo(int i); };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001360 constructorDecl(ofClass(hasName("Foo")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001361 EXPECT_TRUE(notMatches("class Foo { Foo(int i); };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001362 constructorDecl(ofClass(hasName("Bar")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001363}
1364
1365TEST(ConstructorDeclaration, IsImplicit) {
1366 // This one doesn't match because the constructor is not added by the
1367 // compiler (it is not needed).
1368 EXPECT_TRUE(notMatches("class Foo { };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001369 constructorDecl(isImplicit())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001370 // The compiler added the implicit default constructor.
1371 EXPECT_TRUE(matches("class Foo { }; Foo* f = new Foo();",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001372 constructorDecl(isImplicit())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001373 EXPECT_TRUE(matches("class Foo { Foo(){} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001374 constructorDecl(unless(isImplicit()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001375}
1376
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001377TEST(DestructorDeclaration, MatchesVirtualDestructor) {
1378 EXPECT_TRUE(matches("class Foo { virtual ~Foo(); };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001379 destructorDecl(ofClass(hasName("Foo")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001380}
1381
1382TEST(DestructorDeclaration, DoesNotMatchImplicitDestructor) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001383 EXPECT_TRUE(notMatches("class Foo {};",
1384 destructorDecl(ofClass(hasName("Foo")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001385}
1386
Manuel Klimek4da21662012-07-06 05:48:52 +00001387TEST(HasAnyConstructorInitializer, SimpleCase) {
1388 EXPECT_TRUE(notMatches(
1389 "class Foo { Foo() { } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001390 constructorDecl(hasAnyConstructorInitializer(anything()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001391 EXPECT_TRUE(matches(
1392 "class Foo {"
1393 " Foo() : foo_() { }"
1394 " int foo_;"
1395 "};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001396 constructorDecl(hasAnyConstructorInitializer(anything()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001397}
1398
1399TEST(HasAnyConstructorInitializer, ForField) {
1400 static const char Code[] =
1401 "class Baz { };"
1402 "class Foo {"
1403 " Foo() : foo_() { }"
1404 " Baz foo_;"
1405 " Baz bar_;"
1406 "};";
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001407 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
1408 forField(hasType(recordDecl(hasName("Baz"))))))));
1409 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001410 forField(hasName("foo_"))))));
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001411 EXPECT_TRUE(notMatches(Code, constructorDecl(hasAnyConstructorInitializer(
1412 forField(hasType(recordDecl(hasName("Bar"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001413}
1414
1415TEST(HasAnyConstructorInitializer, WithInitializer) {
1416 static const char Code[] =
1417 "class Foo {"
1418 " Foo() : foo_(0) { }"
1419 " int foo_;"
1420 "};";
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001421 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001422 withInitializer(integerLiteral(equals(0)))))));
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001423 EXPECT_TRUE(notMatches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001424 withInitializer(integerLiteral(equals(1)))))));
1425}
1426
1427TEST(HasAnyConstructorInitializer, IsWritten) {
1428 static const char Code[] =
1429 "struct Bar { Bar(){} };"
1430 "class Foo {"
1431 " Foo() : foo_() { }"
1432 " Bar foo_;"
1433 " Bar bar_;"
1434 "};";
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001435 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001436 allOf(forField(hasName("foo_")), isWritten())))));
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001437 EXPECT_TRUE(notMatches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001438 allOf(forField(hasName("bar_")), isWritten())))));
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001439 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001440 allOf(forField(hasName("bar_")), unless(isWritten()))))));
1441}
1442
1443TEST(Matcher, NewExpression) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001444 StatementMatcher New = expr(newExpr());
Manuel Klimek4da21662012-07-06 05:48:52 +00001445
1446 EXPECT_TRUE(matches("class X { public: X(); }; void x() { new X; }", New));
1447 EXPECT_TRUE(
1448 matches("class X { public: X(); }; void x() { new X(); }", New));
1449 EXPECT_TRUE(
1450 matches("class X { public: X(int); }; void x() { new X(0); }", New));
1451 EXPECT_TRUE(matches("class X {}; void x(int) { new X; }", New));
1452}
1453
1454TEST(Matcher, NewExpressionArgument) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001455 StatementMatcher New = expr(constructExpr(
1456 hasArgument(0, declRefExpr(to(varDecl(hasName("y")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001457
1458 EXPECT_TRUE(
1459 matches("class X { public: X(int); }; void x() { int y; new X(y); }",
1460 New));
1461 EXPECT_TRUE(
1462 matches("class X { public: X(int); }; void x() { int y; new X(y); }",
1463 New));
1464 EXPECT_TRUE(
1465 notMatches("class X { public: X(int); }; void x() { int z; new X(z); }",
1466 New));
1467
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001468 StatementMatcher WrongIndex = expr(constructExpr(
1469 hasArgument(42, declRefExpr(to(varDecl(hasName("y")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001470 EXPECT_TRUE(
1471 notMatches("class X { public: X(int); }; void x() { int y; new X(y); }",
1472 WrongIndex));
1473}
1474
1475TEST(Matcher, NewExpressionArgumentCount) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001476 StatementMatcher New = constructExpr(argumentCountIs(1));
Manuel Klimek4da21662012-07-06 05:48:52 +00001477
1478 EXPECT_TRUE(
1479 matches("class X { public: X(int); }; void x() { new X(0); }", New));
1480 EXPECT_TRUE(
1481 notMatches("class X { public: X(int, int); }; void x() { new X(0, 0); }",
1482 New));
1483}
1484
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001485TEST(Matcher, DeleteExpression) {
1486 EXPECT_TRUE(matches("struct A {}; void f(A* a) { delete a; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001487 deleteExpr()));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001488}
1489
Manuel Klimek4da21662012-07-06 05:48:52 +00001490TEST(Matcher, DefaultArgument) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001491 StatementMatcher Arg = defaultArgExpr();
Manuel Klimek4da21662012-07-06 05:48:52 +00001492
1493 EXPECT_TRUE(matches("void x(int, int = 0) { int y; x(y); }", Arg));
1494 EXPECT_TRUE(
1495 matches("class X { void x(int, int = 0) { int y; x(y); } };", Arg));
1496 EXPECT_TRUE(notMatches("void x(int, int = 0) { int y; x(y, 0); }", Arg));
1497}
1498
1499TEST(Matcher, StringLiterals) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001500 StatementMatcher Literal = expr(stringLiteral());
Manuel Klimek4da21662012-07-06 05:48:52 +00001501 EXPECT_TRUE(matches("const char *s = \"string\";", Literal));
1502 // wide string
1503 EXPECT_TRUE(matches("const wchar_t *s = L\"string\";", Literal));
1504 // with escaped characters
1505 EXPECT_TRUE(matches("const char *s = \"\x05five\";", Literal));
1506 // no matching -- though the data type is the same, there is no string literal
1507 EXPECT_TRUE(notMatches("const char s[1] = {'a'};", Literal));
1508}
1509
1510TEST(Matcher, CharacterLiterals) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001511 StatementMatcher CharLiteral = expr(characterLiteral());
Manuel Klimek4da21662012-07-06 05:48:52 +00001512 EXPECT_TRUE(matches("const char c = 'c';", CharLiteral));
1513 // wide character
1514 EXPECT_TRUE(matches("const char c = L'c';", CharLiteral));
1515 // wide character, Hex encoded, NOT MATCHED!
1516 EXPECT_TRUE(notMatches("const wchar_t c = 0x2126;", CharLiteral));
1517 EXPECT_TRUE(notMatches("const char c = 0x1;", CharLiteral));
1518}
1519
1520TEST(Matcher, IntegerLiterals) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001521 StatementMatcher HasIntLiteral = expr(integerLiteral());
Manuel Klimek4da21662012-07-06 05:48:52 +00001522 EXPECT_TRUE(matches("int i = 10;", HasIntLiteral));
1523 EXPECT_TRUE(matches("int i = 0x1AB;", HasIntLiteral));
1524 EXPECT_TRUE(matches("int i = 10L;", HasIntLiteral));
1525 EXPECT_TRUE(matches("int i = 10U;", HasIntLiteral));
1526
1527 // Non-matching cases (character literals, float and double)
1528 EXPECT_TRUE(notMatches("int i = L'a';",
1529 HasIntLiteral)); // this is actually a character
1530 // literal cast to int
1531 EXPECT_TRUE(notMatches("int i = 'a';", HasIntLiteral));
1532 EXPECT_TRUE(notMatches("int i = 1e10;", HasIntLiteral));
1533 EXPECT_TRUE(notMatches("int i = 10.0;", HasIntLiteral));
1534}
1535
1536TEST(Matcher, Conditions) {
1537 StatementMatcher Condition = ifStmt(hasCondition(boolLiteral(equals(true))));
1538
1539 EXPECT_TRUE(matches("void x() { if (true) {} }", Condition));
1540 EXPECT_TRUE(notMatches("void x() { if (false) {} }", Condition));
1541 EXPECT_TRUE(notMatches("void x() { bool a = true; if (a) {} }", Condition));
1542 EXPECT_TRUE(notMatches("void x() { if (true || false) {} }", Condition));
1543 EXPECT_TRUE(notMatches("void x() { if (1) {} }", Condition));
1544}
1545
1546TEST(MatchBinaryOperator, HasOperatorName) {
1547 StatementMatcher OperatorOr = binaryOperator(hasOperatorName("||"));
1548
1549 EXPECT_TRUE(matches("void x() { true || false; }", OperatorOr));
1550 EXPECT_TRUE(notMatches("void x() { true && false; }", OperatorOr));
1551}
1552
1553TEST(MatchBinaryOperator, HasLHSAndHasRHS) {
1554 StatementMatcher OperatorTrueFalse =
1555 binaryOperator(hasLHS(boolLiteral(equals(true))),
1556 hasRHS(boolLiteral(equals(false))));
1557
1558 EXPECT_TRUE(matches("void x() { true || false; }", OperatorTrueFalse));
1559 EXPECT_TRUE(matches("void x() { true && false; }", OperatorTrueFalse));
1560 EXPECT_TRUE(notMatches("void x() { false || true; }", OperatorTrueFalse));
1561}
1562
1563TEST(MatchBinaryOperator, HasEitherOperand) {
1564 StatementMatcher HasOperand =
1565 binaryOperator(hasEitherOperand(boolLiteral(equals(false))));
1566
1567 EXPECT_TRUE(matches("void x() { true || false; }", HasOperand));
1568 EXPECT_TRUE(matches("void x() { false && true; }", HasOperand));
1569 EXPECT_TRUE(notMatches("void x() { true || true; }", HasOperand));
1570}
1571
1572TEST(Matcher, BinaryOperatorTypes) {
1573 // Integration test that verifies the AST provides all binary operators in
1574 // a way we expect.
1575 // FIXME: Operator ','
1576 EXPECT_TRUE(
1577 matches("void x() { 3, 4; }", binaryOperator(hasOperatorName(","))));
1578 EXPECT_TRUE(
1579 matches("bool b; bool c = (b = true);",
1580 binaryOperator(hasOperatorName("="))));
1581 EXPECT_TRUE(
1582 matches("bool b = 1 != 2;", binaryOperator(hasOperatorName("!="))));
1583 EXPECT_TRUE(
1584 matches("bool b = 1 == 2;", binaryOperator(hasOperatorName("=="))));
1585 EXPECT_TRUE(matches("bool b = 1 < 2;", binaryOperator(hasOperatorName("<"))));
1586 EXPECT_TRUE(
1587 matches("bool b = 1 <= 2;", binaryOperator(hasOperatorName("<="))));
1588 EXPECT_TRUE(
1589 matches("int i = 1 << 2;", binaryOperator(hasOperatorName("<<"))));
1590 EXPECT_TRUE(
1591 matches("int i = 1; int j = (i <<= 2);",
1592 binaryOperator(hasOperatorName("<<="))));
1593 EXPECT_TRUE(matches("bool b = 1 > 2;", binaryOperator(hasOperatorName(">"))));
1594 EXPECT_TRUE(
1595 matches("bool b = 1 >= 2;", binaryOperator(hasOperatorName(">="))));
1596 EXPECT_TRUE(
1597 matches("int i = 1 >> 2;", binaryOperator(hasOperatorName(">>"))));
1598 EXPECT_TRUE(
1599 matches("int i = 1; int j = (i >>= 2);",
1600 binaryOperator(hasOperatorName(">>="))));
1601 EXPECT_TRUE(
1602 matches("int i = 42 ^ 23;", binaryOperator(hasOperatorName("^"))));
1603 EXPECT_TRUE(
1604 matches("int i = 42; int j = (i ^= 42);",
1605 binaryOperator(hasOperatorName("^="))));
1606 EXPECT_TRUE(
1607 matches("int i = 42 % 23;", binaryOperator(hasOperatorName("%"))));
1608 EXPECT_TRUE(
1609 matches("int i = 42; int j = (i %= 42);",
1610 binaryOperator(hasOperatorName("%="))));
1611 EXPECT_TRUE(
1612 matches("bool b = 42 &23;", binaryOperator(hasOperatorName("&"))));
1613 EXPECT_TRUE(
1614 matches("bool b = true && false;",
1615 binaryOperator(hasOperatorName("&&"))));
1616 EXPECT_TRUE(
1617 matches("bool b = true; bool c = (b &= false);",
1618 binaryOperator(hasOperatorName("&="))));
1619 EXPECT_TRUE(
1620 matches("bool b = 42 | 23;", binaryOperator(hasOperatorName("|"))));
1621 EXPECT_TRUE(
1622 matches("bool b = true || false;",
1623 binaryOperator(hasOperatorName("||"))));
1624 EXPECT_TRUE(
1625 matches("bool b = true; bool c = (b |= false);",
1626 binaryOperator(hasOperatorName("|="))));
1627 EXPECT_TRUE(
1628 matches("int i = 42 *23;", binaryOperator(hasOperatorName("*"))));
1629 EXPECT_TRUE(
1630 matches("int i = 42; int j = (i *= 23);",
1631 binaryOperator(hasOperatorName("*="))));
1632 EXPECT_TRUE(
1633 matches("int i = 42 / 23;", binaryOperator(hasOperatorName("/"))));
1634 EXPECT_TRUE(
1635 matches("int i = 42; int j = (i /= 23);",
1636 binaryOperator(hasOperatorName("/="))));
1637 EXPECT_TRUE(
1638 matches("int i = 42 + 23;", binaryOperator(hasOperatorName("+"))));
1639 EXPECT_TRUE(
1640 matches("int i = 42; int j = (i += 23);",
1641 binaryOperator(hasOperatorName("+="))));
1642 EXPECT_TRUE(
1643 matches("int i = 42 - 23;", binaryOperator(hasOperatorName("-"))));
1644 EXPECT_TRUE(
1645 matches("int i = 42; int j = (i -= 23);",
1646 binaryOperator(hasOperatorName("-="))));
1647 EXPECT_TRUE(
1648 matches("struct A { void x() { void (A::*a)(); (this->*a)(); } };",
1649 binaryOperator(hasOperatorName("->*"))));
1650 EXPECT_TRUE(
1651 matches("struct A { void x() { void (A::*a)(); ((*this).*a)(); } };",
1652 binaryOperator(hasOperatorName(".*"))));
1653
1654 // Member expressions as operators are not supported in matches.
1655 EXPECT_TRUE(
1656 notMatches("struct A { void x(A *a) { a->x(this); } };",
1657 binaryOperator(hasOperatorName("->"))));
1658
1659 // Initializer assignments are not represented as operator equals.
1660 EXPECT_TRUE(
1661 notMatches("bool b = true;", binaryOperator(hasOperatorName("="))));
1662
1663 // Array indexing is not represented as operator.
1664 EXPECT_TRUE(notMatches("int a[42]; void x() { a[23]; }", unaryOperator()));
1665
1666 // Overloaded operators do not match at all.
1667 EXPECT_TRUE(notMatches(
1668 "struct A { bool operator&&(const A &a) const { return false; } };"
1669 "void x() { A a, b; a && b; }",
1670 binaryOperator()));
1671}
1672
1673TEST(MatchUnaryOperator, HasOperatorName) {
1674 StatementMatcher OperatorNot = unaryOperator(hasOperatorName("!"));
1675
1676 EXPECT_TRUE(matches("void x() { !true; } ", OperatorNot));
1677 EXPECT_TRUE(notMatches("void x() { true; } ", OperatorNot));
1678}
1679
1680TEST(MatchUnaryOperator, HasUnaryOperand) {
1681 StatementMatcher OperatorOnFalse =
1682 unaryOperator(hasUnaryOperand(boolLiteral(equals(false))));
1683
1684 EXPECT_TRUE(matches("void x() { !false; }", OperatorOnFalse));
1685 EXPECT_TRUE(notMatches("void x() { !true; }", OperatorOnFalse));
1686}
1687
1688TEST(Matcher, UnaryOperatorTypes) {
1689 // Integration test that verifies the AST provides all unary operators in
1690 // a way we expect.
1691 EXPECT_TRUE(matches("bool b = !true;", unaryOperator(hasOperatorName("!"))));
1692 EXPECT_TRUE(
1693 matches("bool b; bool *p = &b;", unaryOperator(hasOperatorName("&"))));
1694 EXPECT_TRUE(matches("int i = ~ 1;", unaryOperator(hasOperatorName("~"))));
1695 EXPECT_TRUE(
1696 matches("bool *p; bool b = *p;", unaryOperator(hasOperatorName("*"))));
1697 EXPECT_TRUE(
1698 matches("int i; int j = +i;", unaryOperator(hasOperatorName("+"))));
1699 EXPECT_TRUE(
1700 matches("int i; int j = -i;", unaryOperator(hasOperatorName("-"))));
1701 EXPECT_TRUE(
1702 matches("int i; int j = ++i;", unaryOperator(hasOperatorName("++"))));
1703 EXPECT_TRUE(
1704 matches("int i; int j = i++;", unaryOperator(hasOperatorName("++"))));
1705 EXPECT_TRUE(
1706 matches("int i; int j = --i;", unaryOperator(hasOperatorName("--"))));
1707 EXPECT_TRUE(
1708 matches("int i; int j = i--;", unaryOperator(hasOperatorName("--"))));
1709
1710 // We don't match conversion operators.
1711 EXPECT_TRUE(notMatches("int i; double d = (double)i;", unaryOperator()));
1712
1713 // Function calls are not represented as operator.
1714 EXPECT_TRUE(notMatches("void f(); void x() { f(); }", unaryOperator()));
1715
1716 // Overloaded operators do not match at all.
1717 // FIXME: We probably want to add that.
1718 EXPECT_TRUE(notMatches(
1719 "struct A { bool operator!() const { return false; } };"
1720 "void x() { A a; !a; }", unaryOperator(hasOperatorName("!"))));
1721}
1722
1723TEST(Matcher, ConditionalOperator) {
1724 StatementMatcher Conditional = conditionalOperator(
1725 hasCondition(boolLiteral(equals(true))),
1726 hasTrueExpression(boolLiteral(equals(false))));
1727
1728 EXPECT_TRUE(matches("void x() { true ? false : true; }", Conditional));
1729 EXPECT_TRUE(notMatches("void x() { false ? false : true; }", Conditional));
1730 EXPECT_TRUE(notMatches("void x() { true ? true : false; }", Conditional));
1731
1732 StatementMatcher ConditionalFalse = conditionalOperator(
1733 hasFalseExpression(boolLiteral(equals(false))));
1734
1735 EXPECT_TRUE(matches("void x() { true ? true : false; }", ConditionalFalse));
1736 EXPECT_TRUE(
1737 notMatches("void x() { true ? false : true; }", ConditionalFalse));
1738}
1739
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001740TEST(ArraySubscriptMatchers, ArraySubscripts) {
1741 EXPECT_TRUE(matches("int i[2]; void f() { i[1] = 1; }",
1742 arraySubscriptExpr()));
1743 EXPECT_TRUE(notMatches("int i; void f() { i = 1; }",
1744 arraySubscriptExpr()));
1745}
1746
1747TEST(ArraySubscriptMatchers, ArrayIndex) {
1748 EXPECT_TRUE(matches(
1749 "int i[2]; void f() { i[1] = 1; }",
1750 arraySubscriptExpr(hasIndex(integerLiteral(equals(1))))));
1751 EXPECT_TRUE(matches(
1752 "int i[2]; void f() { 1[i] = 1; }",
1753 arraySubscriptExpr(hasIndex(integerLiteral(equals(1))))));
1754 EXPECT_TRUE(notMatches(
1755 "int i[2]; void f() { i[1] = 1; }",
1756 arraySubscriptExpr(hasIndex(integerLiteral(equals(0))))));
1757}
1758
1759TEST(ArraySubscriptMatchers, MatchesArrayBase) {
1760 EXPECT_TRUE(matches(
1761 "int i[2]; void f() { i[1] = 2; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001762 arraySubscriptExpr(hasBase(implicitCastExpr(
1763 hasSourceExpression(declRefExpr()))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001764}
1765
Manuel Klimek4da21662012-07-06 05:48:52 +00001766TEST(Matcher, HasNameSupportsNamespaces) {
1767 EXPECT_TRUE(matches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001768 recordDecl(hasName("a::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001769 EXPECT_TRUE(matches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001770 recordDecl(hasName("::a::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001771 EXPECT_TRUE(matches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001772 recordDecl(hasName("b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001773 EXPECT_TRUE(matches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001774 recordDecl(hasName("C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001775 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001776 recordDecl(hasName("c::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001777 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001778 recordDecl(hasName("a::c::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001779 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001780 recordDecl(hasName("a::b::A"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001781 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001782 recordDecl(hasName("::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001783 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001784 recordDecl(hasName("::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001785 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001786 recordDecl(hasName("z::a::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001787 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001788 recordDecl(hasName("a+b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001789 EXPECT_TRUE(notMatches("namespace a { namespace b { class AC; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001790 recordDecl(hasName("C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001791}
1792
1793TEST(Matcher, HasNameSupportsOuterClasses) {
1794 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001795 matches("class A { class B { class C; }; };",
1796 recordDecl(hasName("A::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001797 EXPECT_TRUE(
1798 matches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001799 recordDecl(hasName("::A::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001800 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001801 matches("class A { class B { class C; }; };",
1802 recordDecl(hasName("B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001803 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001804 matches("class A { class B { class C; }; };",
1805 recordDecl(hasName("C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001806 EXPECT_TRUE(
1807 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001808 recordDecl(hasName("c::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001809 EXPECT_TRUE(
1810 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001811 recordDecl(hasName("A::c::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001812 EXPECT_TRUE(
1813 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001814 recordDecl(hasName("A::B::A"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001815 EXPECT_TRUE(
1816 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001817 recordDecl(hasName("::C"))));
1818 EXPECT_TRUE(
1819 notMatches("class A { class B { class C; }; };",
1820 recordDecl(hasName("::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001821 EXPECT_TRUE(notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001822 recordDecl(hasName("z::A::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001823 EXPECT_TRUE(
1824 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001825 recordDecl(hasName("A+B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001826}
1827
1828TEST(Matcher, IsDefinition) {
1829 DeclarationMatcher DefinitionOfClassA =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001830 recordDecl(hasName("A"), isDefinition());
Manuel Klimek4da21662012-07-06 05:48:52 +00001831 EXPECT_TRUE(matches("class A {};", DefinitionOfClassA));
1832 EXPECT_TRUE(notMatches("class A;", DefinitionOfClassA));
1833
1834 DeclarationMatcher DefinitionOfVariableA =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001835 varDecl(hasName("a"), isDefinition());
Manuel Klimek4da21662012-07-06 05:48:52 +00001836 EXPECT_TRUE(matches("int a;", DefinitionOfVariableA));
1837 EXPECT_TRUE(notMatches("extern int a;", DefinitionOfVariableA));
1838
1839 DeclarationMatcher DefinitionOfMethodA =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001840 methodDecl(hasName("a"), isDefinition());
Manuel Klimek4da21662012-07-06 05:48:52 +00001841 EXPECT_TRUE(matches("class A { void a() {} };", DefinitionOfMethodA));
1842 EXPECT_TRUE(notMatches("class A { void a(); };", DefinitionOfMethodA));
1843}
1844
1845TEST(Matcher, OfClass) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001846 StatementMatcher Constructor = constructExpr(hasDeclaration(methodDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +00001847 ofClass(hasName("X")))));
1848
1849 EXPECT_TRUE(
1850 matches("class X { public: X(); }; void x(int) { X x; }", Constructor));
1851 EXPECT_TRUE(
1852 matches("class X { public: X(); }; void x(int) { X x = X(); }",
1853 Constructor));
1854 EXPECT_TRUE(
1855 notMatches("class Y { public: Y(); }; void x(int) { Y y; }",
1856 Constructor));
1857}
1858
1859TEST(Matcher, VisitsTemplateInstantiations) {
1860 EXPECT_TRUE(matches(
1861 "class A { public: void x(); };"
1862 "template <typename T> class B { public: void y() { T t; t.x(); } };"
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001863 "void f() { B<A> b; b.y(); }",
1864 callExpr(callee(methodDecl(hasName("x"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001865
1866 EXPECT_TRUE(matches(
1867 "class A { public: void x(); };"
1868 "class C {"
1869 " public:"
1870 " template <typename T> class B { public: void y() { T t; t.x(); } };"
1871 "};"
1872 "void f() {"
1873 " C::B<A> b; b.y();"
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001874 "}",
1875 recordDecl(hasName("C"),
1876 hasDescendant(callExpr(callee(methodDecl(hasName("x"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001877}
1878
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001879TEST(Matcher, HandlesNullQualTypes) {
1880 // FIXME: Add a Type matcher so we can replace uses of this
1881 // variable with Type(True())
1882 const TypeMatcher AnyType = anything();
1883
1884 // We don't really care whether this matcher succeeds; we're testing that
1885 // it completes without crashing.
1886 EXPECT_TRUE(matches(
1887 "struct A { };"
1888 "template <typename T>"
1889 "void f(T t) {"
1890 " T local_t(t /* this becomes a null QualType in the AST */);"
1891 "}"
1892 "void g() {"
1893 " f(0);"
1894 "}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001895 expr(hasType(TypeMatcher(
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001896 anyOf(
1897 TypeMatcher(hasDeclaration(anything())),
1898 pointsTo(AnyType),
1899 references(AnyType)
1900 // Other QualType matchers should go here.
1901 ))))));
1902}
1903
Manuel Klimek4da21662012-07-06 05:48:52 +00001904// For testing AST_MATCHER_P().
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001905AST_MATCHER_P(Decl, just, internal::Matcher<Decl>, AMatcher) {
Manuel Klimek4da21662012-07-06 05:48:52 +00001906 // Make sure all special variables are used: node, match_finder,
1907 // bound_nodes_builder, and the parameter named 'AMatcher'.
1908 return AMatcher.matches(Node, Finder, Builder);
1909}
1910
1911TEST(AstMatcherPMacro, Works) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001912 DeclarationMatcher HasClassB = just(has(recordDecl(hasName("B")).bind("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00001913
1914 EXPECT_TRUE(matchAndVerifyResultTrue("class A { class B {}; };",
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001915 HasClassB, new VerifyIdIsBoundToDecl<Decl>("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00001916
1917 EXPECT_TRUE(matchAndVerifyResultFalse("class A { class B {}; };",
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001918 HasClassB, new VerifyIdIsBoundToDecl<Decl>("a")));
Manuel Klimek4da21662012-07-06 05:48:52 +00001919
1920 EXPECT_TRUE(matchAndVerifyResultFalse("class A { class C {}; };",
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001921 HasClassB, new VerifyIdIsBoundToDecl<Decl>("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00001922}
1923
1924AST_POLYMORPHIC_MATCHER_P(
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001925 polymorphicHas, internal::Matcher<Decl>, AMatcher) {
1926 TOOLING_COMPILE_ASSERT((llvm::is_same<NodeType, Decl>::value) ||
1927 (llvm::is_same<NodeType, Stmt>::value),
Manuel Klimek4da21662012-07-06 05:48:52 +00001928 assert_node_type_is_accessible);
Manuel Klimek4da21662012-07-06 05:48:52 +00001929 return Finder->matchesChildOf(
Manuel Klimeka78d0d62012-09-05 12:12:07 +00001930 Node, AMatcher, Builder,
Manuel Klimek4da21662012-07-06 05:48:52 +00001931 ASTMatchFinder::TK_IgnoreImplicitCastsAndParentheses,
1932 ASTMatchFinder::BK_First);
1933}
1934
1935TEST(AstPolymorphicMatcherPMacro, Works) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001936 DeclarationMatcher HasClassB =
1937 polymorphicHas(recordDecl(hasName("B")).bind("b"));
Manuel Klimek4da21662012-07-06 05:48:52 +00001938
1939 EXPECT_TRUE(matchAndVerifyResultTrue("class A { class B {}; };",
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001940 HasClassB, new VerifyIdIsBoundToDecl<Decl>("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00001941
1942 EXPECT_TRUE(matchAndVerifyResultFalse("class A { class B {}; };",
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001943 HasClassB, new VerifyIdIsBoundToDecl<Decl>("a")));
Manuel Klimek4da21662012-07-06 05:48:52 +00001944
1945 EXPECT_TRUE(matchAndVerifyResultFalse("class A { class C {}; };",
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001946 HasClassB, new VerifyIdIsBoundToDecl<Decl>("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00001947
1948 StatementMatcher StatementHasClassB =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001949 polymorphicHas(recordDecl(hasName("B")));
Manuel Klimek4da21662012-07-06 05:48:52 +00001950
1951 EXPECT_TRUE(matches("void x() { class B {}; }", StatementHasClassB));
1952}
1953
1954TEST(For, FindsForLoops) {
1955 EXPECT_TRUE(matches("void f() { for(;;); }", forStmt()));
1956 EXPECT_TRUE(matches("void f() { if(true) for(;;); }", forStmt()));
1957}
1958
Daniel Jasper6a124492012-07-12 08:50:38 +00001959TEST(For, ForLoopInternals) {
1960 EXPECT_TRUE(matches("void f(){ int i; for (; i < 3 ; ); }",
1961 forStmt(hasCondition(anything()))));
1962 EXPECT_TRUE(matches("void f() { for (int i = 0; ;); }",
1963 forStmt(hasLoopInit(anything()))));
1964}
1965
1966TEST(For, NegativeForLoopInternals) {
1967 EXPECT_TRUE(notMatches("void f(){ for (int i = 0; ; ++i); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001968 forStmt(hasCondition(expr()))));
Daniel Jasper6a124492012-07-12 08:50:38 +00001969 EXPECT_TRUE(notMatches("void f() {int i; for (; i < 4; ++i) {} }",
1970 forStmt(hasLoopInit(anything()))));
1971}
1972
Manuel Klimek4da21662012-07-06 05:48:52 +00001973TEST(For, ReportsNoFalsePositives) {
1974 EXPECT_TRUE(notMatches("void f() { ; }", forStmt()));
1975 EXPECT_TRUE(notMatches("void f() { if(true); }", forStmt()));
1976}
1977
1978TEST(CompoundStatement, HandlesSimpleCases) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001979 EXPECT_TRUE(notMatches("void f();", compoundStmt()));
1980 EXPECT_TRUE(matches("void f() {}", compoundStmt()));
1981 EXPECT_TRUE(matches("void f() {{}}", compoundStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001982}
1983
1984TEST(CompoundStatement, DoesNotMatchEmptyStruct) {
1985 // It's not a compound statement just because there's "{}" in the source
1986 // text. This is an AST search, not grep.
1987 EXPECT_TRUE(notMatches("namespace n { struct S {}; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001988 compoundStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001989 EXPECT_TRUE(matches("namespace n { struct S { void f() {{}} }; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001990 compoundStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001991}
1992
Daniel Jasper6a124492012-07-12 08:50:38 +00001993TEST(HasBody, FindsBodyOfForWhileDoLoops) {
Manuel Klimek4da21662012-07-06 05:48:52 +00001994 EXPECT_TRUE(matches("void f() { for(;;) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001995 forStmt(hasBody(compoundStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001996 EXPECT_TRUE(notMatches("void f() { for(;;); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001997 forStmt(hasBody(compoundStmt()))));
Daniel Jasper6a124492012-07-12 08:50:38 +00001998 EXPECT_TRUE(matches("void f() { while(true) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001999 whileStmt(hasBody(compoundStmt()))));
Daniel Jasper6a124492012-07-12 08:50:38 +00002000 EXPECT_TRUE(matches("void f() { do {} while(true); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002001 doStmt(hasBody(compoundStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002002}
2003
2004TEST(HasAnySubstatement, MatchesForTopLevelCompoundStatement) {
2005 // The simplest case: every compound statement is in a function
2006 // definition, and the function body itself must be a compound
2007 // statement.
2008 EXPECT_TRUE(matches("void f() { for (;;); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002009 compoundStmt(hasAnySubstatement(forStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002010}
2011
2012TEST(HasAnySubstatement, IsNotRecursive) {
2013 // It's really "has any immediate substatement".
2014 EXPECT_TRUE(notMatches("void f() { if (true) for (;;); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002015 compoundStmt(hasAnySubstatement(forStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002016}
2017
2018TEST(HasAnySubstatement, MatchesInNestedCompoundStatements) {
2019 EXPECT_TRUE(matches("void f() { if (true) { for (;;); } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002020 compoundStmt(hasAnySubstatement(forStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002021}
2022
2023TEST(HasAnySubstatement, FindsSubstatementBetweenOthers) {
2024 EXPECT_TRUE(matches("void f() { 1; 2; 3; for (;;); 4; 5; 6; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002025 compoundStmt(hasAnySubstatement(forStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002026}
2027
2028TEST(StatementCountIs, FindsNoStatementsInAnEmptyCompoundStatement) {
2029 EXPECT_TRUE(matches("void f() { }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002030 compoundStmt(statementCountIs(0))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002031 EXPECT_TRUE(notMatches("void f() {}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002032 compoundStmt(statementCountIs(1))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002033}
2034
2035TEST(StatementCountIs, AppearsToMatchOnlyOneCount) {
2036 EXPECT_TRUE(matches("void f() { 1; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002037 compoundStmt(statementCountIs(1))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002038 EXPECT_TRUE(notMatches("void f() { 1; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002039 compoundStmt(statementCountIs(0))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002040 EXPECT_TRUE(notMatches("void f() { 1; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002041 compoundStmt(statementCountIs(2))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002042}
2043
2044TEST(StatementCountIs, WorksWithMultipleStatements) {
2045 EXPECT_TRUE(matches("void f() { 1; 2; 3; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002046 compoundStmt(statementCountIs(3))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002047}
2048
2049TEST(StatementCountIs, WorksWithNestedCompoundStatements) {
2050 EXPECT_TRUE(matches("void f() { { 1; } { 1; 2; 3; 4; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002051 compoundStmt(statementCountIs(1))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002052 EXPECT_TRUE(matches("void f() { { 1; } { 1; 2; 3; 4; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002053 compoundStmt(statementCountIs(2))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002054 EXPECT_TRUE(notMatches("void f() { { 1; } { 1; 2; 3; 4; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002055 compoundStmt(statementCountIs(3))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002056 EXPECT_TRUE(matches("void f() { { 1; } { 1; 2; 3; 4; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002057 compoundStmt(statementCountIs(4))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002058}
2059
2060TEST(Member, WorksInSimplestCase) {
2061 EXPECT_TRUE(matches("struct { int first; } s; int i(s.first);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002062 memberExpr(member(hasName("first")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002063}
2064
2065TEST(Member, DoesNotMatchTheBaseExpression) {
2066 // Don't pick out the wrong part of the member expression, this should
2067 // be checking the member (name) only.
2068 EXPECT_TRUE(notMatches("struct { int i; } first; int i(first.i);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002069 memberExpr(member(hasName("first")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002070}
2071
2072TEST(Member, MatchesInMemberFunctionCall) {
2073 EXPECT_TRUE(matches("void f() {"
2074 " struct { void first() {}; } s;"
2075 " s.first();"
2076 "};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002077 memberExpr(member(hasName("first")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002078}
2079
Dmitri Gribenko671a0452012-08-18 00:29:27 +00002080TEST(Member, MatchesMemberAllocationFunction) {
Dmitri Gribenko02ed37f2012-08-18 00:41:04 +00002081 EXPECT_TRUE(matches("namespace std { typedef typeof(sizeof(int)) size_t; }"
Dmitri Gribenko671a0452012-08-18 00:29:27 +00002082 "class X { void *operator new(std::size_t); };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002083 methodDecl(ofClass(hasName("X")))));
Dmitri Gribenko671a0452012-08-18 00:29:27 +00002084
2085 EXPECT_TRUE(matches("class X { void operator delete(void*); };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002086 methodDecl(ofClass(hasName("X")))));
Dmitri Gribenko671a0452012-08-18 00:29:27 +00002087
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002088 EXPECT_TRUE(matches(
2089 "namespace std { typedef typeof(sizeof(int)) size_t; }"
2090 "class X { void operator delete[](void*, std::size_t); };",
2091 methodDecl(ofClass(hasName("X")))));
Dmitri Gribenko671a0452012-08-18 00:29:27 +00002092}
2093
Manuel Klimek4da21662012-07-06 05:48:52 +00002094TEST(HasObjectExpression, DoesNotMatchMember) {
2095 EXPECT_TRUE(notMatches(
2096 "class X {}; struct Z { X m; }; void f(Z z) { z.m; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002097 memberExpr(hasObjectExpression(hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002098}
2099
2100TEST(HasObjectExpression, MatchesBaseOfVariable) {
2101 EXPECT_TRUE(matches(
2102 "struct X { int m; }; void f(X x) { x.m; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002103 memberExpr(hasObjectExpression(hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002104 EXPECT_TRUE(matches(
2105 "struct X { int m; }; void f(X* x) { x->m; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002106 memberExpr(hasObjectExpression(
2107 hasType(pointsTo(recordDecl(hasName("X"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002108}
2109
2110TEST(HasObjectExpression,
2111 MatchesObjectExpressionOfImplicitlyFormedMemberExpression) {
2112 EXPECT_TRUE(matches(
2113 "class X {}; struct S { X m; void f() { this->m; } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002114 memberExpr(hasObjectExpression(
2115 hasType(pointsTo(recordDecl(hasName("S"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002116 EXPECT_TRUE(matches(
2117 "class X {}; struct S { X m; void f() { m; } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002118 memberExpr(hasObjectExpression(
2119 hasType(pointsTo(recordDecl(hasName("S"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002120}
2121
2122TEST(Field, DoesNotMatchNonFieldMembers) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002123 EXPECT_TRUE(notMatches("class X { void m(); };", fieldDecl(hasName("m"))));
2124 EXPECT_TRUE(notMatches("class X { class m {}; };", fieldDecl(hasName("m"))));
2125 EXPECT_TRUE(notMatches("class X { enum { m }; };", fieldDecl(hasName("m"))));
2126 EXPECT_TRUE(notMatches("class X { enum m {}; };", fieldDecl(hasName("m"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002127}
2128
2129TEST(Field, MatchesField) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002130 EXPECT_TRUE(matches("class X { int m; };", fieldDecl(hasName("m"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002131}
2132
2133TEST(IsConstQualified, MatchesConstInt) {
2134 EXPECT_TRUE(matches("const int i = 42;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002135 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002136}
2137
2138TEST(IsConstQualified, MatchesConstPointer) {
2139 EXPECT_TRUE(matches("int i = 42; int* const p(&i);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002140 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002141}
2142
2143TEST(IsConstQualified, MatchesThroughTypedef) {
2144 EXPECT_TRUE(matches("typedef const int const_int; const_int i = 42;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002145 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002146 EXPECT_TRUE(matches("typedef int* int_ptr; const int_ptr p(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002147 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002148}
2149
2150TEST(IsConstQualified, DoesNotMatchInappropriately) {
2151 EXPECT_TRUE(notMatches("typedef int nonconst_int; nonconst_int i = 42;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002152 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002153 EXPECT_TRUE(notMatches("int const* p;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002154 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002155}
2156
Sam Panzer089e5b32012-08-16 16:58:10 +00002157TEST(CastExpression, MatchesExplicitCasts) {
2158 EXPECT_TRUE(matches("char *p = reinterpret_cast<char *>(&p);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002159 expr(castExpr())));
2160 EXPECT_TRUE(matches("void *p = (void *)(&p);", expr(castExpr())));
Sam Panzer089e5b32012-08-16 16:58:10 +00002161 EXPECT_TRUE(matches("char q, *p = const_cast<char *>(&q);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002162 expr(castExpr())));
2163 EXPECT_TRUE(matches("char c = char(0);", expr(castExpr())));
Sam Panzer089e5b32012-08-16 16:58:10 +00002164}
2165TEST(CastExpression, MatchesImplicitCasts) {
2166 // This test creates an implicit cast from int to char.
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002167 EXPECT_TRUE(matches("char c = 0;", expr(castExpr())));
Sam Panzer089e5b32012-08-16 16:58:10 +00002168 // This test creates an implicit cast from lvalue to rvalue.
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002169 EXPECT_TRUE(matches("char c = 0, d = c;", expr(castExpr())));
Sam Panzer089e5b32012-08-16 16:58:10 +00002170}
2171
2172TEST(CastExpression, DoesNotMatchNonCasts) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002173 EXPECT_TRUE(notMatches("char c = '0';", expr(castExpr())));
2174 EXPECT_TRUE(notMatches("char c, &q = c;", expr(castExpr())));
2175 EXPECT_TRUE(notMatches("int i = (0);", expr(castExpr())));
2176 EXPECT_TRUE(notMatches("int i = 0;", expr(castExpr())));
Sam Panzer089e5b32012-08-16 16:58:10 +00002177}
2178
Manuel Klimek4da21662012-07-06 05:48:52 +00002179TEST(ReinterpretCast, MatchesSimpleCase) {
2180 EXPECT_TRUE(matches("char* p = reinterpret_cast<char*>(&p);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002181 expr(reinterpretCastExpr())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002182}
2183
2184TEST(ReinterpretCast, DoesNotMatchOtherCasts) {
2185 EXPECT_TRUE(notMatches("char* p = (char*)(&p);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002186 expr(reinterpretCastExpr())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002187 EXPECT_TRUE(notMatches("char q, *p = const_cast<char*>(&q);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002188 expr(reinterpretCastExpr())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002189 EXPECT_TRUE(notMatches("void* p = static_cast<void*>(&p);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002190 expr(reinterpretCastExpr())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002191 EXPECT_TRUE(notMatches("struct B { virtual ~B() {} }; struct D : B {};"
2192 "B b;"
2193 "D* p = dynamic_cast<D*>(&b);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002194 expr(reinterpretCastExpr())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002195}
2196
2197TEST(FunctionalCast, MatchesSimpleCase) {
2198 std::string foo_class = "class Foo { public: Foo(char*); };";
2199 EXPECT_TRUE(matches(foo_class + "void r() { Foo f = Foo(\"hello world\"); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002200 expr(functionalCastExpr())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002201}
2202
2203TEST(FunctionalCast, DoesNotMatchOtherCasts) {
2204 std::string FooClass = "class Foo { public: Foo(char*); };";
2205 EXPECT_TRUE(
2206 notMatches(FooClass + "void r() { Foo f = (Foo) \"hello world\"; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002207 expr(functionalCastExpr())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002208 EXPECT_TRUE(
2209 notMatches(FooClass + "void r() { Foo f = \"hello world\"; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002210 expr(functionalCastExpr())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002211}
2212
2213TEST(DynamicCast, MatchesSimpleCase) {
2214 EXPECT_TRUE(matches("struct B { virtual ~B() {} }; struct D : B {};"
2215 "B b;"
2216 "D* p = dynamic_cast<D*>(&b);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002217 expr(dynamicCastExpr())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002218}
2219
2220TEST(StaticCast, MatchesSimpleCase) {
2221 EXPECT_TRUE(matches("void* p(static_cast<void*>(&p));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002222 expr(staticCastExpr())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002223}
2224
2225TEST(StaticCast, DoesNotMatchOtherCasts) {
2226 EXPECT_TRUE(notMatches("char* p = (char*)(&p);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002227 expr(staticCastExpr())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002228 EXPECT_TRUE(notMatches("char q, *p = const_cast<char*>(&q);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002229 expr(staticCastExpr())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002230 EXPECT_TRUE(notMatches("void* p = reinterpret_cast<char*>(&p);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002231 expr(staticCastExpr())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002232 EXPECT_TRUE(notMatches("struct B { virtual ~B() {} }; struct D : B {};"
2233 "B b;"
2234 "D* p = dynamic_cast<D*>(&b);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002235 expr(staticCastExpr())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002236}
2237
2238TEST(HasDestinationType, MatchesSimpleCase) {
2239 EXPECT_TRUE(matches("char* p = static_cast<char*>(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002240 expr(staticCastExpr(hasDestinationType(
2241 pointsTo(TypeMatcher(anything())))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002242}
2243
Sam Panzer089e5b32012-08-16 16:58:10 +00002244TEST(HasImplicitDestinationType, MatchesSimpleCase) {
2245 // This test creates an implicit const cast.
2246 EXPECT_TRUE(matches("int x; const int i = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002247 expr(implicitCastExpr(
Sam Panzer089e5b32012-08-16 16:58:10 +00002248 hasImplicitDestinationType(isInteger())))));
2249 // This test creates an implicit array-to-pointer cast.
2250 EXPECT_TRUE(matches("int arr[3]; int *p = arr;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002251 expr(implicitCastExpr(hasImplicitDestinationType(
Sam Panzer089e5b32012-08-16 16:58:10 +00002252 pointsTo(TypeMatcher(anything())))))));
2253}
2254
2255TEST(HasImplicitDestinationType, DoesNotMatchIncorrectly) {
2256 // This test creates an implicit cast from int to char.
2257 EXPECT_TRUE(notMatches("char c = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002258 expr(implicitCastExpr(hasImplicitDestinationType(
Sam Panzer089e5b32012-08-16 16:58:10 +00002259 unless(anything()))))));
2260 // This test creates an implicit array-to-pointer cast.
2261 EXPECT_TRUE(notMatches("int arr[3]; int *p = arr;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002262 expr(implicitCastExpr(hasImplicitDestinationType(
Sam Panzer089e5b32012-08-16 16:58:10 +00002263 unless(anything()))))));
2264}
2265
2266TEST(ImplicitCast, MatchesSimpleCase) {
2267 // This test creates an implicit const cast.
2268 EXPECT_TRUE(matches("int x = 0; const int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002269 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002270 // This test creates an implicit cast from int to char.
2271 EXPECT_TRUE(matches("char c = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002272 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002273 // This test creates an implicit array-to-pointer cast.
2274 EXPECT_TRUE(matches("int arr[6]; int *p = arr;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002275 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002276}
2277
2278TEST(ImplicitCast, DoesNotMatchIncorrectly) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002279 // This test verifies that implicitCastExpr() matches exactly when implicit casts
Sam Panzer089e5b32012-08-16 16:58:10 +00002280 // are present, and that it ignores explicit and paren casts.
2281
2282 // These two test cases have no casts.
2283 EXPECT_TRUE(notMatches("int x = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002284 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002285 EXPECT_TRUE(notMatches("int x = 0, &y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002286 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002287
2288 EXPECT_TRUE(notMatches("int x = 0; double d = (double) x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002289 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002290 EXPECT_TRUE(notMatches("const int *p; int *q = const_cast<int *>(p);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002291 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002292
2293 EXPECT_TRUE(notMatches("int x = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002294 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002295}
2296
2297TEST(IgnoringImpCasts, MatchesImpCasts) {
2298 // This test checks that ignoringImpCasts matches when implicit casts are
2299 // present and its inner matcher alone does not match.
2300 // Note that this test creates an implicit const cast.
2301 EXPECT_TRUE(matches("int x = 0; const int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002302 varDecl(hasInitializer(ignoringImpCasts(
2303 declRefExpr(to(varDecl(hasName("x")))))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002304 // This test creates an implict cast from int to char.
2305 EXPECT_TRUE(matches("char x = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002306 varDecl(hasInitializer(ignoringImpCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002307 integerLiteral(equals(0)))))));
2308}
2309
2310TEST(IgnoringImpCasts, DoesNotMatchIncorrectly) {
2311 // These tests verify that ignoringImpCasts does not match if the inner
2312 // matcher does not match.
2313 // Note that the first test creates an implicit const cast.
2314 EXPECT_TRUE(notMatches("int x; const int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002315 varDecl(hasInitializer(ignoringImpCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002316 unless(anything()))))));
2317 EXPECT_TRUE(notMatches("int x; int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002318 varDecl(hasInitializer(ignoringImpCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002319 unless(anything()))))));
2320
2321 // These tests verify that ignoringImplictCasts does not look through explicit
2322 // casts or parentheses.
2323 EXPECT_TRUE(notMatches("char* p = static_cast<char*>(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002324 varDecl(hasInitializer(ignoringImpCasts(
2325 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002326 EXPECT_TRUE(notMatches("int i = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002327 varDecl(hasInitializer(ignoringImpCasts(
2328 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002329 EXPECT_TRUE(notMatches("float i = (float)0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002330 varDecl(hasInitializer(ignoringImpCasts(
2331 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002332 EXPECT_TRUE(notMatches("float i = float(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002333 varDecl(hasInitializer(ignoringImpCasts(
2334 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002335}
2336
2337TEST(IgnoringImpCasts, MatchesWithoutImpCasts) {
2338 // This test verifies that expressions that do not have implicit casts
2339 // still match the inner matcher.
2340 EXPECT_TRUE(matches("int x = 0; int &y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002341 varDecl(hasInitializer(ignoringImpCasts(
2342 declRefExpr(to(varDecl(hasName("x")))))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002343}
2344
2345TEST(IgnoringParenCasts, MatchesParenCasts) {
2346 // This test checks that ignoringParenCasts matches when parentheses and/or
2347 // casts are present and its inner matcher alone does not match.
2348 EXPECT_TRUE(matches("int x = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002349 varDecl(hasInitializer(ignoringParenCasts(
2350 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002351 EXPECT_TRUE(matches("int x = (((((0)))));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002352 varDecl(hasInitializer(ignoringParenCasts(
2353 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002354
2355 // This test creates an implict cast from int to char in addition to the
2356 // parentheses.
2357 EXPECT_TRUE(matches("char x = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002358 varDecl(hasInitializer(ignoringParenCasts(
2359 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002360
2361 EXPECT_TRUE(matches("char x = (char)0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002362 varDecl(hasInitializer(ignoringParenCasts(
2363 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002364 EXPECT_TRUE(matches("char* p = static_cast<char*>(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002365 varDecl(hasInitializer(ignoringParenCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002366 integerLiteral(equals(0)))))));
2367}
2368
2369TEST(IgnoringParenCasts, MatchesWithoutParenCasts) {
2370 // This test verifies that expressions that do not have any casts still match.
2371 EXPECT_TRUE(matches("int x = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002372 varDecl(hasInitializer(ignoringParenCasts(
2373 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002374}
2375
2376TEST(IgnoringParenCasts, DoesNotMatchIncorrectly) {
2377 // These tests verify that ignoringImpCasts does not match if the inner
2378 // matcher does not match.
2379 EXPECT_TRUE(notMatches("int x = ((0));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002380 varDecl(hasInitializer(ignoringParenCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002381 unless(anything()))))));
2382
2383 // This test creates an implicit cast from int to char in addition to the
2384 // parentheses.
2385 EXPECT_TRUE(notMatches("char x = ((0));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002386 varDecl(hasInitializer(ignoringParenCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002387 unless(anything()))))));
2388
2389 EXPECT_TRUE(notMatches("char *x = static_cast<char *>((0));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002390 varDecl(hasInitializer(ignoringParenCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002391 unless(anything()))))));
2392}
2393
2394TEST(IgnoringParenAndImpCasts, MatchesParenImpCasts) {
2395 // This test checks that ignoringParenAndImpCasts matches when
2396 // parentheses and/or implicit casts are present and its inner matcher alone
2397 // does not match.
2398 // Note that this test creates an implicit const cast.
2399 EXPECT_TRUE(matches("int x = 0; const int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002400 varDecl(hasInitializer(ignoringParenImpCasts(
2401 declRefExpr(to(varDecl(hasName("x")))))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002402 // This test creates an implicit cast from int to char.
2403 EXPECT_TRUE(matches("const char x = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002404 varDecl(hasInitializer(ignoringParenImpCasts(
2405 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002406}
2407
2408TEST(IgnoringParenAndImpCasts, MatchesWithoutParenImpCasts) {
2409 // This test verifies that expressions that do not have parentheses or
2410 // implicit casts still match.
2411 EXPECT_TRUE(matches("int x = 0; int &y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002412 varDecl(hasInitializer(ignoringParenImpCasts(
2413 declRefExpr(to(varDecl(hasName("x")))))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002414 EXPECT_TRUE(matches("int x = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002415 varDecl(hasInitializer(ignoringParenImpCasts(
2416 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002417}
2418
2419TEST(IgnoringParenAndImpCasts, DoesNotMatchIncorrectly) {
2420 // These tests verify that ignoringParenImpCasts does not match if
2421 // the inner matcher does not match.
2422 // This test creates an implicit cast.
2423 EXPECT_TRUE(notMatches("char c = ((3));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002424 varDecl(hasInitializer(ignoringParenImpCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002425 unless(anything()))))));
2426 // These tests verify that ignoringParenAndImplictCasts does not look
2427 // through explicit casts.
2428 EXPECT_TRUE(notMatches("float y = (float(0));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002429 varDecl(hasInitializer(ignoringParenImpCasts(
2430 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002431 EXPECT_TRUE(notMatches("float y = (float)0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002432 varDecl(hasInitializer(ignoringParenImpCasts(
2433 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002434 EXPECT_TRUE(notMatches("char* p = static_cast<char*>(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002435 varDecl(hasInitializer(ignoringParenImpCasts(
2436 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002437}
2438
Manuel Klimek715c9562012-07-25 10:02:02 +00002439TEST(HasSourceExpression, MatchesImplicitCasts) {
Manuel Klimek4da21662012-07-06 05:48:52 +00002440 EXPECT_TRUE(matches("class string {}; class URL { public: URL(string s); };"
2441 "void r() {string a_string; URL url = a_string; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002442 expr(implicitCastExpr(
2443 hasSourceExpression(constructExpr())))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002444}
2445
Manuel Klimek715c9562012-07-25 10:02:02 +00002446TEST(HasSourceExpression, MatchesExplicitCasts) {
2447 EXPECT_TRUE(matches("float x = static_cast<float>(42);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002448 expr(explicitCastExpr(
2449 hasSourceExpression(hasDescendant(
2450 expr(integerLiteral())))))));
Manuel Klimek715c9562012-07-25 10:02:02 +00002451}
2452
Manuel Klimek4da21662012-07-06 05:48:52 +00002453TEST(Statement, DoesNotMatchDeclarations) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002454 EXPECT_TRUE(notMatches("class X {};", stmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002455}
2456
2457TEST(Statement, MatchesCompoundStatments) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002458 EXPECT_TRUE(matches("void x() {}", stmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002459}
2460
2461TEST(DeclarationStatement, DoesNotMatchCompoundStatements) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002462 EXPECT_TRUE(notMatches("void x() {}", declStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002463}
2464
2465TEST(DeclarationStatement, MatchesVariableDeclarationStatements) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002466 EXPECT_TRUE(matches("void x() { int a; }", declStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002467}
2468
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002469TEST(InitListExpression, MatchesInitListExpression) {
2470 EXPECT_TRUE(matches("int a[] = { 1, 2 };",
2471 initListExpr(hasType(asString("int [2]")))));
2472 EXPECT_TRUE(matches("struct B { int x, y; }; B b = { 5, 6 };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002473 initListExpr(hasType(recordDecl(hasName("B"))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002474}
2475
2476TEST(UsingDeclaration, MatchesUsingDeclarations) {
2477 EXPECT_TRUE(matches("namespace X { int x; } using X::x;",
2478 usingDecl()));
2479}
2480
2481TEST(UsingDeclaration, MatchesShadowUsingDelcarations) {
2482 EXPECT_TRUE(matches("namespace f { int a; } using f::a;",
2483 usingDecl(hasAnyUsingShadowDecl(hasName("a")))));
2484}
2485
2486TEST(UsingDeclaration, MatchesSpecificTarget) {
2487 EXPECT_TRUE(matches("namespace f { int a; void b(); } using f::b;",
2488 usingDecl(hasAnyUsingShadowDecl(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002489 hasTargetDecl(functionDecl())))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002490 EXPECT_TRUE(notMatches("namespace f { int a; void b(); } using f::a;",
2491 usingDecl(hasAnyUsingShadowDecl(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002492 hasTargetDecl(functionDecl())))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002493}
2494
2495TEST(UsingDeclaration, ThroughUsingDeclaration) {
2496 EXPECT_TRUE(matches(
2497 "namespace a { void f(); } using a::f; void g() { f(); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002498 declRefExpr(throughUsingDecl(anything()))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002499 EXPECT_TRUE(notMatches(
2500 "namespace a { void f(); } using a::f; void g() { a::f(); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002501 declRefExpr(throughUsingDecl(anything()))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002502}
2503
Sam Panzer425f41b2012-08-16 17:20:59 +00002504TEST(SingleDecl, IsSingleDecl) {
2505 StatementMatcher SingleDeclStmt =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002506 declStmt(hasSingleDecl(varDecl(hasInitializer(anything()))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002507 EXPECT_TRUE(matches("void f() {int a = 4;}", SingleDeclStmt));
2508 EXPECT_TRUE(notMatches("void f() {int a;}", SingleDeclStmt));
2509 EXPECT_TRUE(notMatches("void f() {int a = 4, b = 3;}",
2510 SingleDeclStmt));
2511}
2512
2513TEST(DeclStmt, ContainsDeclaration) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002514 DeclarationMatcher MatchesInit = varDecl(hasInitializer(anything()));
Sam Panzer425f41b2012-08-16 17:20:59 +00002515
2516 EXPECT_TRUE(matches("void f() {int a = 4;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002517 declStmt(containsDeclaration(0, MatchesInit))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002518 EXPECT_TRUE(matches("void f() {int a = 4, b = 3;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002519 declStmt(containsDeclaration(0, MatchesInit),
2520 containsDeclaration(1, MatchesInit))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002521 unsigned WrongIndex = 42;
2522 EXPECT_TRUE(notMatches("void f() {int a = 4, b = 3;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002523 declStmt(containsDeclaration(WrongIndex,
Sam Panzer425f41b2012-08-16 17:20:59 +00002524 MatchesInit))));
2525}
2526
2527TEST(DeclCount, DeclCountIsCorrect) {
2528 EXPECT_TRUE(matches("void f() {int i,j;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002529 declStmt(declCountIs(2))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002530 EXPECT_TRUE(notMatches("void f() {int i,j; int k;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002531 declStmt(declCountIs(3))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002532 EXPECT_TRUE(notMatches("void f() {int i,j, k, l;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002533 declStmt(declCountIs(3))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002534}
2535
Manuel Klimek4da21662012-07-06 05:48:52 +00002536TEST(While, MatchesWhileLoops) {
2537 EXPECT_TRUE(notMatches("void x() {}", whileStmt()));
2538 EXPECT_TRUE(matches("void x() { while(true); }", whileStmt()));
2539 EXPECT_TRUE(notMatches("void x() { do {} while(true); }", whileStmt()));
2540}
2541
2542TEST(Do, MatchesDoLoops) {
2543 EXPECT_TRUE(matches("void x() { do {} while(true); }", doStmt()));
2544 EXPECT_TRUE(matches("void x() { do ; while(false); }", doStmt()));
2545}
2546
2547TEST(Do, DoesNotMatchWhileLoops) {
2548 EXPECT_TRUE(notMatches("void x() { while(true) {} }", doStmt()));
2549}
2550
2551TEST(SwitchCase, MatchesCase) {
2552 EXPECT_TRUE(matches("void x() { switch(42) { case 42:; } }", switchCase()));
2553 EXPECT_TRUE(matches("void x() { switch(42) { default:; } }", switchCase()));
2554 EXPECT_TRUE(matches("void x() { switch(42) default:; }", switchCase()));
2555 EXPECT_TRUE(notMatches("void x() { switch(42) {} }", switchCase()));
2556}
2557
2558TEST(HasConditionVariableStatement, DoesNotMatchCondition) {
2559 EXPECT_TRUE(notMatches(
2560 "void x() { if(true) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002561 ifStmt(hasConditionVariableStatement(declStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002562 EXPECT_TRUE(notMatches(
2563 "void x() { int x; if((x = 42)) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002564 ifStmt(hasConditionVariableStatement(declStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002565}
2566
2567TEST(HasConditionVariableStatement, MatchesConditionVariables) {
2568 EXPECT_TRUE(matches(
2569 "void x() { if(int* a = 0) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002570 ifStmt(hasConditionVariableStatement(declStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002571}
2572
2573TEST(ForEach, BindsOneNode) {
2574 EXPECT_TRUE(matchAndVerifyResultTrue("class C { int x; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002575 recordDecl(hasName("C"), forEach(fieldDecl(hasName("x")).bind("x"))),
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002576 new VerifyIdIsBoundToDecl<FieldDecl>("x", 1)));
Manuel Klimek4da21662012-07-06 05:48:52 +00002577}
2578
2579TEST(ForEach, BindsMultipleNodes) {
2580 EXPECT_TRUE(matchAndVerifyResultTrue("class C { int x; int y; int z; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002581 recordDecl(hasName("C"), forEach(fieldDecl().bind("f"))),
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002582 new VerifyIdIsBoundToDecl<FieldDecl>("f", 3)));
Manuel Klimek4da21662012-07-06 05:48:52 +00002583}
2584
2585TEST(ForEach, BindsRecursiveCombinations) {
2586 EXPECT_TRUE(matchAndVerifyResultTrue(
2587 "class C { class D { int x; int y; }; class E { int y; int z; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002588 recordDecl(hasName("C"),
2589 forEach(recordDecl(forEach(fieldDecl().bind("f"))))),
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002590 new VerifyIdIsBoundToDecl<FieldDecl>("f", 4)));
Manuel Klimek4da21662012-07-06 05:48:52 +00002591}
2592
2593TEST(ForEachDescendant, BindsOneNode) {
2594 EXPECT_TRUE(matchAndVerifyResultTrue("class C { class D { int x; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002595 recordDecl(hasName("C"),
2596 forEachDescendant(fieldDecl(hasName("x")).bind("x"))),
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002597 new VerifyIdIsBoundToDecl<FieldDecl>("x", 1)));
Manuel Klimek4da21662012-07-06 05:48:52 +00002598}
2599
2600TEST(ForEachDescendant, BindsMultipleNodes) {
2601 EXPECT_TRUE(matchAndVerifyResultTrue(
2602 "class C { class D { int x; int y; }; "
2603 " class E { class F { int y; int z; }; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002604 recordDecl(hasName("C"), forEachDescendant(fieldDecl().bind("f"))),
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002605 new VerifyIdIsBoundToDecl<FieldDecl>("f", 4)));
Manuel Klimek4da21662012-07-06 05:48:52 +00002606}
2607
2608TEST(ForEachDescendant, BindsRecursiveCombinations) {
2609 EXPECT_TRUE(matchAndVerifyResultTrue(
2610 "class C { class D { "
2611 " class E { class F { class G { int y; int z; }; }; }; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002612 recordDecl(hasName("C"), forEachDescendant(recordDecl(
2613 forEachDescendant(fieldDecl().bind("f"))))),
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002614 new VerifyIdIsBoundToDecl<FieldDecl>("f", 8)));
Manuel Klimek4da21662012-07-06 05:48:52 +00002615}
2616
2617
2618TEST(IsTemplateInstantiation, MatchesImplicitClassTemplateInstantiation) {
2619 // Make sure that we can both match the class by name (::X) and by the type
2620 // the template was instantiated with (via a field).
2621
2622 EXPECT_TRUE(matches(
2623 "template <typename T> class X {}; class A {}; X<A> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002624 recordDecl(hasName("::X"), isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002625
2626 EXPECT_TRUE(matches(
2627 "template <typename T> class X { T t; }; class A {}; X<A> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002628 recordDecl(isTemplateInstantiation(), hasDescendant(
2629 fieldDecl(hasType(recordDecl(hasName("A"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002630}
2631
2632TEST(IsTemplateInstantiation, MatchesImplicitFunctionTemplateInstantiation) {
2633 EXPECT_TRUE(matches(
2634 "template <typename T> void f(T t) {} class A {}; void g() { f(A()); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002635 functionDecl(hasParameter(0, hasType(recordDecl(hasName("A")))),
Manuel Klimek4da21662012-07-06 05:48:52 +00002636 isTemplateInstantiation())));
2637}
2638
2639TEST(IsTemplateInstantiation, MatchesExplicitClassTemplateInstantiation) {
2640 EXPECT_TRUE(matches(
2641 "template <typename T> class X { T t; }; class A {};"
2642 "template class X<A>;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002643 recordDecl(isTemplateInstantiation(), hasDescendant(
2644 fieldDecl(hasType(recordDecl(hasName("A"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002645}
2646
2647TEST(IsTemplateInstantiation,
2648 MatchesInstantiationOfPartiallySpecializedClassTemplate) {
2649 EXPECT_TRUE(matches(
2650 "template <typename T> class X {};"
2651 "template <typename T> class X<T*> {}; class A {}; X<A*> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002652 recordDecl(hasName("::X"), isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002653}
2654
2655TEST(IsTemplateInstantiation,
2656 MatchesInstantiationOfClassTemplateNestedInNonTemplate) {
2657 EXPECT_TRUE(matches(
2658 "class A {};"
2659 "class X {"
2660 " template <typename U> class Y { U u; };"
2661 " Y<A> y;"
2662 "};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002663 recordDecl(hasName("::X::Y"), isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002664}
2665
2666TEST(IsTemplateInstantiation, DoesNotMatchInstantiationsInsideOfInstantiation) {
2667 // FIXME: Figure out whether this makes sense. It doesn't affect the
2668 // normal use case as long as the uppermost instantiation always is marked
2669 // as template instantiation, but it might be confusing as a predicate.
2670 EXPECT_TRUE(matches(
2671 "class A {};"
2672 "template <typename T> class X {"
2673 " template <typename U> class Y { U u; };"
2674 " Y<T> y;"
2675 "}; X<A> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002676 recordDecl(hasName("::X<A>::Y"), unless(isTemplateInstantiation()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002677}
2678
2679TEST(IsTemplateInstantiation, DoesNotMatchExplicitClassTemplateSpecialization) {
2680 EXPECT_TRUE(notMatches(
2681 "template <typename T> class X {}; class A {};"
2682 "template <> class X<A> {}; X<A> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002683 recordDecl(hasName("::X"), isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002684}
2685
2686TEST(IsTemplateInstantiation, DoesNotMatchNonTemplate) {
2687 EXPECT_TRUE(notMatches(
2688 "class A {}; class Y { A a; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002689 recordDecl(isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00002690}
2691
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00002692TEST(IsExplicitTemplateSpecialization,
2693 DoesNotMatchPrimaryTemplate) {
2694 EXPECT_TRUE(notMatches(
2695 "template <typename T> class X {};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002696 recordDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00002697 EXPECT_TRUE(notMatches(
2698 "template <typename T> void f(T t);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002699 functionDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00002700}
2701
2702TEST(IsExplicitTemplateSpecialization,
2703 DoesNotMatchExplicitTemplateInstantiations) {
2704 EXPECT_TRUE(notMatches(
2705 "template <typename T> class X {};"
2706 "template class X<int>; extern template class X<long>;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002707 recordDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00002708 EXPECT_TRUE(notMatches(
2709 "template <typename T> void f(T t) {}"
2710 "template void f(int t); extern template void f(long t);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002711 functionDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00002712}
2713
2714TEST(IsExplicitTemplateSpecialization,
2715 DoesNotMatchImplicitTemplateInstantiations) {
2716 EXPECT_TRUE(notMatches(
2717 "template <typename T> class X {}; X<int> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002718 recordDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00002719 EXPECT_TRUE(notMatches(
2720 "template <typename T> void f(T t); void g() { f(10); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002721 functionDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00002722}
2723
2724TEST(IsExplicitTemplateSpecialization,
2725 MatchesExplicitTemplateSpecializations) {
2726 EXPECT_TRUE(matches(
2727 "template <typename T> class X {};"
2728 "template<> class X<int> {};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002729 recordDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00002730 EXPECT_TRUE(matches(
2731 "template <typename T> void f(T t) {}"
2732 "template<> void f(int t) {}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002733 functionDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00002734}
2735
Manuel Klimek579b1202012-09-07 09:26:10 +00002736TEST(HasAncenstor, MatchesDeclarationAncestors) {
2737 EXPECT_TRUE(matches(
2738 "class A { class B { class C {}; }; };",
2739 recordDecl(hasName("C"), hasAncestor(recordDecl(hasName("A"))))));
2740}
2741
2742TEST(HasAncenstor, FailsIfNoAncestorMatches) {
2743 EXPECT_TRUE(notMatches(
2744 "class A { class B { class C {}; }; };",
2745 recordDecl(hasName("C"), hasAncestor(recordDecl(hasName("X"))))));
2746}
2747
2748TEST(HasAncestor, MatchesDeclarationsThatGetVisitedLater) {
2749 EXPECT_TRUE(matches(
2750 "class A { class B { void f() { C c; } class C {}; }; };",
2751 varDecl(hasName("c"), hasType(recordDecl(hasName("C"),
2752 hasAncestor(recordDecl(hasName("A"))))))));
2753}
2754
2755TEST(HasAncenstor, MatchesStatementAncestors) {
2756 EXPECT_TRUE(matches(
2757 "void f() { if (true) { while (false) { 42; } } }",
2758 expr(integerLiteral(equals(42), hasAncestor(ifStmt())))));
2759}
2760
2761TEST(HasAncestor, DrillsThroughDifferentHierarchies) {
2762 EXPECT_TRUE(matches(
2763 "void f() { if (true) { int x = 42; } }",
2764 expr(integerLiteral(
2765 equals(42), hasAncestor(functionDecl(hasName("f")))))));
2766}
2767
2768TEST(HasAncestor, BindsRecursiveCombinations) {
2769 EXPECT_TRUE(matchAndVerifyResultTrue(
2770 "class C { class D { class E { class F { int y; }; }; }; };",
2771 fieldDecl(hasAncestor(recordDecl(hasAncestor(recordDecl().bind("r"))))),
2772 new VerifyIdIsBoundToDecl<CXXRecordDecl>("r", 1)));
2773}
2774
2775TEST(HasAncestor, BindsCombinationsWithHasDescendant) {
2776 EXPECT_TRUE(matchAndVerifyResultTrue(
2777 "class C { class D { class E { class F { int y; }; }; }; };",
2778 fieldDecl(hasAncestor(
2779 decl(
2780 hasDescendant(recordDecl(isDefinition(),
2781 hasAncestor(recordDecl())))
2782 ).bind("d")
2783 )),
2784 new VerifyIdIsBoundToDecl<CXXRecordDecl>("d", "E")));
2785}
2786
2787TEST(HasAncestor, MatchesInTemplateInstantiations) {
2788 EXPECT_TRUE(matches(
2789 "template <typename T> struct A { struct B { struct C { T t; }; }; }; "
2790 "A<int>::B::C a;",
2791 fieldDecl(hasType(asString("int")),
2792 hasAncestor(recordDecl(hasName("A"))))));
2793}
2794
2795TEST(HasAncestor, MatchesInImplicitCode) {
2796 EXPECT_TRUE(matches(
2797 "struct X {}; struct A { A() {} X x; };",
2798 constructorDecl(
2799 hasAnyConstructorInitializer(withInitializer(expr(
2800 hasAncestor(recordDecl(hasName("A")))))))));
2801}
2802
Manuel Klimek4da21662012-07-06 05:48:52 +00002803} // end namespace ast_matchers
2804} // end namespace clang