blob: cfa53868ed2917b3fa98b3aaf8afc1a2facba8d0 [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
Edwin Vane5771a2f2013-04-09 20:46:36 +00001503TEST(Matcher, MatchesVirtualMethod) {
1504 EXPECT_TRUE(matches("class X { virtual int f(); };",
1505 methodDecl(isVirtual(), hasName("::X::f"))));
1506 EXPECT_TRUE(notMatches("class X { int f(); };",
1507 methodDecl(isVirtual())));
1508}
1509
1510TEST(Matcher, MatchesOverridingMethod) {
1511 EXPECT_TRUE(matches("class X { virtual int f(); }; "
1512 "class Y : public X { int f(); };",
1513 methodDecl(isOverride(), hasName("::Y::f"))));
1514 EXPECT_TRUE(notMatches("class X { virtual int f(); }; "
1515 "class Y : public X { int f(); };",
1516 methodDecl(isOverride(), hasName("::X::f"))));
1517 EXPECT_TRUE(notMatches("class X { int f(); }; "
1518 "class Y : public X { int f(); };",
1519 methodDecl(isOverride())));
1520 EXPECT_TRUE(notMatches("class X { int f(); int f(int); }; ",
1521 methodDecl(isOverride())));
1522}
1523
Manuel Klimek4da21662012-07-06 05:48:52 +00001524TEST(Matcher, ConstructorCall) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001525 StatementMatcher Constructor = constructExpr();
Manuel Klimek4da21662012-07-06 05:48:52 +00001526
1527 EXPECT_TRUE(
1528 matches("class X { public: X(); }; void x() { X x; }", Constructor));
1529 EXPECT_TRUE(
1530 matches("class X { public: X(); }; void x() { X x = X(); }",
1531 Constructor));
1532 EXPECT_TRUE(
1533 matches("class X { public: X(int); }; void x() { X x = 0; }",
1534 Constructor));
1535 EXPECT_TRUE(matches("class X {}; void x(int) { X x; }", Constructor));
1536}
1537
1538TEST(Matcher, ConstructorArgument) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001539 StatementMatcher Constructor = constructExpr(
1540 hasArgument(0, declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001541
1542 EXPECT_TRUE(
1543 matches("class X { public: X(int); }; void x() { int y; X x(y); }",
1544 Constructor));
1545 EXPECT_TRUE(
1546 matches("class X { public: X(int); }; void x() { int y; X x = X(y); }",
1547 Constructor));
1548 EXPECT_TRUE(
1549 matches("class X { public: X(int); }; void x() { int y; X x = y; }",
1550 Constructor));
1551 EXPECT_TRUE(
1552 notMatches("class X { public: X(int); }; void x() { int z; X x(z); }",
1553 Constructor));
1554
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001555 StatementMatcher WrongIndex = constructExpr(
1556 hasArgument(42, declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001557 EXPECT_TRUE(
1558 notMatches("class X { public: X(int); }; void x() { int y; X x(y); }",
1559 WrongIndex));
1560}
1561
1562TEST(Matcher, ConstructorArgumentCount) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001563 StatementMatcher Constructor1Arg = constructExpr(argumentCountIs(1));
Manuel Klimek4da21662012-07-06 05:48:52 +00001564
1565 EXPECT_TRUE(
1566 matches("class X { public: X(int); }; void x() { X x(0); }",
1567 Constructor1Arg));
1568 EXPECT_TRUE(
1569 matches("class X { public: X(int); }; void x() { X x = X(0); }",
1570 Constructor1Arg));
1571 EXPECT_TRUE(
1572 matches("class X { public: X(int); }; void x() { X x = 0; }",
1573 Constructor1Arg));
1574 EXPECT_TRUE(
1575 notMatches("class X { public: X(int, int); }; void x() { X x(0, 0); }",
1576 Constructor1Arg));
1577}
1578
Manuel Klimek70b9db92012-10-23 10:40:50 +00001579TEST(Matcher,ThisExpr) {
1580 EXPECT_TRUE(
1581 matches("struct X { int a; int f () { return a; } };", thisExpr()));
1582 EXPECT_TRUE(
1583 notMatches("struct X { int f () { int a; return a; } };", thisExpr()));
1584}
1585
Manuel Klimek4da21662012-07-06 05:48:52 +00001586TEST(Matcher, BindTemporaryExpression) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001587 StatementMatcher TempExpression = bindTemporaryExpr();
Manuel Klimek4da21662012-07-06 05:48:52 +00001588
1589 std::string ClassString = "class string { public: string(); ~string(); }; ";
1590
1591 EXPECT_TRUE(
1592 matches(ClassString +
1593 "string GetStringByValue();"
1594 "void FunctionTakesString(string s);"
1595 "void run() { FunctionTakesString(GetStringByValue()); }",
1596 TempExpression));
1597
1598 EXPECT_TRUE(
1599 notMatches(ClassString +
1600 "string* GetStringPointer(); "
1601 "void FunctionTakesStringPtr(string* s);"
1602 "void run() {"
1603 " string* s = GetStringPointer();"
1604 " FunctionTakesStringPtr(GetStringPointer());"
1605 " FunctionTakesStringPtr(s);"
1606 "}",
1607 TempExpression));
1608
1609 EXPECT_TRUE(
1610 notMatches("class no_dtor {};"
1611 "no_dtor GetObjByValue();"
1612 "void ConsumeObj(no_dtor param);"
1613 "void run() { ConsumeObj(GetObjByValue()); }",
1614 TempExpression));
1615}
1616
Sam Panzere16acd32012-08-24 22:04:44 +00001617TEST(MaterializeTemporaryExpr, MatchesTemporary) {
1618 std::string ClassString =
1619 "class string { public: string(); int length(); }; ";
1620
1621 EXPECT_TRUE(
1622 matches(ClassString +
1623 "string GetStringByValue();"
1624 "void FunctionTakesString(string s);"
1625 "void run() { FunctionTakesString(GetStringByValue()); }",
1626 materializeTemporaryExpr()));
1627
1628 EXPECT_TRUE(
1629 notMatches(ClassString +
1630 "string* GetStringPointer(); "
1631 "void FunctionTakesStringPtr(string* s);"
1632 "void run() {"
1633 " string* s = GetStringPointer();"
1634 " FunctionTakesStringPtr(GetStringPointer());"
1635 " FunctionTakesStringPtr(s);"
1636 "}",
1637 materializeTemporaryExpr()));
1638
1639 EXPECT_TRUE(
1640 notMatches(ClassString +
1641 "string GetStringByValue();"
1642 "void run() { int k = GetStringByValue().length(); }",
1643 materializeTemporaryExpr()));
1644
1645 EXPECT_TRUE(
1646 notMatches(ClassString +
1647 "string GetStringByValue();"
1648 "void run() { GetStringByValue(); }",
1649 materializeTemporaryExpr()));
1650}
1651
Manuel Klimek4da21662012-07-06 05:48:52 +00001652TEST(ConstructorDeclaration, SimpleCase) {
1653 EXPECT_TRUE(matches("class Foo { Foo(int i); };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001654 constructorDecl(ofClass(hasName("Foo")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001655 EXPECT_TRUE(notMatches("class Foo { Foo(int i); };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001656 constructorDecl(ofClass(hasName("Bar")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001657}
1658
1659TEST(ConstructorDeclaration, IsImplicit) {
1660 // This one doesn't match because the constructor is not added by the
1661 // compiler (it is not needed).
1662 EXPECT_TRUE(notMatches("class Foo { };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001663 constructorDecl(isImplicit())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001664 // The compiler added the implicit default constructor.
1665 EXPECT_TRUE(matches("class Foo { }; Foo* f = new Foo();",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001666 constructorDecl(isImplicit())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001667 EXPECT_TRUE(matches("class Foo { Foo(){} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001668 constructorDecl(unless(isImplicit()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001669}
1670
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001671TEST(DestructorDeclaration, MatchesVirtualDestructor) {
1672 EXPECT_TRUE(matches("class Foo { virtual ~Foo(); };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001673 destructorDecl(ofClass(hasName("Foo")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001674}
1675
1676TEST(DestructorDeclaration, DoesNotMatchImplicitDestructor) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001677 EXPECT_TRUE(notMatches("class Foo {};",
1678 destructorDecl(ofClass(hasName("Foo")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001679}
1680
Manuel Klimek4da21662012-07-06 05:48:52 +00001681TEST(HasAnyConstructorInitializer, SimpleCase) {
1682 EXPECT_TRUE(notMatches(
1683 "class Foo { Foo() { } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001684 constructorDecl(hasAnyConstructorInitializer(anything()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001685 EXPECT_TRUE(matches(
1686 "class Foo {"
1687 " Foo() : foo_() { }"
1688 " int foo_;"
1689 "};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001690 constructorDecl(hasAnyConstructorInitializer(anything()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001691}
1692
1693TEST(HasAnyConstructorInitializer, ForField) {
1694 static const char Code[] =
1695 "class Baz { };"
1696 "class Foo {"
1697 " Foo() : foo_() { }"
1698 " Baz foo_;"
1699 " Baz bar_;"
1700 "};";
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001701 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
1702 forField(hasType(recordDecl(hasName("Baz"))))))));
1703 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001704 forField(hasName("foo_"))))));
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001705 EXPECT_TRUE(notMatches(Code, constructorDecl(hasAnyConstructorInitializer(
1706 forField(hasType(recordDecl(hasName("Bar"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001707}
1708
1709TEST(HasAnyConstructorInitializer, WithInitializer) {
1710 static const char Code[] =
1711 "class Foo {"
1712 " Foo() : foo_(0) { }"
1713 " int foo_;"
1714 "};";
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001715 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001716 withInitializer(integerLiteral(equals(0)))))));
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001717 EXPECT_TRUE(notMatches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001718 withInitializer(integerLiteral(equals(1)))))));
1719}
1720
1721TEST(HasAnyConstructorInitializer, IsWritten) {
1722 static const char Code[] =
1723 "struct Bar { Bar(){} };"
1724 "class Foo {"
1725 " Foo() : foo_() { }"
1726 " Bar foo_;"
1727 " Bar bar_;"
1728 "};";
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001729 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001730 allOf(forField(hasName("foo_")), isWritten())))));
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001731 EXPECT_TRUE(notMatches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001732 allOf(forField(hasName("bar_")), isWritten())))));
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001733 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001734 allOf(forField(hasName("bar_")), unless(isWritten()))))));
1735}
1736
1737TEST(Matcher, NewExpression) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001738 StatementMatcher New = newExpr();
Manuel Klimek4da21662012-07-06 05:48:52 +00001739
1740 EXPECT_TRUE(matches("class X { public: X(); }; void x() { new X; }", New));
1741 EXPECT_TRUE(
1742 matches("class X { public: X(); }; void x() { new X(); }", New));
1743 EXPECT_TRUE(
1744 matches("class X { public: X(int); }; void x() { new X(0); }", New));
1745 EXPECT_TRUE(matches("class X {}; void x(int) { new X; }", New));
1746}
1747
1748TEST(Matcher, NewExpressionArgument) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001749 StatementMatcher New = constructExpr(
1750 hasArgument(0, declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001751
1752 EXPECT_TRUE(
1753 matches("class X { public: X(int); }; void x() { int y; new X(y); }",
1754 New));
1755 EXPECT_TRUE(
1756 matches("class X { public: X(int); }; void x() { int y; new X(y); }",
1757 New));
1758 EXPECT_TRUE(
1759 notMatches("class X { public: X(int); }; void x() { int z; new X(z); }",
1760 New));
1761
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001762 StatementMatcher WrongIndex = constructExpr(
1763 hasArgument(42, declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001764 EXPECT_TRUE(
1765 notMatches("class X { public: X(int); }; void x() { int y; new X(y); }",
1766 WrongIndex));
1767}
1768
1769TEST(Matcher, NewExpressionArgumentCount) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001770 StatementMatcher New = constructExpr(argumentCountIs(1));
Manuel Klimek4da21662012-07-06 05:48:52 +00001771
1772 EXPECT_TRUE(
1773 matches("class X { public: X(int); }; void x() { new X(0); }", New));
1774 EXPECT_TRUE(
1775 notMatches("class X { public: X(int, int); }; void x() { new X(0, 0); }",
1776 New));
1777}
1778
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001779TEST(Matcher, DeleteExpression) {
1780 EXPECT_TRUE(matches("struct A {}; void f(A* a) { delete a; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001781 deleteExpr()));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001782}
1783
Manuel Klimek4da21662012-07-06 05:48:52 +00001784TEST(Matcher, DefaultArgument) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001785 StatementMatcher Arg = defaultArgExpr();
Manuel Klimek4da21662012-07-06 05:48:52 +00001786
1787 EXPECT_TRUE(matches("void x(int, int = 0) { int y; x(y); }", Arg));
1788 EXPECT_TRUE(
1789 matches("class X { void x(int, int = 0) { int y; x(y); } };", Arg));
1790 EXPECT_TRUE(notMatches("void x(int, int = 0) { int y; x(y, 0); }", Arg));
1791}
1792
1793TEST(Matcher, StringLiterals) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001794 StatementMatcher Literal = stringLiteral();
Manuel Klimek4da21662012-07-06 05:48:52 +00001795 EXPECT_TRUE(matches("const char *s = \"string\";", Literal));
1796 // wide string
1797 EXPECT_TRUE(matches("const wchar_t *s = L\"string\";", Literal));
1798 // with escaped characters
1799 EXPECT_TRUE(matches("const char *s = \"\x05five\";", Literal));
1800 // no matching -- though the data type is the same, there is no string literal
1801 EXPECT_TRUE(notMatches("const char s[1] = {'a'};", Literal));
1802}
1803
1804TEST(Matcher, CharacterLiterals) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001805 StatementMatcher CharLiteral = characterLiteral();
Manuel Klimek4da21662012-07-06 05:48:52 +00001806 EXPECT_TRUE(matches("const char c = 'c';", CharLiteral));
1807 // wide character
1808 EXPECT_TRUE(matches("const char c = L'c';", CharLiteral));
1809 // wide character, Hex encoded, NOT MATCHED!
1810 EXPECT_TRUE(notMatches("const wchar_t c = 0x2126;", CharLiteral));
1811 EXPECT_TRUE(notMatches("const char c = 0x1;", CharLiteral));
1812}
1813
1814TEST(Matcher, IntegerLiterals) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001815 StatementMatcher HasIntLiteral = integerLiteral();
Manuel Klimek4da21662012-07-06 05:48:52 +00001816 EXPECT_TRUE(matches("int i = 10;", HasIntLiteral));
1817 EXPECT_TRUE(matches("int i = 0x1AB;", HasIntLiteral));
1818 EXPECT_TRUE(matches("int i = 10L;", HasIntLiteral));
1819 EXPECT_TRUE(matches("int i = 10U;", HasIntLiteral));
1820
1821 // Non-matching cases (character literals, float and double)
1822 EXPECT_TRUE(notMatches("int i = L'a';",
1823 HasIntLiteral)); // this is actually a character
1824 // literal cast to int
1825 EXPECT_TRUE(notMatches("int i = 'a';", HasIntLiteral));
1826 EXPECT_TRUE(notMatches("int i = 1e10;", HasIntLiteral));
1827 EXPECT_TRUE(notMatches("int i = 10.0;", HasIntLiteral));
1828}
1829
Daniel Jasper31f7c082012-10-01 13:40:41 +00001830TEST(Matcher, NullPtrLiteral) {
1831 EXPECT_TRUE(matches("int* i = nullptr;", nullPtrLiteralExpr()));
1832}
1833
Daniel Jasperb54b7642012-09-20 14:12:57 +00001834TEST(Matcher, AsmStatement) {
1835 EXPECT_TRUE(matches("void foo() { __asm(\"mov al, 2\"); }", asmStmt()));
1836}
1837
Manuel Klimek4da21662012-07-06 05:48:52 +00001838TEST(Matcher, Conditions) {
1839 StatementMatcher Condition = ifStmt(hasCondition(boolLiteral(equals(true))));
1840
1841 EXPECT_TRUE(matches("void x() { if (true) {} }", Condition));
1842 EXPECT_TRUE(notMatches("void x() { if (false) {} }", Condition));
1843 EXPECT_TRUE(notMatches("void x() { bool a = true; if (a) {} }", Condition));
1844 EXPECT_TRUE(notMatches("void x() { if (true || false) {} }", Condition));
1845 EXPECT_TRUE(notMatches("void x() { if (1) {} }", Condition));
1846}
1847
1848TEST(MatchBinaryOperator, HasOperatorName) {
1849 StatementMatcher OperatorOr = binaryOperator(hasOperatorName("||"));
1850
1851 EXPECT_TRUE(matches("void x() { true || false; }", OperatorOr));
1852 EXPECT_TRUE(notMatches("void x() { true && false; }", OperatorOr));
1853}
1854
1855TEST(MatchBinaryOperator, HasLHSAndHasRHS) {
1856 StatementMatcher OperatorTrueFalse =
1857 binaryOperator(hasLHS(boolLiteral(equals(true))),
1858 hasRHS(boolLiteral(equals(false))));
1859
1860 EXPECT_TRUE(matches("void x() { true || false; }", OperatorTrueFalse));
1861 EXPECT_TRUE(matches("void x() { true && false; }", OperatorTrueFalse));
1862 EXPECT_TRUE(notMatches("void x() { false || true; }", OperatorTrueFalse));
1863}
1864
1865TEST(MatchBinaryOperator, HasEitherOperand) {
1866 StatementMatcher HasOperand =
1867 binaryOperator(hasEitherOperand(boolLiteral(equals(false))));
1868
1869 EXPECT_TRUE(matches("void x() { true || false; }", HasOperand));
1870 EXPECT_TRUE(matches("void x() { false && true; }", HasOperand));
1871 EXPECT_TRUE(notMatches("void x() { true || true; }", HasOperand));
1872}
1873
1874TEST(Matcher, BinaryOperatorTypes) {
1875 // Integration test that verifies the AST provides all binary operators in
1876 // a way we expect.
1877 // FIXME: Operator ','
1878 EXPECT_TRUE(
1879 matches("void x() { 3, 4; }", binaryOperator(hasOperatorName(","))));
1880 EXPECT_TRUE(
1881 matches("bool b; bool c = (b = true);",
1882 binaryOperator(hasOperatorName("="))));
1883 EXPECT_TRUE(
1884 matches("bool b = 1 != 2;", binaryOperator(hasOperatorName("!="))));
1885 EXPECT_TRUE(
1886 matches("bool b = 1 == 2;", binaryOperator(hasOperatorName("=="))));
1887 EXPECT_TRUE(matches("bool b = 1 < 2;", binaryOperator(hasOperatorName("<"))));
1888 EXPECT_TRUE(
1889 matches("bool b = 1 <= 2;", binaryOperator(hasOperatorName("<="))));
1890 EXPECT_TRUE(
1891 matches("int i = 1 << 2;", binaryOperator(hasOperatorName("<<"))));
1892 EXPECT_TRUE(
1893 matches("int i = 1; int j = (i <<= 2);",
1894 binaryOperator(hasOperatorName("<<="))));
1895 EXPECT_TRUE(matches("bool b = 1 > 2;", binaryOperator(hasOperatorName(">"))));
1896 EXPECT_TRUE(
1897 matches("bool b = 1 >= 2;", binaryOperator(hasOperatorName(">="))));
1898 EXPECT_TRUE(
1899 matches("int i = 1 >> 2;", binaryOperator(hasOperatorName(">>"))));
1900 EXPECT_TRUE(
1901 matches("int i = 1; int j = (i >>= 2);",
1902 binaryOperator(hasOperatorName(">>="))));
1903 EXPECT_TRUE(
1904 matches("int i = 42 ^ 23;", binaryOperator(hasOperatorName("^"))));
1905 EXPECT_TRUE(
1906 matches("int i = 42; int j = (i ^= 42);",
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 %= 42);",
1912 binaryOperator(hasOperatorName("%="))));
1913 EXPECT_TRUE(
1914 matches("bool b = 42 &23;", binaryOperator(hasOperatorName("&"))));
1915 EXPECT_TRUE(
1916 matches("bool b = true && false;",
1917 binaryOperator(hasOperatorName("&&"))));
1918 EXPECT_TRUE(
1919 matches("bool b = true; bool c = (b &= false);",
1920 binaryOperator(hasOperatorName("&="))));
1921 EXPECT_TRUE(
1922 matches("bool b = 42 | 23;", binaryOperator(hasOperatorName("|"))));
1923 EXPECT_TRUE(
1924 matches("bool b = true || false;",
1925 binaryOperator(hasOperatorName("||"))));
1926 EXPECT_TRUE(
1927 matches("bool b = true; bool c = (b |= false);",
1928 binaryOperator(hasOperatorName("|="))));
1929 EXPECT_TRUE(
1930 matches("int i = 42 *23;", binaryOperator(hasOperatorName("*"))));
1931 EXPECT_TRUE(
1932 matches("int i = 42; int j = (i *= 23);",
1933 binaryOperator(hasOperatorName("*="))));
1934 EXPECT_TRUE(
1935 matches("int i = 42 / 23;", binaryOperator(hasOperatorName("/"))));
1936 EXPECT_TRUE(
1937 matches("int i = 42; int j = (i /= 23);",
1938 binaryOperator(hasOperatorName("/="))));
1939 EXPECT_TRUE(
1940 matches("int i = 42 + 23;", binaryOperator(hasOperatorName("+"))));
1941 EXPECT_TRUE(
1942 matches("int i = 42; int j = (i += 23);",
1943 binaryOperator(hasOperatorName("+="))));
1944 EXPECT_TRUE(
1945 matches("int i = 42 - 23;", binaryOperator(hasOperatorName("-"))));
1946 EXPECT_TRUE(
1947 matches("int i = 42; int j = (i -= 23);",
1948 binaryOperator(hasOperatorName("-="))));
1949 EXPECT_TRUE(
1950 matches("struct A { void x() { void (A::*a)(); (this->*a)(); } };",
1951 binaryOperator(hasOperatorName("->*"))));
1952 EXPECT_TRUE(
1953 matches("struct A { void x() { void (A::*a)(); ((*this).*a)(); } };",
1954 binaryOperator(hasOperatorName(".*"))));
1955
1956 // Member expressions as operators are not supported in matches.
1957 EXPECT_TRUE(
1958 notMatches("struct A { void x(A *a) { a->x(this); } };",
1959 binaryOperator(hasOperatorName("->"))));
1960
1961 // Initializer assignments are not represented as operator equals.
1962 EXPECT_TRUE(
1963 notMatches("bool b = true;", binaryOperator(hasOperatorName("="))));
1964
1965 // Array indexing is not represented as operator.
1966 EXPECT_TRUE(notMatches("int a[42]; void x() { a[23]; }", unaryOperator()));
1967
1968 // Overloaded operators do not match at all.
1969 EXPECT_TRUE(notMatches(
1970 "struct A { bool operator&&(const A &a) const { return false; } };"
1971 "void x() { A a, b; a && b; }",
1972 binaryOperator()));
1973}
1974
1975TEST(MatchUnaryOperator, HasOperatorName) {
1976 StatementMatcher OperatorNot = unaryOperator(hasOperatorName("!"));
1977
1978 EXPECT_TRUE(matches("void x() { !true; } ", OperatorNot));
1979 EXPECT_TRUE(notMatches("void x() { true; } ", OperatorNot));
1980}
1981
1982TEST(MatchUnaryOperator, HasUnaryOperand) {
1983 StatementMatcher OperatorOnFalse =
1984 unaryOperator(hasUnaryOperand(boolLiteral(equals(false))));
1985
1986 EXPECT_TRUE(matches("void x() { !false; }", OperatorOnFalse));
1987 EXPECT_TRUE(notMatches("void x() { !true; }", OperatorOnFalse));
1988}
1989
1990TEST(Matcher, UnaryOperatorTypes) {
1991 // Integration test that verifies the AST provides all unary operators in
1992 // a way we expect.
1993 EXPECT_TRUE(matches("bool b = !true;", unaryOperator(hasOperatorName("!"))));
1994 EXPECT_TRUE(
1995 matches("bool b; bool *p = &b;", unaryOperator(hasOperatorName("&"))));
1996 EXPECT_TRUE(matches("int i = ~ 1;", unaryOperator(hasOperatorName("~"))));
1997 EXPECT_TRUE(
1998 matches("bool *p; bool b = *p;", unaryOperator(hasOperatorName("*"))));
1999 EXPECT_TRUE(
2000 matches("int i; int j = +i;", unaryOperator(hasOperatorName("+"))));
2001 EXPECT_TRUE(
2002 matches("int i; int j = -i;", unaryOperator(hasOperatorName("-"))));
2003 EXPECT_TRUE(
2004 matches("int i; int j = ++i;", unaryOperator(hasOperatorName("++"))));
2005 EXPECT_TRUE(
2006 matches("int i; int j = i++;", unaryOperator(hasOperatorName("++"))));
2007 EXPECT_TRUE(
2008 matches("int i; int j = --i;", unaryOperator(hasOperatorName("--"))));
2009 EXPECT_TRUE(
2010 matches("int i; int j = i--;", unaryOperator(hasOperatorName("--"))));
2011
2012 // We don't match conversion operators.
2013 EXPECT_TRUE(notMatches("int i; double d = (double)i;", unaryOperator()));
2014
2015 // Function calls are not represented as operator.
2016 EXPECT_TRUE(notMatches("void f(); void x() { f(); }", unaryOperator()));
2017
2018 // Overloaded operators do not match at all.
2019 // FIXME: We probably want to add that.
2020 EXPECT_TRUE(notMatches(
2021 "struct A { bool operator!() const { return false; } };"
2022 "void x() { A a; !a; }", unaryOperator(hasOperatorName("!"))));
2023}
2024
2025TEST(Matcher, ConditionalOperator) {
2026 StatementMatcher Conditional = conditionalOperator(
2027 hasCondition(boolLiteral(equals(true))),
2028 hasTrueExpression(boolLiteral(equals(false))));
2029
2030 EXPECT_TRUE(matches("void x() { true ? false : true; }", Conditional));
2031 EXPECT_TRUE(notMatches("void x() { false ? false : true; }", Conditional));
2032 EXPECT_TRUE(notMatches("void x() { true ? true : false; }", Conditional));
2033
2034 StatementMatcher ConditionalFalse = conditionalOperator(
2035 hasFalseExpression(boolLiteral(equals(false))));
2036
2037 EXPECT_TRUE(matches("void x() { true ? true : false; }", ConditionalFalse));
2038 EXPECT_TRUE(
2039 notMatches("void x() { true ? false : true; }", ConditionalFalse));
2040}
2041
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002042TEST(ArraySubscriptMatchers, ArraySubscripts) {
2043 EXPECT_TRUE(matches("int i[2]; void f() { i[1] = 1; }",
2044 arraySubscriptExpr()));
2045 EXPECT_TRUE(notMatches("int i; void f() { i = 1; }",
2046 arraySubscriptExpr()));
2047}
2048
2049TEST(ArraySubscriptMatchers, ArrayIndex) {
2050 EXPECT_TRUE(matches(
2051 "int i[2]; void f() { i[1] = 1; }",
2052 arraySubscriptExpr(hasIndex(integerLiteral(equals(1))))));
2053 EXPECT_TRUE(matches(
2054 "int i[2]; void f() { 1[i] = 1; }",
2055 arraySubscriptExpr(hasIndex(integerLiteral(equals(1))))));
2056 EXPECT_TRUE(notMatches(
2057 "int i[2]; void f() { i[1] = 1; }",
2058 arraySubscriptExpr(hasIndex(integerLiteral(equals(0))))));
2059}
2060
2061TEST(ArraySubscriptMatchers, MatchesArrayBase) {
2062 EXPECT_TRUE(matches(
2063 "int i[2]; void f() { i[1] = 2; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002064 arraySubscriptExpr(hasBase(implicitCastExpr(
2065 hasSourceExpression(declRefExpr()))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002066}
2067
Manuel Klimek4da21662012-07-06 05:48:52 +00002068TEST(Matcher, HasNameSupportsNamespaces) {
2069 EXPECT_TRUE(matches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002070 recordDecl(hasName("a::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002071 EXPECT_TRUE(matches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002072 recordDecl(hasName("::a::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002073 EXPECT_TRUE(matches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002074 recordDecl(hasName("b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002075 EXPECT_TRUE(matches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002076 recordDecl(hasName("C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002077 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002078 recordDecl(hasName("c::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002079 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002080 recordDecl(hasName("a::c::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002081 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002082 recordDecl(hasName("a::b::A"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002083 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002084 recordDecl(hasName("::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002085 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002086 recordDecl(hasName("::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002087 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002088 recordDecl(hasName("z::a::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002089 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002090 recordDecl(hasName("a+b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002091 EXPECT_TRUE(notMatches("namespace a { namespace b { class AC; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002092 recordDecl(hasName("C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002093}
2094
2095TEST(Matcher, HasNameSupportsOuterClasses) {
2096 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002097 matches("class A { class B { class C; }; };",
2098 recordDecl(hasName("A::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002099 EXPECT_TRUE(
2100 matches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002101 recordDecl(hasName("::A::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002102 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002103 matches("class A { class B { class C; }; };",
2104 recordDecl(hasName("B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002105 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002106 matches("class A { class B { class C; }; };",
2107 recordDecl(hasName("C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002108 EXPECT_TRUE(
2109 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002110 recordDecl(hasName("c::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002111 EXPECT_TRUE(
2112 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002113 recordDecl(hasName("A::c::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002114 EXPECT_TRUE(
2115 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002116 recordDecl(hasName("A::B::A"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002117 EXPECT_TRUE(
2118 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002119 recordDecl(hasName("::C"))));
2120 EXPECT_TRUE(
2121 notMatches("class A { class B { class C; }; };",
2122 recordDecl(hasName("::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002123 EXPECT_TRUE(notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002124 recordDecl(hasName("z::A::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002125 EXPECT_TRUE(
2126 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002127 recordDecl(hasName("A+B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002128}
2129
2130TEST(Matcher, IsDefinition) {
2131 DeclarationMatcher DefinitionOfClassA =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002132 recordDecl(hasName("A"), isDefinition());
Manuel Klimek4da21662012-07-06 05:48:52 +00002133 EXPECT_TRUE(matches("class A {};", DefinitionOfClassA));
2134 EXPECT_TRUE(notMatches("class A;", DefinitionOfClassA));
2135
2136 DeclarationMatcher DefinitionOfVariableA =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002137 varDecl(hasName("a"), isDefinition());
Manuel Klimek4da21662012-07-06 05:48:52 +00002138 EXPECT_TRUE(matches("int a;", DefinitionOfVariableA));
2139 EXPECT_TRUE(notMatches("extern int a;", DefinitionOfVariableA));
2140
2141 DeclarationMatcher DefinitionOfMethodA =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002142 methodDecl(hasName("a"), isDefinition());
Manuel Klimek4da21662012-07-06 05:48:52 +00002143 EXPECT_TRUE(matches("class A { void a() {} };", DefinitionOfMethodA));
2144 EXPECT_TRUE(notMatches("class A { void a(); };", DefinitionOfMethodA));
2145}
2146
2147TEST(Matcher, OfClass) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002148 StatementMatcher Constructor = constructExpr(hasDeclaration(methodDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +00002149 ofClass(hasName("X")))));
2150
2151 EXPECT_TRUE(
2152 matches("class X { public: X(); }; void x(int) { X x; }", Constructor));
2153 EXPECT_TRUE(
2154 matches("class X { public: X(); }; void x(int) { X x = X(); }",
2155 Constructor));
2156 EXPECT_TRUE(
2157 notMatches("class Y { public: Y(); }; void x(int) { Y y; }",
2158 Constructor));
2159}
2160
2161TEST(Matcher, VisitsTemplateInstantiations) {
2162 EXPECT_TRUE(matches(
2163 "class A { public: void x(); };"
2164 "template <typename T> class B { public: void y() { T t; t.x(); } };"
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002165 "void f() { B<A> b; b.y(); }",
2166 callExpr(callee(methodDecl(hasName("x"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002167
2168 EXPECT_TRUE(matches(
2169 "class A { public: void x(); };"
2170 "class C {"
2171 " public:"
2172 " template <typename T> class B { public: void y() { T t; t.x(); } };"
2173 "};"
2174 "void f() {"
2175 " C::B<A> b; b.y();"
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002176 "}",
2177 recordDecl(hasName("C"),
2178 hasDescendant(callExpr(callee(methodDecl(hasName("x"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002179}
2180
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002181TEST(Matcher, HandlesNullQualTypes) {
2182 // FIXME: Add a Type matcher so we can replace uses of this
2183 // variable with Type(True())
2184 const TypeMatcher AnyType = anything();
2185
2186 // We don't really care whether this matcher succeeds; we're testing that
2187 // it completes without crashing.
2188 EXPECT_TRUE(matches(
2189 "struct A { };"
2190 "template <typename T>"
2191 "void f(T t) {"
2192 " T local_t(t /* this becomes a null QualType in the AST */);"
2193 "}"
2194 "void g() {"
2195 " f(0);"
2196 "}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002197 expr(hasType(TypeMatcher(
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002198 anyOf(
2199 TypeMatcher(hasDeclaration(anything())),
2200 pointsTo(AnyType),
2201 references(AnyType)
2202 // Other QualType matchers should go here.
2203 ))))));
2204}
2205
Manuel Klimek4da21662012-07-06 05:48:52 +00002206// For testing AST_MATCHER_P().
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002207AST_MATCHER_P(Decl, just, internal::Matcher<Decl>, AMatcher) {
Manuel Klimek4da21662012-07-06 05:48:52 +00002208 // Make sure all special variables are used: node, match_finder,
2209 // bound_nodes_builder, and the parameter named 'AMatcher'.
2210 return AMatcher.matches(Node, Finder, Builder);
2211}
2212
2213TEST(AstMatcherPMacro, Works) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002214 DeclarationMatcher HasClassB = just(has(recordDecl(hasName("B")).bind("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002215
2216 EXPECT_TRUE(matchAndVerifyResultTrue("class A { class B {}; };",
Daniel Jaspera7564432012-09-13 13:11:25 +00002217 HasClassB, new VerifyIdIsBoundTo<Decl>("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002218
2219 EXPECT_TRUE(matchAndVerifyResultFalse("class A { class B {}; };",
Daniel Jaspera7564432012-09-13 13:11:25 +00002220 HasClassB, new VerifyIdIsBoundTo<Decl>("a")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002221
2222 EXPECT_TRUE(matchAndVerifyResultFalse("class A { class C {}; };",
Daniel Jaspera7564432012-09-13 13:11:25 +00002223 HasClassB, new VerifyIdIsBoundTo<Decl>("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002224}
2225
2226AST_POLYMORPHIC_MATCHER_P(
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002227 polymorphicHas, internal::Matcher<Decl>, AMatcher) {
2228 TOOLING_COMPILE_ASSERT((llvm::is_same<NodeType, Decl>::value) ||
2229 (llvm::is_same<NodeType, Stmt>::value),
Manuel Klimek4da21662012-07-06 05:48:52 +00002230 assert_node_type_is_accessible);
Manuel Klimek4da21662012-07-06 05:48:52 +00002231 return Finder->matchesChildOf(
Manuel Klimeka78d0d62012-09-05 12:12:07 +00002232 Node, AMatcher, Builder,
Manuel Klimek4da21662012-07-06 05:48:52 +00002233 ASTMatchFinder::TK_IgnoreImplicitCastsAndParentheses,
2234 ASTMatchFinder::BK_First);
2235}
2236
2237TEST(AstPolymorphicMatcherPMacro, Works) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002238 DeclarationMatcher HasClassB =
2239 polymorphicHas(recordDecl(hasName("B")).bind("b"));
Manuel Klimek4da21662012-07-06 05:48:52 +00002240
2241 EXPECT_TRUE(matchAndVerifyResultTrue("class A { class B {}; };",
Daniel Jaspera7564432012-09-13 13:11:25 +00002242 HasClassB, new VerifyIdIsBoundTo<Decl>("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002243
2244 EXPECT_TRUE(matchAndVerifyResultFalse("class A { class B {}; };",
Daniel Jaspera7564432012-09-13 13:11:25 +00002245 HasClassB, new VerifyIdIsBoundTo<Decl>("a")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002246
2247 EXPECT_TRUE(matchAndVerifyResultFalse("class A { class C {}; };",
Daniel Jaspera7564432012-09-13 13:11:25 +00002248 HasClassB, new VerifyIdIsBoundTo<Decl>("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002249
2250 StatementMatcher StatementHasClassB =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002251 polymorphicHas(recordDecl(hasName("B")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002252
2253 EXPECT_TRUE(matches("void x() { class B {}; }", StatementHasClassB));
2254}
2255
2256TEST(For, FindsForLoops) {
2257 EXPECT_TRUE(matches("void f() { for(;;); }", forStmt()));
2258 EXPECT_TRUE(matches("void f() { if(true) for(;;); }", forStmt()));
Daniel Jasper1a00fee2012-10-01 15:05:34 +00002259 EXPECT_TRUE(notMatches("int as[] = { 1, 2, 3 };"
2260 "void f() { for (auto &a : as); }",
Daniel Jasper31f7c082012-10-01 13:40:41 +00002261 forStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002262}
2263
Daniel Jasper6a124492012-07-12 08:50:38 +00002264TEST(For, ForLoopInternals) {
2265 EXPECT_TRUE(matches("void f(){ int i; for (; i < 3 ; ); }",
2266 forStmt(hasCondition(anything()))));
2267 EXPECT_TRUE(matches("void f() { for (int i = 0; ;); }",
2268 forStmt(hasLoopInit(anything()))));
2269}
2270
2271TEST(For, NegativeForLoopInternals) {
2272 EXPECT_TRUE(notMatches("void f(){ for (int i = 0; ; ++i); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002273 forStmt(hasCondition(expr()))));
Daniel Jasper6a124492012-07-12 08:50:38 +00002274 EXPECT_TRUE(notMatches("void f() {int i; for (; i < 4; ++i) {} }",
2275 forStmt(hasLoopInit(anything()))));
2276}
2277
Manuel Klimek4da21662012-07-06 05:48:52 +00002278TEST(For, ReportsNoFalsePositives) {
2279 EXPECT_TRUE(notMatches("void f() { ; }", forStmt()));
2280 EXPECT_TRUE(notMatches("void f() { if(true); }", forStmt()));
2281}
2282
2283TEST(CompoundStatement, HandlesSimpleCases) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002284 EXPECT_TRUE(notMatches("void f();", compoundStmt()));
2285 EXPECT_TRUE(matches("void f() {}", compoundStmt()));
2286 EXPECT_TRUE(matches("void f() {{}}", compoundStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002287}
2288
2289TEST(CompoundStatement, DoesNotMatchEmptyStruct) {
2290 // It's not a compound statement just because there's "{}" in the source
2291 // text. This is an AST search, not grep.
2292 EXPECT_TRUE(notMatches("namespace n { struct S {}; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002293 compoundStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002294 EXPECT_TRUE(matches("namespace n { struct S { void f() {{}} }; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002295 compoundStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002296}
2297
Daniel Jasper6a124492012-07-12 08:50:38 +00002298TEST(HasBody, FindsBodyOfForWhileDoLoops) {
Manuel Klimek4da21662012-07-06 05:48:52 +00002299 EXPECT_TRUE(matches("void f() { for(;;) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002300 forStmt(hasBody(compoundStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002301 EXPECT_TRUE(notMatches("void f() { for(;;); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002302 forStmt(hasBody(compoundStmt()))));
Daniel Jasper6a124492012-07-12 08:50:38 +00002303 EXPECT_TRUE(matches("void f() { while(true) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002304 whileStmt(hasBody(compoundStmt()))));
Daniel Jasper6a124492012-07-12 08:50:38 +00002305 EXPECT_TRUE(matches("void f() { do {} while(true); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002306 doStmt(hasBody(compoundStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002307}
2308
2309TEST(HasAnySubstatement, MatchesForTopLevelCompoundStatement) {
2310 // The simplest case: every compound statement is in a function
2311 // definition, and the function body itself must be a compound
2312 // statement.
2313 EXPECT_TRUE(matches("void f() { for (;;); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002314 compoundStmt(hasAnySubstatement(forStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002315}
2316
2317TEST(HasAnySubstatement, IsNotRecursive) {
2318 // It's really "has any immediate substatement".
2319 EXPECT_TRUE(notMatches("void f() { if (true) for (;;); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002320 compoundStmt(hasAnySubstatement(forStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002321}
2322
2323TEST(HasAnySubstatement, MatchesInNestedCompoundStatements) {
2324 EXPECT_TRUE(matches("void f() { if (true) { for (;;); } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002325 compoundStmt(hasAnySubstatement(forStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002326}
2327
2328TEST(HasAnySubstatement, FindsSubstatementBetweenOthers) {
2329 EXPECT_TRUE(matches("void f() { 1; 2; 3; for (;;); 4; 5; 6; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002330 compoundStmt(hasAnySubstatement(forStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002331}
2332
2333TEST(StatementCountIs, FindsNoStatementsInAnEmptyCompoundStatement) {
2334 EXPECT_TRUE(matches("void f() { }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002335 compoundStmt(statementCountIs(0))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002336 EXPECT_TRUE(notMatches("void f() {}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002337 compoundStmt(statementCountIs(1))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002338}
2339
2340TEST(StatementCountIs, AppearsToMatchOnlyOneCount) {
2341 EXPECT_TRUE(matches("void f() { 1; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002342 compoundStmt(statementCountIs(1))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002343 EXPECT_TRUE(notMatches("void f() { 1; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002344 compoundStmt(statementCountIs(0))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002345 EXPECT_TRUE(notMatches("void f() { 1; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002346 compoundStmt(statementCountIs(2))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002347}
2348
2349TEST(StatementCountIs, WorksWithMultipleStatements) {
2350 EXPECT_TRUE(matches("void f() { 1; 2; 3; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002351 compoundStmt(statementCountIs(3))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002352}
2353
2354TEST(StatementCountIs, WorksWithNestedCompoundStatements) {
2355 EXPECT_TRUE(matches("void f() { { 1; } { 1; 2; 3; 4; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002356 compoundStmt(statementCountIs(1))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002357 EXPECT_TRUE(matches("void f() { { 1; } { 1; 2; 3; 4; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002358 compoundStmt(statementCountIs(2))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002359 EXPECT_TRUE(notMatches("void f() { { 1; } { 1; 2; 3; 4; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002360 compoundStmt(statementCountIs(3))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002361 EXPECT_TRUE(matches("void f() { { 1; } { 1; 2; 3; 4; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002362 compoundStmt(statementCountIs(4))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002363}
2364
2365TEST(Member, WorksInSimplestCase) {
2366 EXPECT_TRUE(matches("struct { int first; } s; int i(s.first);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002367 memberExpr(member(hasName("first")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002368}
2369
2370TEST(Member, DoesNotMatchTheBaseExpression) {
2371 // Don't pick out the wrong part of the member expression, this should
2372 // be checking the member (name) only.
2373 EXPECT_TRUE(notMatches("struct { int i; } first; int i(first.i);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002374 memberExpr(member(hasName("first")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002375}
2376
2377TEST(Member, MatchesInMemberFunctionCall) {
2378 EXPECT_TRUE(matches("void f() {"
2379 " struct { void first() {}; } s;"
2380 " s.first();"
2381 "};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002382 memberExpr(member(hasName("first")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002383}
2384
Daniel Jasperc711af22012-10-23 15:46:39 +00002385TEST(Member, MatchesMember) {
2386 EXPECT_TRUE(matches(
2387 "struct A { int i; }; void f() { A a; a.i = 2; }",
2388 memberExpr(hasDeclaration(fieldDecl(hasType(isInteger()))))));
2389 EXPECT_TRUE(notMatches(
2390 "struct A { float f; }; void f() { A a; a.f = 2.0f; }",
2391 memberExpr(hasDeclaration(fieldDecl(hasType(isInteger()))))));
2392}
2393
Daniel Jasperf3197e92013-02-25 12:02:08 +00002394TEST(Member, UnderstandsAccess) {
2395 EXPECT_TRUE(matches(
2396 "struct A { int i; };", fieldDecl(isPublic(), hasName("i"))));
2397 EXPECT_TRUE(notMatches(
2398 "struct A { int i; };", fieldDecl(isProtected(), hasName("i"))));
2399 EXPECT_TRUE(notMatches(
2400 "struct A { int i; };", fieldDecl(isPrivate(), hasName("i"))));
2401
2402 EXPECT_TRUE(notMatches(
2403 "class A { int i; };", fieldDecl(isPublic(), hasName("i"))));
2404 EXPECT_TRUE(notMatches(
2405 "class A { int i; };", fieldDecl(isProtected(), hasName("i"))));
2406 EXPECT_TRUE(matches(
2407 "class A { int i; };", fieldDecl(isPrivate(), hasName("i"))));
2408
2409 EXPECT_TRUE(notMatches(
2410 "class A { protected: int i; };", fieldDecl(isPublic(), hasName("i"))));
2411 EXPECT_TRUE(matches("class A { protected: int i; };",
2412 fieldDecl(isProtected(), hasName("i"))));
2413 EXPECT_TRUE(notMatches(
2414 "class A { protected: int i; };", fieldDecl(isPrivate(), hasName("i"))));
2415
2416 // Non-member decls have the AccessSpecifier AS_none and thus aren't matched.
2417 EXPECT_TRUE(notMatches("int i;", varDecl(isPublic(), hasName("i"))));
2418 EXPECT_TRUE(notMatches("int i;", varDecl(isProtected(), hasName("i"))));
2419 EXPECT_TRUE(notMatches("int i;", varDecl(isPrivate(), hasName("i"))));
2420}
2421
Dmitri Gribenko671a0452012-08-18 00:29:27 +00002422TEST(Member, MatchesMemberAllocationFunction) {
Daniel Jasper31f7c082012-10-01 13:40:41 +00002423 // Fails in C++11 mode
2424 EXPECT_TRUE(matchesConditionally(
2425 "namespace std { typedef typeof(sizeof(int)) size_t; }"
2426 "class X { void *operator new(std::size_t); };",
2427 methodDecl(ofClass(hasName("X"))), true, "-std=gnu++98"));
Dmitri Gribenko671a0452012-08-18 00:29:27 +00002428
2429 EXPECT_TRUE(matches("class X { void operator delete(void*); };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002430 methodDecl(ofClass(hasName("X")))));
Dmitri Gribenko671a0452012-08-18 00:29:27 +00002431
Daniel Jasper31f7c082012-10-01 13:40:41 +00002432 // Fails in C++11 mode
2433 EXPECT_TRUE(matchesConditionally(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002434 "namespace std { typedef typeof(sizeof(int)) size_t; }"
2435 "class X { void operator delete[](void*, std::size_t); };",
Daniel Jasper31f7c082012-10-01 13:40:41 +00002436 methodDecl(ofClass(hasName("X"))), true, "-std=gnu++98"));
Dmitri Gribenko671a0452012-08-18 00:29:27 +00002437}
2438
Manuel Klimek4da21662012-07-06 05:48:52 +00002439TEST(HasObjectExpression, DoesNotMatchMember) {
2440 EXPECT_TRUE(notMatches(
2441 "class X {}; struct Z { X m; }; void f(Z z) { z.m; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002442 memberExpr(hasObjectExpression(hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002443}
2444
2445TEST(HasObjectExpression, MatchesBaseOfVariable) {
2446 EXPECT_TRUE(matches(
2447 "struct X { int m; }; void f(X x) { x.m; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002448 memberExpr(hasObjectExpression(hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002449 EXPECT_TRUE(matches(
2450 "struct X { int m; }; void f(X* x) { x->m; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002451 memberExpr(hasObjectExpression(
2452 hasType(pointsTo(recordDecl(hasName("X"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002453}
2454
2455TEST(HasObjectExpression,
2456 MatchesObjectExpressionOfImplicitlyFormedMemberExpression) {
2457 EXPECT_TRUE(matches(
2458 "class X {}; struct S { X m; void f() { this->m; } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002459 memberExpr(hasObjectExpression(
2460 hasType(pointsTo(recordDecl(hasName("S"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002461 EXPECT_TRUE(matches(
2462 "class X {}; struct S { X m; void f() { m; } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002463 memberExpr(hasObjectExpression(
2464 hasType(pointsTo(recordDecl(hasName("S"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002465}
2466
2467TEST(Field, DoesNotMatchNonFieldMembers) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002468 EXPECT_TRUE(notMatches("class X { void m(); };", fieldDecl(hasName("m"))));
2469 EXPECT_TRUE(notMatches("class X { class m {}; };", fieldDecl(hasName("m"))));
2470 EXPECT_TRUE(notMatches("class X { enum { m }; };", fieldDecl(hasName("m"))));
2471 EXPECT_TRUE(notMatches("class X { enum m {}; };", fieldDecl(hasName("m"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002472}
2473
2474TEST(Field, MatchesField) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002475 EXPECT_TRUE(matches("class X { int m; };", fieldDecl(hasName("m"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002476}
2477
2478TEST(IsConstQualified, MatchesConstInt) {
2479 EXPECT_TRUE(matches("const int i = 42;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002480 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002481}
2482
2483TEST(IsConstQualified, MatchesConstPointer) {
2484 EXPECT_TRUE(matches("int i = 42; int* const p(&i);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002485 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002486}
2487
2488TEST(IsConstQualified, MatchesThroughTypedef) {
2489 EXPECT_TRUE(matches("typedef const int const_int; const_int i = 42;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002490 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002491 EXPECT_TRUE(matches("typedef int* int_ptr; const int_ptr p(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002492 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002493}
2494
2495TEST(IsConstQualified, DoesNotMatchInappropriately) {
2496 EXPECT_TRUE(notMatches("typedef int nonconst_int; nonconst_int i = 42;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002497 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002498 EXPECT_TRUE(notMatches("int const* p;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002499 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002500}
2501
Sam Panzer089e5b32012-08-16 16:58:10 +00002502TEST(CastExpression, MatchesExplicitCasts) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002503 EXPECT_TRUE(matches("char *p = reinterpret_cast<char *>(&p);",castExpr()));
2504 EXPECT_TRUE(matches("void *p = (void *)(&p);", castExpr()));
2505 EXPECT_TRUE(matches("char q, *p = const_cast<char *>(&q);", castExpr()));
2506 EXPECT_TRUE(matches("char c = char(0);", castExpr()));
Sam Panzer089e5b32012-08-16 16:58:10 +00002507}
2508TEST(CastExpression, MatchesImplicitCasts) {
2509 // This test creates an implicit cast from int to char.
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002510 EXPECT_TRUE(matches("char c = 0;", castExpr()));
Sam Panzer089e5b32012-08-16 16:58:10 +00002511 // This test creates an implicit cast from lvalue to rvalue.
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002512 EXPECT_TRUE(matches("char c = 0, d = c;", castExpr()));
Sam Panzer089e5b32012-08-16 16:58:10 +00002513}
2514
2515TEST(CastExpression, DoesNotMatchNonCasts) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002516 EXPECT_TRUE(notMatches("char c = '0';", castExpr()));
2517 EXPECT_TRUE(notMatches("char c, &q = c;", castExpr()));
2518 EXPECT_TRUE(notMatches("int i = (0);", castExpr()));
2519 EXPECT_TRUE(notMatches("int i = 0;", castExpr()));
Sam Panzer089e5b32012-08-16 16:58:10 +00002520}
2521
Manuel Klimek4da21662012-07-06 05:48:52 +00002522TEST(ReinterpretCast, MatchesSimpleCase) {
2523 EXPECT_TRUE(matches("char* p = reinterpret_cast<char*>(&p);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002524 reinterpretCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002525}
2526
2527TEST(ReinterpretCast, DoesNotMatchOtherCasts) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002528 EXPECT_TRUE(notMatches("char* p = (char*)(&p);", reinterpretCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002529 EXPECT_TRUE(notMatches("char q, *p = const_cast<char*>(&q);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002530 reinterpretCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002531 EXPECT_TRUE(notMatches("void* p = static_cast<void*>(&p);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002532 reinterpretCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002533 EXPECT_TRUE(notMatches("struct B { virtual ~B() {} }; struct D : B {};"
2534 "B b;"
2535 "D* p = dynamic_cast<D*>(&b);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002536 reinterpretCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002537}
2538
2539TEST(FunctionalCast, MatchesSimpleCase) {
2540 std::string foo_class = "class Foo { public: Foo(char*); };";
2541 EXPECT_TRUE(matches(foo_class + "void r() { Foo f = Foo(\"hello world\"); }",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002542 functionalCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002543}
2544
2545TEST(FunctionalCast, DoesNotMatchOtherCasts) {
2546 std::string FooClass = "class Foo { public: Foo(char*); };";
2547 EXPECT_TRUE(
2548 notMatches(FooClass + "void r() { Foo f = (Foo) \"hello world\"; }",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002549 functionalCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002550 EXPECT_TRUE(
2551 notMatches(FooClass + "void r() { Foo f = \"hello world\"; }",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002552 functionalCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002553}
2554
2555TEST(DynamicCast, MatchesSimpleCase) {
2556 EXPECT_TRUE(matches("struct B { virtual ~B() {} }; struct D : B {};"
2557 "B b;"
2558 "D* p = dynamic_cast<D*>(&b);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002559 dynamicCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002560}
2561
2562TEST(StaticCast, MatchesSimpleCase) {
2563 EXPECT_TRUE(matches("void* p(static_cast<void*>(&p));",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002564 staticCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002565}
2566
2567TEST(StaticCast, DoesNotMatchOtherCasts) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002568 EXPECT_TRUE(notMatches("char* p = (char*)(&p);", staticCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002569 EXPECT_TRUE(notMatches("char q, *p = const_cast<char*>(&q);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002570 staticCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002571 EXPECT_TRUE(notMatches("void* p = reinterpret_cast<char*>(&p);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002572 staticCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002573 EXPECT_TRUE(notMatches("struct B { virtual ~B() {} }; struct D : B {};"
2574 "B b;"
2575 "D* p = dynamic_cast<D*>(&b);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002576 staticCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002577}
2578
Daniel Jaspere6d2a962012-09-18 13:36:17 +00002579TEST(CStyleCast, MatchesSimpleCase) {
2580 EXPECT_TRUE(matches("int i = (int) 2.2f;", cStyleCastExpr()));
2581}
2582
2583TEST(CStyleCast, DoesNotMatchOtherCasts) {
2584 EXPECT_TRUE(notMatches("char* p = static_cast<char*>(0);"
2585 "char q, *r = const_cast<char*>(&q);"
2586 "void* s = reinterpret_cast<char*>(&s);"
2587 "struct B { virtual ~B() {} }; struct D : B {};"
2588 "B b;"
2589 "D* t = dynamic_cast<D*>(&b);",
2590 cStyleCastExpr()));
2591}
2592
Manuel Klimek4da21662012-07-06 05:48:52 +00002593TEST(HasDestinationType, MatchesSimpleCase) {
2594 EXPECT_TRUE(matches("char* p = static_cast<char*>(0);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002595 staticCastExpr(hasDestinationType(
2596 pointsTo(TypeMatcher(anything()))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002597}
2598
Sam Panzer089e5b32012-08-16 16:58:10 +00002599TEST(HasImplicitDestinationType, MatchesSimpleCase) {
2600 // This test creates an implicit const cast.
2601 EXPECT_TRUE(matches("int x; const int i = x;",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002602 implicitCastExpr(
2603 hasImplicitDestinationType(isInteger()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002604 // This test creates an implicit array-to-pointer cast.
2605 EXPECT_TRUE(matches("int arr[3]; int *p = arr;",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002606 implicitCastExpr(hasImplicitDestinationType(
2607 pointsTo(TypeMatcher(anything()))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002608}
2609
2610TEST(HasImplicitDestinationType, DoesNotMatchIncorrectly) {
2611 // This test creates an implicit cast from int to char.
2612 EXPECT_TRUE(notMatches("char c = 0;",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002613 implicitCastExpr(hasImplicitDestinationType(
2614 unless(anything())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002615 // This test creates an implicit array-to-pointer cast.
2616 EXPECT_TRUE(notMatches("int arr[3]; int *p = arr;",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002617 implicitCastExpr(hasImplicitDestinationType(
2618 unless(anything())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002619}
2620
2621TEST(ImplicitCast, MatchesSimpleCase) {
2622 // This test creates an implicit const cast.
2623 EXPECT_TRUE(matches("int x = 0; const int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002624 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002625 // This test creates an implicit cast from int to char.
2626 EXPECT_TRUE(matches("char c = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002627 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002628 // This test creates an implicit array-to-pointer cast.
2629 EXPECT_TRUE(matches("int arr[6]; int *p = arr;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002630 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002631}
2632
2633TEST(ImplicitCast, DoesNotMatchIncorrectly) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002634 // This test verifies that implicitCastExpr() matches exactly when implicit casts
Sam Panzer089e5b32012-08-16 16:58:10 +00002635 // are present, and that it ignores explicit and paren casts.
2636
2637 // These two test cases have no casts.
2638 EXPECT_TRUE(notMatches("int x = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002639 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002640 EXPECT_TRUE(notMatches("int x = 0, &y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002641 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002642
2643 EXPECT_TRUE(notMatches("int x = 0; double d = (double) x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002644 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002645 EXPECT_TRUE(notMatches("const int *p; int *q = const_cast<int *>(p);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002646 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002647
2648 EXPECT_TRUE(notMatches("int x = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002649 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002650}
2651
2652TEST(IgnoringImpCasts, MatchesImpCasts) {
2653 // This test checks that ignoringImpCasts matches when implicit casts are
2654 // present and its inner matcher alone does not match.
2655 // Note that this test creates an implicit const cast.
2656 EXPECT_TRUE(matches("int x = 0; const int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002657 varDecl(hasInitializer(ignoringImpCasts(
2658 declRefExpr(to(varDecl(hasName("x")))))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002659 // This test creates an implict cast from int to char.
2660 EXPECT_TRUE(matches("char x = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002661 varDecl(hasInitializer(ignoringImpCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002662 integerLiteral(equals(0)))))));
2663}
2664
2665TEST(IgnoringImpCasts, DoesNotMatchIncorrectly) {
2666 // These tests verify that ignoringImpCasts does not match if the inner
2667 // matcher does not match.
2668 // Note that the first test creates an implicit const cast.
2669 EXPECT_TRUE(notMatches("int x; const int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002670 varDecl(hasInitializer(ignoringImpCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002671 unless(anything()))))));
2672 EXPECT_TRUE(notMatches("int x; int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002673 varDecl(hasInitializer(ignoringImpCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002674 unless(anything()))))));
2675
2676 // These tests verify that ignoringImplictCasts does not look through explicit
2677 // casts or parentheses.
2678 EXPECT_TRUE(notMatches("char* p = static_cast<char*>(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002679 varDecl(hasInitializer(ignoringImpCasts(
2680 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002681 EXPECT_TRUE(notMatches("int i = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002682 varDecl(hasInitializer(ignoringImpCasts(
2683 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002684 EXPECT_TRUE(notMatches("float i = (float)0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002685 varDecl(hasInitializer(ignoringImpCasts(
2686 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002687 EXPECT_TRUE(notMatches("float i = float(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002688 varDecl(hasInitializer(ignoringImpCasts(
2689 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002690}
2691
2692TEST(IgnoringImpCasts, MatchesWithoutImpCasts) {
2693 // This test verifies that expressions that do not have implicit casts
2694 // still match the inner matcher.
2695 EXPECT_TRUE(matches("int x = 0; int &y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002696 varDecl(hasInitializer(ignoringImpCasts(
2697 declRefExpr(to(varDecl(hasName("x")))))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002698}
2699
2700TEST(IgnoringParenCasts, MatchesParenCasts) {
2701 // This test checks that ignoringParenCasts matches when parentheses and/or
2702 // casts are present and its inner matcher alone does not match.
2703 EXPECT_TRUE(matches("int x = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002704 varDecl(hasInitializer(ignoringParenCasts(
2705 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002706 EXPECT_TRUE(matches("int x = (((((0)))));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002707 varDecl(hasInitializer(ignoringParenCasts(
2708 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002709
2710 // This test creates an implict cast from int to char in addition to the
2711 // parentheses.
2712 EXPECT_TRUE(matches("char x = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002713 varDecl(hasInitializer(ignoringParenCasts(
2714 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002715
2716 EXPECT_TRUE(matches("char x = (char)0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002717 varDecl(hasInitializer(ignoringParenCasts(
2718 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002719 EXPECT_TRUE(matches("char* p = static_cast<char*>(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002720 varDecl(hasInitializer(ignoringParenCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002721 integerLiteral(equals(0)))))));
2722}
2723
2724TEST(IgnoringParenCasts, MatchesWithoutParenCasts) {
2725 // This test verifies that expressions that do not have any casts still match.
2726 EXPECT_TRUE(matches("int x = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002727 varDecl(hasInitializer(ignoringParenCasts(
2728 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002729}
2730
2731TEST(IgnoringParenCasts, DoesNotMatchIncorrectly) {
2732 // These tests verify that ignoringImpCasts does not match if the inner
2733 // matcher does not match.
2734 EXPECT_TRUE(notMatches("int x = ((0));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002735 varDecl(hasInitializer(ignoringParenCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002736 unless(anything()))))));
2737
2738 // This test creates an implicit cast from int to char in addition to the
2739 // parentheses.
2740 EXPECT_TRUE(notMatches("char x = ((0));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002741 varDecl(hasInitializer(ignoringParenCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002742 unless(anything()))))));
2743
2744 EXPECT_TRUE(notMatches("char *x = static_cast<char *>((0));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002745 varDecl(hasInitializer(ignoringParenCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002746 unless(anything()))))));
2747}
2748
2749TEST(IgnoringParenAndImpCasts, MatchesParenImpCasts) {
2750 // This test checks that ignoringParenAndImpCasts matches when
2751 // parentheses and/or implicit casts are present and its inner matcher alone
2752 // does not match.
2753 // Note that this test creates an implicit const cast.
2754 EXPECT_TRUE(matches("int x = 0; const int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002755 varDecl(hasInitializer(ignoringParenImpCasts(
2756 declRefExpr(to(varDecl(hasName("x")))))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002757 // This test creates an implicit cast from int to char.
2758 EXPECT_TRUE(matches("const char x = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002759 varDecl(hasInitializer(ignoringParenImpCasts(
2760 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002761}
2762
2763TEST(IgnoringParenAndImpCasts, MatchesWithoutParenImpCasts) {
2764 // This test verifies that expressions that do not have parentheses or
2765 // implicit casts still match.
2766 EXPECT_TRUE(matches("int x = 0; int &y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002767 varDecl(hasInitializer(ignoringParenImpCasts(
2768 declRefExpr(to(varDecl(hasName("x")))))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002769 EXPECT_TRUE(matches("int x = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002770 varDecl(hasInitializer(ignoringParenImpCasts(
2771 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002772}
2773
2774TEST(IgnoringParenAndImpCasts, DoesNotMatchIncorrectly) {
2775 // These tests verify that ignoringParenImpCasts does not match if
2776 // the inner matcher does not match.
2777 // This test creates an implicit cast.
2778 EXPECT_TRUE(notMatches("char c = ((3));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002779 varDecl(hasInitializer(ignoringParenImpCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002780 unless(anything()))))));
2781 // These tests verify that ignoringParenAndImplictCasts does not look
2782 // through explicit casts.
2783 EXPECT_TRUE(notMatches("float y = (float(0));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002784 varDecl(hasInitializer(ignoringParenImpCasts(
2785 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002786 EXPECT_TRUE(notMatches("float y = (float)0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002787 varDecl(hasInitializer(ignoringParenImpCasts(
2788 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002789 EXPECT_TRUE(notMatches("char* p = static_cast<char*>(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002790 varDecl(hasInitializer(ignoringParenImpCasts(
2791 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002792}
2793
Manuel Klimek715c9562012-07-25 10:02:02 +00002794TEST(HasSourceExpression, MatchesImplicitCasts) {
Manuel Klimek4da21662012-07-06 05:48:52 +00002795 EXPECT_TRUE(matches("class string {}; class URL { public: URL(string s); };"
2796 "void r() {string a_string; URL url = a_string; }",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002797 implicitCastExpr(
2798 hasSourceExpression(constructExpr()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002799}
2800
Manuel Klimek715c9562012-07-25 10:02:02 +00002801TEST(HasSourceExpression, MatchesExplicitCasts) {
2802 EXPECT_TRUE(matches("float x = static_cast<float>(42);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002803 explicitCastExpr(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002804 hasSourceExpression(hasDescendant(
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002805 expr(integerLiteral()))))));
Manuel Klimek715c9562012-07-25 10:02:02 +00002806}
2807
Manuel Klimek4da21662012-07-06 05:48:52 +00002808TEST(Statement, DoesNotMatchDeclarations) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002809 EXPECT_TRUE(notMatches("class X {};", stmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002810}
2811
2812TEST(Statement, MatchesCompoundStatments) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002813 EXPECT_TRUE(matches("void x() {}", stmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002814}
2815
2816TEST(DeclarationStatement, DoesNotMatchCompoundStatements) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002817 EXPECT_TRUE(notMatches("void x() {}", declStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002818}
2819
2820TEST(DeclarationStatement, MatchesVariableDeclarationStatements) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002821 EXPECT_TRUE(matches("void x() { int a; }", declStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002822}
2823
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002824TEST(InitListExpression, MatchesInitListExpression) {
2825 EXPECT_TRUE(matches("int a[] = { 1, 2 };",
2826 initListExpr(hasType(asString("int [2]")))));
2827 EXPECT_TRUE(matches("struct B { int x, y; }; B b = { 5, 6 };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002828 initListExpr(hasType(recordDecl(hasName("B"))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002829}
2830
2831TEST(UsingDeclaration, MatchesUsingDeclarations) {
2832 EXPECT_TRUE(matches("namespace X { int x; } using X::x;",
2833 usingDecl()));
2834}
2835
2836TEST(UsingDeclaration, MatchesShadowUsingDelcarations) {
2837 EXPECT_TRUE(matches("namespace f { int a; } using f::a;",
2838 usingDecl(hasAnyUsingShadowDecl(hasName("a")))));
2839}
2840
2841TEST(UsingDeclaration, MatchesSpecificTarget) {
2842 EXPECT_TRUE(matches("namespace f { int a; void b(); } using f::b;",
2843 usingDecl(hasAnyUsingShadowDecl(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002844 hasTargetDecl(functionDecl())))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002845 EXPECT_TRUE(notMatches("namespace f { int a; void b(); } using f::a;",
2846 usingDecl(hasAnyUsingShadowDecl(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002847 hasTargetDecl(functionDecl())))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002848}
2849
2850TEST(UsingDeclaration, ThroughUsingDeclaration) {
2851 EXPECT_TRUE(matches(
2852 "namespace a { void f(); } using a::f; void g() { f(); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002853 declRefExpr(throughUsingDecl(anything()))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002854 EXPECT_TRUE(notMatches(
2855 "namespace a { void f(); } using a::f; void g() { a::f(); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002856 declRefExpr(throughUsingDecl(anything()))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002857}
2858
Sam Panzer425f41b2012-08-16 17:20:59 +00002859TEST(SingleDecl, IsSingleDecl) {
2860 StatementMatcher SingleDeclStmt =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002861 declStmt(hasSingleDecl(varDecl(hasInitializer(anything()))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002862 EXPECT_TRUE(matches("void f() {int a = 4;}", SingleDeclStmt));
2863 EXPECT_TRUE(notMatches("void f() {int a;}", SingleDeclStmt));
2864 EXPECT_TRUE(notMatches("void f() {int a = 4, b = 3;}",
2865 SingleDeclStmt));
2866}
2867
2868TEST(DeclStmt, ContainsDeclaration) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002869 DeclarationMatcher MatchesInit = varDecl(hasInitializer(anything()));
Sam Panzer425f41b2012-08-16 17:20:59 +00002870
2871 EXPECT_TRUE(matches("void f() {int a = 4;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002872 declStmt(containsDeclaration(0, MatchesInit))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002873 EXPECT_TRUE(matches("void f() {int a = 4, b = 3;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002874 declStmt(containsDeclaration(0, MatchesInit),
2875 containsDeclaration(1, MatchesInit))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002876 unsigned WrongIndex = 42;
2877 EXPECT_TRUE(notMatches("void f() {int a = 4, b = 3;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002878 declStmt(containsDeclaration(WrongIndex,
Sam Panzer425f41b2012-08-16 17:20:59 +00002879 MatchesInit))));
2880}
2881
2882TEST(DeclCount, DeclCountIsCorrect) {
2883 EXPECT_TRUE(matches("void f() {int i,j;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002884 declStmt(declCountIs(2))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002885 EXPECT_TRUE(notMatches("void f() {int i,j; int k;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002886 declStmt(declCountIs(3))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002887 EXPECT_TRUE(notMatches("void f() {int i,j, k, l;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002888 declStmt(declCountIs(3))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002889}
2890
Manuel Klimek4da21662012-07-06 05:48:52 +00002891TEST(While, MatchesWhileLoops) {
2892 EXPECT_TRUE(notMatches("void x() {}", whileStmt()));
2893 EXPECT_TRUE(matches("void x() { while(true); }", whileStmt()));
2894 EXPECT_TRUE(notMatches("void x() { do {} while(true); }", whileStmt()));
2895}
2896
2897TEST(Do, MatchesDoLoops) {
2898 EXPECT_TRUE(matches("void x() { do {} while(true); }", doStmt()));
2899 EXPECT_TRUE(matches("void x() { do ; while(false); }", doStmt()));
2900}
2901
2902TEST(Do, DoesNotMatchWhileLoops) {
2903 EXPECT_TRUE(notMatches("void x() { while(true) {} }", doStmt()));
2904}
2905
2906TEST(SwitchCase, MatchesCase) {
2907 EXPECT_TRUE(matches("void x() { switch(42) { case 42:; } }", switchCase()));
2908 EXPECT_TRUE(matches("void x() { switch(42) { default:; } }", switchCase()));
2909 EXPECT_TRUE(matches("void x() { switch(42) default:; }", switchCase()));
2910 EXPECT_TRUE(notMatches("void x() { switch(42) {} }", switchCase()));
2911}
2912
Daniel Jasperb54b7642012-09-20 14:12:57 +00002913TEST(SwitchCase, MatchesSwitch) {
2914 EXPECT_TRUE(matches("void x() { switch(42) { case 42:; } }", switchStmt()));
2915 EXPECT_TRUE(matches("void x() { switch(42) { default:; } }", switchStmt()));
2916 EXPECT_TRUE(matches("void x() { switch(42) default:; }", switchStmt()));
2917 EXPECT_TRUE(notMatches("void x() {}", switchStmt()));
2918}
2919
2920TEST(ExceptionHandling, SimpleCases) {
2921 EXPECT_TRUE(matches("void foo() try { } catch(int X) { }", catchStmt()));
2922 EXPECT_TRUE(matches("void foo() try { } catch(int X) { }", tryStmt()));
2923 EXPECT_TRUE(notMatches("void foo() try { } catch(int X) { }", throwExpr()));
2924 EXPECT_TRUE(matches("void foo() try { throw; } catch(int X) { }",
2925 throwExpr()));
2926 EXPECT_TRUE(matches("void foo() try { throw 5;} catch(int X) { }",
2927 throwExpr()));
2928}
2929
Manuel Klimek4da21662012-07-06 05:48:52 +00002930TEST(HasConditionVariableStatement, DoesNotMatchCondition) {
2931 EXPECT_TRUE(notMatches(
2932 "void x() { if(true) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002933 ifStmt(hasConditionVariableStatement(declStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002934 EXPECT_TRUE(notMatches(
2935 "void x() { int x; if((x = 42)) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002936 ifStmt(hasConditionVariableStatement(declStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002937}
2938
2939TEST(HasConditionVariableStatement, MatchesConditionVariables) {
2940 EXPECT_TRUE(matches(
2941 "void x() { if(int* a = 0) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002942 ifStmt(hasConditionVariableStatement(declStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002943}
2944
2945TEST(ForEach, BindsOneNode) {
2946 EXPECT_TRUE(matchAndVerifyResultTrue("class C { int x; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002947 recordDecl(hasName("C"), forEach(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
2951TEST(ForEach, BindsMultipleNodes) {
2952 EXPECT_TRUE(matchAndVerifyResultTrue("class C { int x; int y; int z; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002953 recordDecl(hasName("C"), forEach(fieldDecl().bind("f"))),
Daniel Jaspera7564432012-09-13 13:11:25 +00002954 new VerifyIdIsBoundTo<FieldDecl>("f", 3)));
Manuel Klimek4da21662012-07-06 05:48:52 +00002955}
2956
2957TEST(ForEach, BindsRecursiveCombinations) {
2958 EXPECT_TRUE(matchAndVerifyResultTrue(
2959 "class C { class D { int x; int y; }; class E { int y; int z; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002960 recordDecl(hasName("C"),
2961 forEach(recordDecl(forEach(fieldDecl().bind("f"))))),
Daniel Jaspera7564432012-09-13 13:11:25 +00002962 new VerifyIdIsBoundTo<FieldDecl>("f", 4)));
Manuel Klimek4da21662012-07-06 05:48:52 +00002963}
2964
2965TEST(ForEachDescendant, BindsOneNode) {
2966 EXPECT_TRUE(matchAndVerifyResultTrue("class C { class D { int x; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002967 recordDecl(hasName("C"),
2968 forEachDescendant(fieldDecl(hasName("x")).bind("x"))),
Daniel Jaspera7564432012-09-13 13:11:25 +00002969 new VerifyIdIsBoundTo<FieldDecl>("x", 1)));
Manuel Klimek4da21662012-07-06 05:48:52 +00002970}
2971
Daniel Jasper5f684e92012-11-16 18:39:22 +00002972TEST(ForEachDescendant, NestedForEachDescendant) {
2973 DeclarationMatcher m = recordDecl(
2974 isDefinition(), decl().bind("x"), hasName("C"));
2975 EXPECT_TRUE(matchAndVerifyResultTrue(
2976 "class A { class B { class C {}; }; };",
2977 recordDecl(hasName("A"), anyOf(m, forEachDescendant(m))),
2978 new VerifyIdIsBoundTo<Decl>("x", "C")));
2979
2980 // FIXME: This is not really a useful matcher, but the result is still
2981 // surprising (currently binds "A").
2982 //EXPECT_TRUE(matchAndVerifyResultTrue(
2983 // "class A { class B { class C {}; }; };",
2984 // recordDecl(hasName("A"), allOf(hasDescendant(m), anyOf(m, anything()))),
2985 // new VerifyIdIsBoundTo<Decl>("x", "C")));
2986}
2987
Manuel Klimek4da21662012-07-06 05:48:52 +00002988TEST(ForEachDescendant, BindsMultipleNodes) {
2989 EXPECT_TRUE(matchAndVerifyResultTrue(
2990 "class C { class D { int x; int y; }; "
2991 " class E { class F { int y; int z; }; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002992 recordDecl(hasName("C"), forEachDescendant(fieldDecl().bind("f"))),
Daniel Jaspera7564432012-09-13 13:11:25 +00002993 new VerifyIdIsBoundTo<FieldDecl>("f", 4)));
Manuel Klimek4da21662012-07-06 05:48:52 +00002994}
2995
2996TEST(ForEachDescendant, BindsRecursiveCombinations) {
2997 EXPECT_TRUE(matchAndVerifyResultTrue(
2998 "class C { class D { "
2999 " class E { class F { class G { int y; int z; }; }; }; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003000 recordDecl(hasName("C"), forEachDescendant(recordDecl(
3001 forEachDescendant(fieldDecl().bind("f"))))),
Daniel Jaspera7564432012-09-13 13:11:25 +00003002 new VerifyIdIsBoundTo<FieldDecl>("f", 8)));
Manuel Klimek4da21662012-07-06 05:48:52 +00003003}
3004
Daniel Jasper11c98772012-11-11 22:14:55 +00003005TEST(ForEachDescendant, BindsCorrectNodes) {
3006 EXPECT_TRUE(matchAndVerifyResultTrue(
3007 "class C { void f(); int i; };",
3008 recordDecl(hasName("C"), forEachDescendant(decl().bind("decl"))),
3009 new VerifyIdIsBoundTo<FieldDecl>("decl", 1)));
3010 EXPECT_TRUE(matchAndVerifyResultTrue(
3011 "class C { void f() {} int i; };",
3012 recordDecl(hasName("C"), forEachDescendant(decl().bind("decl"))),
3013 new VerifyIdIsBoundTo<FunctionDecl>("decl", 1)));
3014}
3015
Manuel Klimek152ea0e2013-02-04 10:59:20 +00003016TEST(FindAll, BindsNodeOnMatch) {
3017 EXPECT_TRUE(matchAndVerifyResultTrue(
3018 "class A {};",
3019 recordDecl(hasName("::A"), findAll(recordDecl(hasName("::A")).bind("v"))),
3020 new VerifyIdIsBoundTo<CXXRecordDecl>("v", 1)));
3021}
3022
3023TEST(FindAll, BindsDescendantNodeOnMatch) {
3024 EXPECT_TRUE(matchAndVerifyResultTrue(
3025 "class A { int a; int b; };",
3026 recordDecl(hasName("::A"), findAll(fieldDecl().bind("v"))),
3027 new VerifyIdIsBoundTo<FieldDecl>("v", 2)));
3028}
3029
3030TEST(FindAll, BindsNodeAndDescendantNodesOnOneMatch) {
3031 EXPECT_TRUE(matchAndVerifyResultTrue(
3032 "class A { int a; int b; };",
3033 recordDecl(hasName("::A"),
3034 findAll(decl(anyOf(recordDecl(hasName("::A")).bind("v"),
3035 fieldDecl().bind("v"))))),
3036 new VerifyIdIsBoundTo<Decl>("v", 3)));
3037
3038 EXPECT_TRUE(matchAndVerifyResultTrue(
3039 "class A { class B {}; class C {}; };",
3040 recordDecl(hasName("::A"), findAll(recordDecl(isDefinition()).bind("v"))),
3041 new VerifyIdIsBoundTo<CXXRecordDecl>("v", 3)));
3042}
3043
Manuel Klimek73876732013-02-04 09:42:38 +00003044TEST(EachOf, TriggersForEachMatch) {
3045 EXPECT_TRUE(matchAndVerifyResultTrue(
3046 "class A { int a; int b; };",
3047 recordDecl(eachOf(has(fieldDecl(hasName("a")).bind("v")),
3048 has(fieldDecl(hasName("b")).bind("v")))),
3049 new VerifyIdIsBoundTo<FieldDecl>("v", 2)));
3050}
3051
3052TEST(EachOf, BehavesLikeAnyOfUnlessBothMatch) {
3053 EXPECT_TRUE(matchAndVerifyResultTrue(
3054 "class A { int a; int c; };",
3055 recordDecl(eachOf(has(fieldDecl(hasName("a")).bind("v")),
3056 has(fieldDecl(hasName("b")).bind("v")))),
3057 new VerifyIdIsBoundTo<FieldDecl>("v", 1)));
3058 EXPECT_TRUE(matchAndVerifyResultTrue(
3059 "class A { int c; int b; };",
3060 recordDecl(eachOf(has(fieldDecl(hasName("a")).bind("v")),
3061 has(fieldDecl(hasName("b")).bind("v")))),
3062 new VerifyIdIsBoundTo<FieldDecl>("v", 1)));
3063 EXPECT_TRUE(notMatches(
3064 "class A { int c; int d; };",
3065 recordDecl(eachOf(has(fieldDecl(hasName("a")).bind("v")),
3066 has(fieldDecl(hasName("b")).bind("v"))))));
3067}
Manuel Klimek4da21662012-07-06 05:48:52 +00003068
3069TEST(IsTemplateInstantiation, MatchesImplicitClassTemplateInstantiation) {
3070 // Make sure that we can both match the class by name (::X) and by the type
3071 // the template was instantiated with (via a field).
3072
3073 EXPECT_TRUE(matches(
3074 "template <typename T> class X {}; class A {}; X<A> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003075 recordDecl(hasName("::X"), isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00003076
3077 EXPECT_TRUE(matches(
3078 "template <typename T> class X { T t; }; class A {}; X<A> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003079 recordDecl(isTemplateInstantiation(), hasDescendant(
3080 fieldDecl(hasType(recordDecl(hasName("A"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00003081}
3082
3083TEST(IsTemplateInstantiation, MatchesImplicitFunctionTemplateInstantiation) {
3084 EXPECT_TRUE(matches(
3085 "template <typename T> void f(T t) {} class A {}; void g() { f(A()); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003086 functionDecl(hasParameter(0, hasType(recordDecl(hasName("A")))),
Manuel Klimek4da21662012-07-06 05:48:52 +00003087 isTemplateInstantiation())));
3088}
3089
3090TEST(IsTemplateInstantiation, MatchesExplicitClassTemplateInstantiation) {
3091 EXPECT_TRUE(matches(
3092 "template <typename T> class X { T t; }; class A {};"
3093 "template class X<A>;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003094 recordDecl(isTemplateInstantiation(), hasDescendant(
3095 fieldDecl(hasType(recordDecl(hasName("A"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00003096}
3097
3098TEST(IsTemplateInstantiation,
3099 MatchesInstantiationOfPartiallySpecializedClassTemplate) {
3100 EXPECT_TRUE(matches(
3101 "template <typename T> class X {};"
3102 "template <typename T> class X<T*> {}; class A {}; X<A*> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003103 recordDecl(hasName("::X"), isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00003104}
3105
3106TEST(IsTemplateInstantiation,
3107 MatchesInstantiationOfClassTemplateNestedInNonTemplate) {
3108 EXPECT_TRUE(matches(
3109 "class A {};"
3110 "class X {"
3111 " template <typename U> class Y { U u; };"
3112 " Y<A> y;"
3113 "};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003114 recordDecl(hasName("::X::Y"), isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00003115}
3116
3117TEST(IsTemplateInstantiation, DoesNotMatchInstantiationsInsideOfInstantiation) {
3118 // FIXME: Figure out whether this makes sense. It doesn't affect the
3119 // normal use case as long as the uppermost instantiation always is marked
3120 // as template instantiation, but it might be confusing as a predicate.
3121 EXPECT_TRUE(matches(
3122 "class A {};"
3123 "template <typename T> class X {"
3124 " template <typename U> class Y { U u; };"
3125 " Y<T> y;"
3126 "}; X<A> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003127 recordDecl(hasName("::X<A>::Y"), unless(isTemplateInstantiation()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00003128}
3129
3130TEST(IsTemplateInstantiation, DoesNotMatchExplicitClassTemplateSpecialization) {
3131 EXPECT_TRUE(notMatches(
3132 "template <typename T> class X {}; class A {};"
3133 "template <> class X<A> {}; X<A> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003134 recordDecl(hasName("::X"), isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00003135}
3136
3137TEST(IsTemplateInstantiation, DoesNotMatchNonTemplate) {
3138 EXPECT_TRUE(notMatches(
3139 "class A {}; class Y { A a; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003140 recordDecl(isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00003141}
3142
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003143TEST(IsExplicitTemplateSpecialization,
3144 DoesNotMatchPrimaryTemplate) {
3145 EXPECT_TRUE(notMatches(
3146 "template <typename T> class X {};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003147 recordDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003148 EXPECT_TRUE(notMatches(
3149 "template <typename T> void f(T t);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003150 functionDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003151}
3152
3153TEST(IsExplicitTemplateSpecialization,
3154 DoesNotMatchExplicitTemplateInstantiations) {
3155 EXPECT_TRUE(notMatches(
3156 "template <typename T> class X {};"
3157 "template class X<int>; extern template class X<long>;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003158 recordDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003159 EXPECT_TRUE(notMatches(
3160 "template <typename T> void f(T t) {}"
3161 "template void f(int t); extern template void f(long t);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003162 functionDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003163}
3164
3165TEST(IsExplicitTemplateSpecialization,
3166 DoesNotMatchImplicitTemplateInstantiations) {
3167 EXPECT_TRUE(notMatches(
3168 "template <typename T> class X {}; X<int> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003169 recordDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003170 EXPECT_TRUE(notMatches(
3171 "template <typename T> void f(T t); void g() { f(10); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003172 functionDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003173}
3174
3175TEST(IsExplicitTemplateSpecialization,
3176 MatchesExplicitTemplateSpecializations) {
3177 EXPECT_TRUE(matches(
3178 "template <typename T> class X {};"
3179 "template<> class X<int> {};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003180 recordDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003181 EXPECT_TRUE(matches(
3182 "template <typename T> void f(T t) {}"
3183 "template<> void f(int t) {}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003184 functionDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003185}
3186
Manuel Klimek579b1202012-09-07 09:26:10 +00003187TEST(HasAncenstor, MatchesDeclarationAncestors) {
3188 EXPECT_TRUE(matches(
3189 "class A { class B { class C {}; }; };",
3190 recordDecl(hasName("C"), hasAncestor(recordDecl(hasName("A"))))));
3191}
3192
3193TEST(HasAncenstor, FailsIfNoAncestorMatches) {
3194 EXPECT_TRUE(notMatches(
3195 "class A { class B { class C {}; }; };",
3196 recordDecl(hasName("C"), hasAncestor(recordDecl(hasName("X"))))));
3197}
3198
3199TEST(HasAncestor, MatchesDeclarationsThatGetVisitedLater) {
3200 EXPECT_TRUE(matches(
3201 "class A { class B { void f() { C c; } class C {}; }; };",
3202 varDecl(hasName("c"), hasType(recordDecl(hasName("C"),
3203 hasAncestor(recordDecl(hasName("A"))))))));
3204}
3205
3206TEST(HasAncenstor, MatchesStatementAncestors) {
3207 EXPECT_TRUE(matches(
3208 "void f() { if (true) { while (false) { 42; } } }",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00003209 integerLiteral(equals(42), hasAncestor(ifStmt()))));
Manuel Klimek579b1202012-09-07 09:26:10 +00003210}
3211
3212TEST(HasAncestor, DrillsThroughDifferentHierarchies) {
3213 EXPECT_TRUE(matches(
3214 "void f() { if (true) { int x = 42; } }",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00003215 integerLiteral(equals(42), hasAncestor(functionDecl(hasName("f"))))));
Manuel Klimek579b1202012-09-07 09:26:10 +00003216}
3217
3218TEST(HasAncestor, BindsRecursiveCombinations) {
3219 EXPECT_TRUE(matchAndVerifyResultTrue(
3220 "class C { class D { class E { class F { int y; }; }; }; };",
3221 fieldDecl(hasAncestor(recordDecl(hasAncestor(recordDecl().bind("r"))))),
Daniel Jaspera7564432012-09-13 13:11:25 +00003222 new VerifyIdIsBoundTo<CXXRecordDecl>("r", 1)));
Manuel Klimek579b1202012-09-07 09:26:10 +00003223}
3224
3225TEST(HasAncestor, BindsCombinationsWithHasDescendant) {
3226 EXPECT_TRUE(matchAndVerifyResultTrue(
3227 "class C { class D { class E { class F { int y; }; }; }; };",
3228 fieldDecl(hasAncestor(
3229 decl(
3230 hasDescendant(recordDecl(isDefinition(),
3231 hasAncestor(recordDecl())))
3232 ).bind("d")
3233 )),
Daniel Jaspera7564432012-09-13 13:11:25 +00003234 new VerifyIdIsBoundTo<CXXRecordDecl>("d", "E")));
Manuel Klimek579b1202012-09-07 09:26:10 +00003235}
3236
Manuel Klimek374516c2013-03-14 16:33:21 +00003237TEST(HasAncestor, MatchesClosestAncestor) {
3238 EXPECT_TRUE(matchAndVerifyResultTrue(
3239 "template <typename T> struct C {"
3240 " void f(int) {"
3241 " struct I { void g(T) { int x; } } i; i.g(42);"
3242 " }"
3243 "};"
3244 "template struct C<int>;",
3245 varDecl(hasName("x"),
3246 hasAncestor(functionDecl(hasParameter(
3247 0, varDecl(hasType(asString("int"))))).bind("f"))).bind("v"),
3248 new VerifyIdIsBoundTo<FunctionDecl>("f", "g", 2)));
3249}
3250
Manuel Klimek579b1202012-09-07 09:26:10 +00003251TEST(HasAncestor, MatchesInTemplateInstantiations) {
3252 EXPECT_TRUE(matches(
3253 "template <typename T> struct A { struct B { struct C { T t; }; }; }; "
3254 "A<int>::B::C a;",
3255 fieldDecl(hasType(asString("int")),
3256 hasAncestor(recordDecl(hasName("A"))))));
3257}
3258
3259TEST(HasAncestor, MatchesInImplicitCode) {
3260 EXPECT_TRUE(matches(
3261 "struct X {}; struct A { A() {} X x; };",
3262 constructorDecl(
3263 hasAnyConstructorInitializer(withInitializer(expr(
3264 hasAncestor(recordDecl(hasName("A")))))))));
3265}
3266
Daniel Jasperc99a3ad2012-10-22 16:26:51 +00003267TEST(HasParent, MatchesOnlyParent) {
3268 EXPECT_TRUE(matches(
3269 "void f() { if (true) { int x = 42; } }",
3270 compoundStmt(hasParent(ifStmt()))));
3271 EXPECT_TRUE(notMatches(
3272 "void f() { for (;;) { int x = 42; } }",
3273 compoundStmt(hasParent(ifStmt()))));
3274 EXPECT_TRUE(notMatches(
3275 "void f() { if (true) for (;;) { int x = 42; } }",
3276 compoundStmt(hasParent(ifStmt()))));
3277}
3278
Manuel Klimek30ace372012-12-06 14:42:48 +00003279TEST(HasAncestor, MatchesAllAncestors) {
3280 EXPECT_TRUE(matches(
3281 "template <typename T> struct C { static void f() { 42; } };"
3282 "void t() { C<int>::f(); }",
3283 integerLiteral(
3284 equals(42),
3285 allOf(hasAncestor(recordDecl(isTemplateInstantiation())),
3286 hasAncestor(recordDecl(unless(isTemplateInstantiation())))))));
3287}
3288
3289TEST(HasParent, MatchesAllParents) {
3290 EXPECT_TRUE(matches(
3291 "template <typename T> struct C { static void f() { 42; } };"
3292 "void t() { C<int>::f(); }",
3293 integerLiteral(
3294 equals(42),
3295 hasParent(compoundStmt(hasParent(functionDecl(
3296 hasParent(recordDecl(isTemplateInstantiation())))))))));
3297 EXPECT_TRUE(matches(
3298 "template <typename T> struct C { static void f() { 42; } };"
3299 "void t() { C<int>::f(); }",
3300 integerLiteral(
3301 equals(42),
3302 hasParent(compoundStmt(hasParent(functionDecl(
3303 hasParent(recordDecl(unless(isTemplateInstantiation()))))))))));
3304 EXPECT_TRUE(matches(
3305 "template <typename T> struct C { static void f() { 42; } };"
3306 "void t() { C<int>::f(); }",
3307 integerLiteral(equals(42),
3308 hasParent(compoundStmt(allOf(
3309 hasParent(functionDecl(
3310 hasParent(recordDecl(isTemplateInstantiation())))),
3311 hasParent(functionDecl(hasParent(recordDecl(
3312 unless(isTemplateInstantiation())))))))))));
Manuel Klimek374516c2013-03-14 16:33:21 +00003313 EXPECT_TRUE(
3314 notMatches("template <typename T> struct C { static void f() {} };"
3315 "void t() { C<int>::f(); }",
3316 compoundStmt(hasParent(recordDecl()))));
Manuel Klimek30ace372012-12-06 14:42:48 +00003317}
3318
Daniel Jasperce620072012-10-17 08:52:59 +00003319TEST(TypeMatching, MatchesTypes) {
3320 EXPECT_TRUE(matches("struct S {};", qualType().bind("loc")));
3321}
3322
3323TEST(TypeMatching, MatchesArrayTypes) {
3324 EXPECT_TRUE(matches("int a[] = {2,3};", arrayType()));
3325 EXPECT_TRUE(matches("int a[42];", arrayType()));
3326 EXPECT_TRUE(matches("void f(int b) { int a[b]; }", arrayType()));
3327
3328 EXPECT_TRUE(notMatches("struct A {}; A a[7];",
3329 arrayType(hasElementType(builtinType()))));
3330
3331 EXPECT_TRUE(matches(
3332 "int const a[] = { 2, 3 };",
3333 qualType(arrayType(hasElementType(builtinType())))));
3334 EXPECT_TRUE(matches(
3335 "int const a[] = { 2, 3 };",
3336 qualType(isConstQualified(), arrayType(hasElementType(builtinType())))));
3337 EXPECT_TRUE(matches(
3338 "typedef const int T; T x[] = { 1, 2 };",
3339 qualType(isConstQualified(), arrayType())));
3340
3341 EXPECT_TRUE(notMatches(
3342 "int a[] = { 2, 3 };",
3343 qualType(isConstQualified(), arrayType(hasElementType(builtinType())))));
3344 EXPECT_TRUE(notMatches(
3345 "int a[] = { 2, 3 };",
3346 qualType(arrayType(hasElementType(isConstQualified(), builtinType())))));
3347 EXPECT_TRUE(notMatches(
3348 "int const a[] = { 2, 3 };",
3349 qualType(arrayType(hasElementType(builtinType())),
3350 unless(isConstQualified()))));
3351
3352 EXPECT_TRUE(matches("int a[2];",
3353 constantArrayType(hasElementType(builtinType()))));
3354 EXPECT_TRUE(matches("const int a = 0;", qualType(isInteger())));
3355}
3356
3357TEST(TypeMatching, MatchesComplexTypes) {
3358 EXPECT_TRUE(matches("_Complex float f;", complexType()));
3359 EXPECT_TRUE(matches(
3360 "_Complex float f;",
3361 complexType(hasElementType(builtinType()))));
3362 EXPECT_TRUE(notMatches(
3363 "_Complex float f;",
3364 complexType(hasElementType(isInteger()))));
3365}
3366
3367TEST(TypeMatching, MatchesConstantArrayTypes) {
3368 EXPECT_TRUE(matches("int a[2];", constantArrayType()));
3369 EXPECT_TRUE(notMatches(
3370 "void f() { int a[] = { 2, 3 }; int b[a[0]]; }",
3371 constantArrayType(hasElementType(builtinType()))));
3372
3373 EXPECT_TRUE(matches("int a[42];", constantArrayType(hasSize(42))));
3374 EXPECT_TRUE(matches("int b[2*21];", constantArrayType(hasSize(42))));
3375 EXPECT_TRUE(notMatches("int c[41], d[43];", constantArrayType(hasSize(42))));
3376}
3377
3378TEST(TypeMatching, MatchesDependentSizedArrayTypes) {
3379 EXPECT_TRUE(matches(
3380 "template <typename T, int Size> class array { T data[Size]; };",
3381 dependentSizedArrayType()));
3382 EXPECT_TRUE(notMatches(
3383 "int a[42]; int b[] = { 2, 3 }; void f() { int c[b[0]]; }",
3384 dependentSizedArrayType()));
3385}
3386
3387TEST(TypeMatching, MatchesIncompleteArrayType) {
3388 EXPECT_TRUE(matches("int a[] = { 2, 3 };", incompleteArrayType()));
3389 EXPECT_TRUE(matches("void f(int a[]) {}", incompleteArrayType()));
3390
3391 EXPECT_TRUE(notMatches("int a[42]; void f() { int b[a[0]]; }",
3392 incompleteArrayType()));
3393}
3394
3395TEST(TypeMatching, MatchesVariableArrayType) {
3396 EXPECT_TRUE(matches("void f(int b) { int a[b]; }", variableArrayType()));
3397 EXPECT_TRUE(notMatches("int a[] = {2, 3}; int b[42];", variableArrayType()));
3398
3399 EXPECT_TRUE(matches(
3400 "void f(int b) { int a[b]; }",
3401 variableArrayType(hasSizeExpr(ignoringImpCasts(declRefExpr(to(
3402 varDecl(hasName("b")))))))));
3403}
3404
3405TEST(TypeMatching, MatchesAtomicTypes) {
3406 EXPECT_TRUE(matches("_Atomic(int) i;", atomicType()));
3407
3408 EXPECT_TRUE(matches("_Atomic(int) i;",
3409 atomicType(hasValueType(isInteger()))));
3410 EXPECT_TRUE(notMatches("_Atomic(float) f;",
3411 atomicType(hasValueType(isInteger()))));
3412}
3413
3414TEST(TypeMatching, MatchesAutoTypes) {
3415 EXPECT_TRUE(matches("auto i = 2;", autoType()));
3416 EXPECT_TRUE(matches("int v[] = { 2, 3 }; void f() { for (int i : v) {} }",
3417 autoType()));
3418
Richard Smith9b131752013-04-30 21:23:01 +00003419 // FIXME: Matching against the type-as-written can't work here, because the
3420 // type as written was not deduced.
3421 //EXPECT_TRUE(matches("auto a = 1;",
3422 // autoType(hasDeducedType(isInteger()))));
3423 //EXPECT_TRUE(notMatches("auto b = 2.0;",
3424 // autoType(hasDeducedType(isInteger()))));
Daniel Jasperce620072012-10-17 08:52:59 +00003425}
3426
Daniel Jaspera267cf62012-10-29 10:14:44 +00003427TEST(TypeMatching, MatchesFunctionTypes) {
3428 EXPECT_TRUE(matches("int (*f)(int);", functionType()));
3429 EXPECT_TRUE(matches("void f(int i) {}", functionType()));
3430}
3431
Edwin Vane88be2fd2013-04-01 18:33:34 +00003432TEST(TypeMatching, MatchesParenType) {
3433 EXPECT_TRUE(
3434 matches("int (*array)[4];", varDecl(hasType(pointsTo(parenType())))));
3435 EXPECT_TRUE(notMatches("int *array[4];", varDecl(hasType(parenType()))));
3436
3437 EXPECT_TRUE(matches(
3438 "int (*ptr_to_func)(int);",
3439 varDecl(hasType(pointsTo(parenType(innerType(functionType())))))));
3440 EXPECT_TRUE(notMatches(
3441 "int (*ptr_to_array)[4];",
3442 varDecl(hasType(pointsTo(parenType(innerType(functionType())))))));
3443}
3444
Daniel Jasperce620072012-10-17 08:52:59 +00003445TEST(TypeMatching, PointerTypes) {
Daniel Jasper1802daf2012-10-17 13:35:36 +00003446 // FIXME: Reactive when these tests can be more specific (not matching
3447 // implicit code on certain platforms), likely when we have hasDescendant for
3448 // Types/TypeLocs.
3449 //EXPECT_TRUE(matchAndVerifyResultTrue(
3450 // "int* a;",
3451 // pointerTypeLoc(pointeeLoc(typeLoc().bind("loc"))),
3452 // new VerifyIdIsBoundTo<TypeLoc>("loc", 1)));
3453 //EXPECT_TRUE(matchAndVerifyResultTrue(
3454 // "int* a;",
3455 // pointerTypeLoc().bind("loc"),
3456 // new VerifyIdIsBoundTo<TypeLoc>("loc", 1)));
Daniel Jasperce620072012-10-17 08:52:59 +00003457 EXPECT_TRUE(matches(
3458 "int** a;",
David Blaikie5be093c2013-02-18 19:04:16 +00003459 loc(pointerType(pointee(qualType())))));
Daniel Jasperce620072012-10-17 08:52:59 +00003460 EXPECT_TRUE(matches(
3461 "int** a;",
3462 loc(pointerType(pointee(pointerType())))));
3463 EXPECT_TRUE(matches(
3464 "int* b; int* * const a = &b;",
3465 loc(qualType(isConstQualified(), pointerType()))));
3466
3467 std::string Fragment = "struct A { int i; }; int A::* ptr = &A::i;";
Daniel Jasper1802daf2012-10-17 13:35:36 +00003468 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3469 hasType(blockPointerType()))));
3470 EXPECT_TRUE(matches(Fragment, varDecl(hasName("ptr"),
3471 hasType(memberPointerType()))));
3472 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3473 hasType(pointerType()))));
3474 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3475 hasType(referenceType()))));
Edwin Vanef4b48042013-03-07 15:44:40 +00003476 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3477 hasType(lValueReferenceType()))));
3478 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3479 hasType(rValueReferenceType()))));
Daniel Jasperce620072012-10-17 08:52:59 +00003480
Daniel Jasper1802daf2012-10-17 13:35:36 +00003481 Fragment = "int *ptr;";
3482 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3483 hasType(blockPointerType()))));
3484 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3485 hasType(memberPointerType()))));
3486 EXPECT_TRUE(matches(Fragment, varDecl(hasName("ptr"),
3487 hasType(pointerType()))));
3488 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3489 hasType(referenceType()))));
Daniel Jasperce620072012-10-17 08:52:59 +00003490
Daniel Jasper1802daf2012-10-17 13:35:36 +00003491 Fragment = "int a; int &ref = a;";
3492 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3493 hasType(blockPointerType()))));
3494 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3495 hasType(memberPointerType()))));
3496 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3497 hasType(pointerType()))));
3498 EXPECT_TRUE(matches(Fragment, varDecl(hasName("ref"),
3499 hasType(referenceType()))));
Edwin Vanef4b48042013-03-07 15:44:40 +00003500 EXPECT_TRUE(matches(Fragment, varDecl(hasName("ref"),
3501 hasType(lValueReferenceType()))));
3502 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3503 hasType(rValueReferenceType()))));
3504
3505 Fragment = "int &&ref = 2;";
3506 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3507 hasType(blockPointerType()))));
3508 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3509 hasType(memberPointerType()))));
3510 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3511 hasType(pointerType()))));
3512 EXPECT_TRUE(matches(Fragment, varDecl(hasName("ref"),
3513 hasType(referenceType()))));
3514 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3515 hasType(lValueReferenceType()))));
3516 EXPECT_TRUE(matches(Fragment, varDecl(hasName("ref"),
3517 hasType(rValueReferenceType()))));
3518}
3519
3520TEST(TypeMatching, AutoRefTypes) {
3521 std::string Fragment = "auto a = 1;"
3522 "auto b = a;"
3523 "auto &c = a;"
3524 "auto &&d = c;"
3525 "auto &&e = 2;";
3526 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("a"),
3527 hasType(referenceType()))));
3528 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("b"),
3529 hasType(referenceType()))));
3530 EXPECT_TRUE(matches(Fragment, varDecl(hasName("c"),
3531 hasType(referenceType()))));
3532 EXPECT_TRUE(matches(Fragment, varDecl(hasName("c"),
3533 hasType(lValueReferenceType()))));
3534 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("c"),
3535 hasType(rValueReferenceType()))));
3536 EXPECT_TRUE(matches(Fragment, varDecl(hasName("d"),
3537 hasType(referenceType()))));
3538 EXPECT_TRUE(matches(Fragment, varDecl(hasName("d"),
3539 hasType(lValueReferenceType()))));
3540 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("d"),
3541 hasType(rValueReferenceType()))));
3542 EXPECT_TRUE(matches(Fragment, varDecl(hasName("e"),
3543 hasType(referenceType()))));
3544 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("e"),
3545 hasType(lValueReferenceType()))));
3546 EXPECT_TRUE(matches(Fragment, varDecl(hasName("e"),
3547 hasType(rValueReferenceType()))));
Daniel Jasperce620072012-10-17 08:52:59 +00003548}
3549
3550TEST(TypeMatching, PointeeTypes) {
3551 EXPECT_TRUE(matches("int b; int &a = b;",
3552 referenceType(pointee(builtinType()))));
3553 EXPECT_TRUE(matches("int *a;", pointerType(pointee(builtinType()))));
3554
3555 EXPECT_TRUE(matches("int *a;",
David Blaikie5be093c2013-02-18 19:04:16 +00003556 loc(pointerType(pointee(builtinType())))));
Daniel Jasperce620072012-10-17 08:52:59 +00003557
3558 EXPECT_TRUE(matches(
3559 "int const *A;",
3560 pointerType(pointee(isConstQualified(), builtinType()))));
3561 EXPECT_TRUE(notMatches(
3562 "int *A;",
3563 pointerType(pointee(isConstQualified(), builtinType()))));
3564}
3565
3566TEST(TypeMatching, MatchesPointersToConstTypes) {
3567 EXPECT_TRUE(matches("int b; int * const a = &b;",
3568 loc(pointerType())));
3569 EXPECT_TRUE(matches("int b; int * const a = &b;",
David Blaikie5be093c2013-02-18 19:04:16 +00003570 loc(pointerType())));
Daniel Jasperce620072012-10-17 08:52:59 +00003571 EXPECT_TRUE(matches(
3572 "int b; const int * a = &b;",
David Blaikie5be093c2013-02-18 19:04:16 +00003573 loc(pointerType(pointee(builtinType())))));
Daniel Jasperce620072012-10-17 08:52:59 +00003574 EXPECT_TRUE(matches(
3575 "int b; const int * a = &b;",
3576 pointerType(pointee(builtinType()))));
3577}
3578
3579TEST(TypeMatching, MatchesTypedefTypes) {
Daniel Jasper1802daf2012-10-17 13:35:36 +00003580 EXPECT_TRUE(matches("typedef int X; X a;", varDecl(hasName("a"),
3581 hasType(typedefType()))));
Daniel Jasperce620072012-10-17 08:52:59 +00003582}
3583
Edwin Vane3abf7782013-02-25 14:49:29 +00003584TEST(TypeMatching, MatchesTemplateSpecializationType) {
Edwin Vane742d9e72013-02-25 20:43:32 +00003585 EXPECT_TRUE(matches("template <typename T> class A{}; A<int> a;",
Edwin Vane3abf7782013-02-25 14:49:29 +00003586 templateSpecializationType()));
3587}
3588
Edwin Vane742d9e72013-02-25 20:43:32 +00003589TEST(TypeMatching, MatchesRecordType) {
3590 EXPECT_TRUE(matches("class C{}; C c;", recordType()));
Manuel Klimek0cc798f2013-02-27 11:56:58 +00003591 EXPECT_TRUE(matches("struct S{}; S s;",
3592 recordType(hasDeclaration(recordDecl(hasName("S"))))));
3593 EXPECT_TRUE(notMatches("int i;",
3594 recordType(hasDeclaration(recordDecl(hasName("S"))))));
Edwin Vane742d9e72013-02-25 20:43:32 +00003595}
3596
3597TEST(TypeMatching, MatchesElaboratedType) {
3598 EXPECT_TRUE(matches(
3599 "namespace N {"
3600 " namespace M {"
3601 " class D {};"
3602 " }"
3603 "}"
3604 "N::M::D d;", elaboratedType()));
3605 EXPECT_TRUE(matches("class C {} c;", elaboratedType()));
3606 EXPECT_TRUE(notMatches("class C {}; C c;", elaboratedType()));
3607}
3608
3609TEST(ElaboratedTypeNarrowing, hasQualifier) {
3610 EXPECT_TRUE(matches(
3611 "namespace N {"
3612 " namespace M {"
3613 " class D {};"
3614 " }"
3615 "}"
3616 "N::M::D d;",
3617 elaboratedType(hasQualifier(hasPrefix(specifiesNamespace(hasName("N")))))));
3618 EXPECT_TRUE(notMatches(
3619 "namespace M {"
3620 " class D {};"
3621 "}"
3622 "M::D d;",
3623 elaboratedType(hasQualifier(hasPrefix(specifiesNamespace(hasName("N")))))));
Edwin Vaneaec89ac2013-03-04 17:51:00 +00003624 EXPECT_TRUE(notMatches(
3625 "struct D {"
3626 "} d;",
3627 elaboratedType(hasQualifier(nestedNameSpecifier()))));
Edwin Vane742d9e72013-02-25 20:43:32 +00003628}
3629
3630TEST(ElaboratedTypeNarrowing, namesType) {
3631 EXPECT_TRUE(matches(
3632 "namespace N {"
3633 " namespace M {"
3634 " class D {};"
3635 " }"
3636 "}"
3637 "N::M::D d;",
3638 elaboratedType(elaboratedType(namesType(recordType(
3639 hasDeclaration(namedDecl(hasName("D")))))))));
3640 EXPECT_TRUE(notMatches(
3641 "namespace M {"
3642 " class D {};"
3643 "}"
3644 "M::D d;",
3645 elaboratedType(elaboratedType(namesType(typedefType())))));
3646}
3647
Daniel Jaspera7564432012-09-13 13:11:25 +00003648TEST(NNS, MatchesNestedNameSpecifiers) {
3649 EXPECT_TRUE(matches("namespace ns { struct A {}; } ns::A a;",
3650 nestedNameSpecifier()));
3651 EXPECT_TRUE(matches("template <typename T> class A { typename T::B b; };",
3652 nestedNameSpecifier()));
3653 EXPECT_TRUE(matches("struct A { void f(); }; void A::f() {}",
3654 nestedNameSpecifier()));
3655
3656 EXPECT_TRUE(matches(
3657 "struct A { static void f() {} }; void g() { A::f(); }",
3658 nestedNameSpecifier()));
3659 EXPECT_TRUE(notMatches(
3660 "struct A { static void f() {} }; void g(A* a) { a->f(); }",
3661 nestedNameSpecifier()));
3662}
3663
Daniel Jasperb54b7642012-09-20 14:12:57 +00003664TEST(NullStatement, SimpleCases) {
3665 EXPECT_TRUE(matches("void f() {int i;;}", nullStmt()));
3666 EXPECT_TRUE(notMatches("void f() {int i;}", nullStmt()));
3667}
3668
Daniel Jaspera7564432012-09-13 13:11:25 +00003669TEST(NNS, MatchesTypes) {
3670 NestedNameSpecifierMatcher Matcher = nestedNameSpecifier(
3671 specifiesType(hasDeclaration(recordDecl(hasName("A")))));
3672 EXPECT_TRUE(matches("struct A { struct B {}; }; A::B b;", Matcher));
3673 EXPECT_TRUE(matches("struct A { struct B { struct C {}; }; }; A::B::C c;",
3674 Matcher));
3675 EXPECT_TRUE(notMatches("namespace A { struct B {}; } A::B b;", Matcher));
3676}
3677
3678TEST(NNS, MatchesNamespaceDecls) {
3679 NestedNameSpecifierMatcher Matcher = nestedNameSpecifier(
3680 specifiesNamespace(hasName("ns")));
3681 EXPECT_TRUE(matches("namespace ns { struct A {}; } ns::A a;", Matcher));
3682 EXPECT_TRUE(notMatches("namespace xx { struct A {}; } xx::A a;", Matcher));
3683 EXPECT_TRUE(notMatches("struct ns { struct A {}; }; ns::A a;", Matcher));
3684}
3685
3686TEST(NNS, BindsNestedNameSpecifiers) {
3687 EXPECT_TRUE(matchAndVerifyResultTrue(
3688 "namespace ns { struct E { struct B {}; }; } ns::E::B b;",
3689 nestedNameSpecifier(specifiesType(asString("struct ns::E"))).bind("nns"),
3690 new VerifyIdIsBoundTo<NestedNameSpecifier>("nns", "ns::struct E::")));
3691}
3692
3693TEST(NNS, BindsNestedNameSpecifierLocs) {
3694 EXPECT_TRUE(matchAndVerifyResultTrue(
3695 "namespace ns { struct B {}; } ns::B b;",
3696 loc(nestedNameSpecifier()).bind("loc"),
3697 new VerifyIdIsBoundTo<NestedNameSpecifierLoc>("loc", 1)));
3698}
3699
3700TEST(NNS, MatchesNestedNameSpecifierPrefixes) {
3701 EXPECT_TRUE(matches(
3702 "struct A { struct B { struct C {}; }; }; A::B::C c;",
3703 nestedNameSpecifier(hasPrefix(specifiesType(asString("struct A"))))));
3704 EXPECT_TRUE(matches(
3705 "struct A { struct B { struct C {}; }; }; A::B::C c;",
Daniel Jasperce620072012-10-17 08:52:59 +00003706 nestedNameSpecifierLoc(hasPrefix(
3707 specifiesTypeLoc(loc(qualType(asString("struct A"))))))));
Daniel Jaspera7564432012-09-13 13:11:25 +00003708}
3709
Daniel Jasperd1ce3c12012-10-30 15:42:00 +00003710TEST(NNS, DescendantsOfNestedNameSpecifiers) {
3711 std::string Fragment =
3712 "namespace a { struct A { struct B { struct C {}; }; }; };"
3713 "void f() { a::A::B::C c; }";
3714 EXPECT_TRUE(matches(
3715 Fragment,
3716 nestedNameSpecifier(specifiesType(asString("struct a::A::B")),
3717 hasDescendant(nestedNameSpecifier(
3718 specifiesNamespace(hasName("a")))))));
3719 EXPECT_TRUE(notMatches(
3720 Fragment,
3721 nestedNameSpecifier(specifiesType(asString("struct a::A::B")),
3722 has(nestedNameSpecifier(
3723 specifiesNamespace(hasName("a")))))));
3724 EXPECT_TRUE(matches(
3725 Fragment,
3726 nestedNameSpecifier(specifiesType(asString("struct a::A")),
3727 has(nestedNameSpecifier(
3728 specifiesNamespace(hasName("a")))))));
3729
3730 // Not really useful because a NestedNameSpecifier can af at most one child,
3731 // but to complete the interface.
3732 EXPECT_TRUE(matchAndVerifyResultTrue(
3733 Fragment,
3734 nestedNameSpecifier(specifiesType(asString("struct a::A::B")),
3735 forEach(nestedNameSpecifier().bind("x"))),
3736 new VerifyIdIsBoundTo<NestedNameSpecifier>("x", 1)));
3737}
3738
3739TEST(NNS, NestedNameSpecifiersAsDescendants) {
3740 std::string Fragment =
3741 "namespace a { struct A { struct B { struct C {}; }; }; };"
3742 "void f() { a::A::B::C c; }";
3743 EXPECT_TRUE(matches(
3744 Fragment,
3745 decl(hasDescendant(nestedNameSpecifier(specifiesType(
3746 asString("struct a::A")))))));
3747 EXPECT_TRUE(matchAndVerifyResultTrue(
3748 Fragment,
3749 functionDecl(hasName("f"),
3750 forEachDescendant(nestedNameSpecifier().bind("x"))),
3751 // Nested names: a, a::A and a::A::B.
3752 new VerifyIdIsBoundTo<NestedNameSpecifier>("x", 3)));
3753}
3754
3755TEST(NNSLoc, DescendantsOfNestedNameSpecifierLocs) {
3756 std::string Fragment =
3757 "namespace a { struct A { struct B { struct C {}; }; }; };"
3758 "void f() { a::A::B::C c; }";
3759 EXPECT_TRUE(matches(
3760 Fragment,
3761 nestedNameSpecifierLoc(loc(specifiesType(asString("struct a::A::B"))),
3762 hasDescendant(loc(nestedNameSpecifier(
3763 specifiesNamespace(hasName("a"))))))));
3764 EXPECT_TRUE(notMatches(
3765 Fragment,
3766 nestedNameSpecifierLoc(loc(specifiesType(asString("struct a::A::B"))),
3767 has(loc(nestedNameSpecifier(
3768 specifiesNamespace(hasName("a"))))))));
3769 EXPECT_TRUE(matches(
3770 Fragment,
3771 nestedNameSpecifierLoc(loc(specifiesType(asString("struct a::A"))),
3772 has(loc(nestedNameSpecifier(
3773 specifiesNamespace(hasName("a"))))))));
3774
3775 EXPECT_TRUE(matchAndVerifyResultTrue(
3776 Fragment,
3777 nestedNameSpecifierLoc(loc(specifiesType(asString("struct a::A::B"))),
3778 forEach(nestedNameSpecifierLoc().bind("x"))),
3779 new VerifyIdIsBoundTo<NestedNameSpecifierLoc>("x", 1)));
3780}
3781
3782TEST(NNSLoc, NestedNameSpecifierLocsAsDescendants) {
3783 std::string Fragment =
3784 "namespace a { struct A { struct B { struct C {}; }; }; };"
3785 "void f() { a::A::B::C c; }";
3786 EXPECT_TRUE(matches(
3787 Fragment,
3788 decl(hasDescendant(loc(nestedNameSpecifier(specifiesType(
3789 asString("struct a::A"))))))));
3790 EXPECT_TRUE(matchAndVerifyResultTrue(
3791 Fragment,
3792 functionDecl(hasName("f"),
3793 forEachDescendant(nestedNameSpecifierLoc().bind("x"))),
3794 // Nested names: a, a::A and a::A::B.
3795 new VerifyIdIsBoundTo<NestedNameSpecifierLoc>("x", 3)));
3796}
3797
Manuel Klimek60969f52013-02-01 13:41:35 +00003798template <typename T> class VerifyMatchOnNode : public BoundNodesCallback {
Manuel Klimek3e2aa992012-10-24 14:47:44 +00003799public:
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003800 VerifyMatchOnNode(StringRef Id, const internal::Matcher<T> &InnerMatcher,
3801 StringRef InnerId)
3802 : Id(Id), InnerMatcher(InnerMatcher), InnerId(InnerId) {
Daniel Jasper452abbc2012-10-29 10:48:25 +00003803 }
3804
Manuel Klimek60969f52013-02-01 13:41:35 +00003805 virtual bool run(const BoundNodes *Nodes) { return false; }
3806
Manuel Klimek3e2aa992012-10-24 14:47:44 +00003807 virtual bool run(const BoundNodes *Nodes, ASTContext *Context) {
3808 const T *Node = Nodes->getNodeAs<T>(Id);
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003809 return selectFirst<const T>(InnerId,
3810 match(InnerMatcher, *Node, *Context)) != NULL;
Manuel Klimek3e2aa992012-10-24 14:47:44 +00003811 }
3812private:
3813 std::string Id;
3814 internal::Matcher<T> InnerMatcher;
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003815 std::string InnerId;
Manuel Klimek3e2aa992012-10-24 14:47:44 +00003816};
3817
3818TEST(MatchFinder, CanMatchDeclarationsRecursively) {
Manuel Klimek60969f52013-02-01 13:41:35 +00003819 EXPECT_TRUE(matchAndVerifyResultTrue(
3820 "class X { class Y {}; };", recordDecl(hasName("::X")).bind("X"),
3821 new VerifyMatchOnNode<clang::Decl>(
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003822 "X", decl(hasDescendant(recordDecl(hasName("X::Y")).bind("Y"))),
3823 "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", decl(hasDescendant(recordDecl(hasName("X::Z")).bind("Z"))),
3828 "Z")));
Manuel Klimek3e2aa992012-10-24 14:47:44 +00003829}
3830
3831TEST(MatchFinder, CanMatchStatementsRecursively) {
Manuel Klimek60969f52013-02-01 13:41:35 +00003832 EXPECT_TRUE(matchAndVerifyResultTrue(
3833 "void f() { if (1) { for (;;) { } } }", ifStmt().bind("if"),
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003834 new VerifyMatchOnNode<clang::Stmt>(
3835 "if", stmt(hasDescendant(forStmt().bind("for"))), "for")));
Manuel Klimek60969f52013-02-01 13:41:35 +00003836 EXPECT_TRUE(matchAndVerifyResultFalse(
3837 "void f() { if (1) { for (;;) { } } }", ifStmt().bind("if"),
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003838 new VerifyMatchOnNode<clang::Stmt>(
3839 "if", stmt(hasDescendant(declStmt().bind("decl"))), "decl")));
Manuel Klimek60969f52013-02-01 13:41:35 +00003840}
3841
3842TEST(MatchFinder, CanMatchSingleNodesRecursively) {
3843 EXPECT_TRUE(matchAndVerifyResultTrue(
3844 "class X { class Y {}; };", recordDecl(hasName("::X")).bind("X"),
3845 new VerifyMatchOnNode<clang::Decl>(
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003846 "X", recordDecl(has(recordDecl(hasName("X::Y")).bind("Y"))), "Y")));
Manuel Klimek60969f52013-02-01 13:41:35 +00003847 EXPECT_TRUE(matchAndVerifyResultFalse(
3848 "class X { class Y {}; };", recordDecl(hasName("::X")).bind("X"),
3849 new VerifyMatchOnNode<clang::Decl>(
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003850 "X", recordDecl(has(recordDecl(hasName("X::Z")).bind("Z"))), "Z")));
Manuel Klimek3e2aa992012-10-24 14:47:44 +00003851}
3852
Manuel Klimekfa37c5c2013-02-07 12:42:10 +00003853template <typename T>
3854class VerifyAncestorHasChildIsEqual : public BoundNodesCallback {
3855public:
3856 virtual bool run(const BoundNodes *Nodes) { return false; }
3857
3858 virtual bool run(const BoundNodes *Nodes, ASTContext *Context) {
3859 const T *Node = Nodes->getNodeAs<T>("");
3860 return verify(*Nodes, *Context, Node);
3861 }
3862
3863 bool verify(const BoundNodes &Nodes, ASTContext &Context, const Stmt *Node) {
3864 return selectFirst<const T>(
3865 "", match(stmt(hasParent(stmt(has(stmt(equalsNode(Node)))).bind(""))),
3866 *Node, Context)) != NULL;
3867 }
3868 bool verify(const BoundNodes &Nodes, ASTContext &Context, const Decl *Node) {
3869 return selectFirst<const T>(
3870 "", match(decl(hasParent(decl(has(decl(equalsNode(Node)))).bind(""))),
3871 *Node, Context)) != NULL;
3872 }
3873};
3874
3875TEST(IsEqualTo, MatchesNodesByIdentity) {
3876 EXPECT_TRUE(matchAndVerifyResultTrue(
3877 "class X { class Y {}; };", recordDecl(hasName("::X::Y")).bind(""),
3878 new VerifyAncestorHasChildIsEqual<Decl>()));
3879 EXPECT_TRUE(
3880 matchAndVerifyResultTrue("void f() { if(true) {} }", ifStmt().bind(""),
3881 new VerifyAncestorHasChildIsEqual<Stmt>()));
3882}
3883
Manuel Klimeke5793282012-11-02 01:31:03 +00003884class VerifyStartOfTranslationUnit : public MatchFinder::MatchCallback {
3885public:
3886 VerifyStartOfTranslationUnit() : Called(false) {}
3887 virtual void run(const MatchFinder::MatchResult &Result) {
3888 EXPECT_TRUE(Called);
3889 }
3890 virtual void onStartOfTranslationUnit() {
3891 Called = true;
3892 }
3893 bool Called;
3894};
3895
3896TEST(MatchFinder, InterceptsStartOfTranslationUnit) {
3897 MatchFinder Finder;
3898 VerifyStartOfTranslationUnit VerifyCallback;
3899 Finder.addMatcher(decl(), &VerifyCallback);
3900 OwningPtr<FrontendActionFactory> Factory(newFrontendActionFactory(&Finder));
3901 ASSERT_TRUE(tooling::runToolOnCode(Factory->create(), "int x;"));
3902 EXPECT_TRUE(VerifyCallback.Called);
3903}
3904
Manuel Klimek4da21662012-07-06 05:48:52 +00003905} // end namespace ast_matchers
3906} // end namespace clang