blob: 82f349fb0e898e7f898cfcde68772eb2788151bc [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"
Benjamin Kramer8b9ed712012-12-01 17:22:05 +000011#include "clang/AST/PrettyPrinter.h"
Manuel Klimek4da21662012-07-06 05:48:52 +000012#include "clang/ASTMatchers/ASTMatchFinder.h"
Chandler Carruth1050e8b2012-12-04 09:45:34 +000013#include "clang/ASTMatchers/ASTMatchers.h"
Manuel Klimek4da21662012-07-06 05:48:52 +000014#include "clang/Tooling/Tooling.h"
15#include "gtest/gtest.h"
16
17namespace clang {
18namespace ast_matchers {
19
Benjamin Kramer78a0ce42012-07-10 17:30:44 +000020#if GTEST_HAS_DEATH_TEST
Manuel Klimek4da21662012-07-06 05:48:52 +000021TEST(HasNameDeathTest, DiesOnEmptyName) {
22 ASSERT_DEBUG_DEATH({
Daniel Jasper2dc75ed2012-08-24 05:12:34 +000023 DeclarationMatcher HasEmptyName = recordDecl(hasName(""));
Manuel Klimek4da21662012-07-06 05:48:52 +000024 EXPECT_TRUE(notMatches("class X {};", HasEmptyName));
25 }, "");
26}
27
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +000028TEST(HasNameDeathTest, DiesOnEmptyPattern) {
29 ASSERT_DEBUG_DEATH({
Daniel Jasper2dc75ed2012-08-24 05:12:34 +000030 DeclarationMatcher HasEmptyName = recordDecl(matchesName(""));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +000031 EXPECT_TRUE(notMatches("class X {};", HasEmptyName));
32 }, "");
33}
34
Manuel Klimek4da21662012-07-06 05:48:52 +000035TEST(IsDerivedFromDeathTest, DiesOnEmptyBaseName) {
36 ASSERT_DEBUG_DEATH({
Daniel Jasper2dc75ed2012-08-24 05:12:34 +000037 DeclarationMatcher IsDerivedFromEmpty = recordDecl(isDerivedFrom(""));
Manuel Klimek4da21662012-07-06 05:48:52 +000038 EXPECT_TRUE(notMatches("class X {};", IsDerivedFromEmpty));
39 }, "");
40}
Benjamin Kramer78a0ce42012-07-10 17:30:44 +000041#endif
Manuel Klimek4da21662012-07-06 05:48:52 +000042
Manuel Klimek715c9562012-07-25 10:02:02 +000043TEST(Decl, MatchesDeclarations) {
44 EXPECT_TRUE(notMatches("", decl(usingDecl())));
45 EXPECT_TRUE(matches("namespace x { class X {}; } using x::X;",
46 decl(usingDecl())));
47}
48
Manuel Klimek4da21662012-07-06 05:48:52 +000049TEST(NameableDeclaration, MatchesVariousDecls) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +000050 DeclarationMatcher NamedX = namedDecl(hasName("X"));
Manuel Klimek4da21662012-07-06 05:48:52 +000051 EXPECT_TRUE(matches("typedef int X;", NamedX));
52 EXPECT_TRUE(matches("int X;", NamedX));
53 EXPECT_TRUE(matches("class foo { virtual void X(); };", NamedX));
54 EXPECT_TRUE(matches("void foo() try { } catch(int X) { }", NamedX));
55 EXPECT_TRUE(matches("void foo() { int X; }", NamedX));
56 EXPECT_TRUE(matches("namespace X { }", NamedX));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +000057 EXPECT_TRUE(matches("enum X { A, B, C };", NamedX));
Manuel Klimek4da21662012-07-06 05:48:52 +000058
59 EXPECT_TRUE(notMatches("#define X 1", NamedX));
60}
61
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +000062TEST(NameableDeclaration, REMatchesVariousDecls) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +000063 DeclarationMatcher NamedX = namedDecl(matchesName("::X"));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +000064 EXPECT_TRUE(matches("typedef int Xa;", NamedX));
65 EXPECT_TRUE(matches("int Xb;", NamedX));
66 EXPECT_TRUE(matches("class foo { virtual void Xc(); };", NamedX));
67 EXPECT_TRUE(matches("void foo() try { } catch(int Xdef) { }", NamedX));
68 EXPECT_TRUE(matches("void foo() { int Xgh; }", NamedX));
69 EXPECT_TRUE(matches("namespace Xij { }", NamedX));
70 EXPECT_TRUE(matches("enum X { A, B, C };", NamedX));
71
72 EXPECT_TRUE(notMatches("#define Xkl 1", NamedX));
73
Daniel Jasper2dc75ed2012-08-24 05:12:34 +000074 DeclarationMatcher StartsWithNo = namedDecl(matchesName("::no"));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +000075 EXPECT_TRUE(matches("int no_foo;", StartsWithNo));
76 EXPECT_TRUE(matches("class foo { virtual void nobody(); };", StartsWithNo));
77
Daniel Jasper2dc75ed2012-08-24 05:12:34 +000078 DeclarationMatcher Abc = namedDecl(matchesName("a.*b.*c"));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +000079 EXPECT_TRUE(matches("int abc;", Abc));
80 EXPECT_TRUE(matches("int aFOObBARc;", Abc));
81 EXPECT_TRUE(notMatches("int cab;", Abc));
82 EXPECT_TRUE(matches("int cabc;", Abc));
Manuel Klimekec33b6f2012-12-10 07:08:53 +000083
84 DeclarationMatcher StartsWithK = namedDecl(matchesName(":k[^:]*$"));
85 EXPECT_TRUE(matches("int k;", StartsWithK));
86 EXPECT_TRUE(matches("int kAbc;", StartsWithK));
87 EXPECT_TRUE(matches("namespace x { int kTest; }", StartsWithK));
88 EXPECT_TRUE(matches("class C { int k; };", StartsWithK));
89 EXPECT_TRUE(notMatches("class C { int ckc; };", StartsWithK));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +000090}
91
Manuel Klimek4da21662012-07-06 05:48:52 +000092TEST(DeclarationMatcher, MatchClass) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +000093 DeclarationMatcher ClassMatcher(recordDecl());
Manuel Klimeke265c872012-07-10 14:21:30 +000094#if !defined(_MSC_VER)
Manuel Klimek4da21662012-07-06 05:48:52 +000095 EXPECT_FALSE(matches("", ClassMatcher));
Manuel Klimeke265c872012-07-10 14:21:30 +000096#else
97 // Matches class type_info.
98 EXPECT_TRUE(matches("", ClassMatcher));
99#endif
Manuel Klimek4da21662012-07-06 05:48:52 +0000100
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000101 DeclarationMatcher ClassX = recordDecl(recordDecl(hasName("X")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000102 EXPECT_TRUE(matches("class X;", ClassX));
103 EXPECT_TRUE(matches("class X {};", ClassX));
104 EXPECT_TRUE(matches("template<class T> class X {};", ClassX));
105 EXPECT_TRUE(notMatches("", ClassX));
106}
107
108TEST(DeclarationMatcher, ClassIsDerived) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000109 DeclarationMatcher IsDerivedFromX = recordDecl(isDerivedFrom("X"));
Manuel Klimek4da21662012-07-06 05:48:52 +0000110
111 EXPECT_TRUE(matches("class X {}; class Y : public X {};", IsDerivedFromX));
Daniel Jasper76dafa72012-09-07 12:48:17 +0000112 EXPECT_TRUE(notMatches("class X {};", IsDerivedFromX));
113 EXPECT_TRUE(notMatches("class X;", IsDerivedFromX));
Manuel Klimek4da21662012-07-06 05:48:52 +0000114 EXPECT_TRUE(notMatches("class Y;", IsDerivedFromX));
115 EXPECT_TRUE(notMatches("", IsDerivedFromX));
116
Daniel Jasper63d88722012-09-12 21:14:15 +0000117 DeclarationMatcher IsAX = recordDecl(isSameOrDerivedFrom("X"));
Daniel Jasper76dafa72012-09-07 12:48:17 +0000118
119 EXPECT_TRUE(matches("class X {}; class Y : public X {};", IsAX));
120 EXPECT_TRUE(matches("class X {};", IsAX));
121 EXPECT_TRUE(matches("class X;", IsAX));
122 EXPECT_TRUE(notMatches("class Y;", IsAX));
123 EXPECT_TRUE(notMatches("", IsAX));
124
Manuel Klimek4da21662012-07-06 05:48:52 +0000125 DeclarationMatcher ZIsDerivedFromX =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000126 recordDecl(hasName("Z"), isDerivedFrom("X"));
Manuel Klimek4da21662012-07-06 05:48:52 +0000127 EXPECT_TRUE(
128 matches("class X {}; class Y : public X {}; class Z : public Y {};",
129 ZIsDerivedFromX));
130 EXPECT_TRUE(
131 matches("class X {};"
132 "template<class T> class Y : public X {};"
133 "class Z : public Y<int> {};", ZIsDerivedFromX));
134 EXPECT_TRUE(matches("class X {}; template<class T> class Z : public X {};",
135 ZIsDerivedFromX));
136 EXPECT_TRUE(
137 matches("template<class T> class X {}; "
138 "template<class T> class Z : public X<T> {};",
139 ZIsDerivedFromX));
140 EXPECT_TRUE(
141 matches("template<class T, class U=T> class X {}; "
142 "template<class T> class Z : public X<T> {};",
143 ZIsDerivedFromX));
144 EXPECT_TRUE(
145 notMatches("template<class X> class A { class Z : public X {}; };",
146 ZIsDerivedFromX));
147 EXPECT_TRUE(
148 matches("template<class X> class A { public: class Z : public X {}; }; "
149 "class X{}; void y() { A<X>::Z z; }", ZIsDerivedFromX));
150 EXPECT_TRUE(
151 matches("template <class T> class X {}; "
152 "template<class Y> class A { class Z : public X<Y> {}; };",
153 ZIsDerivedFromX));
154 EXPECT_TRUE(
155 notMatches("template<template<class T> class X> class A { "
156 " class Z : public X<int> {}; };", ZIsDerivedFromX));
157 EXPECT_TRUE(
158 matches("template<template<class T> class X> class A { "
159 " public: class Z : public X<int> {}; }; "
160 "template<class T> class X {}; void y() { A<X>::Z z; }",
161 ZIsDerivedFromX));
162 EXPECT_TRUE(
163 notMatches("template<class X> class A { class Z : public X::D {}; };",
164 ZIsDerivedFromX));
165 EXPECT_TRUE(
166 matches("template<class X> class A { public: "
167 " class Z : public X::D {}; }; "
168 "class Y { public: class X {}; typedef X D; }; "
169 "void y() { A<Y>::Z z; }", ZIsDerivedFromX));
170 EXPECT_TRUE(
171 matches("class X {}; typedef X Y; class Z : public Y {};",
172 ZIsDerivedFromX));
173 EXPECT_TRUE(
174 matches("template<class T> class Y { typedef typename T::U X; "
175 " class Z : public X {}; };", ZIsDerivedFromX));
176 EXPECT_TRUE(matches("class X {}; class Z : public ::X {};",
177 ZIsDerivedFromX));
178 EXPECT_TRUE(
179 notMatches("template<class T> class X {}; "
180 "template<class T> class A { class Z : public X<T>::D {}; };",
181 ZIsDerivedFromX));
182 EXPECT_TRUE(
183 matches("template<class T> class X { public: typedef X<T> D; }; "
184 "template<class T> class A { public: "
185 " class Z : public X<T>::D {}; }; void y() { A<int>::Z z; }",
186 ZIsDerivedFromX));
187 EXPECT_TRUE(
188 notMatches("template<class X> class A { class Z : public X::D::E {}; };",
189 ZIsDerivedFromX));
190 EXPECT_TRUE(
191 matches("class X {}; typedef X V; typedef V W; class Z : public W {};",
192 ZIsDerivedFromX));
193 EXPECT_TRUE(
194 matches("class X {}; class Y : public X {}; "
195 "typedef Y V; typedef V W; class Z : public W {};",
196 ZIsDerivedFromX));
197 EXPECT_TRUE(
198 matches("template<class T, class U> class X {}; "
199 "template<class T> class A { class Z : public X<T, int> {}; };",
200 ZIsDerivedFromX));
201 EXPECT_TRUE(
202 notMatches("template<class X> class D { typedef X A; typedef A B; "
203 " typedef B C; class Z : public C {}; };",
204 ZIsDerivedFromX));
205 EXPECT_TRUE(
206 matches("class X {}; typedef X A; typedef A B; "
207 "class Z : public B {};", ZIsDerivedFromX));
208 EXPECT_TRUE(
209 matches("class X {}; typedef X A; typedef A B; typedef B C; "
210 "class Z : public C {};", ZIsDerivedFromX));
211 EXPECT_TRUE(
212 matches("class U {}; typedef U X; typedef X V; "
213 "class Z : public V {};", ZIsDerivedFromX));
214 EXPECT_TRUE(
215 matches("class Base {}; typedef Base X; "
216 "class Z : public Base {};", ZIsDerivedFromX));
217 EXPECT_TRUE(
218 matches("class Base {}; typedef Base Base2; typedef Base2 X; "
219 "class Z : public Base {};", ZIsDerivedFromX));
220 EXPECT_TRUE(
221 notMatches("class Base {}; class Base2 {}; typedef Base2 X; "
222 "class Z : public Base {};", ZIsDerivedFromX));
223 EXPECT_TRUE(
224 matches("class A {}; typedef A X; typedef A Y; "
225 "class Z : public Y {};", ZIsDerivedFromX));
226 EXPECT_TRUE(
227 notMatches("template <typename T> class Z;"
228 "template <> class Z<void> {};"
229 "template <typename T> class Z : public Z<void> {};",
230 IsDerivedFromX));
231 EXPECT_TRUE(
232 matches("template <typename T> class X;"
233 "template <> class X<void> {};"
234 "template <typename T> class X : public X<void> {};",
235 IsDerivedFromX));
236 EXPECT_TRUE(matches(
237 "class X {};"
238 "template <typename T> class Z;"
239 "template <> class Z<void> {};"
240 "template <typename T> class Z : public Z<void>, public X {};",
241 ZIsDerivedFromX));
Manuel Klimek987c2f52012-12-04 13:40:29 +0000242 EXPECT_TRUE(
243 notMatches("template<int> struct X;"
244 "template<int i> struct X : public X<i-1> {};",
245 recordDecl(isDerivedFrom(recordDecl(hasName("Some"))))));
246 EXPECT_TRUE(matches(
247 "struct A {};"
248 "template<int> struct X;"
249 "template<int i> struct X : public X<i-1> {};"
250 "template<> struct X<0> : public A {};"
251 "struct B : public X<42> {};",
252 recordDecl(hasName("B"), isDerivedFrom(recordDecl(hasName("A"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000253
254 // FIXME: Once we have better matchers for template type matching,
255 // get rid of the Variable(...) matching and match the right template
256 // declarations directly.
257 const char *RecursiveTemplateOneParameter =
258 "class Base1 {}; class Base2 {};"
259 "template <typename T> class Z;"
260 "template <> class Z<void> : public Base1 {};"
261 "template <> class Z<int> : public Base2 {};"
262 "template <> class Z<float> : public Z<void> {};"
263 "template <> class Z<double> : public Z<int> {};"
264 "template <typename T> class Z : public Z<float>, public Z<double> {};"
265 "void f() { Z<float> z_float; Z<double> z_double; Z<char> z_char; }";
266 EXPECT_TRUE(matches(
267 RecursiveTemplateOneParameter,
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000268 varDecl(hasName("z_float"),
269 hasInitializer(hasType(recordDecl(isDerivedFrom("Base1")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000270 EXPECT_TRUE(notMatches(
271 RecursiveTemplateOneParameter,
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000272 varDecl(hasName("z_float"),
273 hasInitializer(hasType(recordDecl(isDerivedFrom("Base2")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000274 EXPECT_TRUE(matches(
275 RecursiveTemplateOneParameter,
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000276 varDecl(hasName("z_char"),
277 hasInitializer(hasType(recordDecl(isDerivedFrom("Base1"),
278 isDerivedFrom("Base2")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000279
280 const char *RecursiveTemplateTwoParameters =
281 "class Base1 {}; class Base2 {};"
282 "template <typename T1, typename T2> class Z;"
283 "template <typename T> class Z<void, T> : public Base1 {};"
284 "template <typename T> class Z<int, T> : public Base2 {};"
285 "template <typename T> class Z<float, T> : public Z<void, T> {};"
286 "template <typename T> class Z<double, T> : public Z<int, T> {};"
287 "template <typename T1, typename T2> class Z : "
288 " public Z<float, T2>, public Z<double, T2> {};"
289 "void f() { Z<float, void> z_float; Z<double, void> z_double; "
290 " Z<char, void> z_char; }";
291 EXPECT_TRUE(matches(
292 RecursiveTemplateTwoParameters,
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000293 varDecl(hasName("z_float"),
294 hasInitializer(hasType(recordDecl(isDerivedFrom("Base1")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000295 EXPECT_TRUE(notMatches(
296 RecursiveTemplateTwoParameters,
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000297 varDecl(hasName("z_float"),
298 hasInitializer(hasType(recordDecl(isDerivedFrom("Base2")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000299 EXPECT_TRUE(matches(
300 RecursiveTemplateTwoParameters,
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000301 varDecl(hasName("z_char"),
302 hasInitializer(hasType(recordDecl(isDerivedFrom("Base1"),
303 isDerivedFrom("Base2")))))));
Daniel Jasper20b802d2012-07-17 07:39:27 +0000304 EXPECT_TRUE(matches(
305 "namespace ns { class X {}; class Y : public X {}; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000306 recordDecl(isDerivedFrom("::ns::X"))));
Daniel Jasper20b802d2012-07-17 07:39:27 +0000307 EXPECT_TRUE(notMatches(
308 "class X {}; class Y : public X {};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000309 recordDecl(isDerivedFrom("::ns::X"))));
Daniel Jasper20b802d2012-07-17 07:39:27 +0000310
311 EXPECT_TRUE(matches(
312 "class X {}; class Y : public X {};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000313 recordDecl(isDerivedFrom(recordDecl(hasName("X")).bind("test")))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000314}
315
Edwin Vane6a19a972013-03-06 17:02:57 +0000316TEST(DeclarationMatcher, hasMethod) {
317 EXPECT_TRUE(matches("class A { void func(); };",
318 recordDecl(hasMethod(hasName("func")))));
319 EXPECT_TRUE(notMatches("class A { void func(); };",
320 recordDecl(hasMethod(isPublic()))));
321}
322
Daniel Jasper08f0c532012-09-18 14:17:42 +0000323TEST(DeclarationMatcher, ClassDerivedFromDependentTemplateSpecialization) {
324 EXPECT_TRUE(matches(
325 "template <typename T> struct A {"
326 " template <typename T2> struct F {};"
327 "};"
328 "template <typename T> struct B : A<T>::template F<T> {};"
329 "B<int> b;",
330 recordDecl(hasName("B"), isDerivedFrom(recordDecl()))));
331}
332
Edwin Vane742d9e72013-02-25 20:43:32 +0000333TEST(DeclarationMatcher, hasDeclContext) {
334 EXPECT_TRUE(matches(
335 "namespace N {"
336 " namespace M {"
337 " class D {};"
338 " }"
339 "}",
Daniel Jasperabe92232013-04-08 16:44:05 +0000340 recordDecl(hasDeclContext(namespaceDecl(hasName("M"))))));
Edwin Vane742d9e72013-02-25 20:43:32 +0000341 EXPECT_TRUE(notMatches(
342 "namespace N {"
343 " namespace M {"
344 " class D {};"
345 " }"
346 "}",
Daniel Jasperabe92232013-04-08 16:44:05 +0000347 recordDecl(hasDeclContext(namespaceDecl(hasName("N"))))));
348
349 EXPECT_TRUE(matches("namespace {"
350 " namespace M {"
351 " class D {};"
352 " }"
353 "}",
354 recordDecl(hasDeclContext(namespaceDecl(
355 hasName("M"), hasDeclContext(namespaceDecl()))))));
Edwin Vane742d9e72013-02-25 20:43:32 +0000356}
357
Dmitri Gribenko8456ae62012-08-17 18:42:47 +0000358TEST(ClassTemplate, DoesNotMatchClass) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000359 DeclarationMatcher ClassX = classTemplateDecl(hasName("X"));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +0000360 EXPECT_TRUE(notMatches("class X;", ClassX));
361 EXPECT_TRUE(notMatches("class X {};", ClassX));
362}
363
364TEST(ClassTemplate, MatchesClassTemplate) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000365 DeclarationMatcher ClassX = classTemplateDecl(hasName("X"));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +0000366 EXPECT_TRUE(matches("template<typename T> class X {};", ClassX));
367 EXPECT_TRUE(matches("class Z { template<class T> class X {}; };", ClassX));
368}
369
370TEST(ClassTemplate, DoesNotMatchClassTemplateExplicitSpecialization) {
371 EXPECT_TRUE(notMatches("template<typename T> class X { };"
372 "template<> class X<int> { int a; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000373 classTemplateDecl(hasName("X"),
374 hasDescendant(fieldDecl(hasName("a"))))));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +0000375}
376
377TEST(ClassTemplate, DoesNotMatchClassTemplatePartialSpecialization) {
378 EXPECT_TRUE(notMatches("template<typename T, typename U> class X { };"
379 "template<typename T> class X<T, int> { int a; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000380 classTemplateDecl(hasName("X"),
381 hasDescendant(fieldDecl(hasName("a"))))));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +0000382}
383
Daniel Jasper6a124492012-07-12 08:50:38 +0000384TEST(AllOf, AllOverloadsWork) {
385 const char Program[] =
Edwin Vane7f43fcf2013-02-12 13:55:40 +0000386 "struct T { };"
387 "int f(int, T*, int, int);"
388 "void g(int x) { T t; f(x, &t, 3, 4); }";
Daniel Jasper6a124492012-07-12 08:50:38 +0000389 EXPECT_TRUE(matches(Program,
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000390 callExpr(allOf(callee(functionDecl(hasName("f"))),
391 hasArgument(0, declRefExpr(to(varDecl())))))));
Daniel Jasper6a124492012-07-12 08:50:38 +0000392 EXPECT_TRUE(matches(Program,
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000393 callExpr(allOf(callee(functionDecl(hasName("f"))),
394 hasArgument(0, declRefExpr(to(varDecl()))),
395 hasArgument(1, hasType(pointsTo(
396 recordDecl(hasName("T")))))))));
Edwin Vane7f43fcf2013-02-12 13:55:40 +0000397 EXPECT_TRUE(matches(Program,
398 callExpr(allOf(callee(functionDecl(hasName("f"))),
399 hasArgument(0, declRefExpr(to(varDecl()))),
400 hasArgument(1, hasType(pointsTo(
401 recordDecl(hasName("T"))))),
402 hasArgument(2, integerLiteral(equals(3)))))));
403 EXPECT_TRUE(matches(Program,
404 callExpr(allOf(callee(functionDecl(hasName("f"))),
405 hasArgument(0, declRefExpr(to(varDecl()))),
406 hasArgument(1, hasType(pointsTo(
407 recordDecl(hasName("T"))))),
408 hasArgument(2, integerLiteral(equals(3))),
409 hasArgument(3, integerLiteral(equals(4)))))));
Daniel Jasper6a124492012-07-12 08:50:38 +0000410}
411
Manuel Klimek4da21662012-07-06 05:48:52 +0000412TEST(DeclarationMatcher, MatchAnyOf) {
413 DeclarationMatcher YOrZDerivedFromX =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000414 recordDecl(anyOf(hasName("Y"), allOf(isDerivedFrom("X"), hasName("Z"))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000415 EXPECT_TRUE(
416 matches("class X {}; class Z : public X {};", YOrZDerivedFromX));
417 EXPECT_TRUE(matches("class Y {};", YOrZDerivedFromX));
418 EXPECT_TRUE(
419 notMatches("class X {}; class W : public X {};", YOrZDerivedFromX));
420 EXPECT_TRUE(notMatches("class Z {};", YOrZDerivedFromX));
421
Daniel Jasperff2fcb82012-07-15 19:57:12 +0000422 DeclarationMatcher XOrYOrZOrU =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000423 recordDecl(anyOf(hasName("X"), hasName("Y"), hasName("Z"), hasName("U")));
Daniel Jasperff2fcb82012-07-15 19:57:12 +0000424 EXPECT_TRUE(matches("class X {};", XOrYOrZOrU));
425 EXPECT_TRUE(notMatches("class V {};", XOrYOrZOrU));
426
Manuel Klimek4da21662012-07-06 05:48:52 +0000427 DeclarationMatcher XOrYOrZOrUOrV =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000428 recordDecl(anyOf(hasName("X"), hasName("Y"), hasName("Z"), hasName("U"),
429 hasName("V")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000430 EXPECT_TRUE(matches("class X {};", XOrYOrZOrUOrV));
431 EXPECT_TRUE(matches("class Y {};", XOrYOrZOrUOrV));
432 EXPECT_TRUE(matches("class Z {};", XOrYOrZOrUOrV));
433 EXPECT_TRUE(matches("class U {};", XOrYOrZOrUOrV));
434 EXPECT_TRUE(matches("class V {};", XOrYOrZOrUOrV));
435 EXPECT_TRUE(notMatches("class A {};", XOrYOrZOrUOrV));
436}
437
438TEST(DeclarationMatcher, MatchHas) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000439 DeclarationMatcher HasClassX = recordDecl(has(recordDecl(hasName("X"))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000440 EXPECT_TRUE(matches("class Y { class X {}; };", HasClassX));
441 EXPECT_TRUE(matches("class X {};", HasClassX));
442
443 DeclarationMatcher YHasClassX =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000444 recordDecl(hasName("Y"), has(recordDecl(hasName("X"))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000445 EXPECT_TRUE(matches("class Y { class X {}; };", YHasClassX));
446 EXPECT_TRUE(notMatches("class X {};", YHasClassX));
447 EXPECT_TRUE(
448 notMatches("class Y { class Z { class X {}; }; };", YHasClassX));
449}
450
451TEST(DeclarationMatcher, MatchHasRecursiveAllOf) {
452 DeclarationMatcher Recursive =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000453 recordDecl(
454 has(recordDecl(
455 has(recordDecl(hasName("X"))),
456 has(recordDecl(hasName("Y"))),
Manuel Klimek4da21662012-07-06 05:48:52 +0000457 hasName("Z"))),
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000458 has(recordDecl(
459 has(recordDecl(hasName("A"))),
460 has(recordDecl(hasName("B"))),
Manuel Klimek4da21662012-07-06 05:48:52 +0000461 hasName("C"))),
462 hasName("F"));
463
464 EXPECT_TRUE(matches(
465 "class F {"
466 " class Z {"
467 " class X {};"
468 " class Y {};"
469 " };"
470 " class C {"
471 " class A {};"
472 " class B {};"
473 " };"
474 "};", Recursive));
475
476 EXPECT_TRUE(matches(
477 "class F {"
478 " class Z {"
479 " class A {};"
480 " class X {};"
481 " class Y {};"
482 " };"
483 " class C {"
484 " class X {};"
485 " class A {};"
486 " class B {};"
487 " };"
488 "};", Recursive));
489
490 EXPECT_TRUE(matches(
491 "class O1 {"
492 " class O2 {"
493 " class F {"
494 " class Z {"
495 " class A {};"
496 " class X {};"
497 " class Y {};"
498 " };"
499 " class C {"
500 " class X {};"
501 " class A {};"
502 " class B {};"
503 " };"
504 " };"
505 " };"
506 "};", Recursive));
507}
508
509TEST(DeclarationMatcher, MatchHasRecursiveAnyOf) {
510 DeclarationMatcher Recursive =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000511 recordDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +0000512 anyOf(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000513 has(recordDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +0000514 anyOf(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000515 has(recordDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +0000516 hasName("X"))),
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000517 has(recordDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +0000518 hasName("Y"))),
519 hasName("Z")))),
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000520 has(recordDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +0000521 anyOf(
522 hasName("C"),
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000523 has(recordDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +0000524 hasName("A"))),
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000525 has(recordDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +0000526 hasName("B")))))),
527 hasName("F")));
528
529 EXPECT_TRUE(matches("class F {};", Recursive));
530 EXPECT_TRUE(matches("class Z {};", Recursive));
531 EXPECT_TRUE(matches("class C {};", Recursive));
532 EXPECT_TRUE(matches("class M { class N { class X {}; }; };", Recursive));
533 EXPECT_TRUE(matches("class M { class N { class B {}; }; };", Recursive));
534 EXPECT_TRUE(
535 matches("class O1 { class O2 {"
536 " class M { class N { class B {}; }; }; "
537 "}; };", Recursive));
538}
539
540TEST(DeclarationMatcher, MatchNot) {
541 DeclarationMatcher NotClassX =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000542 recordDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +0000543 isDerivedFrom("Y"),
Manuel Klimek4da21662012-07-06 05:48:52 +0000544 unless(hasName("X")));
545 EXPECT_TRUE(notMatches("", NotClassX));
546 EXPECT_TRUE(notMatches("class Y {};", NotClassX));
547 EXPECT_TRUE(matches("class Y {}; class Z : public Y {};", NotClassX));
548 EXPECT_TRUE(notMatches("class Y {}; class X : public Y {};", NotClassX));
549 EXPECT_TRUE(
550 notMatches("class Y {}; class Z {}; class X : public Y {};",
551 NotClassX));
552
553 DeclarationMatcher ClassXHasNotClassY =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000554 recordDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +0000555 hasName("X"),
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000556 has(recordDecl(hasName("Z"))),
Manuel Klimek4da21662012-07-06 05:48:52 +0000557 unless(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000558 has(recordDecl(hasName("Y")))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000559 EXPECT_TRUE(matches("class X { class Z {}; };", ClassXHasNotClassY));
560 EXPECT_TRUE(notMatches("class X { class Y {}; class Z {}; };",
561 ClassXHasNotClassY));
562}
563
564TEST(DeclarationMatcher, HasDescendant) {
565 DeclarationMatcher ZDescendantClassX =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000566 recordDecl(
567 hasDescendant(recordDecl(hasName("X"))),
Manuel Klimek4da21662012-07-06 05:48:52 +0000568 hasName("Z"));
569 EXPECT_TRUE(matches("class Z { class X {}; };", ZDescendantClassX));
570 EXPECT_TRUE(
571 matches("class Z { class Y { class X {}; }; };", ZDescendantClassX));
572 EXPECT_TRUE(
573 matches("class Z { class A { class Y { class X {}; }; }; };",
574 ZDescendantClassX));
575 EXPECT_TRUE(
576 matches("class Z { class A { class B { class Y { class X {}; }; }; }; };",
577 ZDescendantClassX));
578 EXPECT_TRUE(notMatches("class Z {};", ZDescendantClassX));
579
580 DeclarationMatcher ZDescendantClassXHasClassY =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000581 recordDecl(
582 hasDescendant(recordDecl(has(recordDecl(hasName("Y"))),
Manuel Klimek4da21662012-07-06 05:48:52 +0000583 hasName("X"))),
584 hasName("Z"));
585 EXPECT_TRUE(matches("class Z { class X { class Y {}; }; };",
586 ZDescendantClassXHasClassY));
587 EXPECT_TRUE(
588 matches("class Z { class A { class B { class X { class Y {}; }; }; }; };",
589 ZDescendantClassXHasClassY));
590 EXPECT_TRUE(notMatches(
591 "class Z {"
592 " class A {"
593 " class B {"
594 " class X {"
595 " class C {"
596 " class Y {};"
597 " };"
598 " };"
599 " }; "
600 " };"
601 "};", ZDescendantClassXHasClassY));
602
603 DeclarationMatcher ZDescendantClassXDescendantClassY =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000604 recordDecl(
605 hasDescendant(recordDecl(hasDescendant(recordDecl(hasName("Y"))),
606 hasName("X"))),
Manuel Klimek4da21662012-07-06 05:48:52 +0000607 hasName("Z"));
608 EXPECT_TRUE(
609 matches("class Z { class A { class X { class B { class Y {}; }; }; }; };",
610 ZDescendantClassXDescendantClassY));
611 EXPECT_TRUE(matches(
612 "class Z {"
613 " class A {"
614 " class X {"
615 " class B {"
616 " class Y {};"
617 " };"
618 " class Y {};"
619 " };"
620 " };"
621 "};", ZDescendantClassXDescendantClassY));
622}
623
Daniel Jaspera267cf62012-10-29 10:14:44 +0000624// Implements a run method that returns whether BoundNodes contains a
625// Decl bound to Id that can be dynamically cast to T.
626// Optionally checks that the check succeeded a specific number of times.
627template <typename T>
628class VerifyIdIsBoundTo : public BoundNodesCallback {
629public:
630 // Create an object that checks that a node of type \c T was bound to \c Id.
631 // Does not check for a certain number of matches.
632 explicit VerifyIdIsBoundTo(llvm::StringRef Id)
633 : Id(Id), ExpectedCount(-1), Count(0) {}
634
635 // Create an object that checks that a node of type \c T was bound to \c Id.
636 // Checks that there were exactly \c ExpectedCount matches.
637 VerifyIdIsBoundTo(llvm::StringRef Id, int ExpectedCount)
638 : Id(Id), ExpectedCount(ExpectedCount), Count(0) {}
639
640 // Create an object that checks that a node of type \c T was bound to \c Id.
641 // Checks that there was exactly one match with the name \c ExpectedName.
642 // Note that \c T must be a NamedDecl for this to work.
Manuel Klimek374516c2013-03-14 16:33:21 +0000643 VerifyIdIsBoundTo(llvm::StringRef Id, llvm::StringRef ExpectedName,
644 int ExpectedCount = 1)
645 : Id(Id), ExpectedCount(ExpectedCount), Count(0),
646 ExpectedName(ExpectedName) {}
Daniel Jaspera267cf62012-10-29 10:14:44 +0000647
648 ~VerifyIdIsBoundTo() {
649 if (ExpectedCount != -1)
650 EXPECT_EQ(ExpectedCount, Count);
651 if (!ExpectedName.empty())
652 EXPECT_EQ(ExpectedName, Name);
653 }
654
655 virtual bool run(const BoundNodes *Nodes) {
656 if (Nodes->getNodeAs<T>(Id)) {
657 ++Count;
658 if (const NamedDecl *Named = Nodes->getNodeAs<NamedDecl>(Id)) {
659 Name = Named->getNameAsString();
660 } else if (const NestedNameSpecifier *NNS =
661 Nodes->getNodeAs<NestedNameSpecifier>(Id)) {
662 llvm::raw_string_ostream OS(Name);
663 NNS->print(OS, PrintingPolicy(LangOptions()));
664 }
665 return true;
666 }
667 return false;
668 }
669
Daniel Jasper452abbc2012-10-29 10:48:25 +0000670 virtual bool run(const BoundNodes *Nodes, ASTContext *Context) {
671 return run(Nodes);
672 }
673
Daniel Jaspera267cf62012-10-29 10:14:44 +0000674private:
675 const std::string Id;
676 const int ExpectedCount;
677 int Count;
678 const std::string ExpectedName;
679 std::string Name;
680};
681
682TEST(HasDescendant, MatchesDescendantTypes) {
683 EXPECT_TRUE(matches("void f() { int i = 3; }",
684 decl(hasDescendant(loc(builtinType())))));
685 EXPECT_TRUE(matches("void f() { int i = 3; }",
686 stmt(hasDescendant(builtinType()))));
687
688 EXPECT_TRUE(matches("void f() { int i = 3; }",
689 stmt(hasDescendant(loc(builtinType())))));
690 EXPECT_TRUE(matches("void f() { int i = 3; }",
691 stmt(hasDescendant(qualType(builtinType())))));
692
693 EXPECT_TRUE(notMatches("void f() { float f = 2.0f; }",
694 stmt(hasDescendant(isInteger()))));
695
696 EXPECT_TRUE(matchAndVerifyResultTrue(
697 "void f() { int a; float c; int d; int e; }",
698 functionDecl(forEachDescendant(
699 varDecl(hasDescendant(isInteger())).bind("x"))),
700 new VerifyIdIsBoundTo<Decl>("x", 3)));
701}
702
703TEST(HasDescendant, MatchesDescendantsOfTypes) {
704 EXPECT_TRUE(matches("void f() { int*** i; }",
705 qualType(hasDescendant(builtinType()))));
706 EXPECT_TRUE(matches("void f() { int*** i; }",
707 qualType(hasDescendant(
708 pointerType(pointee(builtinType()))))));
709 EXPECT_TRUE(matches("void f() { int*** i; }",
David Blaikie5be093c2013-02-18 19:04:16 +0000710 typeLoc(hasDescendant(loc(builtinType())))));
Daniel Jaspera267cf62012-10-29 10:14:44 +0000711
712 EXPECT_TRUE(matchAndVerifyResultTrue(
713 "void f() { int*** i; }",
714 qualType(asString("int ***"), forEachDescendant(pointerType().bind("x"))),
715 new VerifyIdIsBoundTo<Type>("x", 2)));
716}
717
718TEST(Has, MatchesChildrenOfTypes) {
719 EXPECT_TRUE(matches("int i;",
720 varDecl(hasName("i"), has(isInteger()))));
721 EXPECT_TRUE(notMatches("int** i;",
722 varDecl(hasName("i"), has(isInteger()))));
723 EXPECT_TRUE(matchAndVerifyResultTrue(
724 "int (*f)(float, int);",
725 qualType(functionType(), forEach(qualType(isInteger()).bind("x"))),
726 new VerifyIdIsBoundTo<QualType>("x", 2)));
727}
728
729TEST(Has, MatchesChildTypes) {
730 EXPECT_TRUE(matches(
731 "int* i;",
732 varDecl(hasName("i"), hasType(qualType(has(builtinType()))))));
733 EXPECT_TRUE(notMatches(
734 "int* i;",
735 varDecl(hasName("i"), hasType(qualType(has(pointerType()))))));
736}
737
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000738TEST(Enum, DoesNotMatchClasses) {
739 EXPECT_TRUE(notMatches("class X {};", enumDecl(hasName("X"))));
740}
741
742TEST(Enum, MatchesEnums) {
743 EXPECT_TRUE(matches("enum X {};", enumDecl(hasName("X"))));
744}
745
746TEST(EnumConstant, Matches) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000747 DeclarationMatcher Matcher = enumConstantDecl(hasName("A"));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000748 EXPECT_TRUE(matches("enum X{ A };", Matcher));
749 EXPECT_TRUE(notMatches("enum X{ B };", Matcher));
750 EXPECT_TRUE(notMatches("enum X {};", Matcher));
751}
752
Manuel Klimek4da21662012-07-06 05:48:52 +0000753TEST(StatementMatcher, Has) {
754 StatementMatcher HasVariableI =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000755 expr(hasType(pointsTo(recordDecl(hasName("X")))),
756 has(declRefExpr(to(varDecl(hasName("i"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000757
758 EXPECT_TRUE(matches(
759 "class X; X *x(int); void c() { int i; x(i); }", HasVariableI));
760 EXPECT_TRUE(notMatches(
761 "class X; X *x(int); void c() { int i; x(42); }", HasVariableI));
762}
763
764TEST(StatementMatcher, HasDescendant) {
765 StatementMatcher HasDescendantVariableI =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000766 expr(hasType(pointsTo(recordDecl(hasName("X")))),
767 hasDescendant(declRefExpr(to(varDecl(hasName("i"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000768
769 EXPECT_TRUE(matches(
770 "class X; X *x(bool); bool b(int); void c() { int i; x(b(i)); }",
771 HasDescendantVariableI));
772 EXPECT_TRUE(notMatches(
773 "class X; X *x(bool); bool b(int); void c() { int i; x(b(42)); }",
774 HasDescendantVariableI));
775}
776
777TEST(TypeMatcher, MatchesClassType) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000778 TypeMatcher TypeA = hasDeclaration(recordDecl(hasName("A")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000779
780 EXPECT_TRUE(matches("class A { public: A *a; };", TypeA));
781 EXPECT_TRUE(notMatches("class A {};", TypeA));
782
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000783 TypeMatcher TypeDerivedFromA = hasDeclaration(recordDecl(isDerivedFrom("A")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000784
785 EXPECT_TRUE(matches("class A {}; class B : public A { public: B *b; };",
786 TypeDerivedFromA));
787 EXPECT_TRUE(notMatches("class A {};", TypeA));
788
789 TypeMatcher TypeAHasClassB = hasDeclaration(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000790 recordDecl(hasName("A"), has(recordDecl(hasName("B")))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000791
792 EXPECT_TRUE(
793 matches("class A { public: A *a; class B {}; };", TypeAHasClassB));
794}
795
Manuel Klimek4da21662012-07-06 05:48:52 +0000796TEST(Matcher, BindMatchedNodes) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000797 DeclarationMatcher ClassX = has(recordDecl(hasName("::X")).bind("x"));
Manuel Klimek4da21662012-07-06 05:48:52 +0000798
799 EXPECT_TRUE(matchAndVerifyResultTrue("class X {};",
Daniel Jaspera7564432012-09-13 13:11:25 +0000800 ClassX, new VerifyIdIsBoundTo<CXXRecordDecl>("x")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000801
802 EXPECT_TRUE(matchAndVerifyResultFalse("class X {};",
Daniel Jaspera7564432012-09-13 13:11:25 +0000803 ClassX, new VerifyIdIsBoundTo<CXXRecordDecl>("other-id")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000804
805 TypeMatcher TypeAHasClassB = hasDeclaration(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000806 recordDecl(hasName("A"), has(recordDecl(hasName("B")).bind("b"))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000807
808 EXPECT_TRUE(matchAndVerifyResultTrue("class A { public: A *a; class B {}; };",
809 TypeAHasClassB,
Daniel Jaspera7564432012-09-13 13:11:25 +0000810 new VerifyIdIsBoundTo<Decl>("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000811
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000812 StatementMatcher MethodX =
813 callExpr(callee(methodDecl(hasName("x")))).bind("x");
Manuel Klimek4da21662012-07-06 05:48:52 +0000814
815 EXPECT_TRUE(matchAndVerifyResultTrue("class A { void x() { x(); } };",
816 MethodX,
Daniel Jaspera7564432012-09-13 13:11:25 +0000817 new VerifyIdIsBoundTo<CXXMemberCallExpr>("x")));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000818}
819
820TEST(Matcher, BindTheSameNameInAlternatives) {
821 StatementMatcher matcher = anyOf(
822 binaryOperator(hasOperatorName("+"),
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000823 hasLHS(expr().bind("x")),
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000824 hasRHS(integerLiteral(equals(0)))),
825 binaryOperator(hasOperatorName("+"),
826 hasLHS(integerLiteral(equals(0))),
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000827 hasRHS(expr().bind("x"))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000828
829 EXPECT_TRUE(matchAndVerifyResultTrue(
830 // The first branch of the matcher binds x to 0 but then fails.
831 // The second branch binds x to f() and succeeds.
832 "int f() { return 0 + f(); }",
833 matcher,
Daniel Jaspera7564432012-09-13 13:11:25 +0000834 new VerifyIdIsBoundTo<CallExpr>("x")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000835}
836
Manuel Klimek66341c52012-08-30 19:41:06 +0000837TEST(Matcher, BindsIDForMemoizedResults) {
838 // Using the same matcher in two match expressions will make memoization
839 // kick in.
840 DeclarationMatcher ClassX = recordDecl(hasName("X")).bind("x");
841 EXPECT_TRUE(matchAndVerifyResultTrue(
842 "class A { class B { class X {}; }; };",
843 DeclarationMatcher(anyOf(
844 recordDecl(hasName("A"), hasDescendant(ClassX)),
845 recordDecl(hasName("B"), hasDescendant(ClassX)))),
Daniel Jaspera7564432012-09-13 13:11:25 +0000846 new VerifyIdIsBoundTo<Decl>("x", 2)));
Manuel Klimek66341c52012-08-30 19:41:06 +0000847}
848
Daniel Jasper189f2e42012-12-03 15:43:25 +0000849TEST(HasDeclaration, HasDeclarationOfEnumType) {
850 EXPECT_TRUE(matches("enum X {}; void y(X *x) { x; }",
851 expr(hasType(pointsTo(
852 qualType(hasDeclaration(enumDecl(hasName("X")))))))));
853}
854
Edwin Vaneb45083d2013-02-25 14:32:42 +0000855TEST(HasDeclaration, HasGetDeclTraitTest) {
856 EXPECT_TRUE(internal::has_getDecl<TypedefType>::value);
857 EXPECT_TRUE(internal::has_getDecl<RecordType>::value);
858 EXPECT_FALSE(internal::has_getDecl<TemplateSpecializationType>::value);
859}
860
Edwin Vane52380602013-02-19 17:14:34 +0000861TEST(HasDeclaration, HasDeclarationOfTypeWithDecl) {
862 EXPECT_TRUE(matches("typedef int X; X a;",
863 varDecl(hasName("a"),
864 hasType(typedefType(hasDeclaration(decl()))))));
865
866 // FIXME: Add tests for other types with getDecl() (e.g. RecordType)
867}
868
Edwin Vane3abf7782013-02-25 14:49:29 +0000869TEST(HasDeclaration, HasDeclarationOfTemplateSpecializationType) {
870 EXPECT_TRUE(matches("template <typename T> class A {}; A<int> a;",
871 varDecl(hasType(templateSpecializationType(
872 hasDeclaration(namedDecl(hasName("A"))))))));
873}
874
Manuel Klimek4da21662012-07-06 05:48:52 +0000875TEST(HasType, TakesQualTypeMatcherAndMatchesExpr) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000876 TypeMatcher ClassX = hasDeclaration(recordDecl(hasName("X")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000877 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000878 matches("class X {}; void y(X &x) { x; }", expr(hasType(ClassX))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000879 EXPECT_TRUE(
880 notMatches("class X {}; void y(X *x) { x; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000881 expr(hasType(ClassX))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000882 EXPECT_TRUE(
883 matches("class X {}; void y(X *x) { x; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000884 expr(hasType(pointsTo(ClassX)))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000885}
886
887TEST(HasType, TakesQualTypeMatcherAndMatchesValueDecl) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000888 TypeMatcher ClassX = hasDeclaration(recordDecl(hasName("X")));
Manuel Klimek4da21662012-07-06 05:48:52 +0000889 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000890 matches("class X {}; void y() { X x; }", varDecl(hasType(ClassX))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000891 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000892 notMatches("class X {}; void y() { X *x; }", varDecl(hasType(ClassX))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000893 EXPECT_TRUE(
894 matches("class X {}; void y() { X *x; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000895 varDecl(hasType(pointsTo(ClassX)))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000896}
897
898TEST(HasType, TakesDeclMatcherAndMatchesExpr) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000899 DeclarationMatcher ClassX = recordDecl(hasName("X"));
Manuel Klimek4da21662012-07-06 05:48:52 +0000900 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000901 matches("class X {}; void y(X &x) { x; }", expr(hasType(ClassX))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000902 EXPECT_TRUE(
903 notMatches("class X {}; void y(X *x) { x; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000904 expr(hasType(ClassX))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000905}
906
907TEST(HasType, TakesDeclMatcherAndMatchesValueDecl) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000908 DeclarationMatcher ClassX = recordDecl(hasName("X"));
Manuel Klimek4da21662012-07-06 05:48:52 +0000909 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000910 matches("class X {}; void y() { X x; }", varDecl(hasType(ClassX))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000911 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000912 notMatches("class X {}; void y() { X *x; }", varDecl(hasType(ClassX))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000913}
914
915TEST(Matcher, Call) {
916 // FIXME: Do we want to overload Call() to directly take
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000917 // Matcher<Decl>, too?
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000918 StatementMatcher MethodX = callExpr(hasDeclaration(methodDecl(hasName("x"))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000919
920 EXPECT_TRUE(matches("class Y { void x() { x(); } };", MethodX));
921 EXPECT_TRUE(notMatches("class Y { void x() {} };", MethodX));
922
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000923 StatementMatcher MethodOnY =
924 memberCallExpr(on(hasType(recordDecl(hasName("Y")))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000925
926 EXPECT_TRUE(
927 matches("class Y { public: void x(); }; void z() { Y y; y.x(); }",
928 MethodOnY));
929 EXPECT_TRUE(
930 matches("class Y { public: void x(); }; void z(Y &y) { y.x(); }",
931 MethodOnY));
932 EXPECT_TRUE(
933 notMatches("class Y { public: void x(); }; void z(Y *&y) { y->x(); }",
934 MethodOnY));
935 EXPECT_TRUE(
936 notMatches("class Y { public: void x(); }; void z(Y y[]) { y->x(); }",
937 MethodOnY));
938 EXPECT_TRUE(
939 notMatches("class Y { public: void x(); }; void z() { Y *y; y->x(); }",
940 MethodOnY));
941
942 StatementMatcher MethodOnYPointer =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000943 memberCallExpr(on(hasType(pointsTo(recordDecl(hasName("Y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000944
945 EXPECT_TRUE(
946 matches("class Y { public: void x(); }; void z() { Y *y; y->x(); }",
947 MethodOnYPointer));
948 EXPECT_TRUE(
949 matches("class Y { public: void x(); }; void z(Y *&y) { y->x(); }",
950 MethodOnYPointer));
951 EXPECT_TRUE(
952 matches("class Y { public: void x(); }; void z(Y y[]) { y->x(); }",
953 MethodOnYPointer));
954 EXPECT_TRUE(
955 notMatches("class Y { public: void x(); }; void z() { Y y; y.x(); }",
956 MethodOnYPointer));
957 EXPECT_TRUE(
958 notMatches("class Y { public: void x(); }; void z(Y &y) { y.x(); }",
959 MethodOnYPointer));
960}
961
Daniel Jasper31f7c082012-10-01 13:40:41 +0000962TEST(Matcher, Lambda) {
963 EXPECT_TRUE(matches("auto f = [&] (int i) { return i; };",
964 lambdaExpr()));
965}
966
967TEST(Matcher, ForRange) {
Daniel Jasper1a00fee2012-10-01 15:05:34 +0000968 EXPECT_TRUE(matches("int as[] = { 1, 2, 3 };"
969 "void f() { for (auto &a : as); }",
Daniel Jasper31f7c082012-10-01 13:40:41 +0000970 forRangeStmt()));
971 EXPECT_TRUE(notMatches("void f() { for (int i; i<5; ++i); }",
972 forRangeStmt()));
973}
974
975TEST(Matcher, UserDefinedLiteral) {
976 EXPECT_TRUE(matches("constexpr char operator \"\" _inc (const char i) {"
977 " return i + 1;"
978 "}"
979 "char c = 'a'_inc;",
980 userDefinedLiteral()));
981}
982
Daniel Jasperb54b7642012-09-20 14:12:57 +0000983TEST(Matcher, FlowControl) {
984 EXPECT_TRUE(matches("void f() { while(true) { break; } }", breakStmt()));
985 EXPECT_TRUE(matches("void f() { while(true) { continue; } }",
986 continueStmt()));
987 EXPECT_TRUE(matches("void f() { goto FOO; FOO: ;}", gotoStmt()));
988 EXPECT_TRUE(matches("void f() { goto FOO; FOO: ;}", labelStmt()));
989 EXPECT_TRUE(matches("void f() { return; }", returnStmt()));
990}
991
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000992TEST(HasType, MatchesAsString) {
993 EXPECT_TRUE(
994 matches("class Y { public: void x(); }; void z() {Y* y; y->x(); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000995 memberCallExpr(on(hasType(asString("class Y *"))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000996 EXPECT_TRUE(matches("class X { void x(int x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000997 methodDecl(hasParameter(0, hasType(asString("int"))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000998 EXPECT_TRUE(matches("namespace ns { struct A {}; } struct B { ns::A a; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000999 fieldDecl(hasType(asString("ns::A")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001000 EXPECT_TRUE(matches("namespace { struct A {}; } struct B { A a; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001001 fieldDecl(hasType(asString("struct <anonymous>::A")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001002}
1003
Manuel Klimek4da21662012-07-06 05:48:52 +00001004TEST(Matcher, OverloadedOperatorCall) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001005 StatementMatcher OpCall = operatorCallExpr();
Manuel Klimek4da21662012-07-06 05:48:52 +00001006 // Unary operator
1007 EXPECT_TRUE(matches("class Y { }; "
1008 "bool operator!(Y x) { return false; }; "
1009 "Y y; bool c = !y;", OpCall));
1010 // No match -- special operators like "new", "delete"
1011 // FIXME: operator new takes size_t, for which we need stddef.h, for which
1012 // we need to figure out include paths in the test.
1013 // EXPECT_TRUE(NotMatches("#include <stddef.h>\n"
1014 // "class Y { }; "
1015 // "void *operator new(size_t size) { return 0; } "
1016 // "Y *y = new Y;", OpCall));
1017 EXPECT_TRUE(notMatches("class Y { }; "
1018 "void operator delete(void *p) { } "
1019 "void a() {Y *y = new Y; delete y;}", OpCall));
1020 // Binary operator
1021 EXPECT_TRUE(matches("class Y { }; "
1022 "bool operator&&(Y x, Y y) { return true; }; "
1023 "Y a; Y b; bool c = a && b;",
1024 OpCall));
1025 // No match -- normal operator, not an overloaded one.
1026 EXPECT_TRUE(notMatches("bool x = true, y = true; bool t = x && y;", OpCall));
1027 EXPECT_TRUE(notMatches("int t = 5 << 2;", OpCall));
1028}
1029
1030TEST(Matcher, HasOperatorNameForOverloadedOperatorCall) {
1031 StatementMatcher OpCallAndAnd =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001032 operatorCallExpr(hasOverloadedOperatorName("&&"));
Manuel Klimek4da21662012-07-06 05:48:52 +00001033 EXPECT_TRUE(matches("class Y { }; "
1034 "bool operator&&(Y x, Y y) { return true; }; "
1035 "Y a; Y b; bool c = a && b;", OpCallAndAnd));
1036 StatementMatcher OpCallLessLess =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001037 operatorCallExpr(hasOverloadedOperatorName("<<"));
Manuel Klimek4da21662012-07-06 05:48:52 +00001038 EXPECT_TRUE(notMatches("class Y { }; "
1039 "bool operator&&(Y x, Y y) { return true; }; "
1040 "Y a; Y b; bool c = a && b;",
1041 OpCallLessLess));
Edwin Vane6a19a972013-03-06 17:02:57 +00001042 DeclarationMatcher ClassWithOpStar =
1043 recordDecl(hasMethod(hasOverloadedOperatorName("*")));
1044 EXPECT_TRUE(matches("class Y { int operator*(); };",
1045 ClassWithOpStar));
1046 EXPECT_TRUE(notMatches("class Y { void myOperator(); };",
1047 ClassWithOpStar)) ;
Manuel Klimek4da21662012-07-06 05:48:52 +00001048}
1049
Daniel Jasper278057f2012-11-15 03:29:05 +00001050TEST(Matcher, NestedOverloadedOperatorCalls) {
1051 EXPECT_TRUE(matchAndVerifyResultTrue(
1052 "class Y { }; "
1053 "Y& operator&&(Y& x, Y& y) { return x; }; "
1054 "Y a; Y b; Y c; Y d = a && b && c;",
1055 operatorCallExpr(hasOverloadedOperatorName("&&")).bind("x"),
1056 new VerifyIdIsBoundTo<CXXOperatorCallExpr>("x", 2)));
1057 EXPECT_TRUE(matches(
1058 "class Y { }; "
1059 "Y& operator&&(Y& x, Y& y) { return x; }; "
1060 "Y a; Y b; Y c; Y d = a && b && c;",
1061 operatorCallExpr(hasParent(operatorCallExpr()))));
1062 EXPECT_TRUE(matches(
1063 "class Y { }; "
1064 "Y& operator&&(Y& x, Y& y) { return x; }; "
1065 "Y a; Y b; Y c; Y d = a && b && c;",
1066 operatorCallExpr(hasDescendant(operatorCallExpr()))));
1067}
1068
Manuel Klimek4da21662012-07-06 05:48:52 +00001069TEST(Matcher, ThisPointerType) {
Manuel Klimek9f174082012-07-24 13:37:29 +00001070 StatementMatcher MethodOnY =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001071 memberCallExpr(thisPointerType(recordDecl(hasName("Y"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001072
1073 EXPECT_TRUE(
1074 matches("class Y { public: void x(); }; void z() { Y y; y.x(); }",
1075 MethodOnY));
1076 EXPECT_TRUE(
1077 matches("class Y { public: void x(); }; void z(Y &y) { y.x(); }",
1078 MethodOnY));
1079 EXPECT_TRUE(
1080 matches("class Y { public: void x(); }; void z(Y *&y) { y->x(); }",
1081 MethodOnY));
1082 EXPECT_TRUE(
1083 matches("class Y { public: void x(); }; void z(Y y[]) { y->x(); }",
1084 MethodOnY));
1085 EXPECT_TRUE(
1086 matches("class Y { public: void x(); }; void z() { Y *y; y->x(); }",
1087 MethodOnY));
1088
1089 EXPECT_TRUE(matches(
1090 "class Y {"
1091 " public: virtual void x();"
1092 "};"
1093 "class X : public Y {"
1094 " public: virtual void x();"
1095 "};"
1096 "void z() { X *x; x->Y::x(); }", MethodOnY));
1097}
1098
1099TEST(Matcher, VariableUsage) {
1100 StatementMatcher Reference =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001101 declRefExpr(to(
1102 varDecl(hasInitializer(
1103 memberCallExpr(thisPointerType(recordDecl(hasName("Y"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001104
1105 EXPECT_TRUE(matches(
1106 "class Y {"
1107 " public:"
1108 " bool x() const;"
1109 "};"
1110 "void z(const Y &y) {"
1111 " bool b = y.x();"
1112 " if (b) {}"
1113 "}", Reference));
1114
1115 EXPECT_TRUE(notMatches(
1116 "class Y {"
1117 " public:"
1118 " bool x() const;"
1119 "};"
1120 "void z(const Y &y) {"
1121 " bool b = y.x();"
1122 "}", Reference));
1123}
1124
Manuel Klimek8cb9bf52012-12-04 14:42:08 +00001125TEST(Matcher, FindsVarDeclInFunctionParameter) {
Daniel Jasper9bd28092012-07-30 05:03:25 +00001126 EXPECT_TRUE(matches(
1127 "void f(int i) {}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001128 varDecl(hasName("i"))));
Daniel Jasper9bd28092012-07-30 05:03:25 +00001129}
1130
Manuel Klimek4da21662012-07-06 05:48:52 +00001131TEST(Matcher, CalledVariable) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001132 StatementMatcher CallOnVariableY =
1133 memberCallExpr(on(declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001134
1135 EXPECT_TRUE(matches(
1136 "class Y { public: void x() { Y y; y.x(); } };", CallOnVariableY));
1137 EXPECT_TRUE(matches(
1138 "class Y { public: void x() const { Y y; y.x(); } };", CallOnVariableY));
1139 EXPECT_TRUE(matches(
1140 "class Y { public: void x(); };"
1141 "class X : public Y { void z() { X y; y.x(); } };", CallOnVariableY));
1142 EXPECT_TRUE(matches(
1143 "class Y { public: void x(); };"
1144 "class X : public Y { void z() { X *y; y->x(); } };", CallOnVariableY));
1145 EXPECT_TRUE(notMatches(
1146 "class Y { public: void x(); };"
1147 "class X : public Y { void z() { unsigned long y; ((X*)y)->x(); } };",
1148 CallOnVariableY));
1149}
1150
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001151TEST(UnaryExprOrTypeTraitExpr, MatchesSizeOfAndAlignOf) {
1152 EXPECT_TRUE(matches("void x() { int a = sizeof(a); }",
1153 unaryExprOrTypeTraitExpr()));
1154 EXPECT_TRUE(notMatches("void x() { int a = sizeof(a); }",
1155 alignOfExpr(anything())));
1156 // FIXME: Uncomment once alignof is enabled.
1157 // EXPECT_TRUE(matches("void x() { int a = alignof(a); }",
1158 // unaryExprOrTypeTraitExpr()));
1159 // EXPECT_TRUE(notMatches("void x() { int a = alignof(a); }",
1160 // sizeOfExpr()));
1161}
1162
1163TEST(UnaryExpressionOrTypeTraitExpression, MatchesCorrectType) {
1164 EXPECT_TRUE(matches("void x() { int a = sizeof(a); }", sizeOfExpr(
1165 hasArgumentOfType(asString("int")))));
1166 EXPECT_TRUE(notMatches("void x() { int a = sizeof(a); }", sizeOfExpr(
1167 hasArgumentOfType(asString("float")))));
1168 EXPECT_TRUE(matches(
1169 "struct A {}; void x() { A a; int b = sizeof(a); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001170 sizeOfExpr(hasArgumentOfType(hasDeclaration(recordDecl(hasName("A")))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001171 EXPECT_TRUE(notMatches("void x() { int a = sizeof(a); }", sizeOfExpr(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001172 hasArgumentOfType(hasDeclaration(recordDecl(hasName("string")))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001173}
1174
Manuel Klimek4da21662012-07-06 05:48:52 +00001175TEST(MemberExpression, DoesNotMatchClasses) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001176 EXPECT_TRUE(notMatches("class Y { void x() {} };", memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001177}
1178
1179TEST(MemberExpression, MatchesMemberFunctionCall) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001180 EXPECT_TRUE(matches("class Y { void x() { x(); } };", memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001181}
1182
1183TEST(MemberExpression, MatchesVariable) {
1184 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001185 matches("class Y { void x() { this->y; } int y; };", memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001186 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001187 matches("class Y { void x() { y; } int y; };", memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001188 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001189 matches("class Y { void x() { Y y; y.y; } int y; };", memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001190}
1191
1192TEST(MemberExpression, MatchesStaticVariable) {
1193 EXPECT_TRUE(matches("class Y { void x() { this->y; } static int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001194 memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001195 EXPECT_TRUE(notMatches("class Y { void x() { y; } static int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001196 memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001197 EXPECT_TRUE(notMatches("class Y { void x() { Y::y; } static int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001198 memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001199}
1200
Daniel Jasper6a124492012-07-12 08:50:38 +00001201TEST(IsInteger, MatchesIntegers) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001202 EXPECT_TRUE(matches("int i = 0;", varDecl(hasType(isInteger()))));
1203 EXPECT_TRUE(matches(
1204 "long long i = 0; void f(long long) { }; void g() {f(i);}",
1205 callExpr(hasArgument(0, declRefExpr(
1206 to(varDecl(hasType(isInteger()))))))));
Daniel Jasper6a124492012-07-12 08:50:38 +00001207}
1208
1209TEST(IsInteger, ReportsNoFalsePositives) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001210 EXPECT_TRUE(notMatches("int *i;", varDecl(hasType(isInteger()))));
Daniel Jasper6a124492012-07-12 08:50:38 +00001211 EXPECT_TRUE(notMatches("struct T {}; T t; void f(T *) { }; void g() {f(&t);}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001212 callExpr(hasArgument(0, declRefExpr(
1213 to(varDecl(hasType(isInteger()))))))));
Daniel Jasper6a124492012-07-12 08:50:38 +00001214}
1215
Manuel Klimek4da21662012-07-06 05:48:52 +00001216TEST(IsArrow, MatchesMemberVariablesViaArrow) {
1217 EXPECT_TRUE(matches("class Y { void x() { this->y; } int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001218 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001219 EXPECT_TRUE(matches("class Y { void x() { y; } int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001220 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001221 EXPECT_TRUE(notMatches("class Y { void x() { (*this).y; } int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001222 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001223}
1224
1225TEST(IsArrow, MatchesStaticMemberVariablesViaArrow) {
1226 EXPECT_TRUE(matches("class Y { void x() { this->y; } static int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001227 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001228 EXPECT_TRUE(notMatches("class Y { void x() { y; } static int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001229 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001230 EXPECT_TRUE(notMatches("class Y { void x() { (*this).y; } static int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001231 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001232}
1233
1234TEST(IsArrow, MatchesMemberCallsViaArrow) {
1235 EXPECT_TRUE(matches("class Y { void x() { this->x(); } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001236 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001237 EXPECT_TRUE(matches("class Y { void x() { x(); } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001238 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001239 EXPECT_TRUE(notMatches("class Y { void x() { Y y; y.x(); } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001240 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001241}
1242
1243TEST(Callee, MatchesDeclarations) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001244 StatementMatcher CallMethodX = callExpr(callee(methodDecl(hasName("x"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001245
1246 EXPECT_TRUE(matches("class Y { void x() { x(); } };", CallMethodX));
1247 EXPECT_TRUE(notMatches("class Y { void x() {} };", CallMethodX));
1248}
1249
1250TEST(Callee, MatchesMemberExpressions) {
1251 EXPECT_TRUE(matches("class Y { void x() { this->x(); } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001252 callExpr(callee(memberExpr()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001253 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001254 notMatches("class Y { void x() { this->x(); } };", callExpr(callee(callExpr()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001255}
1256
1257TEST(Function, MatchesFunctionDeclarations) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001258 StatementMatcher CallFunctionF = callExpr(callee(functionDecl(hasName("f"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001259
1260 EXPECT_TRUE(matches("void f() { f(); }", CallFunctionF));
1261 EXPECT_TRUE(notMatches("void f() { }", CallFunctionF));
1262
Manuel Klimeke265c872012-07-10 14:21:30 +00001263#if !defined(_MSC_VER)
1264 // FIXME: Make this work for MSVC.
Manuel Klimek4da21662012-07-06 05:48:52 +00001265 // Dependent contexts, but a non-dependent call.
1266 EXPECT_TRUE(matches("void f(); template <int N> void g() { f(); }",
1267 CallFunctionF));
1268 EXPECT_TRUE(
1269 matches("void f(); template <int N> struct S { void g() { f(); } };",
1270 CallFunctionF));
Manuel Klimeke265c872012-07-10 14:21:30 +00001271#endif
Manuel Klimek4da21662012-07-06 05:48:52 +00001272
1273 // Depedent calls don't match.
1274 EXPECT_TRUE(
1275 notMatches("void f(int); template <typename T> void g(T t) { f(t); }",
1276 CallFunctionF));
1277 EXPECT_TRUE(
1278 notMatches("void f(int);"
1279 "template <typename T> struct S { void g(T t) { f(t); } };",
1280 CallFunctionF));
1281}
1282
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00001283TEST(FunctionTemplate, MatchesFunctionTemplateDeclarations) {
1284 EXPECT_TRUE(
1285 matches("template <typename T> void f(T t) {}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001286 functionTemplateDecl(hasName("f"))));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00001287}
1288
1289TEST(FunctionTemplate, DoesNotMatchFunctionDeclarations) {
1290 EXPECT_TRUE(
1291 notMatches("void f(double d); void f(int t) {}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001292 functionTemplateDecl(hasName("f"))));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00001293}
1294
1295TEST(FunctionTemplate, DoesNotMatchFunctionTemplateSpecializations) {
1296 EXPECT_TRUE(
1297 notMatches("void g(); template <typename T> void f(T t) {}"
1298 "template <> void f(int t) { g(); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001299 functionTemplateDecl(hasName("f"),
1300 hasDescendant(declRefExpr(to(
1301 functionDecl(hasName("g"))))))));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00001302}
1303
Manuel Klimek4da21662012-07-06 05:48:52 +00001304TEST(Matcher, Argument) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001305 StatementMatcher CallArgumentY = callExpr(
1306 hasArgument(0, declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001307
1308 EXPECT_TRUE(matches("void x(int) { int y; x(y); }", CallArgumentY));
1309 EXPECT_TRUE(
1310 matches("class X { void x(int) { int y; x(y); } };", CallArgumentY));
1311 EXPECT_TRUE(notMatches("void x(int) { int z; x(z); }", CallArgumentY));
1312
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001313 StatementMatcher WrongIndex = callExpr(
1314 hasArgument(42, declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001315 EXPECT_TRUE(notMatches("void x(int) { int y; x(y); }", WrongIndex));
1316}
1317
1318TEST(Matcher, AnyArgument) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001319 StatementMatcher CallArgumentY = callExpr(
1320 hasAnyArgument(declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001321 EXPECT_TRUE(matches("void x(int, int) { int y; x(1, y); }", CallArgumentY));
1322 EXPECT_TRUE(matches("void x(int, int) { int y; x(y, 42); }", CallArgumentY));
1323 EXPECT_TRUE(notMatches("void x(int, int) { x(1, 2); }", CallArgumentY));
1324}
1325
1326TEST(Matcher, ArgumentCount) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001327 StatementMatcher Call1Arg = callExpr(argumentCountIs(1));
Manuel Klimek4da21662012-07-06 05:48:52 +00001328
1329 EXPECT_TRUE(matches("void x(int) { x(0); }", Call1Arg));
1330 EXPECT_TRUE(matches("class X { void x(int) { x(0); } };", Call1Arg));
1331 EXPECT_TRUE(notMatches("void x(int, int) { x(0, 0); }", Call1Arg));
1332}
1333
Daniel Jasper36e29d62012-12-04 11:54:27 +00001334TEST(Matcher, ParameterCount) {
1335 DeclarationMatcher Function1Arg = functionDecl(parameterCountIs(1));
1336 EXPECT_TRUE(matches("void f(int i) {}", Function1Arg));
1337 EXPECT_TRUE(matches("class X { void f(int i) {} };", Function1Arg));
1338 EXPECT_TRUE(notMatches("void f() {}", Function1Arg));
1339 EXPECT_TRUE(notMatches("void f(int i, int j, int k) {}", Function1Arg));
1340}
1341
Manuel Klimek4da21662012-07-06 05:48:52 +00001342TEST(Matcher, References) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001343 DeclarationMatcher ReferenceClassX = varDecl(
1344 hasType(references(recordDecl(hasName("X")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001345 EXPECT_TRUE(matches("class X {}; void y(X y) { X &x = y; }",
1346 ReferenceClassX));
1347 EXPECT_TRUE(
1348 matches("class X {}; void y(X y) { const X &x = y; }", ReferenceClassX));
1349 EXPECT_TRUE(
1350 notMatches("class X {}; void y(X y) { X x = y; }", ReferenceClassX));
1351 EXPECT_TRUE(
1352 notMatches("class X {}; void y(X *y) { X *&x = y; }", ReferenceClassX));
1353}
1354
Edwin Vane6a19a972013-03-06 17:02:57 +00001355TEST(QualType, hasCanonicalType) {
1356 EXPECT_TRUE(notMatches("typedef int &int_ref;"
1357 "int a;"
1358 "int_ref b = a;",
1359 varDecl(hasType(qualType(referenceType())))));
1360 EXPECT_TRUE(
1361 matches("typedef int &int_ref;"
1362 "int a;"
1363 "int_ref b = a;",
1364 varDecl(hasType(qualType(hasCanonicalType(referenceType()))))));
1365}
1366
Edwin Vane7b69cd02013-04-02 18:15:55 +00001367TEST(QualType, hasLocalQualifiers) {
1368 EXPECT_TRUE(notMatches("typedef const int const_int; const_int i = 1;",
1369 varDecl(hasType(hasLocalQualifiers()))));
1370 EXPECT_TRUE(matches("int *const j = nullptr;",
1371 varDecl(hasType(hasLocalQualifiers()))));
1372 EXPECT_TRUE(matches("int *volatile k;",
1373 varDecl(hasType(hasLocalQualifiers()))));
1374 EXPECT_TRUE(notMatches("int m;",
1375 varDecl(hasType(hasLocalQualifiers()))));
1376}
1377
Manuel Klimek4da21662012-07-06 05:48:52 +00001378TEST(HasParameter, CallsInnerMatcher) {
1379 EXPECT_TRUE(matches("class X { void x(int) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001380 methodDecl(hasParameter(0, varDecl()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001381 EXPECT_TRUE(notMatches("class X { void x(int) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001382 methodDecl(hasParameter(0, hasName("x")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001383}
1384
1385TEST(HasParameter, DoesNotMatchIfIndexOutOfBounds) {
1386 EXPECT_TRUE(notMatches("class X { void x(int) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001387 methodDecl(hasParameter(42, varDecl()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001388}
1389
1390TEST(HasType, MatchesParameterVariableTypesStrictly) {
1391 EXPECT_TRUE(matches("class X { void x(X x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001392 methodDecl(hasParameter(0, hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001393 EXPECT_TRUE(notMatches("class X { void x(const X &x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001394 methodDecl(hasParameter(0, hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001395 EXPECT_TRUE(matches("class X { void x(const X *x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001396 methodDecl(hasParameter(0,
1397 hasType(pointsTo(recordDecl(hasName("X"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001398 EXPECT_TRUE(matches("class X { void x(const X &x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001399 methodDecl(hasParameter(0,
1400 hasType(references(recordDecl(hasName("X"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001401}
1402
1403TEST(HasAnyParameter, MatchesIndependentlyOfPosition) {
1404 EXPECT_TRUE(matches("class Y {}; class X { void x(X x, Y y) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001405 methodDecl(hasAnyParameter(hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001406 EXPECT_TRUE(matches("class Y {}; class X { void x(Y y, X x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001407 methodDecl(hasAnyParameter(hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001408}
1409
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001410TEST(Returns, MatchesReturnTypes) {
1411 EXPECT_TRUE(matches("class Y { int f() { return 1; } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001412 functionDecl(returns(asString("int")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001413 EXPECT_TRUE(notMatches("class Y { int f() { return 1; } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001414 functionDecl(returns(asString("float")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001415 EXPECT_TRUE(matches("class Y { Y getMe() { return *this; } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001416 functionDecl(returns(hasDeclaration(
1417 recordDecl(hasName("Y")))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001418}
1419
Daniel Jasper8cc7efa2012-08-15 18:52:19 +00001420TEST(IsExternC, MatchesExternCFunctionDeclarations) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001421 EXPECT_TRUE(matches("extern \"C\" void f() {}", functionDecl(isExternC())));
1422 EXPECT_TRUE(matches("extern \"C\" { void f() {} }",
1423 functionDecl(isExternC())));
1424 EXPECT_TRUE(notMatches("void f() {}", functionDecl(isExternC())));
Daniel Jasper8cc7efa2012-08-15 18:52:19 +00001425}
1426
Manuel Klimek4da21662012-07-06 05:48:52 +00001427TEST(HasAnyParameter, DoesntMatchIfInnerMatcherDoesntMatch) {
1428 EXPECT_TRUE(notMatches("class Y {}; class X { void x(int) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001429 methodDecl(hasAnyParameter(hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001430}
1431
1432TEST(HasAnyParameter, DoesNotMatchThisPointer) {
1433 EXPECT_TRUE(notMatches("class Y {}; class X { void x() {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001434 methodDecl(hasAnyParameter(hasType(pointsTo(
1435 recordDecl(hasName("X"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001436}
1437
1438TEST(HasName, MatchesParameterVariableDeclartions) {
1439 EXPECT_TRUE(matches("class Y {}; class X { void x(int x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001440 methodDecl(hasAnyParameter(hasName("x")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001441 EXPECT_TRUE(notMatches("class Y {}; class X { void x(int) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001442 methodDecl(hasAnyParameter(hasName("x")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001443}
1444
Daniel Jasper371f9392012-08-01 08:40:24 +00001445TEST(Matcher, MatchesClassTemplateSpecialization) {
1446 EXPECT_TRUE(matches("template<typename T> struct A {};"
1447 "template<> struct A<int> {};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001448 classTemplateSpecializationDecl()));
Daniel Jasper371f9392012-08-01 08:40:24 +00001449 EXPECT_TRUE(matches("template<typename T> struct A {}; A<int> a;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001450 classTemplateSpecializationDecl()));
Daniel Jasper371f9392012-08-01 08:40:24 +00001451 EXPECT_TRUE(notMatches("template<typename T> struct A {};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001452 classTemplateSpecializationDecl()));
Daniel Jasper371f9392012-08-01 08:40:24 +00001453}
1454
1455TEST(Matcher, MatchesTypeTemplateArgument) {
1456 EXPECT_TRUE(matches(
1457 "template<typename T> struct B {};"
1458 "B<int> b;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001459 classTemplateSpecializationDecl(hasAnyTemplateArgument(refersToType(
Daniel Jasper371f9392012-08-01 08:40:24 +00001460 asString("int"))))));
1461}
1462
1463TEST(Matcher, MatchesDeclarationReferenceTemplateArgument) {
1464 EXPECT_TRUE(matches(
1465 "struct B { int next; };"
1466 "template<int(B::*next_ptr)> struct A {};"
1467 "A<&B::next> a;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001468 classTemplateSpecializationDecl(hasAnyTemplateArgument(
1469 refersToDeclaration(fieldDecl(hasName("next")))))));
Daniel Jasperaaa8e452012-09-29 15:55:18 +00001470
1471 EXPECT_TRUE(notMatches(
1472 "template <typename T> struct A {};"
1473 "A<int> a;",
1474 classTemplateSpecializationDecl(hasAnyTemplateArgument(
1475 refersToDeclaration(decl())))));
Daniel Jasper371f9392012-08-01 08:40:24 +00001476}
1477
1478TEST(Matcher, MatchesSpecificArgument) {
1479 EXPECT_TRUE(matches(
1480 "template<typename T, typename U> class A {};"
1481 "A<bool, int> a;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001482 classTemplateSpecializationDecl(hasTemplateArgument(
Daniel Jasper371f9392012-08-01 08:40:24 +00001483 1, refersToType(asString("int"))))));
1484 EXPECT_TRUE(notMatches(
1485 "template<typename T, typename U> class A {};"
1486 "A<int, bool> a;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001487 classTemplateSpecializationDecl(hasTemplateArgument(
Daniel Jasper371f9392012-08-01 08:40:24 +00001488 1, refersToType(asString("int"))))));
1489}
1490
Daniel Jasperf3197e92013-02-25 12:02:08 +00001491TEST(Matcher, MatchesAccessSpecDecls) {
1492 EXPECT_TRUE(matches("class C { public: int i; };", accessSpecDecl()));
1493 EXPECT_TRUE(
1494 matches("class C { public: int i; };", accessSpecDecl(isPublic())));
1495 EXPECT_TRUE(
1496 notMatches("class C { public: int i; };", accessSpecDecl(isProtected())));
1497 EXPECT_TRUE(
1498 notMatches("class C { public: int i; };", accessSpecDecl(isPrivate())));
1499
1500 EXPECT_TRUE(notMatches("class C { int i; };", accessSpecDecl()));
1501}
1502
Manuel Klimek4da21662012-07-06 05:48:52 +00001503TEST(Matcher, ConstructorCall) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001504 StatementMatcher Constructor = constructExpr();
Manuel Klimek4da21662012-07-06 05:48:52 +00001505
1506 EXPECT_TRUE(
1507 matches("class X { public: X(); }; void x() { X x; }", Constructor));
1508 EXPECT_TRUE(
1509 matches("class X { public: X(); }; void x() { X x = X(); }",
1510 Constructor));
1511 EXPECT_TRUE(
1512 matches("class X { public: X(int); }; void x() { X x = 0; }",
1513 Constructor));
1514 EXPECT_TRUE(matches("class X {}; void x(int) { X x; }", Constructor));
1515}
1516
1517TEST(Matcher, ConstructorArgument) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001518 StatementMatcher Constructor = constructExpr(
1519 hasArgument(0, declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001520
1521 EXPECT_TRUE(
1522 matches("class X { public: X(int); }; void x() { int y; X x(y); }",
1523 Constructor));
1524 EXPECT_TRUE(
1525 matches("class X { public: X(int); }; void x() { int y; X x = X(y); }",
1526 Constructor));
1527 EXPECT_TRUE(
1528 matches("class X { public: X(int); }; void x() { int y; X x = y; }",
1529 Constructor));
1530 EXPECT_TRUE(
1531 notMatches("class X { public: X(int); }; void x() { int z; X x(z); }",
1532 Constructor));
1533
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001534 StatementMatcher WrongIndex = constructExpr(
1535 hasArgument(42, declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001536 EXPECT_TRUE(
1537 notMatches("class X { public: X(int); }; void x() { int y; X x(y); }",
1538 WrongIndex));
1539}
1540
1541TEST(Matcher, ConstructorArgumentCount) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001542 StatementMatcher Constructor1Arg = constructExpr(argumentCountIs(1));
Manuel Klimek4da21662012-07-06 05:48:52 +00001543
1544 EXPECT_TRUE(
1545 matches("class X { public: X(int); }; void x() { X x(0); }",
1546 Constructor1Arg));
1547 EXPECT_TRUE(
1548 matches("class X { public: X(int); }; void x() { X x = X(0); }",
1549 Constructor1Arg));
1550 EXPECT_TRUE(
1551 matches("class X { public: X(int); }; void x() { X x = 0; }",
1552 Constructor1Arg));
1553 EXPECT_TRUE(
1554 notMatches("class X { public: X(int, int); }; void x() { X x(0, 0); }",
1555 Constructor1Arg));
1556}
1557
Manuel Klimek70b9db92012-10-23 10:40:50 +00001558TEST(Matcher,ThisExpr) {
1559 EXPECT_TRUE(
1560 matches("struct X { int a; int f () { return a; } };", thisExpr()));
1561 EXPECT_TRUE(
1562 notMatches("struct X { int f () { int a; return a; } };", thisExpr()));
1563}
1564
Manuel Klimek4da21662012-07-06 05:48:52 +00001565TEST(Matcher, BindTemporaryExpression) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001566 StatementMatcher TempExpression = bindTemporaryExpr();
Manuel Klimek4da21662012-07-06 05:48:52 +00001567
1568 std::string ClassString = "class string { public: string(); ~string(); }; ";
1569
1570 EXPECT_TRUE(
1571 matches(ClassString +
1572 "string GetStringByValue();"
1573 "void FunctionTakesString(string s);"
1574 "void run() { FunctionTakesString(GetStringByValue()); }",
1575 TempExpression));
1576
1577 EXPECT_TRUE(
1578 notMatches(ClassString +
1579 "string* GetStringPointer(); "
1580 "void FunctionTakesStringPtr(string* s);"
1581 "void run() {"
1582 " string* s = GetStringPointer();"
1583 " FunctionTakesStringPtr(GetStringPointer());"
1584 " FunctionTakesStringPtr(s);"
1585 "}",
1586 TempExpression));
1587
1588 EXPECT_TRUE(
1589 notMatches("class no_dtor {};"
1590 "no_dtor GetObjByValue();"
1591 "void ConsumeObj(no_dtor param);"
1592 "void run() { ConsumeObj(GetObjByValue()); }",
1593 TempExpression));
1594}
1595
Sam Panzere16acd32012-08-24 22:04:44 +00001596TEST(MaterializeTemporaryExpr, MatchesTemporary) {
1597 std::string ClassString =
1598 "class string { public: string(); int length(); }; ";
1599
1600 EXPECT_TRUE(
1601 matches(ClassString +
1602 "string GetStringByValue();"
1603 "void FunctionTakesString(string s);"
1604 "void run() { FunctionTakesString(GetStringByValue()); }",
1605 materializeTemporaryExpr()));
1606
1607 EXPECT_TRUE(
1608 notMatches(ClassString +
1609 "string* GetStringPointer(); "
1610 "void FunctionTakesStringPtr(string* s);"
1611 "void run() {"
1612 " string* s = GetStringPointer();"
1613 " FunctionTakesStringPtr(GetStringPointer());"
1614 " FunctionTakesStringPtr(s);"
1615 "}",
1616 materializeTemporaryExpr()));
1617
1618 EXPECT_TRUE(
1619 notMatches(ClassString +
1620 "string GetStringByValue();"
1621 "void run() { int k = GetStringByValue().length(); }",
1622 materializeTemporaryExpr()));
1623
1624 EXPECT_TRUE(
1625 notMatches(ClassString +
1626 "string GetStringByValue();"
1627 "void run() { GetStringByValue(); }",
1628 materializeTemporaryExpr()));
1629}
1630
Manuel Klimek4da21662012-07-06 05:48:52 +00001631TEST(ConstructorDeclaration, SimpleCase) {
1632 EXPECT_TRUE(matches("class Foo { Foo(int i); };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001633 constructorDecl(ofClass(hasName("Foo")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001634 EXPECT_TRUE(notMatches("class Foo { Foo(int i); };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001635 constructorDecl(ofClass(hasName("Bar")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001636}
1637
1638TEST(ConstructorDeclaration, IsImplicit) {
1639 // This one doesn't match because the constructor is not added by the
1640 // compiler (it is not needed).
1641 EXPECT_TRUE(notMatches("class Foo { };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001642 constructorDecl(isImplicit())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001643 // The compiler added the implicit default constructor.
1644 EXPECT_TRUE(matches("class Foo { }; Foo* f = new Foo();",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001645 constructorDecl(isImplicit())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001646 EXPECT_TRUE(matches("class Foo { Foo(){} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001647 constructorDecl(unless(isImplicit()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001648}
1649
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001650TEST(DestructorDeclaration, MatchesVirtualDestructor) {
1651 EXPECT_TRUE(matches("class Foo { virtual ~Foo(); };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001652 destructorDecl(ofClass(hasName("Foo")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001653}
1654
1655TEST(DestructorDeclaration, DoesNotMatchImplicitDestructor) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001656 EXPECT_TRUE(notMatches("class Foo {};",
1657 destructorDecl(ofClass(hasName("Foo")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001658}
1659
Manuel Klimek4da21662012-07-06 05:48:52 +00001660TEST(HasAnyConstructorInitializer, SimpleCase) {
1661 EXPECT_TRUE(notMatches(
1662 "class Foo { Foo() { } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001663 constructorDecl(hasAnyConstructorInitializer(anything()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001664 EXPECT_TRUE(matches(
1665 "class Foo {"
1666 " Foo() : foo_() { }"
1667 " int foo_;"
1668 "};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001669 constructorDecl(hasAnyConstructorInitializer(anything()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001670}
1671
1672TEST(HasAnyConstructorInitializer, ForField) {
1673 static const char Code[] =
1674 "class Baz { };"
1675 "class Foo {"
1676 " Foo() : foo_() { }"
1677 " Baz foo_;"
1678 " Baz bar_;"
1679 "};";
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001680 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
1681 forField(hasType(recordDecl(hasName("Baz"))))))));
1682 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001683 forField(hasName("foo_"))))));
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001684 EXPECT_TRUE(notMatches(Code, constructorDecl(hasAnyConstructorInitializer(
1685 forField(hasType(recordDecl(hasName("Bar"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001686}
1687
1688TEST(HasAnyConstructorInitializer, WithInitializer) {
1689 static const char Code[] =
1690 "class Foo {"
1691 " Foo() : foo_(0) { }"
1692 " int foo_;"
1693 "};";
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001694 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001695 withInitializer(integerLiteral(equals(0)))))));
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001696 EXPECT_TRUE(notMatches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001697 withInitializer(integerLiteral(equals(1)))))));
1698}
1699
1700TEST(HasAnyConstructorInitializer, IsWritten) {
1701 static const char Code[] =
1702 "struct Bar { Bar(){} };"
1703 "class Foo {"
1704 " Foo() : foo_() { }"
1705 " Bar foo_;"
1706 " Bar bar_;"
1707 "};";
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001708 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001709 allOf(forField(hasName("foo_")), isWritten())))));
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001710 EXPECT_TRUE(notMatches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001711 allOf(forField(hasName("bar_")), isWritten())))));
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001712 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001713 allOf(forField(hasName("bar_")), unless(isWritten()))))));
1714}
1715
1716TEST(Matcher, NewExpression) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001717 StatementMatcher New = newExpr();
Manuel Klimek4da21662012-07-06 05:48:52 +00001718
1719 EXPECT_TRUE(matches("class X { public: X(); }; void x() { new X; }", New));
1720 EXPECT_TRUE(
1721 matches("class X { public: X(); }; void x() { new X(); }", New));
1722 EXPECT_TRUE(
1723 matches("class X { public: X(int); }; void x() { new X(0); }", New));
1724 EXPECT_TRUE(matches("class X {}; void x(int) { new X; }", New));
1725}
1726
1727TEST(Matcher, NewExpressionArgument) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001728 StatementMatcher New = constructExpr(
1729 hasArgument(0, declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001730
1731 EXPECT_TRUE(
1732 matches("class X { public: X(int); }; void x() { int y; new X(y); }",
1733 New));
1734 EXPECT_TRUE(
1735 matches("class X { public: X(int); }; void x() { int y; new X(y); }",
1736 New));
1737 EXPECT_TRUE(
1738 notMatches("class X { public: X(int); }; void x() { int z; new X(z); }",
1739 New));
1740
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001741 StatementMatcher WrongIndex = constructExpr(
1742 hasArgument(42, declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001743 EXPECT_TRUE(
1744 notMatches("class X { public: X(int); }; void x() { int y; new X(y); }",
1745 WrongIndex));
1746}
1747
1748TEST(Matcher, NewExpressionArgumentCount) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001749 StatementMatcher New = constructExpr(argumentCountIs(1));
Manuel Klimek4da21662012-07-06 05:48:52 +00001750
1751 EXPECT_TRUE(
1752 matches("class X { public: X(int); }; void x() { new X(0); }", New));
1753 EXPECT_TRUE(
1754 notMatches("class X { public: X(int, int); }; void x() { new X(0, 0); }",
1755 New));
1756}
1757
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001758TEST(Matcher, DeleteExpression) {
1759 EXPECT_TRUE(matches("struct A {}; void f(A* a) { delete a; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001760 deleteExpr()));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001761}
1762
Manuel Klimek4da21662012-07-06 05:48:52 +00001763TEST(Matcher, DefaultArgument) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001764 StatementMatcher Arg = defaultArgExpr();
Manuel Klimek4da21662012-07-06 05:48:52 +00001765
1766 EXPECT_TRUE(matches("void x(int, int = 0) { int y; x(y); }", Arg));
1767 EXPECT_TRUE(
1768 matches("class X { void x(int, int = 0) { int y; x(y); } };", Arg));
1769 EXPECT_TRUE(notMatches("void x(int, int = 0) { int y; x(y, 0); }", Arg));
1770}
1771
1772TEST(Matcher, StringLiterals) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001773 StatementMatcher Literal = stringLiteral();
Manuel Klimek4da21662012-07-06 05:48:52 +00001774 EXPECT_TRUE(matches("const char *s = \"string\";", Literal));
1775 // wide string
1776 EXPECT_TRUE(matches("const wchar_t *s = L\"string\";", Literal));
1777 // with escaped characters
1778 EXPECT_TRUE(matches("const char *s = \"\x05five\";", Literal));
1779 // no matching -- though the data type is the same, there is no string literal
1780 EXPECT_TRUE(notMatches("const char s[1] = {'a'};", Literal));
1781}
1782
1783TEST(Matcher, CharacterLiterals) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001784 StatementMatcher CharLiteral = characterLiteral();
Manuel Klimek4da21662012-07-06 05:48:52 +00001785 EXPECT_TRUE(matches("const char c = 'c';", CharLiteral));
1786 // wide character
1787 EXPECT_TRUE(matches("const char c = L'c';", CharLiteral));
1788 // wide character, Hex encoded, NOT MATCHED!
1789 EXPECT_TRUE(notMatches("const wchar_t c = 0x2126;", CharLiteral));
1790 EXPECT_TRUE(notMatches("const char c = 0x1;", CharLiteral));
1791}
1792
1793TEST(Matcher, IntegerLiterals) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001794 StatementMatcher HasIntLiteral = integerLiteral();
Manuel Klimek4da21662012-07-06 05:48:52 +00001795 EXPECT_TRUE(matches("int i = 10;", HasIntLiteral));
1796 EXPECT_TRUE(matches("int i = 0x1AB;", HasIntLiteral));
1797 EXPECT_TRUE(matches("int i = 10L;", HasIntLiteral));
1798 EXPECT_TRUE(matches("int i = 10U;", HasIntLiteral));
1799
1800 // Non-matching cases (character literals, float and double)
1801 EXPECT_TRUE(notMatches("int i = L'a';",
1802 HasIntLiteral)); // this is actually a character
1803 // literal cast to int
1804 EXPECT_TRUE(notMatches("int i = 'a';", HasIntLiteral));
1805 EXPECT_TRUE(notMatches("int i = 1e10;", HasIntLiteral));
1806 EXPECT_TRUE(notMatches("int i = 10.0;", HasIntLiteral));
1807}
1808
Daniel Jasper31f7c082012-10-01 13:40:41 +00001809TEST(Matcher, NullPtrLiteral) {
1810 EXPECT_TRUE(matches("int* i = nullptr;", nullPtrLiteralExpr()));
1811}
1812
Daniel Jasperb54b7642012-09-20 14:12:57 +00001813TEST(Matcher, AsmStatement) {
1814 EXPECT_TRUE(matches("void foo() { __asm(\"mov al, 2\"); }", asmStmt()));
1815}
1816
Manuel Klimek4da21662012-07-06 05:48:52 +00001817TEST(Matcher, Conditions) {
1818 StatementMatcher Condition = ifStmt(hasCondition(boolLiteral(equals(true))));
1819
1820 EXPECT_TRUE(matches("void x() { if (true) {} }", Condition));
1821 EXPECT_TRUE(notMatches("void x() { if (false) {} }", Condition));
1822 EXPECT_TRUE(notMatches("void x() { bool a = true; if (a) {} }", Condition));
1823 EXPECT_TRUE(notMatches("void x() { if (true || false) {} }", Condition));
1824 EXPECT_TRUE(notMatches("void x() { if (1) {} }", Condition));
1825}
1826
1827TEST(MatchBinaryOperator, HasOperatorName) {
1828 StatementMatcher OperatorOr = binaryOperator(hasOperatorName("||"));
1829
1830 EXPECT_TRUE(matches("void x() { true || false; }", OperatorOr));
1831 EXPECT_TRUE(notMatches("void x() { true && false; }", OperatorOr));
1832}
1833
1834TEST(MatchBinaryOperator, HasLHSAndHasRHS) {
1835 StatementMatcher OperatorTrueFalse =
1836 binaryOperator(hasLHS(boolLiteral(equals(true))),
1837 hasRHS(boolLiteral(equals(false))));
1838
1839 EXPECT_TRUE(matches("void x() { true || false; }", OperatorTrueFalse));
1840 EXPECT_TRUE(matches("void x() { true && false; }", OperatorTrueFalse));
1841 EXPECT_TRUE(notMatches("void x() { false || true; }", OperatorTrueFalse));
1842}
1843
1844TEST(MatchBinaryOperator, HasEitherOperand) {
1845 StatementMatcher HasOperand =
1846 binaryOperator(hasEitherOperand(boolLiteral(equals(false))));
1847
1848 EXPECT_TRUE(matches("void x() { true || false; }", HasOperand));
1849 EXPECT_TRUE(matches("void x() { false && true; }", HasOperand));
1850 EXPECT_TRUE(notMatches("void x() { true || true; }", HasOperand));
1851}
1852
1853TEST(Matcher, BinaryOperatorTypes) {
1854 // Integration test that verifies the AST provides all binary operators in
1855 // a way we expect.
1856 // FIXME: Operator ','
1857 EXPECT_TRUE(
1858 matches("void x() { 3, 4; }", binaryOperator(hasOperatorName(","))));
1859 EXPECT_TRUE(
1860 matches("bool b; bool c = (b = true);",
1861 binaryOperator(hasOperatorName("="))));
1862 EXPECT_TRUE(
1863 matches("bool b = 1 != 2;", binaryOperator(hasOperatorName("!="))));
1864 EXPECT_TRUE(
1865 matches("bool b = 1 == 2;", binaryOperator(hasOperatorName("=="))));
1866 EXPECT_TRUE(matches("bool b = 1 < 2;", binaryOperator(hasOperatorName("<"))));
1867 EXPECT_TRUE(
1868 matches("bool b = 1 <= 2;", binaryOperator(hasOperatorName("<="))));
1869 EXPECT_TRUE(
1870 matches("int i = 1 << 2;", binaryOperator(hasOperatorName("<<"))));
1871 EXPECT_TRUE(
1872 matches("int i = 1; int j = (i <<= 2);",
1873 binaryOperator(hasOperatorName("<<="))));
1874 EXPECT_TRUE(matches("bool b = 1 > 2;", binaryOperator(hasOperatorName(">"))));
1875 EXPECT_TRUE(
1876 matches("bool b = 1 >= 2;", binaryOperator(hasOperatorName(">="))));
1877 EXPECT_TRUE(
1878 matches("int i = 1 >> 2;", binaryOperator(hasOperatorName(">>"))));
1879 EXPECT_TRUE(
1880 matches("int i = 1; int j = (i >>= 2);",
1881 binaryOperator(hasOperatorName(">>="))));
1882 EXPECT_TRUE(
1883 matches("int i = 42 ^ 23;", binaryOperator(hasOperatorName("^"))));
1884 EXPECT_TRUE(
1885 matches("int i = 42; int j = (i ^= 42);",
1886 binaryOperator(hasOperatorName("^="))));
1887 EXPECT_TRUE(
1888 matches("int i = 42 % 23;", binaryOperator(hasOperatorName("%"))));
1889 EXPECT_TRUE(
1890 matches("int i = 42; int j = (i %= 42);",
1891 binaryOperator(hasOperatorName("%="))));
1892 EXPECT_TRUE(
1893 matches("bool b = 42 &23;", binaryOperator(hasOperatorName("&"))));
1894 EXPECT_TRUE(
1895 matches("bool b = true && false;",
1896 binaryOperator(hasOperatorName("&&"))));
1897 EXPECT_TRUE(
1898 matches("bool b = true; bool c = (b &= false);",
1899 binaryOperator(hasOperatorName("&="))));
1900 EXPECT_TRUE(
1901 matches("bool b = 42 | 23;", binaryOperator(hasOperatorName("|"))));
1902 EXPECT_TRUE(
1903 matches("bool b = true || false;",
1904 binaryOperator(hasOperatorName("||"))));
1905 EXPECT_TRUE(
1906 matches("bool b = true; bool c = (b |= false);",
1907 binaryOperator(hasOperatorName("|="))));
1908 EXPECT_TRUE(
1909 matches("int i = 42 *23;", binaryOperator(hasOperatorName("*"))));
1910 EXPECT_TRUE(
1911 matches("int i = 42; int j = (i *= 23);",
1912 binaryOperator(hasOperatorName("*="))));
1913 EXPECT_TRUE(
1914 matches("int i = 42 / 23;", binaryOperator(hasOperatorName("/"))));
1915 EXPECT_TRUE(
1916 matches("int i = 42; int j = (i /= 23);",
1917 binaryOperator(hasOperatorName("/="))));
1918 EXPECT_TRUE(
1919 matches("int i = 42 + 23;", binaryOperator(hasOperatorName("+"))));
1920 EXPECT_TRUE(
1921 matches("int i = 42; int j = (i += 23);",
1922 binaryOperator(hasOperatorName("+="))));
1923 EXPECT_TRUE(
1924 matches("int i = 42 - 23;", binaryOperator(hasOperatorName("-"))));
1925 EXPECT_TRUE(
1926 matches("int i = 42; int j = (i -= 23);",
1927 binaryOperator(hasOperatorName("-="))));
1928 EXPECT_TRUE(
1929 matches("struct A { void x() { void (A::*a)(); (this->*a)(); } };",
1930 binaryOperator(hasOperatorName("->*"))));
1931 EXPECT_TRUE(
1932 matches("struct A { void x() { void (A::*a)(); ((*this).*a)(); } };",
1933 binaryOperator(hasOperatorName(".*"))));
1934
1935 // Member expressions as operators are not supported in matches.
1936 EXPECT_TRUE(
1937 notMatches("struct A { void x(A *a) { a->x(this); } };",
1938 binaryOperator(hasOperatorName("->"))));
1939
1940 // Initializer assignments are not represented as operator equals.
1941 EXPECT_TRUE(
1942 notMatches("bool b = true;", binaryOperator(hasOperatorName("="))));
1943
1944 // Array indexing is not represented as operator.
1945 EXPECT_TRUE(notMatches("int a[42]; void x() { a[23]; }", unaryOperator()));
1946
1947 // Overloaded operators do not match at all.
1948 EXPECT_TRUE(notMatches(
1949 "struct A { bool operator&&(const A &a) const { return false; } };"
1950 "void x() { A a, b; a && b; }",
1951 binaryOperator()));
1952}
1953
1954TEST(MatchUnaryOperator, HasOperatorName) {
1955 StatementMatcher OperatorNot = unaryOperator(hasOperatorName("!"));
1956
1957 EXPECT_TRUE(matches("void x() { !true; } ", OperatorNot));
1958 EXPECT_TRUE(notMatches("void x() { true; } ", OperatorNot));
1959}
1960
1961TEST(MatchUnaryOperator, HasUnaryOperand) {
1962 StatementMatcher OperatorOnFalse =
1963 unaryOperator(hasUnaryOperand(boolLiteral(equals(false))));
1964
1965 EXPECT_TRUE(matches("void x() { !false; }", OperatorOnFalse));
1966 EXPECT_TRUE(notMatches("void x() { !true; }", OperatorOnFalse));
1967}
1968
1969TEST(Matcher, UnaryOperatorTypes) {
1970 // Integration test that verifies the AST provides all unary operators in
1971 // a way we expect.
1972 EXPECT_TRUE(matches("bool b = !true;", unaryOperator(hasOperatorName("!"))));
1973 EXPECT_TRUE(
1974 matches("bool b; bool *p = &b;", unaryOperator(hasOperatorName("&"))));
1975 EXPECT_TRUE(matches("int i = ~ 1;", unaryOperator(hasOperatorName("~"))));
1976 EXPECT_TRUE(
1977 matches("bool *p; bool b = *p;", unaryOperator(hasOperatorName("*"))));
1978 EXPECT_TRUE(
1979 matches("int i; int j = +i;", unaryOperator(hasOperatorName("+"))));
1980 EXPECT_TRUE(
1981 matches("int i; int j = -i;", unaryOperator(hasOperatorName("-"))));
1982 EXPECT_TRUE(
1983 matches("int i; int j = ++i;", unaryOperator(hasOperatorName("++"))));
1984 EXPECT_TRUE(
1985 matches("int i; int j = i++;", unaryOperator(hasOperatorName("++"))));
1986 EXPECT_TRUE(
1987 matches("int i; int j = --i;", unaryOperator(hasOperatorName("--"))));
1988 EXPECT_TRUE(
1989 matches("int i; int j = i--;", unaryOperator(hasOperatorName("--"))));
1990
1991 // We don't match conversion operators.
1992 EXPECT_TRUE(notMatches("int i; double d = (double)i;", unaryOperator()));
1993
1994 // Function calls are not represented as operator.
1995 EXPECT_TRUE(notMatches("void f(); void x() { f(); }", unaryOperator()));
1996
1997 // Overloaded operators do not match at all.
1998 // FIXME: We probably want to add that.
1999 EXPECT_TRUE(notMatches(
2000 "struct A { bool operator!() const { return false; } };"
2001 "void x() { A a; !a; }", unaryOperator(hasOperatorName("!"))));
2002}
2003
2004TEST(Matcher, ConditionalOperator) {
2005 StatementMatcher Conditional = conditionalOperator(
2006 hasCondition(boolLiteral(equals(true))),
2007 hasTrueExpression(boolLiteral(equals(false))));
2008
2009 EXPECT_TRUE(matches("void x() { true ? false : true; }", Conditional));
2010 EXPECT_TRUE(notMatches("void x() { false ? false : true; }", Conditional));
2011 EXPECT_TRUE(notMatches("void x() { true ? true : false; }", Conditional));
2012
2013 StatementMatcher ConditionalFalse = conditionalOperator(
2014 hasFalseExpression(boolLiteral(equals(false))));
2015
2016 EXPECT_TRUE(matches("void x() { true ? true : false; }", ConditionalFalse));
2017 EXPECT_TRUE(
2018 notMatches("void x() { true ? false : true; }", ConditionalFalse));
2019}
2020
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002021TEST(ArraySubscriptMatchers, ArraySubscripts) {
2022 EXPECT_TRUE(matches("int i[2]; void f() { i[1] = 1; }",
2023 arraySubscriptExpr()));
2024 EXPECT_TRUE(notMatches("int i; void f() { i = 1; }",
2025 arraySubscriptExpr()));
2026}
2027
2028TEST(ArraySubscriptMatchers, ArrayIndex) {
2029 EXPECT_TRUE(matches(
2030 "int i[2]; void f() { i[1] = 1; }",
2031 arraySubscriptExpr(hasIndex(integerLiteral(equals(1))))));
2032 EXPECT_TRUE(matches(
2033 "int i[2]; void f() { 1[i] = 1; }",
2034 arraySubscriptExpr(hasIndex(integerLiteral(equals(1))))));
2035 EXPECT_TRUE(notMatches(
2036 "int i[2]; void f() { i[1] = 1; }",
2037 arraySubscriptExpr(hasIndex(integerLiteral(equals(0))))));
2038}
2039
2040TEST(ArraySubscriptMatchers, MatchesArrayBase) {
2041 EXPECT_TRUE(matches(
2042 "int i[2]; void f() { i[1] = 2; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002043 arraySubscriptExpr(hasBase(implicitCastExpr(
2044 hasSourceExpression(declRefExpr()))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002045}
2046
Manuel Klimek4da21662012-07-06 05:48:52 +00002047TEST(Matcher, HasNameSupportsNamespaces) {
2048 EXPECT_TRUE(matches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002049 recordDecl(hasName("a::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002050 EXPECT_TRUE(matches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002051 recordDecl(hasName("::a::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002052 EXPECT_TRUE(matches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002053 recordDecl(hasName("b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002054 EXPECT_TRUE(matches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002055 recordDecl(hasName("C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002056 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002057 recordDecl(hasName("c::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002058 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002059 recordDecl(hasName("a::c::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002060 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002061 recordDecl(hasName("a::b::A"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002062 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002063 recordDecl(hasName("::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002064 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002065 recordDecl(hasName("::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002066 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002067 recordDecl(hasName("z::a::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002068 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002069 recordDecl(hasName("a+b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002070 EXPECT_TRUE(notMatches("namespace a { namespace b { class AC; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002071 recordDecl(hasName("C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002072}
2073
2074TEST(Matcher, HasNameSupportsOuterClasses) {
2075 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002076 matches("class A { class B { class C; }; };",
2077 recordDecl(hasName("A::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002078 EXPECT_TRUE(
2079 matches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002080 recordDecl(hasName("::A::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002081 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002082 matches("class A { class B { class C; }; };",
2083 recordDecl(hasName("B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002084 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002085 matches("class A { class B { class C; }; };",
2086 recordDecl(hasName("C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002087 EXPECT_TRUE(
2088 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002089 recordDecl(hasName("c::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002090 EXPECT_TRUE(
2091 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002092 recordDecl(hasName("A::c::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002093 EXPECT_TRUE(
2094 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002095 recordDecl(hasName("A::B::A"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002096 EXPECT_TRUE(
2097 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002098 recordDecl(hasName("::C"))));
2099 EXPECT_TRUE(
2100 notMatches("class A { class B { class C; }; };",
2101 recordDecl(hasName("::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002102 EXPECT_TRUE(notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002103 recordDecl(hasName("z::A::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002104 EXPECT_TRUE(
2105 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002106 recordDecl(hasName("A+B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002107}
2108
2109TEST(Matcher, IsDefinition) {
2110 DeclarationMatcher DefinitionOfClassA =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002111 recordDecl(hasName("A"), isDefinition());
Manuel Klimek4da21662012-07-06 05:48:52 +00002112 EXPECT_TRUE(matches("class A {};", DefinitionOfClassA));
2113 EXPECT_TRUE(notMatches("class A;", DefinitionOfClassA));
2114
2115 DeclarationMatcher DefinitionOfVariableA =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002116 varDecl(hasName("a"), isDefinition());
Manuel Klimek4da21662012-07-06 05:48:52 +00002117 EXPECT_TRUE(matches("int a;", DefinitionOfVariableA));
2118 EXPECT_TRUE(notMatches("extern int a;", DefinitionOfVariableA));
2119
2120 DeclarationMatcher DefinitionOfMethodA =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002121 methodDecl(hasName("a"), isDefinition());
Manuel Klimek4da21662012-07-06 05:48:52 +00002122 EXPECT_TRUE(matches("class A { void a() {} };", DefinitionOfMethodA));
2123 EXPECT_TRUE(notMatches("class A { void a(); };", DefinitionOfMethodA));
2124}
2125
2126TEST(Matcher, OfClass) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002127 StatementMatcher Constructor = constructExpr(hasDeclaration(methodDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +00002128 ofClass(hasName("X")))));
2129
2130 EXPECT_TRUE(
2131 matches("class X { public: X(); }; void x(int) { X x; }", Constructor));
2132 EXPECT_TRUE(
2133 matches("class X { public: X(); }; void x(int) { X x = X(); }",
2134 Constructor));
2135 EXPECT_TRUE(
2136 notMatches("class Y { public: Y(); }; void x(int) { Y y; }",
2137 Constructor));
2138}
2139
2140TEST(Matcher, VisitsTemplateInstantiations) {
2141 EXPECT_TRUE(matches(
2142 "class A { public: void x(); };"
2143 "template <typename T> class B { public: void y() { T t; t.x(); } };"
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002144 "void f() { B<A> b; b.y(); }",
2145 callExpr(callee(methodDecl(hasName("x"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002146
2147 EXPECT_TRUE(matches(
2148 "class A { public: void x(); };"
2149 "class C {"
2150 " public:"
2151 " template <typename T> class B { public: void y() { T t; t.x(); } };"
2152 "};"
2153 "void f() {"
2154 " C::B<A> b; b.y();"
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002155 "}",
2156 recordDecl(hasName("C"),
2157 hasDescendant(callExpr(callee(methodDecl(hasName("x"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002158}
2159
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002160TEST(Matcher, HandlesNullQualTypes) {
2161 // FIXME: Add a Type matcher so we can replace uses of this
2162 // variable with Type(True())
2163 const TypeMatcher AnyType = anything();
2164
2165 // We don't really care whether this matcher succeeds; we're testing that
2166 // it completes without crashing.
2167 EXPECT_TRUE(matches(
2168 "struct A { };"
2169 "template <typename T>"
2170 "void f(T t) {"
2171 " T local_t(t /* this becomes a null QualType in the AST */);"
2172 "}"
2173 "void g() {"
2174 " f(0);"
2175 "}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002176 expr(hasType(TypeMatcher(
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002177 anyOf(
2178 TypeMatcher(hasDeclaration(anything())),
2179 pointsTo(AnyType),
2180 references(AnyType)
2181 // Other QualType matchers should go here.
2182 ))))));
2183}
2184
Manuel Klimek4da21662012-07-06 05:48:52 +00002185// For testing AST_MATCHER_P().
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002186AST_MATCHER_P(Decl, just, internal::Matcher<Decl>, AMatcher) {
Manuel Klimek4da21662012-07-06 05:48:52 +00002187 // Make sure all special variables are used: node, match_finder,
2188 // bound_nodes_builder, and the parameter named 'AMatcher'.
2189 return AMatcher.matches(Node, Finder, Builder);
2190}
2191
2192TEST(AstMatcherPMacro, Works) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002193 DeclarationMatcher HasClassB = just(has(recordDecl(hasName("B")).bind("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002194
2195 EXPECT_TRUE(matchAndVerifyResultTrue("class A { class B {}; };",
Daniel Jaspera7564432012-09-13 13:11:25 +00002196 HasClassB, new VerifyIdIsBoundTo<Decl>("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002197
2198 EXPECT_TRUE(matchAndVerifyResultFalse("class A { class B {}; };",
Daniel Jaspera7564432012-09-13 13:11:25 +00002199 HasClassB, new VerifyIdIsBoundTo<Decl>("a")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002200
2201 EXPECT_TRUE(matchAndVerifyResultFalse("class A { class C {}; };",
Daniel Jaspera7564432012-09-13 13:11:25 +00002202 HasClassB, new VerifyIdIsBoundTo<Decl>("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002203}
2204
2205AST_POLYMORPHIC_MATCHER_P(
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002206 polymorphicHas, internal::Matcher<Decl>, AMatcher) {
2207 TOOLING_COMPILE_ASSERT((llvm::is_same<NodeType, Decl>::value) ||
2208 (llvm::is_same<NodeType, Stmt>::value),
Manuel Klimek4da21662012-07-06 05:48:52 +00002209 assert_node_type_is_accessible);
Manuel Klimek4da21662012-07-06 05:48:52 +00002210 return Finder->matchesChildOf(
Manuel Klimeka78d0d62012-09-05 12:12:07 +00002211 Node, AMatcher, Builder,
Manuel Klimek4da21662012-07-06 05:48:52 +00002212 ASTMatchFinder::TK_IgnoreImplicitCastsAndParentheses,
2213 ASTMatchFinder::BK_First);
2214}
2215
2216TEST(AstPolymorphicMatcherPMacro, Works) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002217 DeclarationMatcher HasClassB =
2218 polymorphicHas(recordDecl(hasName("B")).bind("b"));
Manuel Klimek4da21662012-07-06 05:48:52 +00002219
2220 EXPECT_TRUE(matchAndVerifyResultTrue("class A { class B {}; };",
Daniel Jaspera7564432012-09-13 13:11:25 +00002221 HasClassB, new VerifyIdIsBoundTo<Decl>("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002222
2223 EXPECT_TRUE(matchAndVerifyResultFalse("class A { class B {}; };",
Daniel Jaspera7564432012-09-13 13:11:25 +00002224 HasClassB, new VerifyIdIsBoundTo<Decl>("a")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002225
2226 EXPECT_TRUE(matchAndVerifyResultFalse("class A { class C {}; };",
Daniel Jaspera7564432012-09-13 13:11:25 +00002227 HasClassB, new VerifyIdIsBoundTo<Decl>("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002228
2229 StatementMatcher StatementHasClassB =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002230 polymorphicHas(recordDecl(hasName("B")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002231
2232 EXPECT_TRUE(matches("void x() { class B {}; }", StatementHasClassB));
2233}
2234
2235TEST(For, FindsForLoops) {
2236 EXPECT_TRUE(matches("void f() { for(;;); }", forStmt()));
2237 EXPECT_TRUE(matches("void f() { if(true) for(;;); }", forStmt()));
Daniel Jasper1a00fee2012-10-01 15:05:34 +00002238 EXPECT_TRUE(notMatches("int as[] = { 1, 2, 3 };"
2239 "void f() { for (auto &a : as); }",
Daniel Jasper31f7c082012-10-01 13:40:41 +00002240 forStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002241}
2242
Daniel Jasper6a124492012-07-12 08:50:38 +00002243TEST(For, ForLoopInternals) {
2244 EXPECT_TRUE(matches("void f(){ int i; for (; i < 3 ; ); }",
2245 forStmt(hasCondition(anything()))));
2246 EXPECT_TRUE(matches("void f() { for (int i = 0; ;); }",
2247 forStmt(hasLoopInit(anything()))));
2248}
2249
2250TEST(For, NegativeForLoopInternals) {
2251 EXPECT_TRUE(notMatches("void f(){ for (int i = 0; ; ++i); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002252 forStmt(hasCondition(expr()))));
Daniel Jasper6a124492012-07-12 08:50:38 +00002253 EXPECT_TRUE(notMatches("void f() {int i; for (; i < 4; ++i) {} }",
2254 forStmt(hasLoopInit(anything()))));
2255}
2256
Manuel Klimek4da21662012-07-06 05:48:52 +00002257TEST(For, ReportsNoFalsePositives) {
2258 EXPECT_TRUE(notMatches("void f() { ; }", forStmt()));
2259 EXPECT_TRUE(notMatches("void f() { if(true); }", forStmt()));
2260}
2261
2262TEST(CompoundStatement, HandlesSimpleCases) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002263 EXPECT_TRUE(notMatches("void f();", compoundStmt()));
2264 EXPECT_TRUE(matches("void f() {}", compoundStmt()));
2265 EXPECT_TRUE(matches("void f() {{}}", compoundStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002266}
2267
2268TEST(CompoundStatement, DoesNotMatchEmptyStruct) {
2269 // It's not a compound statement just because there's "{}" in the source
2270 // text. This is an AST search, not grep.
2271 EXPECT_TRUE(notMatches("namespace n { struct S {}; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002272 compoundStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002273 EXPECT_TRUE(matches("namespace n { struct S { void f() {{}} }; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002274 compoundStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002275}
2276
Daniel Jasper6a124492012-07-12 08:50:38 +00002277TEST(HasBody, FindsBodyOfForWhileDoLoops) {
Manuel Klimek4da21662012-07-06 05:48:52 +00002278 EXPECT_TRUE(matches("void f() { for(;;) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002279 forStmt(hasBody(compoundStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002280 EXPECT_TRUE(notMatches("void f() { for(;;); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002281 forStmt(hasBody(compoundStmt()))));
Daniel Jasper6a124492012-07-12 08:50:38 +00002282 EXPECT_TRUE(matches("void f() { while(true) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002283 whileStmt(hasBody(compoundStmt()))));
Daniel Jasper6a124492012-07-12 08:50:38 +00002284 EXPECT_TRUE(matches("void f() { do {} while(true); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002285 doStmt(hasBody(compoundStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002286}
2287
2288TEST(HasAnySubstatement, MatchesForTopLevelCompoundStatement) {
2289 // The simplest case: every compound statement is in a function
2290 // definition, and the function body itself must be a compound
2291 // statement.
2292 EXPECT_TRUE(matches("void f() { for (;;); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002293 compoundStmt(hasAnySubstatement(forStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002294}
2295
2296TEST(HasAnySubstatement, IsNotRecursive) {
2297 // It's really "has any immediate substatement".
2298 EXPECT_TRUE(notMatches("void f() { if (true) for (;;); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002299 compoundStmt(hasAnySubstatement(forStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002300}
2301
2302TEST(HasAnySubstatement, MatchesInNestedCompoundStatements) {
2303 EXPECT_TRUE(matches("void f() { if (true) { for (;;); } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002304 compoundStmt(hasAnySubstatement(forStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002305}
2306
2307TEST(HasAnySubstatement, FindsSubstatementBetweenOthers) {
2308 EXPECT_TRUE(matches("void f() { 1; 2; 3; for (;;); 4; 5; 6; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002309 compoundStmt(hasAnySubstatement(forStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002310}
2311
2312TEST(StatementCountIs, FindsNoStatementsInAnEmptyCompoundStatement) {
2313 EXPECT_TRUE(matches("void f() { }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002314 compoundStmt(statementCountIs(0))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002315 EXPECT_TRUE(notMatches("void f() {}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002316 compoundStmt(statementCountIs(1))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002317}
2318
2319TEST(StatementCountIs, AppearsToMatchOnlyOneCount) {
2320 EXPECT_TRUE(matches("void f() { 1; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002321 compoundStmt(statementCountIs(1))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002322 EXPECT_TRUE(notMatches("void f() { 1; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002323 compoundStmt(statementCountIs(0))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002324 EXPECT_TRUE(notMatches("void f() { 1; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002325 compoundStmt(statementCountIs(2))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002326}
2327
2328TEST(StatementCountIs, WorksWithMultipleStatements) {
2329 EXPECT_TRUE(matches("void f() { 1; 2; 3; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002330 compoundStmt(statementCountIs(3))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002331}
2332
2333TEST(StatementCountIs, WorksWithNestedCompoundStatements) {
2334 EXPECT_TRUE(matches("void f() { { 1; } { 1; 2; 3; 4; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002335 compoundStmt(statementCountIs(1))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002336 EXPECT_TRUE(matches("void f() { { 1; } { 1; 2; 3; 4; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002337 compoundStmt(statementCountIs(2))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002338 EXPECT_TRUE(notMatches("void f() { { 1; } { 1; 2; 3; 4; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002339 compoundStmt(statementCountIs(3))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002340 EXPECT_TRUE(matches("void f() { { 1; } { 1; 2; 3; 4; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002341 compoundStmt(statementCountIs(4))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002342}
2343
2344TEST(Member, WorksInSimplestCase) {
2345 EXPECT_TRUE(matches("struct { int first; } s; int i(s.first);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002346 memberExpr(member(hasName("first")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002347}
2348
2349TEST(Member, DoesNotMatchTheBaseExpression) {
2350 // Don't pick out the wrong part of the member expression, this should
2351 // be checking the member (name) only.
2352 EXPECT_TRUE(notMatches("struct { int i; } first; int i(first.i);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002353 memberExpr(member(hasName("first")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002354}
2355
2356TEST(Member, MatchesInMemberFunctionCall) {
2357 EXPECT_TRUE(matches("void f() {"
2358 " struct { void first() {}; } s;"
2359 " s.first();"
2360 "};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002361 memberExpr(member(hasName("first")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002362}
2363
Daniel Jasperc711af22012-10-23 15:46:39 +00002364TEST(Member, MatchesMember) {
2365 EXPECT_TRUE(matches(
2366 "struct A { int i; }; void f() { A a; a.i = 2; }",
2367 memberExpr(hasDeclaration(fieldDecl(hasType(isInteger()))))));
2368 EXPECT_TRUE(notMatches(
2369 "struct A { float f; }; void f() { A a; a.f = 2.0f; }",
2370 memberExpr(hasDeclaration(fieldDecl(hasType(isInteger()))))));
2371}
2372
Daniel Jasperf3197e92013-02-25 12:02:08 +00002373TEST(Member, UnderstandsAccess) {
2374 EXPECT_TRUE(matches(
2375 "struct A { int i; };", fieldDecl(isPublic(), hasName("i"))));
2376 EXPECT_TRUE(notMatches(
2377 "struct A { int i; };", fieldDecl(isProtected(), hasName("i"))));
2378 EXPECT_TRUE(notMatches(
2379 "struct A { int i; };", fieldDecl(isPrivate(), hasName("i"))));
2380
2381 EXPECT_TRUE(notMatches(
2382 "class A { int i; };", fieldDecl(isPublic(), hasName("i"))));
2383 EXPECT_TRUE(notMatches(
2384 "class A { int i; };", fieldDecl(isProtected(), hasName("i"))));
2385 EXPECT_TRUE(matches(
2386 "class A { int i; };", fieldDecl(isPrivate(), hasName("i"))));
2387
2388 EXPECT_TRUE(notMatches(
2389 "class A { protected: int i; };", fieldDecl(isPublic(), hasName("i"))));
2390 EXPECT_TRUE(matches("class A { protected: int i; };",
2391 fieldDecl(isProtected(), hasName("i"))));
2392 EXPECT_TRUE(notMatches(
2393 "class A { protected: int i; };", fieldDecl(isPrivate(), hasName("i"))));
2394
2395 // Non-member decls have the AccessSpecifier AS_none and thus aren't matched.
2396 EXPECT_TRUE(notMatches("int i;", varDecl(isPublic(), hasName("i"))));
2397 EXPECT_TRUE(notMatches("int i;", varDecl(isProtected(), hasName("i"))));
2398 EXPECT_TRUE(notMatches("int i;", varDecl(isPrivate(), hasName("i"))));
2399}
2400
Dmitri Gribenko671a0452012-08-18 00:29:27 +00002401TEST(Member, MatchesMemberAllocationFunction) {
Daniel Jasper31f7c082012-10-01 13:40:41 +00002402 // Fails in C++11 mode
2403 EXPECT_TRUE(matchesConditionally(
2404 "namespace std { typedef typeof(sizeof(int)) size_t; }"
2405 "class X { void *operator new(std::size_t); };",
2406 methodDecl(ofClass(hasName("X"))), true, "-std=gnu++98"));
Dmitri Gribenko671a0452012-08-18 00:29:27 +00002407
2408 EXPECT_TRUE(matches("class X { void operator delete(void*); };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002409 methodDecl(ofClass(hasName("X")))));
Dmitri Gribenko671a0452012-08-18 00:29:27 +00002410
Daniel Jasper31f7c082012-10-01 13:40:41 +00002411 // Fails in C++11 mode
2412 EXPECT_TRUE(matchesConditionally(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002413 "namespace std { typedef typeof(sizeof(int)) size_t; }"
2414 "class X { void operator delete[](void*, std::size_t); };",
Daniel Jasper31f7c082012-10-01 13:40:41 +00002415 methodDecl(ofClass(hasName("X"))), true, "-std=gnu++98"));
Dmitri Gribenko671a0452012-08-18 00:29:27 +00002416}
2417
Manuel Klimek4da21662012-07-06 05:48:52 +00002418TEST(HasObjectExpression, DoesNotMatchMember) {
2419 EXPECT_TRUE(notMatches(
2420 "class X {}; struct Z { X m; }; void f(Z z) { z.m; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002421 memberExpr(hasObjectExpression(hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002422}
2423
2424TEST(HasObjectExpression, MatchesBaseOfVariable) {
2425 EXPECT_TRUE(matches(
2426 "struct X { int m; }; void f(X x) { x.m; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002427 memberExpr(hasObjectExpression(hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002428 EXPECT_TRUE(matches(
2429 "struct X { int m; }; void f(X* x) { x->m; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002430 memberExpr(hasObjectExpression(
2431 hasType(pointsTo(recordDecl(hasName("X"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002432}
2433
2434TEST(HasObjectExpression,
2435 MatchesObjectExpressionOfImplicitlyFormedMemberExpression) {
2436 EXPECT_TRUE(matches(
2437 "class X {}; struct S { X m; void f() { this->m; } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002438 memberExpr(hasObjectExpression(
2439 hasType(pointsTo(recordDecl(hasName("S"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002440 EXPECT_TRUE(matches(
2441 "class X {}; struct S { X m; void f() { m; } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002442 memberExpr(hasObjectExpression(
2443 hasType(pointsTo(recordDecl(hasName("S"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002444}
2445
2446TEST(Field, DoesNotMatchNonFieldMembers) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002447 EXPECT_TRUE(notMatches("class X { void m(); };", fieldDecl(hasName("m"))));
2448 EXPECT_TRUE(notMatches("class X { class m {}; };", fieldDecl(hasName("m"))));
2449 EXPECT_TRUE(notMatches("class X { enum { m }; };", fieldDecl(hasName("m"))));
2450 EXPECT_TRUE(notMatches("class X { enum m {}; };", fieldDecl(hasName("m"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002451}
2452
2453TEST(Field, MatchesField) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002454 EXPECT_TRUE(matches("class X { int m; };", fieldDecl(hasName("m"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002455}
2456
2457TEST(IsConstQualified, MatchesConstInt) {
2458 EXPECT_TRUE(matches("const int i = 42;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002459 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002460}
2461
2462TEST(IsConstQualified, MatchesConstPointer) {
2463 EXPECT_TRUE(matches("int i = 42; int* const p(&i);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002464 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002465}
2466
2467TEST(IsConstQualified, MatchesThroughTypedef) {
2468 EXPECT_TRUE(matches("typedef const int const_int; const_int i = 42;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002469 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002470 EXPECT_TRUE(matches("typedef int* int_ptr; const int_ptr p(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002471 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002472}
2473
2474TEST(IsConstQualified, DoesNotMatchInappropriately) {
2475 EXPECT_TRUE(notMatches("typedef int nonconst_int; nonconst_int i = 42;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002476 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002477 EXPECT_TRUE(notMatches("int const* p;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002478 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002479}
2480
Sam Panzer089e5b32012-08-16 16:58:10 +00002481TEST(CastExpression, MatchesExplicitCasts) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002482 EXPECT_TRUE(matches("char *p = reinterpret_cast<char *>(&p);",castExpr()));
2483 EXPECT_TRUE(matches("void *p = (void *)(&p);", castExpr()));
2484 EXPECT_TRUE(matches("char q, *p = const_cast<char *>(&q);", castExpr()));
2485 EXPECT_TRUE(matches("char c = char(0);", castExpr()));
Sam Panzer089e5b32012-08-16 16:58:10 +00002486}
2487TEST(CastExpression, MatchesImplicitCasts) {
2488 // This test creates an implicit cast from int to char.
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002489 EXPECT_TRUE(matches("char c = 0;", castExpr()));
Sam Panzer089e5b32012-08-16 16:58:10 +00002490 // This test creates an implicit cast from lvalue to rvalue.
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002491 EXPECT_TRUE(matches("char c = 0, d = c;", castExpr()));
Sam Panzer089e5b32012-08-16 16:58:10 +00002492}
2493
2494TEST(CastExpression, DoesNotMatchNonCasts) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002495 EXPECT_TRUE(notMatches("char c = '0';", castExpr()));
2496 EXPECT_TRUE(notMatches("char c, &q = c;", castExpr()));
2497 EXPECT_TRUE(notMatches("int i = (0);", castExpr()));
2498 EXPECT_TRUE(notMatches("int i = 0;", castExpr()));
Sam Panzer089e5b32012-08-16 16:58:10 +00002499}
2500
Manuel Klimek4da21662012-07-06 05:48:52 +00002501TEST(ReinterpretCast, MatchesSimpleCase) {
2502 EXPECT_TRUE(matches("char* p = reinterpret_cast<char*>(&p);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002503 reinterpretCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002504}
2505
2506TEST(ReinterpretCast, DoesNotMatchOtherCasts) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002507 EXPECT_TRUE(notMatches("char* p = (char*)(&p);", reinterpretCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002508 EXPECT_TRUE(notMatches("char q, *p = const_cast<char*>(&q);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002509 reinterpretCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002510 EXPECT_TRUE(notMatches("void* p = static_cast<void*>(&p);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002511 reinterpretCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002512 EXPECT_TRUE(notMatches("struct B { virtual ~B() {} }; struct D : B {};"
2513 "B b;"
2514 "D* p = dynamic_cast<D*>(&b);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002515 reinterpretCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002516}
2517
2518TEST(FunctionalCast, MatchesSimpleCase) {
2519 std::string foo_class = "class Foo { public: Foo(char*); };";
2520 EXPECT_TRUE(matches(foo_class + "void r() { Foo f = Foo(\"hello world\"); }",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002521 functionalCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002522}
2523
2524TEST(FunctionalCast, DoesNotMatchOtherCasts) {
2525 std::string FooClass = "class Foo { public: Foo(char*); };";
2526 EXPECT_TRUE(
2527 notMatches(FooClass + "void r() { Foo f = (Foo) \"hello world\"; }",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002528 functionalCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002529 EXPECT_TRUE(
2530 notMatches(FooClass + "void r() { Foo f = \"hello world\"; }",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002531 functionalCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002532}
2533
2534TEST(DynamicCast, MatchesSimpleCase) {
2535 EXPECT_TRUE(matches("struct B { virtual ~B() {} }; struct D : B {};"
2536 "B b;"
2537 "D* p = dynamic_cast<D*>(&b);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002538 dynamicCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002539}
2540
2541TEST(StaticCast, MatchesSimpleCase) {
2542 EXPECT_TRUE(matches("void* p(static_cast<void*>(&p));",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002543 staticCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002544}
2545
2546TEST(StaticCast, DoesNotMatchOtherCasts) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002547 EXPECT_TRUE(notMatches("char* p = (char*)(&p);", staticCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002548 EXPECT_TRUE(notMatches("char q, *p = const_cast<char*>(&q);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002549 staticCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002550 EXPECT_TRUE(notMatches("void* p = reinterpret_cast<char*>(&p);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002551 staticCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002552 EXPECT_TRUE(notMatches("struct B { virtual ~B() {} }; struct D : B {};"
2553 "B b;"
2554 "D* p = dynamic_cast<D*>(&b);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002555 staticCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002556}
2557
Daniel Jaspere6d2a962012-09-18 13:36:17 +00002558TEST(CStyleCast, MatchesSimpleCase) {
2559 EXPECT_TRUE(matches("int i = (int) 2.2f;", cStyleCastExpr()));
2560}
2561
2562TEST(CStyleCast, DoesNotMatchOtherCasts) {
2563 EXPECT_TRUE(notMatches("char* p = static_cast<char*>(0);"
2564 "char q, *r = const_cast<char*>(&q);"
2565 "void* s = reinterpret_cast<char*>(&s);"
2566 "struct B { virtual ~B() {} }; struct D : B {};"
2567 "B b;"
2568 "D* t = dynamic_cast<D*>(&b);",
2569 cStyleCastExpr()));
2570}
2571
Manuel Klimek4da21662012-07-06 05:48:52 +00002572TEST(HasDestinationType, MatchesSimpleCase) {
2573 EXPECT_TRUE(matches("char* p = static_cast<char*>(0);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002574 staticCastExpr(hasDestinationType(
2575 pointsTo(TypeMatcher(anything()))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002576}
2577
Sam Panzer089e5b32012-08-16 16:58:10 +00002578TEST(HasImplicitDestinationType, MatchesSimpleCase) {
2579 // This test creates an implicit const cast.
2580 EXPECT_TRUE(matches("int x; const int i = x;",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002581 implicitCastExpr(
2582 hasImplicitDestinationType(isInteger()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002583 // This test creates an implicit array-to-pointer cast.
2584 EXPECT_TRUE(matches("int arr[3]; int *p = arr;",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002585 implicitCastExpr(hasImplicitDestinationType(
2586 pointsTo(TypeMatcher(anything()))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002587}
2588
2589TEST(HasImplicitDestinationType, DoesNotMatchIncorrectly) {
2590 // This test creates an implicit cast from int to char.
2591 EXPECT_TRUE(notMatches("char c = 0;",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002592 implicitCastExpr(hasImplicitDestinationType(
2593 unless(anything())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002594 // This test creates an implicit array-to-pointer cast.
2595 EXPECT_TRUE(notMatches("int arr[3]; int *p = arr;",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002596 implicitCastExpr(hasImplicitDestinationType(
2597 unless(anything())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002598}
2599
2600TEST(ImplicitCast, MatchesSimpleCase) {
2601 // This test creates an implicit const cast.
2602 EXPECT_TRUE(matches("int x = 0; const int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002603 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002604 // This test creates an implicit cast from int to char.
2605 EXPECT_TRUE(matches("char c = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002606 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002607 // This test creates an implicit array-to-pointer cast.
2608 EXPECT_TRUE(matches("int arr[6]; int *p = arr;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002609 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002610}
2611
2612TEST(ImplicitCast, DoesNotMatchIncorrectly) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002613 // This test verifies that implicitCastExpr() matches exactly when implicit casts
Sam Panzer089e5b32012-08-16 16:58:10 +00002614 // are present, and that it ignores explicit and paren casts.
2615
2616 // These two test cases have no casts.
2617 EXPECT_TRUE(notMatches("int x = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002618 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002619 EXPECT_TRUE(notMatches("int x = 0, &y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002620 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002621
2622 EXPECT_TRUE(notMatches("int x = 0; double d = (double) x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002623 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002624 EXPECT_TRUE(notMatches("const int *p; int *q = const_cast<int *>(p);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002625 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002626
2627 EXPECT_TRUE(notMatches("int x = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002628 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002629}
2630
2631TEST(IgnoringImpCasts, MatchesImpCasts) {
2632 // This test checks that ignoringImpCasts matches when implicit casts are
2633 // present and its inner matcher alone does not match.
2634 // Note that this test creates an implicit const cast.
2635 EXPECT_TRUE(matches("int x = 0; const int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002636 varDecl(hasInitializer(ignoringImpCasts(
2637 declRefExpr(to(varDecl(hasName("x")))))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002638 // This test creates an implict cast from int to char.
2639 EXPECT_TRUE(matches("char x = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002640 varDecl(hasInitializer(ignoringImpCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002641 integerLiteral(equals(0)))))));
2642}
2643
2644TEST(IgnoringImpCasts, DoesNotMatchIncorrectly) {
2645 // These tests verify that ignoringImpCasts does not match if the inner
2646 // matcher does not match.
2647 // Note that the first test creates an implicit const cast.
2648 EXPECT_TRUE(notMatches("int x; const int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002649 varDecl(hasInitializer(ignoringImpCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002650 unless(anything()))))));
2651 EXPECT_TRUE(notMatches("int x; int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002652 varDecl(hasInitializer(ignoringImpCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002653 unless(anything()))))));
2654
2655 // These tests verify that ignoringImplictCasts does not look through explicit
2656 // casts or parentheses.
2657 EXPECT_TRUE(notMatches("char* p = static_cast<char*>(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002658 varDecl(hasInitializer(ignoringImpCasts(
2659 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002660 EXPECT_TRUE(notMatches("int i = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002661 varDecl(hasInitializer(ignoringImpCasts(
2662 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002663 EXPECT_TRUE(notMatches("float i = (float)0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002664 varDecl(hasInitializer(ignoringImpCasts(
2665 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002666 EXPECT_TRUE(notMatches("float i = float(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002667 varDecl(hasInitializer(ignoringImpCasts(
2668 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002669}
2670
2671TEST(IgnoringImpCasts, MatchesWithoutImpCasts) {
2672 // This test verifies that expressions that do not have implicit casts
2673 // still match the inner matcher.
2674 EXPECT_TRUE(matches("int x = 0; int &y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002675 varDecl(hasInitializer(ignoringImpCasts(
2676 declRefExpr(to(varDecl(hasName("x")))))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002677}
2678
2679TEST(IgnoringParenCasts, MatchesParenCasts) {
2680 // This test checks that ignoringParenCasts matches when parentheses and/or
2681 // casts are present and its inner matcher alone does not match.
2682 EXPECT_TRUE(matches("int x = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002683 varDecl(hasInitializer(ignoringParenCasts(
2684 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002685 EXPECT_TRUE(matches("int x = (((((0)))));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002686 varDecl(hasInitializer(ignoringParenCasts(
2687 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002688
2689 // This test creates an implict cast from int to char in addition to the
2690 // parentheses.
2691 EXPECT_TRUE(matches("char x = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002692 varDecl(hasInitializer(ignoringParenCasts(
2693 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002694
2695 EXPECT_TRUE(matches("char x = (char)0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002696 varDecl(hasInitializer(ignoringParenCasts(
2697 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002698 EXPECT_TRUE(matches("char* p = static_cast<char*>(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002699 varDecl(hasInitializer(ignoringParenCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002700 integerLiteral(equals(0)))))));
2701}
2702
2703TEST(IgnoringParenCasts, MatchesWithoutParenCasts) {
2704 // This test verifies that expressions that do not have any casts still match.
2705 EXPECT_TRUE(matches("int x = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002706 varDecl(hasInitializer(ignoringParenCasts(
2707 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002708}
2709
2710TEST(IgnoringParenCasts, DoesNotMatchIncorrectly) {
2711 // These tests verify that ignoringImpCasts does not match if the inner
2712 // matcher does not match.
2713 EXPECT_TRUE(notMatches("int x = ((0));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002714 varDecl(hasInitializer(ignoringParenCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002715 unless(anything()))))));
2716
2717 // This test creates an implicit cast from int to char in addition to the
2718 // parentheses.
2719 EXPECT_TRUE(notMatches("char x = ((0));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002720 varDecl(hasInitializer(ignoringParenCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002721 unless(anything()))))));
2722
2723 EXPECT_TRUE(notMatches("char *x = static_cast<char *>((0));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002724 varDecl(hasInitializer(ignoringParenCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002725 unless(anything()))))));
2726}
2727
2728TEST(IgnoringParenAndImpCasts, MatchesParenImpCasts) {
2729 // This test checks that ignoringParenAndImpCasts matches when
2730 // parentheses and/or implicit casts are present and its inner matcher alone
2731 // does not match.
2732 // Note that this test creates an implicit const cast.
2733 EXPECT_TRUE(matches("int x = 0; const int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002734 varDecl(hasInitializer(ignoringParenImpCasts(
2735 declRefExpr(to(varDecl(hasName("x")))))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002736 // This test creates an implicit cast from int to char.
2737 EXPECT_TRUE(matches("const char x = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002738 varDecl(hasInitializer(ignoringParenImpCasts(
2739 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002740}
2741
2742TEST(IgnoringParenAndImpCasts, MatchesWithoutParenImpCasts) {
2743 // This test verifies that expressions that do not have parentheses or
2744 // implicit casts still match.
2745 EXPECT_TRUE(matches("int x = 0; int &y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002746 varDecl(hasInitializer(ignoringParenImpCasts(
2747 declRefExpr(to(varDecl(hasName("x")))))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002748 EXPECT_TRUE(matches("int x = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002749 varDecl(hasInitializer(ignoringParenImpCasts(
2750 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002751}
2752
2753TEST(IgnoringParenAndImpCasts, DoesNotMatchIncorrectly) {
2754 // These tests verify that ignoringParenImpCasts does not match if
2755 // the inner matcher does not match.
2756 // This test creates an implicit cast.
2757 EXPECT_TRUE(notMatches("char c = ((3));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002758 varDecl(hasInitializer(ignoringParenImpCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002759 unless(anything()))))));
2760 // These tests verify that ignoringParenAndImplictCasts does not look
2761 // through explicit casts.
2762 EXPECT_TRUE(notMatches("float y = (float(0));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002763 varDecl(hasInitializer(ignoringParenImpCasts(
2764 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002765 EXPECT_TRUE(notMatches("float y = (float)0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002766 varDecl(hasInitializer(ignoringParenImpCasts(
2767 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002768 EXPECT_TRUE(notMatches("char* p = static_cast<char*>(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002769 varDecl(hasInitializer(ignoringParenImpCasts(
2770 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002771}
2772
Manuel Klimek715c9562012-07-25 10:02:02 +00002773TEST(HasSourceExpression, MatchesImplicitCasts) {
Manuel Klimek4da21662012-07-06 05:48:52 +00002774 EXPECT_TRUE(matches("class string {}; class URL { public: URL(string s); };"
2775 "void r() {string a_string; URL url = a_string; }",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002776 implicitCastExpr(
2777 hasSourceExpression(constructExpr()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002778}
2779
Manuel Klimek715c9562012-07-25 10:02:02 +00002780TEST(HasSourceExpression, MatchesExplicitCasts) {
2781 EXPECT_TRUE(matches("float x = static_cast<float>(42);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002782 explicitCastExpr(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002783 hasSourceExpression(hasDescendant(
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002784 expr(integerLiteral()))))));
Manuel Klimek715c9562012-07-25 10:02:02 +00002785}
2786
Manuel Klimek4da21662012-07-06 05:48:52 +00002787TEST(Statement, DoesNotMatchDeclarations) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002788 EXPECT_TRUE(notMatches("class X {};", stmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002789}
2790
2791TEST(Statement, MatchesCompoundStatments) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002792 EXPECT_TRUE(matches("void x() {}", stmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002793}
2794
2795TEST(DeclarationStatement, DoesNotMatchCompoundStatements) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002796 EXPECT_TRUE(notMatches("void x() {}", declStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002797}
2798
2799TEST(DeclarationStatement, MatchesVariableDeclarationStatements) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002800 EXPECT_TRUE(matches("void x() { int a; }", declStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002801}
2802
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002803TEST(InitListExpression, MatchesInitListExpression) {
2804 EXPECT_TRUE(matches("int a[] = { 1, 2 };",
2805 initListExpr(hasType(asString("int [2]")))));
2806 EXPECT_TRUE(matches("struct B { int x, y; }; B b = { 5, 6 };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002807 initListExpr(hasType(recordDecl(hasName("B"))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002808}
2809
2810TEST(UsingDeclaration, MatchesUsingDeclarations) {
2811 EXPECT_TRUE(matches("namespace X { int x; } using X::x;",
2812 usingDecl()));
2813}
2814
2815TEST(UsingDeclaration, MatchesShadowUsingDelcarations) {
2816 EXPECT_TRUE(matches("namespace f { int a; } using f::a;",
2817 usingDecl(hasAnyUsingShadowDecl(hasName("a")))));
2818}
2819
2820TEST(UsingDeclaration, MatchesSpecificTarget) {
2821 EXPECT_TRUE(matches("namespace f { int a; void b(); } using f::b;",
2822 usingDecl(hasAnyUsingShadowDecl(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002823 hasTargetDecl(functionDecl())))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002824 EXPECT_TRUE(notMatches("namespace f { int a; void b(); } using f::a;",
2825 usingDecl(hasAnyUsingShadowDecl(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002826 hasTargetDecl(functionDecl())))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002827}
2828
2829TEST(UsingDeclaration, ThroughUsingDeclaration) {
2830 EXPECT_TRUE(matches(
2831 "namespace a { void f(); } using a::f; void g() { f(); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002832 declRefExpr(throughUsingDecl(anything()))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002833 EXPECT_TRUE(notMatches(
2834 "namespace a { void f(); } using a::f; void g() { a::f(); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002835 declRefExpr(throughUsingDecl(anything()))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002836}
2837
Sam Panzer425f41b2012-08-16 17:20:59 +00002838TEST(SingleDecl, IsSingleDecl) {
2839 StatementMatcher SingleDeclStmt =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002840 declStmt(hasSingleDecl(varDecl(hasInitializer(anything()))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002841 EXPECT_TRUE(matches("void f() {int a = 4;}", SingleDeclStmt));
2842 EXPECT_TRUE(notMatches("void f() {int a;}", SingleDeclStmt));
2843 EXPECT_TRUE(notMatches("void f() {int a = 4, b = 3;}",
2844 SingleDeclStmt));
2845}
2846
2847TEST(DeclStmt, ContainsDeclaration) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002848 DeclarationMatcher MatchesInit = varDecl(hasInitializer(anything()));
Sam Panzer425f41b2012-08-16 17:20:59 +00002849
2850 EXPECT_TRUE(matches("void f() {int a = 4;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002851 declStmt(containsDeclaration(0, MatchesInit))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002852 EXPECT_TRUE(matches("void f() {int a = 4, b = 3;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002853 declStmt(containsDeclaration(0, MatchesInit),
2854 containsDeclaration(1, MatchesInit))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002855 unsigned WrongIndex = 42;
2856 EXPECT_TRUE(notMatches("void f() {int a = 4, b = 3;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002857 declStmt(containsDeclaration(WrongIndex,
Sam Panzer425f41b2012-08-16 17:20:59 +00002858 MatchesInit))));
2859}
2860
2861TEST(DeclCount, DeclCountIsCorrect) {
2862 EXPECT_TRUE(matches("void f() {int i,j;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002863 declStmt(declCountIs(2))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002864 EXPECT_TRUE(notMatches("void f() {int i,j; int k;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002865 declStmt(declCountIs(3))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002866 EXPECT_TRUE(notMatches("void f() {int i,j, k, l;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002867 declStmt(declCountIs(3))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002868}
2869
Manuel Klimek4da21662012-07-06 05:48:52 +00002870TEST(While, MatchesWhileLoops) {
2871 EXPECT_TRUE(notMatches("void x() {}", whileStmt()));
2872 EXPECT_TRUE(matches("void x() { while(true); }", whileStmt()));
2873 EXPECT_TRUE(notMatches("void x() { do {} while(true); }", whileStmt()));
2874}
2875
2876TEST(Do, MatchesDoLoops) {
2877 EXPECT_TRUE(matches("void x() { do {} while(true); }", doStmt()));
2878 EXPECT_TRUE(matches("void x() { do ; while(false); }", doStmt()));
2879}
2880
2881TEST(Do, DoesNotMatchWhileLoops) {
2882 EXPECT_TRUE(notMatches("void x() { while(true) {} }", doStmt()));
2883}
2884
2885TEST(SwitchCase, MatchesCase) {
2886 EXPECT_TRUE(matches("void x() { switch(42) { case 42:; } }", switchCase()));
2887 EXPECT_TRUE(matches("void x() { switch(42) { default:; } }", switchCase()));
2888 EXPECT_TRUE(matches("void x() { switch(42) default:; }", switchCase()));
2889 EXPECT_TRUE(notMatches("void x() { switch(42) {} }", switchCase()));
2890}
2891
Daniel Jasperb54b7642012-09-20 14:12:57 +00002892TEST(SwitchCase, MatchesSwitch) {
2893 EXPECT_TRUE(matches("void x() { switch(42) { case 42:; } }", switchStmt()));
2894 EXPECT_TRUE(matches("void x() { switch(42) { default:; } }", switchStmt()));
2895 EXPECT_TRUE(matches("void x() { switch(42) default:; }", switchStmt()));
2896 EXPECT_TRUE(notMatches("void x() {}", switchStmt()));
2897}
2898
2899TEST(ExceptionHandling, SimpleCases) {
2900 EXPECT_TRUE(matches("void foo() try { } catch(int X) { }", catchStmt()));
2901 EXPECT_TRUE(matches("void foo() try { } catch(int X) { }", tryStmt()));
2902 EXPECT_TRUE(notMatches("void foo() try { } catch(int X) { }", throwExpr()));
2903 EXPECT_TRUE(matches("void foo() try { throw; } catch(int X) { }",
2904 throwExpr()));
2905 EXPECT_TRUE(matches("void foo() try { throw 5;} catch(int X) { }",
2906 throwExpr()));
2907}
2908
Manuel Klimek4da21662012-07-06 05:48:52 +00002909TEST(HasConditionVariableStatement, DoesNotMatchCondition) {
2910 EXPECT_TRUE(notMatches(
2911 "void x() { if(true) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002912 ifStmt(hasConditionVariableStatement(declStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002913 EXPECT_TRUE(notMatches(
2914 "void x() { int x; if((x = 42)) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002915 ifStmt(hasConditionVariableStatement(declStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002916}
2917
2918TEST(HasConditionVariableStatement, MatchesConditionVariables) {
2919 EXPECT_TRUE(matches(
2920 "void x() { if(int* a = 0) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002921 ifStmt(hasConditionVariableStatement(declStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002922}
2923
2924TEST(ForEach, BindsOneNode) {
2925 EXPECT_TRUE(matchAndVerifyResultTrue("class C { int x; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002926 recordDecl(hasName("C"), forEach(fieldDecl(hasName("x")).bind("x"))),
Daniel Jaspera7564432012-09-13 13:11:25 +00002927 new VerifyIdIsBoundTo<FieldDecl>("x", 1)));
Manuel Klimek4da21662012-07-06 05:48:52 +00002928}
2929
2930TEST(ForEach, BindsMultipleNodes) {
2931 EXPECT_TRUE(matchAndVerifyResultTrue("class C { int x; int y; int z; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002932 recordDecl(hasName("C"), forEach(fieldDecl().bind("f"))),
Daniel Jaspera7564432012-09-13 13:11:25 +00002933 new VerifyIdIsBoundTo<FieldDecl>("f", 3)));
Manuel Klimek4da21662012-07-06 05:48:52 +00002934}
2935
2936TEST(ForEach, BindsRecursiveCombinations) {
2937 EXPECT_TRUE(matchAndVerifyResultTrue(
2938 "class C { class D { int x; int y; }; class E { int y; int z; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002939 recordDecl(hasName("C"),
2940 forEach(recordDecl(forEach(fieldDecl().bind("f"))))),
Daniel Jaspera7564432012-09-13 13:11:25 +00002941 new VerifyIdIsBoundTo<FieldDecl>("f", 4)));
Manuel Klimek4da21662012-07-06 05:48:52 +00002942}
2943
2944TEST(ForEachDescendant, BindsOneNode) {
2945 EXPECT_TRUE(matchAndVerifyResultTrue("class C { class D { int x; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002946 recordDecl(hasName("C"),
2947 forEachDescendant(fieldDecl(hasName("x")).bind("x"))),
Daniel Jaspera7564432012-09-13 13:11:25 +00002948 new VerifyIdIsBoundTo<FieldDecl>("x", 1)));
Manuel Klimek4da21662012-07-06 05:48:52 +00002949}
2950
Daniel Jasper5f684e92012-11-16 18:39:22 +00002951TEST(ForEachDescendant, NestedForEachDescendant) {
2952 DeclarationMatcher m = recordDecl(
2953 isDefinition(), decl().bind("x"), hasName("C"));
2954 EXPECT_TRUE(matchAndVerifyResultTrue(
2955 "class A { class B { class C {}; }; };",
2956 recordDecl(hasName("A"), anyOf(m, forEachDescendant(m))),
2957 new VerifyIdIsBoundTo<Decl>("x", "C")));
2958
2959 // FIXME: This is not really a useful matcher, but the result is still
2960 // surprising (currently binds "A").
2961 //EXPECT_TRUE(matchAndVerifyResultTrue(
2962 // "class A { class B { class C {}; }; };",
2963 // recordDecl(hasName("A"), allOf(hasDescendant(m), anyOf(m, anything()))),
2964 // new VerifyIdIsBoundTo<Decl>("x", "C")));
2965}
2966
Manuel Klimek4da21662012-07-06 05:48:52 +00002967TEST(ForEachDescendant, BindsMultipleNodes) {
2968 EXPECT_TRUE(matchAndVerifyResultTrue(
2969 "class C { class D { int x; int y; }; "
2970 " class E { class F { int y; int z; }; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002971 recordDecl(hasName("C"), forEachDescendant(fieldDecl().bind("f"))),
Daniel Jaspera7564432012-09-13 13:11:25 +00002972 new VerifyIdIsBoundTo<FieldDecl>("f", 4)));
Manuel Klimek4da21662012-07-06 05:48:52 +00002973}
2974
2975TEST(ForEachDescendant, BindsRecursiveCombinations) {
2976 EXPECT_TRUE(matchAndVerifyResultTrue(
2977 "class C { class D { "
2978 " class E { class F { class G { int y; int z; }; }; }; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002979 recordDecl(hasName("C"), forEachDescendant(recordDecl(
2980 forEachDescendant(fieldDecl().bind("f"))))),
Daniel Jaspera7564432012-09-13 13:11:25 +00002981 new VerifyIdIsBoundTo<FieldDecl>("f", 8)));
Manuel Klimek4da21662012-07-06 05:48:52 +00002982}
2983
Daniel Jasper11c98772012-11-11 22:14:55 +00002984TEST(ForEachDescendant, BindsCorrectNodes) {
2985 EXPECT_TRUE(matchAndVerifyResultTrue(
2986 "class C { void f(); int i; };",
2987 recordDecl(hasName("C"), forEachDescendant(decl().bind("decl"))),
2988 new VerifyIdIsBoundTo<FieldDecl>("decl", 1)));
2989 EXPECT_TRUE(matchAndVerifyResultTrue(
2990 "class C { void f() {} int i; };",
2991 recordDecl(hasName("C"), forEachDescendant(decl().bind("decl"))),
2992 new VerifyIdIsBoundTo<FunctionDecl>("decl", 1)));
2993}
2994
Manuel Klimek152ea0e2013-02-04 10:59:20 +00002995TEST(FindAll, BindsNodeOnMatch) {
2996 EXPECT_TRUE(matchAndVerifyResultTrue(
2997 "class A {};",
2998 recordDecl(hasName("::A"), findAll(recordDecl(hasName("::A")).bind("v"))),
2999 new VerifyIdIsBoundTo<CXXRecordDecl>("v", 1)));
3000}
3001
3002TEST(FindAll, BindsDescendantNodeOnMatch) {
3003 EXPECT_TRUE(matchAndVerifyResultTrue(
3004 "class A { int a; int b; };",
3005 recordDecl(hasName("::A"), findAll(fieldDecl().bind("v"))),
3006 new VerifyIdIsBoundTo<FieldDecl>("v", 2)));
3007}
3008
3009TEST(FindAll, BindsNodeAndDescendantNodesOnOneMatch) {
3010 EXPECT_TRUE(matchAndVerifyResultTrue(
3011 "class A { int a; int b; };",
3012 recordDecl(hasName("::A"),
3013 findAll(decl(anyOf(recordDecl(hasName("::A")).bind("v"),
3014 fieldDecl().bind("v"))))),
3015 new VerifyIdIsBoundTo<Decl>("v", 3)));
3016
3017 EXPECT_TRUE(matchAndVerifyResultTrue(
3018 "class A { class B {}; class C {}; };",
3019 recordDecl(hasName("::A"), findAll(recordDecl(isDefinition()).bind("v"))),
3020 new VerifyIdIsBoundTo<CXXRecordDecl>("v", 3)));
3021}
3022
Manuel Klimek73876732013-02-04 09:42:38 +00003023TEST(EachOf, TriggersForEachMatch) {
3024 EXPECT_TRUE(matchAndVerifyResultTrue(
3025 "class A { int a; int b; };",
3026 recordDecl(eachOf(has(fieldDecl(hasName("a")).bind("v")),
3027 has(fieldDecl(hasName("b")).bind("v")))),
3028 new VerifyIdIsBoundTo<FieldDecl>("v", 2)));
3029}
3030
3031TEST(EachOf, BehavesLikeAnyOfUnlessBothMatch) {
3032 EXPECT_TRUE(matchAndVerifyResultTrue(
3033 "class A { int a; int c; };",
3034 recordDecl(eachOf(has(fieldDecl(hasName("a")).bind("v")),
3035 has(fieldDecl(hasName("b")).bind("v")))),
3036 new VerifyIdIsBoundTo<FieldDecl>("v", 1)));
3037 EXPECT_TRUE(matchAndVerifyResultTrue(
3038 "class A { int c; int b; };",
3039 recordDecl(eachOf(has(fieldDecl(hasName("a")).bind("v")),
3040 has(fieldDecl(hasName("b")).bind("v")))),
3041 new VerifyIdIsBoundTo<FieldDecl>("v", 1)));
3042 EXPECT_TRUE(notMatches(
3043 "class A { int c; int d; };",
3044 recordDecl(eachOf(has(fieldDecl(hasName("a")).bind("v")),
3045 has(fieldDecl(hasName("b")).bind("v"))))));
3046}
Manuel Klimek4da21662012-07-06 05:48:52 +00003047
3048TEST(IsTemplateInstantiation, MatchesImplicitClassTemplateInstantiation) {
3049 // Make sure that we can both match the class by name (::X) and by the type
3050 // the template was instantiated with (via a field).
3051
3052 EXPECT_TRUE(matches(
3053 "template <typename T> class X {}; class A {}; X<A> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003054 recordDecl(hasName("::X"), isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00003055
3056 EXPECT_TRUE(matches(
3057 "template <typename T> class X { T t; }; class A {}; X<A> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003058 recordDecl(isTemplateInstantiation(), hasDescendant(
3059 fieldDecl(hasType(recordDecl(hasName("A"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00003060}
3061
3062TEST(IsTemplateInstantiation, MatchesImplicitFunctionTemplateInstantiation) {
3063 EXPECT_TRUE(matches(
3064 "template <typename T> void f(T t) {} class A {}; void g() { f(A()); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003065 functionDecl(hasParameter(0, hasType(recordDecl(hasName("A")))),
Manuel Klimek4da21662012-07-06 05:48:52 +00003066 isTemplateInstantiation())));
3067}
3068
3069TEST(IsTemplateInstantiation, MatchesExplicitClassTemplateInstantiation) {
3070 EXPECT_TRUE(matches(
3071 "template <typename T> class X { T t; }; class A {};"
3072 "template class X<A>;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003073 recordDecl(isTemplateInstantiation(), hasDescendant(
3074 fieldDecl(hasType(recordDecl(hasName("A"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00003075}
3076
3077TEST(IsTemplateInstantiation,
3078 MatchesInstantiationOfPartiallySpecializedClassTemplate) {
3079 EXPECT_TRUE(matches(
3080 "template <typename T> class X {};"
3081 "template <typename T> class X<T*> {}; class A {}; X<A*> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003082 recordDecl(hasName("::X"), isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00003083}
3084
3085TEST(IsTemplateInstantiation,
3086 MatchesInstantiationOfClassTemplateNestedInNonTemplate) {
3087 EXPECT_TRUE(matches(
3088 "class A {};"
3089 "class X {"
3090 " template <typename U> class Y { U u; };"
3091 " Y<A> y;"
3092 "};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003093 recordDecl(hasName("::X::Y"), isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00003094}
3095
3096TEST(IsTemplateInstantiation, DoesNotMatchInstantiationsInsideOfInstantiation) {
3097 // FIXME: Figure out whether this makes sense. It doesn't affect the
3098 // normal use case as long as the uppermost instantiation always is marked
3099 // as template instantiation, but it might be confusing as a predicate.
3100 EXPECT_TRUE(matches(
3101 "class A {};"
3102 "template <typename T> class X {"
3103 " template <typename U> class Y { U u; };"
3104 " Y<T> y;"
3105 "}; X<A> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003106 recordDecl(hasName("::X<A>::Y"), unless(isTemplateInstantiation()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00003107}
3108
3109TEST(IsTemplateInstantiation, DoesNotMatchExplicitClassTemplateSpecialization) {
3110 EXPECT_TRUE(notMatches(
3111 "template <typename T> class X {}; class A {};"
3112 "template <> class X<A> {}; X<A> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003113 recordDecl(hasName("::X"), isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00003114}
3115
3116TEST(IsTemplateInstantiation, DoesNotMatchNonTemplate) {
3117 EXPECT_TRUE(notMatches(
3118 "class A {}; class Y { A a; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003119 recordDecl(isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00003120}
3121
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003122TEST(IsExplicitTemplateSpecialization,
3123 DoesNotMatchPrimaryTemplate) {
3124 EXPECT_TRUE(notMatches(
3125 "template <typename T> class X {};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003126 recordDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003127 EXPECT_TRUE(notMatches(
3128 "template <typename T> void f(T t);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003129 functionDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003130}
3131
3132TEST(IsExplicitTemplateSpecialization,
3133 DoesNotMatchExplicitTemplateInstantiations) {
3134 EXPECT_TRUE(notMatches(
3135 "template <typename T> class X {};"
3136 "template class X<int>; extern template class X<long>;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003137 recordDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003138 EXPECT_TRUE(notMatches(
3139 "template <typename T> void f(T t) {}"
3140 "template void f(int t); extern template void f(long t);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003141 functionDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003142}
3143
3144TEST(IsExplicitTemplateSpecialization,
3145 DoesNotMatchImplicitTemplateInstantiations) {
3146 EXPECT_TRUE(notMatches(
3147 "template <typename T> class X {}; X<int> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003148 recordDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003149 EXPECT_TRUE(notMatches(
3150 "template <typename T> void f(T t); void g() { f(10); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003151 functionDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003152}
3153
3154TEST(IsExplicitTemplateSpecialization,
3155 MatchesExplicitTemplateSpecializations) {
3156 EXPECT_TRUE(matches(
3157 "template <typename T> class X {};"
3158 "template<> class X<int> {};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003159 recordDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003160 EXPECT_TRUE(matches(
3161 "template <typename T> void f(T t) {}"
3162 "template<> void f(int t) {}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003163 functionDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003164}
3165
Manuel Klimek579b1202012-09-07 09:26:10 +00003166TEST(HasAncenstor, MatchesDeclarationAncestors) {
3167 EXPECT_TRUE(matches(
3168 "class A { class B { class C {}; }; };",
3169 recordDecl(hasName("C"), hasAncestor(recordDecl(hasName("A"))))));
3170}
3171
3172TEST(HasAncenstor, FailsIfNoAncestorMatches) {
3173 EXPECT_TRUE(notMatches(
3174 "class A { class B { class C {}; }; };",
3175 recordDecl(hasName("C"), hasAncestor(recordDecl(hasName("X"))))));
3176}
3177
3178TEST(HasAncestor, MatchesDeclarationsThatGetVisitedLater) {
3179 EXPECT_TRUE(matches(
3180 "class A { class B { void f() { C c; } class C {}; }; };",
3181 varDecl(hasName("c"), hasType(recordDecl(hasName("C"),
3182 hasAncestor(recordDecl(hasName("A"))))))));
3183}
3184
3185TEST(HasAncenstor, MatchesStatementAncestors) {
3186 EXPECT_TRUE(matches(
3187 "void f() { if (true) { while (false) { 42; } } }",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00003188 integerLiteral(equals(42), hasAncestor(ifStmt()))));
Manuel Klimek579b1202012-09-07 09:26:10 +00003189}
3190
3191TEST(HasAncestor, DrillsThroughDifferentHierarchies) {
3192 EXPECT_TRUE(matches(
3193 "void f() { if (true) { int x = 42; } }",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00003194 integerLiteral(equals(42), hasAncestor(functionDecl(hasName("f"))))));
Manuel Klimek579b1202012-09-07 09:26:10 +00003195}
3196
3197TEST(HasAncestor, BindsRecursiveCombinations) {
3198 EXPECT_TRUE(matchAndVerifyResultTrue(
3199 "class C { class D { class E { class F { int y; }; }; }; };",
3200 fieldDecl(hasAncestor(recordDecl(hasAncestor(recordDecl().bind("r"))))),
Daniel Jaspera7564432012-09-13 13:11:25 +00003201 new VerifyIdIsBoundTo<CXXRecordDecl>("r", 1)));
Manuel Klimek579b1202012-09-07 09:26:10 +00003202}
3203
3204TEST(HasAncestor, BindsCombinationsWithHasDescendant) {
3205 EXPECT_TRUE(matchAndVerifyResultTrue(
3206 "class C { class D { class E { class F { int y; }; }; }; };",
3207 fieldDecl(hasAncestor(
3208 decl(
3209 hasDescendant(recordDecl(isDefinition(),
3210 hasAncestor(recordDecl())))
3211 ).bind("d")
3212 )),
Daniel Jaspera7564432012-09-13 13:11:25 +00003213 new VerifyIdIsBoundTo<CXXRecordDecl>("d", "E")));
Manuel Klimek579b1202012-09-07 09:26:10 +00003214}
3215
Manuel Klimek374516c2013-03-14 16:33:21 +00003216TEST(HasAncestor, MatchesClosestAncestor) {
3217 EXPECT_TRUE(matchAndVerifyResultTrue(
3218 "template <typename T> struct C {"
3219 " void f(int) {"
3220 " struct I { void g(T) { int x; } } i; i.g(42);"
3221 " }"
3222 "};"
3223 "template struct C<int>;",
3224 varDecl(hasName("x"),
3225 hasAncestor(functionDecl(hasParameter(
3226 0, varDecl(hasType(asString("int"))))).bind("f"))).bind("v"),
3227 new VerifyIdIsBoundTo<FunctionDecl>("f", "g", 2)));
3228}
3229
Manuel Klimek579b1202012-09-07 09:26:10 +00003230TEST(HasAncestor, MatchesInTemplateInstantiations) {
3231 EXPECT_TRUE(matches(
3232 "template <typename T> struct A { struct B { struct C { T t; }; }; }; "
3233 "A<int>::B::C a;",
3234 fieldDecl(hasType(asString("int")),
3235 hasAncestor(recordDecl(hasName("A"))))));
3236}
3237
3238TEST(HasAncestor, MatchesInImplicitCode) {
3239 EXPECT_TRUE(matches(
3240 "struct X {}; struct A { A() {} X x; };",
3241 constructorDecl(
3242 hasAnyConstructorInitializer(withInitializer(expr(
3243 hasAncestor(recordDecl(hasName("A")))))))));
3244}
3245
Daniel Jasperc99a3ad2012-10-22 16:26:51 +00003246TEST(HasParent, MatchesOnlyParent) {
3247 EXPECT_TRUE(matches(
3248 "void f() { if (true) { int x = 42; } }",
3249 compoundStmt(hasParent(ifStmt()))));
3250 EXPECT_TRUE(notMatches(
3251 "void f() { for (;;) { int x = 42; } }",
3252 compoundStmt(hasParent(ifStmt()))));
3253 EXPECT_TRUE(notMatches(
3254 "void f() { if (true) for (;;) { int x = 42; } }",
3255 compoundStmt(hasParent(ifStmt()))));
3256}
3257
Manuel Klimek30ace372012-12-06 14:42:48 +00003258TEST(HasAncestor, MatchesAllAncestors) {
3259 EXPECT_TRUE(matches(
3260 "template <typename T> struct C { static void f() { 42; } };"
3261 "void t() { C<int>::f(); }",
3262 integerLiteral(
3263 equals(42),
3264 allOf(hasAncestor(recordDecl(isTemplateInstantiation())),
3265 hasAncestor(recordDecl(unless(isTemplateInstantiation())))))));
3266}
3267
3268TEST(HasParent, MatchesAllParents) {
3269 EXPECT_TRUE(matches(
3270 "template <typename T> struct C { static void f() { 42; } };"
3271 "void t() { C<int>::f(); }",
3272 integerLiteral(
3273 equals(42),
3274 hasParent(compoundStmt(hasParent(functionDecl(
3275 hasParent(recordDecl(isTemplateInstantiation())))))))));
3276 EXPECT_TRUE(matches(
3277 "template <typename T> struct C { static void f() { 42; } };"
3278 "void t() { C<int>::f(); }",
3279 integerLiteral(
3280 equals(42),
3281 hasParent(compoundStmt(hasParent(functionDecl(
3282 hasParent(recordDecl(unless(isTemplateInstantiation()))))))))));
3283 EXPECT_TRUE(matches(
3284 "template <typename T> struct C { static void f() { 42; } };"
3285 "void t() { C<int>::f(); }",
3286 integerLiteral(equals(42),
3287 hasParent(compoundStmt(allOf(
3288 hasParent(functionDecl(
3289 hasParent(recordDecl(isTemplateInstantiation())))),
3290 hasParent(functionDecl(hasParent(recordDecl(
3291 unless(isTemplateInstantiation())))))))))));
Manuel Klimek374516c2013-03-14 16:33:21 +00003292 EXPECT_TRUE(
3293 notMatches("template <typename T> struct C { static void f() {} };"
3294 "void t() { C<int>::f(); }",
3295 compoundStmt(hasParent(recordDecl()))));
Manuel Klimek30ace372012-12-06 14:42:48 +00003296}
3297
Daniel Jasperce620072012-10-17 08:52:59 +00003298TEST(TypeMatching, MatchesTypes) {
3299 EXPECT_TRUE(matches("struct S {};", qualType().bind("loc")));
3300}
3301
3302TEST(TypeMatching, MatchesArrayTypes) {
3303 EXPECT_TRUE(matches("int a[] = {2,3};", arrayType()));
3304 EXPECT_TRUE(matches("int a[42];", arrayType()));
3305 EXPECT_TRUE(matches("void f(int b) { int a[b]; }", arrayType()));
3306
3307 EXPECT_TRUE(notMatches("struct A {}; A a[7];",
3308 arrayType(hasElementType(builtinType()))));
3309
3310 EXPECT_TRUE(matches(
3311 "int const a[] = { 2, 3 };",
3312 qualType(arrayType(hasElementType(builtinType())))));
3313 EXPECT_TRUE(matches(
3314 "int const a[] = { 2, 3 };",
3315 qualType(isConstQualified(), arrayType(hasElementType(builtinType())))));
3316 EXPECT_TRUE(matches(
3317 "typedef const int T; T x[] = { 1, 2 };",
3318 qualType(isConstQualified(), arrayType())));
3319
3320 EXPECT_TRUE(notMatches(
3321 "int a[] = { 2, 3 };",
3322 qualType(isConstQualified(), arrayType(hasElementType(builtinType())))));
3323 EXPECT_TRUE(notMatches(
3324 "int a[] = { 2, 3 };",
3325 qualType(arrayType(hasElementType(isConstQualified(), builtinType())))));
3326 EXPECT_TRUE(notMatches(
3327 "int const a[] = { 2, 3 };",
3328 qualType(arrayType(hasElementType(builtinType())),
3329 unless(isConstQualified()))));
3330
3331 EXPECT_TRUE(matches("int a[2];",
3332 constantArrayType(hasElementType(builtinType()))));
3333 EXPECT_TRUE(matches("const int a = 0;", qualType(isInteger())));
3334}
3335
3336TEST(TypeMatching, MatchesComplexTypes) {
3337 EXPECT_TRUE(matches("_Complex float f;", complexType()));
3338 EXPECT_TRUE(matches(
3339 "_Complex float f;",
3340 complexType(hasElementType(builtinType()))));
3341 EXPECT_TRUE(notMatches(
3342 "_Complex float f;",
3343 complexType(hasElementType(isInteger()))));
3344}
3345
3346TEST(TypeMatching, MatchesConstantArrayTypes) {
3347 EXPECT_TRUE(matches("int a[2];", constantArrayType()));
3348 EXPECT_TRUE(notMatches(
3349 "void f() { int a[] = { 2, 3 }; int b[a[0]]; }",
3350 constantArrayType(hasElementType(builtinType()))));
3351
3352 EXPECT_TRUE(matches("int a[42];", constantArrayType(hasSize(42))));
3353 EXPECT_TRUE(matches("int b[2*21];", constantArrayType(hasSize(42))));
3354 EXPECT_TRUE(notMatches("int c[41], d[43];", constantArrayType(hasSize(42))));
3355}
3356
3357TEST(TypeMatching, MatchesDependentSizedArrayTypes) {
3358 EXPECT_TRUE(matches(
3359 "template <typename T, int Size> class array { T data[Size]; };",
3360 dependentSizedArrayType()));
3361 EXPECT_TRUE(notMatches(
3362 "int a[42]; int b[] = { 2, 3 }; void f() { int c[b[0]]; }",
3363 dependentSizedArrayType()));
3364}
3365
3366TEST(TypeMatching, MatchesIncompleteArrayType) {
3367 EXPECT_TRUE(matches("int a[] = { 2, 3 };", incompleteArrayType()));
3368 EXPECT_TRUE(matches("void f(int a[]) {}", incompleteArrayType()));
3369
3370 EXPECT_TRUE(notMatches("int a[42]; void f() { int b[a[0]]; }",
3371 incompleteArrayType()));
3372}
3373
3374TEST(TypeMatching, MatchesVariableArrayType) {
3375 EXPECT_TRUE(matches("void f(int b) { int a[b]; }", variableArrayType()));
3376 EXPECT_TRUE(notMatches("int a[] = {2, 3}; int b[42];", variableArrayType()));
3377
3378 EXPECT_TRUE(matches(
3379 "void f(int b) { int a[b]; }",
3380 variableArrayType(hasSizeExpr(ignoringImpCasts(declRefExpr(to(
3381 varDecl(hasName("b")))))))));
3382}
3383
3384TEST(TypeMatching, MatchesAtomicTypes) {
3385 EXPECT_TRUE(matches("_Atomic(int) i;", atomicType()));
3386
3387 EXPECT_TRUE(matches("_Atomic(int) i;",
3388 atomicType(hasValueType(isInteger()))));
3389 EXPECT_TRUE(notMatches("_Atomic(float) f;",
3390 atomicType(hasValueType(isInteger()))));
3391}
3392
3393TEST(TypeMatching, MatchesAutoTypes) {
3394 EXPECT_TRUE(matches("auto i = 2;", autoType()));
3395 EXPECT_TRUE(matches("int v[] = { 2, 3 }; void f() { for (int i : v) {} }",
3396 autoType()));
3397
3398 EXPECT_TRUE(matches("auto a = 1;",
3399 autoType(hasDeducedType(isInteger()))));
3400 EXPECT_TRUE(notMatches("auto b = 2.0;",
3401 autoType(hasDeducedType(isInteger()))));
3402}
3403
Daniel Jaspera267cf62012-10-29 10:14:44 +00003404TEST(TypeMatching, MatchesFunctionTypes) {
3405 EXPECT_TRUE(matches("int (*f)(int);", functionType()));
3406 EXPECT_TRUE(matches("void f(int i) {}", functionType()));
3407}
3408
Edwin Vane88be2fd2013-04-01 18:33:34 +00003409TEST(TypeMatching, MatchesParenType) {
3410 EXPECT_TRUE(
3411 matches("int (*array)[4];", varDecl(hasType(pointsTo(parenType())))));
3412 EXPECT_TRUE(notMatches("int *array[4];", varDecl(hasType(parenType()))));
3413
3414 EXPECT_TRUE(matches(
3415 "int (*ptr_to_func)(int);",
3416 varDecl(hasType(pointsTo(parenType(innerType(functionType())))))));
3417 EXPECT_TRUE(notMatches(
3418 "int (*ptr_to_array)[4];",
3419 varDecl(hasType(pointsTo(parenType(innerType(functionType())))))));
3420}
3421
Daniel Jasperce620072012-10-17 08:52:59 +00003422TEST(TypeMatching, PointerTypes) {
Daniel Jasper1802daf2012-10-17 13:35:36 +00003423 // FIXME: Reactive when these tests can be more specific (not matching
3424 // implicit code on certain platforms), likely when we have hasDescendant for
3425 // Types/TypeLocs.
3426 //EXPECT_TRUE(matchAndVerifyResultTrue(
3427 // "int* a;",
3428 // pointerTypeLoc(pointeeLoc(typeLoc().bind("loc"))),
3429 // new VerifyIdIsBoundTo<TypeLoc>("loc", 1)));
3430 //EXPECT_TRUE(matchAndVerifyResultTrue(
3431 // "int* a;",
3432 // pointerTypeLoc().bind("loc"),
3433 // new VerifyIdIsBoundTo<TypeLoc>("loc", 1)));
Daniel Jasperce620072012-10-17 08:52:59 +00003434 EXPECT_TRUE(matches(
3435 "int** a;",
David Blaikie5be093c2013-02-18 19:04:16 +00003436 loc(pointerType(pointee(qualType())))));
Daniel Jasperce620072012-10-17 08:52:59 +00003437 EXPECT_TRUE(matches(
3438 "int** a;",
3439 loc(pointerType(pointee(pointerType())))));
3440 EXPECT_TRUE(matches(
3441 "int* b; int* * const a = &b;",
3442 loc(qualType(isConstQualified(), pointerType()))));
3443
3444 std::string Fragment = "struct A { int i; }; int A::* ptr = &A::i;";
Daniel Jasper1802daf2012-10-17 13:35:36 +00003445 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3446 hasType(blockPointerType()))));
3447 EXPECT_TRUE(matches(Fragment, varDecl(hasName("ptr"),
3448 hasType(memberPointerType()))));
3449 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3450 hasType(pointerType()))));
3451 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3452 hasType(referenceType()))));
Edwin Vanef4b48042013-03-07 15:44:40 +00003453 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3454 hasType(lValueReferenceType()))));
3455 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3456 hasType(rValueReferenceType()))));
Daniel Jasperce620072012-10-17 08:52:59 +00003457
Daniel Jasper1802daf2012-10-17 13:35:36 +00003458 Fragment = "int *ptr;";
3459 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3460 hasType(blockPointerType()))));
3461 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3462 hasType(memberPointerType()))));
3463 EXPECT_TRUE(matches(Fragment, varDecl(hasName("ptr"),
3464 hasType(pointerType()))));
3465 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3466 hasType(referenceType()))));
Daniel Jasperce620072012-10-17 08:52:59 +00003467
Daniel Jasper1802daf2012-10-17 13:35:36 +00003468 Fragment = "int a; int &ref = a;";
3469 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3470 hasType(blockPointerType()))));
3471 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3472 hasType(memberPointerType()))));
3473 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3474 hasType(pointerType()))));
3475 EXPECT_TRUE(matches(Fragment, varDecl(hasName("ref"),
3476 hasType(referenceType()))));
Edwin Vanef4b48042013-03-07 15:44:40 +00003477 EXPECT_TRUE(matches(Fragment, varDecl(hasName("ref"),
3478 hasType(lValueReferenceType()))));
3479 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3480 hasType(rValueReferenceType()))));
3481
3482 Fragment = "int &&ref = 2;";
3483 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3484 hasType(blockPointerType()))));
3485 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3486 hasType(memberPointerType()))));
3487 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3488 hasType(pointerType()))));
3489 EXPECT_TRUE(matches(Fragment, varDecl(hasName("ref"),
3490 hasType(referenceType()))));
3491 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3492 hasType(lValueReferenceType()))));
3493 EXPECT_TRUE(matches(Fragment, varDecl(hasName("ref"),
3494 hasType(rValueReferenceType()))));
3495}
3496
3497TEST(TypeMatching, AutoRefTypes) {
3498 std::string Fragment = "auto a = 1;"
3499 "auto b = a;"
3500 "auto &c = a;"
3501 "auto &&d = c;"
3502 "auto &&e = 2;";
3503 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("a"),
3504 hasType(referenceType()))));
3505 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("b"),
3506 hasType(referenceType()))));
3507 EXPECT_TRUE(matches(Fragment, varDecl(hasName("c"),
3508 hasType(referenceType()))));
3509 EXPECT_TRUE(matches(Fragment, varDecl(hasName("c"),
3510 hasType(lValueReferenceType()))));
3511 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("c"),
3512 hasType(rValueReferenceType()))));
3513 EXPECT_TRUE(matches(Fragment, varDecl(hasName("d"),
3514 hasType(referenceType()))));
3515 EXPECT_TRUE(matches(Fragment, varDecl(hasName("d"),
3516 hasType(lValueReferenceType()))));
3517 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("d"),
3518 hasType(rValueReferenceType()))));
3519 EXPECT_TRUE(matches(Fragment, varDecl(hasName("e"),
3520 hasType(referenceType()))));
3521 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("e"),
3522 hasType(lValueReferenceType()))));
3523 EXPECT_TRUE(matches(Fragment, varDecl(hasName("e"),
3524 hasType(rValueReferenceType()))));
Daniel Jasperce620072012-10-17 08:52:59 +00003525}
3526
3527TEST(TypeMatching, PointeeTypes) {
3528 EXPECT_TRUE(matches("int b; int &a = b;",
3529 referenceType(pointee(builtinType()))));
3530 EXPECT_TRUE(matches("int *a;", pointerType(pointee(builtinType()))));
3531
3532 EXPECT_TRUE(matches("int *a;",
David Blaikie5be093c2013-02-18 19:04:16 +00003533 loc(pointerType(pointee(builtinType())))));
Daniel Jasperce620072012-10-17 08:52:59 +00003534
3535 EXPECT_TRUE(matches(
3536 "int const *A;",
3537 pointerType(pointee(isConstQualified(), builtinType()))));
3538 EXPECT_TRUE(notMatches(
3539 "int *A;",
3540 pointerType(pointee(isConstQualified(), builtinType()))));
3541}
3542
3543TEST(TypeMatching, MatchesPointersToConstTypes) {
3544 EXPECT_TRUE(matches("int b; int * const a = &b;",
3545 loc(pointerType())));
3546 EXPECT_TRUE(matches("int b; int * const a = &b;",
David Blaikie5be093c2013-02-18 19:04:16 +00003547 loc(pointerType())));
Daniel Jasperce620072012-10-17 08:52:59 +00003548 EXPECT_TRUE(matches(
3549 "int b; const int * a = &b;",
David Blaikie5be093c2013-02-18 19:04:16 +00003550 loc(pointerType(pointee(builtinType())))));
Daniel Jasperce620072012-10-17 08:52:59 +00003551 EXPECT_TRUE(matches(
3552 "int b; const int * a = &b;",
3553 pointerType(pointee(builtinType()))));
3554}
3555
3556TEST(TypeMatching, MatchesTypedefTypes) {
Daniel Jasper1802daf2012-10-17 13:35:36 +00003557 EXPECT_TRUE(matches("typedef int X; X a;", varDecl(hasName("a"),
3558 hasType(typedefType()))));
Daniel Jasperce620072012-10-17 08:52:59 +00003559}
3560
Edwin Vane3abf7782013-02-25 14:49:29 +00003561TEST(TypeMatching, MatchesTemplateSpecializationType) {
Edwin Vane742d9e72013-02-25 20:43:32 +00003562 EXPECT_TRUE(matches("template <typename T> class A{}; A<int> a;",
Edwin Vane3abf7782013-02-25 14:49:29 +00003563 templateSpecializationType()));
3564}
3565
Edwin Vane742d9e72013-02-25 20:43:32 +00003566TEST(TypeMatching, MatchesRecordType) {
3567 EXPECT_TRUE(matches("class C{}; C c;", recordType()));
Manuel Klimek0cc798f2013-02-27 11:56:58 +00003568 EXPECT_TRUE(matches("struct S{}; S s;",
3569 recordType(hasDeclaration(recordDecl(hasName("S"))))));
3570 EXPECT_TRUE(notMatches("int i;",
3571 recordType(hasDeclaration(recordDecl(hasName("S"))))));
Edwin Vane742d9e72013-02-25 20:43:32 +00003572}
3573
3574TEST(TypeMatching, MatchesElaboratedType) {
3575 EXPECT_TRUE(matches(
3576 "namespace N {"
3577 " namespace M {"
3578 " class D {};"
3579 " }"
3580 "}"
3581 "N::M::D d;", elaboratedType()));
3582 EXPECT_TRUE(matches("class C {} c;", elaboratedType()));
3583 EXPECT_TRUE(notMatches("class C {}; C c;", elaboratedType()));
3584}
3585
3586TEST(ElaboratedTypeNarrowing, hasQualifier) {
3587 EXPECT_TRUE(matches(
3588 "namespace N {"
3589 " namespace M {"
3590 " class D {};"
3591 " }"
3592 "}"
3593 "N::M::D d;",
3594 elaboratedType(hasQualifier(hasPrefix(specifiesNamespace(hasName("N")))))));
3595 EXPECT_TRUE(notMatches(
3596 "namespace M {"
3597 " class D {};"
3598 "}"
3599 "M::D d;",
3600 elaboratedType(hasQualifier(hasPrefix(specifiesNamespace(hasName("N")))))));
Edwin Vaneaec89ac2013-03-04 17:51:00 +00003601 EXPECT_TRUE(notMatches(
3602 "struct D {"
3603 "} d;",
3604 elaboratedType(hasQualifier(nestedNameSpecifier()))));
Edwin Vane742d9e72013-02-25 20:43:32 +00003605}
3606
3607TEST(ElaboratedTypeNarrowing, namesType) {
3608 EXPECT_TRUE(matches(
3609 "namespace N {"
3610 " namespace M {"
3611 " class D {};"
3612 " }"
3613 "}"
3614 "N::M::D d;",
3615 elaboratedType(elaboratedType(namesType(recordType(
3616 hasDeclaration(namedDecl(hasName("D")))))))));
3617 EXPECT_TRUE(notMatches(
3618 "namespace M {"
3619 " class D {};"
3620 "}"
3621 "M::D d;",
3622 elaboratedType(elaboratedType(namesType(typedefType())))));
3623}
3624
Daniel Jaspera7564432012-09-13 13:11:25 +00003625TEST(NNS, MatchesNestedNameSpecifiers) {
3626 EXPECT_TRUE(matches("namespace ns { struct A {}; } ns::A a;",
3627 nestedNameSpecifier()));
3628 EXPECT_TRUE(matches("template <typename T> class A { typename T::B b; };",
3629 nestedNameSpecifier()));
3630 EXPECT_TRUE(matches("struct A { void f(); }; void A::f() {}",
3631 nestedNameSpecifier()));
3632
3633 EXPECT_TRUE(matches(
3634 "struct A { static void f() {} }; void g() { A::f(); }",
3635 nestedNameSpecifier()));
3636 EXPECT_TRUE(notMatches(
3637 "struct A { static void f() {} }; void g(A* a) { a->f(); }",
3638 nestedNameSpecifier()));
3639}
3640
Daniel Jasperb54b7642012-09-20 14:12:57 +00003641TEST(NullStatement, SimpleCases) {
3642 EXPECT_TRUE(matches("void f() {int i;;}", nullStmt()));
3643 EXPECT_TRUE(notMatches("void f() {int i;}", nullStmt()));
3644}
3645
Daniel Jaspera7564432012-09-13 13:11:25 +00003646TEST(NNS, MatchesTypes) {
3647 NestedNameSpecifierMatcher Matcher = nestedNameSpecifier(
3648 specifiesType(hasDeclaration(recordDecl(hasName("A")))));
3649 EXPECT_TRUE(matches("struct A { struct B {}; }; A::B b;", Matcher));
3650 EXPECT_TRUE(matches("struct A { struct B { struct C {}; }; }; A::B::C c;",
3651 Matcher));
3652 EXPECT_TRUE(notMatches("namespace A { struct B {}; } A::B b;", Matcher));
3653}
3654
3655TEST(NNS, MatchesNamespaceDecls) {
3656 NestedNameSpecifierMatcher Matcher = nestedNameSpecifier(
3657 specifiesNamespace(hasName("ns")));
3658 EXPECT_TRUE(matches("namespace ns { struct A {}; } ns::A a;", Matcher));
3659 EXPECT_TRUE(notMatches("namespace xx { struct A {}; } xx::A a;", Matcher));
3660 EXPECT_TRUE(notMatches("struct ns { struct A {}; }; ns::A a;", Matcher));
3661}
3662
3663TEST(NNS, BindsNestedNameSpecifiers) {
3664 EXPECT_TRUE(matchAndVerifyResultTrue(
3665 "namespace ns { struct E { struct B {}; }; } ns::E::B b;",
3666 nestedNameSpecifier(specifiesType(asString("struct ns::E"))).bind("nns"),
3667 new VerifyIdIsBoundTo<NestedNameSpecifier>("nns", "ns::struct E::")));
3668}
3669
3670TEST(NNS, BindsNestedNameSpecifierLocs) {
3671 EXPECT_TRUE(matchAndVerifyResultTrue(
3672 "namespace ns { struct B {}; } ns::B b;",
3673 loc(nestedNameSpecifier()).bind("loc"),
3674 new VerifyIdIsBoundTo<NestedNameSpecifierLoc>("loc", 1)));
3675}
3676
3677TEST(NNS, MatchesNestedNameSpecifierPrefixes) {
3678 EXPECT_TRUE(matches(
3679 "struct A { struct B { struct C {}; }; }; A::B::C c;",
3680 nestedNameSpecifier(hasPrefix(specifiesType(asString("struct A"))))));
3681 EXPECT_TRUE(matches(
3682 "struct A { struct B { struct C {}; }; }; A::B::C c;",
Daniel Jasperce620072012-10-17 08:52:59 +00003683 nestedNameSpecifierLoc(hasPrefix(
3684 specifiesTypeLoc(loc(qualType(asString("struct A"))))))));
Daniel Jaspera7564432012-09-13 13:11:25 +00003685}
3686
Daniel Jasperd1ce3c12012-10-30 15:42:00 +00003687TEST(NNS, DescendantsOfNestedNameSpecifiers) {
3688 std::string Fragment =
3689 "namespace a { struct A { struct B { struct C {}; }; }; };"
3690 "void f() { a::A::B::C c; }";
3691 EXPECT_TRUE(matches(
3692 Fragment,
3693 nestedNameSpecifier(specifiesType(asString("struct a::A::B")),
3694 hasDescendant(nestedNameSpecifier(
3695 specifiesNamespace(hasName("a")))))));
3696 EXPECT_TRUE(notMatches(
3697 Fragment,
3698 nestedNameSpecifier(specifiesType(asString("struct a::A::B")),
3699 has(nestedNameSpecifier(
3700 specifiesNamespace(hasName("a")))))));
3701 EXPECT_TRUE(matches(
3702 Fragment,
3703 nestedNameSpecifier(specifiesType(asString("struct a::A")),
3704 has(nestedNameSpecifier(
3705 specifiesNamespace(hasName("a")))))));
3706
3707 // Not really useful because a NestedNameSpecifier can af at most one child,
3708 // but to complete the interface.
3709 EXPECT_TRUE(matchAndVerifyResultTrue(
3710 Fragment,
3711 nestedNameSpecifier(specifiesType(asString("struct a::A::B")),
3712 forEach(nestedNameSpecifier().bind("x"))),
3713 new VerifyIdIsBoundTo<NestedNameSpecifier>("x", 1)));
3714}
3715
3716TEST(NNS, NestedNameSpecifiersAsDescendants) {
3717 std::string Fragment =
3718 "namespace a { struct A { struct B { struct C {}; }; }; };"
3719 "void f() { a::A::B::C c; }";
3720 EXPECT_TRUE(matches(
3721 Fragment,
3722 decl(hasDescendant(nestedNameSpecifier(specifiesType(
3723 asString("struct a::A")))))));
3724 EXPECT_TRUE(matchAndVerifyResultTrue(
3725 Fragment,
3726 functionDecl(hasName("f"),
3727 forEachDescendant(nestedNameSpecifier().bind("x"))),
3728 // Nested names: a, a::A and a::A::B.
3729 new VerifyIdIsBoundTo<NestedNameSpecifier>("x", 3)));
3730}
3731
3732TEST(NNSLoc, DescendantsOfNestedNameSpecifierLocs) {
3733 std::string Fragment =
3734 "namespace a { struct A { struct B { struct C {}; }; }; };"
3735 "void f() { a::A::B::C c; }";
3736 EXPECT_TRUE(matches(
3737 Fragment,
3738 nestedNameSpecifierLoc(loc(specifiesType(asString("struct a::A::B"))),
3739 hasDescendant(loc(nestedNameSpecifier(
3740 specifiesNamespace(hasName("a"))))))));
3741 EXPECT_TRUE(notMatches(
3742 Fragment,
3743 nestedNameSpecifierLoc(loc(specifiesType(asString("struct a::A::B"))),
3744 has(loc(nestedNameSpecifier(
3745 specifiesNamespace(hasName("a"))))))));
3746 EXPECT_TRUE(matches(
3747 Fragment,
3748 nestedNameSpecifierLoc(loc(specifiesType(asString("struct a::A"))),
3749 has(loc(nestedNameSpecifier(
3750 specifiesNamespace(hasName("a"))))))));
3751
3752 EXPECT_TRUE(matchAndVerifyResultTrue(
3753 Fragment,
3754 nestedNameSpecifierLoc(loc(specifiesType(asString("struct a::A::B"))),
3755 forEach(nestedNameSpecifierLoc().bind("x"))),
3756 new VerifyIdIsBoundTo<NestedNameSpecifierLoc>("x", 1)));
3757}
3758
3759TEST(NNSLoc, NestedNameSpecifierLocsAsDescendants) {
3760 std::string Fragment =
3761 "namespace a { struct A { struct B { struct C {}; }; }; };"
3762 "void f() { a::A::B::C c; }";
3763 EXPECT_TRUE(matches(
3764 Fragment,
3765 decl(hasDescendant(loc(nestedNameSpecifier(specifiesType(
3766 asString("struct a::A"))))))));
3767 EXPECT_TRUE(matchAndVerifyResultTrue(
3768 Fragment,
3769 functionDecl(hasName("f"),
3770 forEachDescendant(nestedNameSpecifierLoc().bind("x"))),
3771 // Nested names: a, a::A and a::A::B.
3772 new VerifyIdIsBoundTo<NestedNameSpecifierLoc>("x", 3)));
3773}
3774
Manuel Klimek60969f52013-02-01 13:41:35 +00003775template <typename T> class VerifyMatchOnNode : public BoundNodesCallback {
Manuel Klimek3e2aa992012-10-24 14:47:44 +00003776public:
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003777 VerifyMatchOnNode(StringRef Id, const internal::Matcher<T> &InnerMatcher,
3778 StringRef InnerId)
3779 : Id(Id), InnerMatcher(InnerMatcher), InnerId(InnerId) {
Daniel Jasper452abbc2012-10-29 10:48:25 +00003780 }
3781
Manuel Klimek60969f52013-02-01 13:41:35 +00003782 virtual bool run(const BoundNodes *Nodes) { return false; }
3783
Manuel Klimek3e2aa992012-10-24 14:47:44 +00003784 virtual bool run(const BoundNodes *Nodes, ASTContext *Context) {
3785 const T *Node = Nodes->getNodeAs<T>(Id);
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003786 return selectFirst<const T>(InnerId,
3787 match(InnerMatcher, *Node, *Context)) != NULL;
Manuel Klimek3e2aa992012-10-24 14:47:44 +00003788 }
3789private:
3790 std::string Id;
3791 internal::Matcher<T> InnerMatcher;
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003792 std::string InnerId;
Manuel Klimek3e2aa992012-10-24 14:47:44 +00003793};
3794
3795TEST(MatchFinder, CanMatchDeclarationsRecursively) {
Manuel Klimek60969f52013-02-01 13:41:35 +00003796 EXPECT_TRUE(matchAndVerifyResultTrue(
3797 "class X { class Y {}; };", recordDecl(hasName("::X")).bind("X"),
3798 new VerifyMatchOnNode<clang::Decl>(
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003799 "X", decl(hasDescendant(recordDecl(hasName("X::Y")).bind("Y"))),
3800 "Y")));
Manuel Klimek60969f52013-02-01 13:41:35 +00003801 EXPECT_TRUE(matchAndVerifyResultFalse(
3802 "class X { class Y {}; };", recordDecl(hasName("::X")).bind("X"),
3803 new VerifyMatchOnNode<clang::Decl>(
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003804 "X", decl(hasDescendant(recordDecl(hasName("X::Z")).bind("Z"))),
3805 "Z")));
Manuel Klimek3e2aa992012-10-24 14:47:44 +00003806}
3807
3808TEST(MatchFinder, CanMatchStatementsRecursively) {
Manuel Klimek60969f52013-02-01 13:41:35 +00003809 EXPECT_TRUE(matchAndVerifyResultTrue(
3810 "void f() { if (1) { for (;;) { } } }", ifStmt().bind("if"),
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003811 new VerifyMatchOnNode<clang::Stmt>(
3812 "if", stmt(hasDescendant(forStmt().bind("for"))), "for")));
Manuel Klimek60969f52013-02-01 13:41:35 +00003813 EXPECT_TRUE(matchAndVerifyResultFalse(
3814 "void f() { if (1) { for (;;) { } } }", ifStmt().bind("if"),
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003815 new VerifyMatchOnNode<clang::Stmt>(
3816 "if", stmt(hasDescendant(declStmt().bind("decl"))), "decl")));
Manuel Klimek60969f52013-02-01 13:41:35 +00003817}
3818
3819TEST(MatchFinder, CanMatchSingleNodesRecursively) {
3820 EXPECT_TRUE(matchAndVerifyResultTrue(
3821 "class X { class Y {}; };", recordDecl(hasName("::X")).bind("X"),
3822 new VerifyMatchOnNode<clang::Decl>(
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003823 "X", recordDecl(has(recordDecl(hasName("X::Y")).bind("Y"))), "Y")));
Manuel Klimek60969f52013-02-01 13:41:35 +00003824 EXPECT_TRUE(matchAndVerifyResultFalse(
3825 "class X { class Y {}; };", recordDecl(hasName("::X")).bind("X"),
3826 new VerifyMatchOnNode<clang::Decl>(
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003827 "X", recordDecl(has(recordDecl(hasName("X::Z")).bind("Z"))), "Z")));
Manuel Klimek3e2aa992012-10-24 14:47:44 +00003828}
3829
Manuel Klimekfa37c5c2013-02-07 12:42:10 +00003830template <typename T>
3831class VerifyAncestorHasChildIsEqual : public BoundNodesCallback {
3832public:
3833 virtual bool run(const BoundNodes *Nodes) { return false; }
3834
3835 virtual bool run(const BoundNodes *Nodes, ASTContext *Context) {
3836 const T *Node = Nodes->getNodeAs<T>("");
3837 return verify(*Nodes, *Context, Node);
3838 }
3839
3840 bool verify(const BoundNodes &Nodes, ASTContext &Context, const Stmt *Node) {
3841 return selectFirst<const T>(
3842 "", match(stmt(hasParent(stmt(has(stmt(equalsNode(Node)))).bind(""))),
3843 *Node, Context)) != NULL;
3844 }
3845 bool verify(const BoundNodes &Nodes, ASTContext &Context, const Decl *Node) {
3846 return selectFirst<const T>(
3847 "", match(decl(hasParent(decl(has(decl(equalsNode(Node)))).bind(""))),
3848 *Node, Context)) != NULL;
3849 }
3850};
3851
3852TEST(IsEqualTo, MatchesNodesByIdentity) {
3853 EXPECT_TRUE(matchAndVerifyResultTrue(
3854 "class X { class Y {}; };", recordDecl(hasName("::X::Y")).bind(""),
3855 new VerifyAncestorHasChildIsEqual<Decl>()));
3856 EXPECT_TRUE(
3857 matchAndVerifyResultTrue("void f() { if(true) {} }", ifStmt().bind(""),
3858 new VerifyAncestorHasChildIsEqual<Stmt>()));
3859}
3860
Manuel Klimeke5793282012-11-02 01:31:03 +00003861class VerifyStartOfTranslationUnit : public MatchFinder::MatchCallback {
3862public:
3863 VerifyStartOfTranslationUnit() : Called(false) {}
3864 virtual void run(const MatchFinder::MatchResult &Result) {
3865 EXPECT_TRUE(Called);
3866 }
3867 virtual void onStartOfTranslationUnit() {
3868 Called = true;
3869 }
3870 bool Called;
3871};
3872
3873TEST(MatchFinder, InterceptsStartOfTranslationUnit) {
3874 MatchFinder Finder;
3875 VerifyStartOfTranslationUnit VerifyCallback;
3876 Finder.addMatcher(decl(), &VerifyCallback);
3877 OwningPtr<FrontendActionFactory> Factory(newFrontendActionFactory(&Finder));
3878 ASSERT_TRUE(tooling::runToolOnCode(Factory->create(), "int x;"));
3879 EXPECT_TRUE(VerifyCallback.Called);
3880}
3881
Manuel Klimek4da21662012-07-06 05:48:52 +00003882} // end namespace ast_matchers
3883} // end namespace clang