blob: 8df0274504e309b43e19e77dc1e5175c5c7e1e3b [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
Manuel Klimek1a68afd2013-06-20 13:08:29 +0000915TEST(HasTypeLoc, MatchesDeclaratorDecls) {
916 EXPECT_TRUE(matches("int x;",
917 varDecl(hasName("x"), hasTypeLoc(loc(asString("int"))))));
918
919 // Make sure we don't crash on implicit constructors.
920 EXPECT_TRUE(notMatches("class X {}; X x;",
921 declaratorDecl(hasTypeLoc(loc(asString("int"))))));
922}
923
Manuel Klimek4da21662012-07-06 05:48:52 +0000924TEST(Matcher, Call) {
925 // FIXME: Do we want to overload Call() to directly take
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +0000926 // Matcher<Decl>, too?
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000927 StatementMatcher MethodX = callExpr(hasDeclaration(methodDecl(hasName("x"))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000928
929 EXPECT_TRUE(matches("class Y { void x() { x(); } };", MethodX));
930 EXPECT_TRUE(notMatches("class Y { void x() {} };", MethodX));
931
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000932 StatementMatcher MethodOnY =
933 memberCallExpr(on(hasType(recordDecl(hasName("Y")))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000934
935 EXPECT_TRUE(
936 matches("class Y { public: void x(); }; void z() { Y y; y.x(); }",
937 MethodOnY));
938 EXPECT_TRUE(
939 matches("class Y { public: void x(); }; void z(Y &y) { y.x(); }",
940 MethodOnY));
941 EXPECT_TRUE(
942 notMatches("class Y { public: void x(); }; void z(Y *&y) { y->x(); }",
943 MethodOnY));
944 EXPECT_TRUE(
945 notMatches("class Y { public: void x(); }; void z(Y y[]) { y->x(); }",
946 MethodOnY));
947 EXPECT_TRUE(
948 notMatches("class Y { public: void x(); }; void z() { Y *y; y->x(); }",
949 MethodOnY));
950
951 StatementMatcher MethodOnYPointer =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +0000952 memberCallExpr(on(hasType(pointsTo(recordDecl(hasName("Y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +0000953
954 EXPECT_TRUE(
955 matches("class Y { public: void x(); }; void z() { Y *y; y->x(); }",
956 MethodOnYPointer));
957 EXPECT_TRUE(
958 matches("class Y { public: void x(); }; void z(Y *&y) { y->x(); }",
959 MethodOnYPointer));
960 EXPECT_TRUE(
961 matches("class Y { public: void x(); }; void z(Y y[]) { y->x(); }",
962 MethodOnYPointer));
963 EXPECT_TRUE(
964 notMatches("class Y { public: void x(); }; void z() { Y y; y.x(); }",
965 MethodOnYPointer));
966 EXPECT_TRUE(
967 notMatches("class Y { public: void x(); }; void z(Y &y) { y.x(); }",
968 MethodOnYPointer));
969}
970
Daniel Jasper31f7c082012-10-01 13:40:41 +0000971TEST(Matcher, Lambda) {
972 EXPECT_TRUE(matches("auto f = [&] (int i) { return i; };",
973 lambdaExpr()));
974}
975
976TEST(Matcher, ForRange) {
Daniel Jasper1a00fee2012-10-01 15:05:34 +0000977 EXPECT_TRUE(matches("int as[] = { 1, 2, 3 };"
978 "void f() { for (auto &a : as); }",
Daniel Jasper31f7c082012-10-01 13:40:41 +0000979 forRangeStmt()));
980 EXPECT_TRUE(notMatches("void f() { for (int i; i<5; ++i); }",
981 forRangeStmt()));
982}
983
984TEST(Matcher, UserDefinedLiteral) {
985 EXPECT_TRUE(matches("constexpr char operator \"\" _inc (const char i) {"
986 " return i + 1;"
987 "}"
988 "char c = 'a'_inc;",
989 userDefinedLiteral()));
990}
991
Daniel Jasperb54b7642012-09-20 14:12:57 +0000992TEST(Matcher, FlowControl) {
993 EXPECT_TRUE(matches("void f() { while(true) { break; } }", breakStmt()));
994 EXPECT_TRUE(matches("void f() { while(true) { continue; } }",
995 continueStmt()));
996 EXPECT_TRUE(matches("void f() { goto FOO; FOO: ;}", gotoStmt()));
997 EXPECT_TRUE(matches("void f() { goto FOO; FOO: ;}", labelStmt()));
998 EXPECT_TRUE(matches("void f() { return; }", returnStmt()));
999}
1000
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001001TEST(HasType, MatchesAsString) {
1002 EXPECT_TRUE(
1003 matches("class Y { public: void x(); }; void z() {Y* y; y->x(); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001004 memberCallExpr(on(hasType(asString("class Y *"))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001005 EXPECT_TRUE(matches("class X { void x(int x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001006 methodDecl(hasParameter(0, hasType(asString("int"))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001007 EXPECT_TRUE(matches("namespace ns { struct A {}; } struct B { ns::A a; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001008 fieldDecl(hasType(asString("ns::A")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001009 EXPECT_TRUE(matches("namespace { struct A {}; } struct B { A a; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001010 fieldDecl(hasType(asString("struct <anonymous>::A")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001011}
1012
Manuel Klimek4da21662012-07-06 05:48:52 +00001013TEST(Matcher, OverloadedOperatorCall) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001014 StatementMatcher OpCall = operatorCallExpr();
Manuel Klimek4da21662012-07-06 05:48:52 +00001015 // Unary operator
1016 EXPECT_TRUE(matches("class Y { }; "
1017 "bool operator!(Y x) { return false; }; "
1018 "Y y; bool c = !y;", OpCall));
1019 // No match -- special operators like "new", "delete"
1020 // FIXME: operator new takes size_t, for which we need stddef.h, for which
1021 // we need to figure out include paths in the test.
1022 // EXPECT_TRUE(NotMatches("#include <stddef.h>\n"
1023 // "class Y { }; "
1024 // "void *operator new(size_t size) { return 0; } "
1025 // "Y *y = new Y;", OpCall));
1026 EXPECT_TRUE(notMatches("class Y { }; "
1027 "void operator delete(void *p) { } "
1028 "void a() {Y *y = new Y; delete y;}", OpCall));
1029 // Binary operator
1030 EXPECT_TRUE(matches("class Y { }; "
1031 "bool operator&&(Y x, Y y) { return true; }; "
1032 "Y a; Y b; bool c = a && b;",
1033 OpCall));
1034 // No match -- normal operator, not an overloaded one.
1035 EXPECT_TRUE(notMatches("bool x = true, y = true; bool t = x && y;", OpCall));
1036 EXPECT_TRUE(notMatches("int t = 5 << 2;", OpCall));
1037}
1038
1039TEST(Matcher, HasOperatorNameForOverloadedOperatorCall) {
1040 StatementMatcher OpCallAndAnd =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001041 operatorCallExpr(hasOverloadedOperatorName("&&"));
Manuel Klimek4da21662012-07-06 05:48:52 +00001042 EXPECT_TRUE(matches("class Y { }; "
1043 "bool operator&&(Y x, Y y) { return true; }; "
1044 "Y a; Y b; bool c = a && b;", OpCallAndAnd));
1045 StatementMatcher OpCallLessLess =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001046 operatorCallExpr(hasOverloadedOperatorName("<<"));
Manuel Klimek4da21662012-07-06 05:48:52 +00001047 EXPECT_TRUE(notMatches("class Y { }; "
1048 "bool operator&&(Y x, Y y) { return true; }; "
1049 "Y a; Y b; bool c = a && b;",
1050 OpCallLessLess));
Edwin Vane6a19a972013-03-06 17:02:57 +00001051 DeclarationMatcher ClassWithOpStar =
1052 recordDecl(hasMethod(hasOverloadedOperatorName("*")));
1053 EXPECT_TRUE(matches("class Y { int operator*(); };",
1054 ClassWithOpStar));
1055 EXPECT_TRUE(notMatches("class Y { void myOperator(); };",
1056 ClassWithOpStar)) ;
Manuel Klimek4da21662012-07-06 05:48:52 +00001057}
1058
Daniel Jasper278057f2012-11-15 03:29:05 +00001059TEST(Matcher, NestedOverloadedOperatorCalls) {
1060 EXPECT_TRUE(matchAndVerifyResultTrue(
1061 "class Y { }; "
1062 "Y& operator&&(Y& x, Y& y) { return x; }; "
1063 "Y a; Y b; Y c; Y d = a && b && c;",
1064 operatorCallExpr(hasOverloadedOperatorName("&&")).bind("x"),
1065 new VerifyIdIsBoundTo<CXXOperatorCallExpr>("x", 2)));
1066 EXPECT_TRUE(matches(
1067 "class Y { }; "
1068 "Y& operator&&(Y& x, Y& y) { return x; }; "
1069 "Y a; Y b; Y c; Y d = a && b && c;",
1070 operatorCallExpr(hasParent(operatorCallExpr()))));
1071 EXPECT_TRUE(matches(
1072 "class Y { }; "
1073 "Y& operator&&(Y& x, Y& y) { return x; }; "
1074 "Y a; Y b; Y c; Y d = a && b && c;",
1075 operatorCallExpr(hasDescendant(operatorCallExpr()))));
1076}
1077
Manuel Klimek4da21662012-07-06 05:48:52 +00001078TEST(Matcher, ThisPointerType) {
Manuel Klimek9f174082012-07-24 13:37:29 +00001079 StatementMatcher MethodOnY =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001080 memberCallExpr(thisPointerType(recordDecl(hasName("Y"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001081
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 EXPECT_TRUE(
1089 matches("class Y { public: void x(); }; void z(Y *&y) { y->x(); }",
1090 MethodOnY));
1091 EXPECT_TRUE(
1092 matches("class Y { public: void x(); }; void z(Y y[]) { y->x(); }",
1093 MethodOnY));
1094 EXPECT_TRUE(
1095 matches("class Y { public: void x(); }; void z() { Y *y; y->x(); }",
1096 MethodOnY));
1097
1098 EXPECT_TRUE(matches(
1099 "class Y {"
1100 " public: virtual void x();"
1101 "};"
1102 "class X : public Y {"
1103 " public: virtual void x();"
1104 "};"
1105 "void z() { X *x; x->Y::x(); }", MethodOnY));
1106}
1107
1108TEST(Matcher, VariableUsage) {
1109 StatementMatcher Reference =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001110 declRefExpr(to(
1111 varDecl(hasInitializer(
1112 memberCallExpr(thisPointerType(recordDecl(hasName("Y"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001113
1114 EXPECT_TRUE(matches(
1115 "class Y {"
1116 " public:"
1117 " bool x() const;"
1118 "};"
1119 "void z(const Y &y) {"
1120 " bool b = y.x();"
1121 " if (b) {}"
1122 "}", Reference));
1123
1124 EXPECT_TRUE(notMatches(
1125 "class Y {"
1126 " public:"
1127 " bool x() const;"
1128 "};"
1129 "void z(const Y &y) {"
1130 " bool b = y.x();"
1131 "}", Reference));
1132}
1133
Manuel Klimek8cb9bf52012-12-04 14:42:08 +00001134TEST(Matcher, FindsVarDeclInFunctionParameter) {
Daniel Jasper9bd28092012-07-30 05:03:25 +00001135 EXPECT_TRUE(matches(
1136 "void f(int i) {}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001137 varDecl(hasName("i"))));
Daniel Jasper9bd28092012-07-30 05:03:25 +00001138}
1139
Manuel Klimek4da21662012-07-06 05:48:52 +00001140TEST(Matcher, CalledVariable) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001141 StatementMatcher CallOnVariableY =
1142 memberCallExpr(on(declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001143
1144 EXPECT_TRUE(matches(
1145 "class Y { public: void x() { Y y; y.x(); } };", CallOnVariableY));
1146 EXPECT_TRUE(matches(
1147 "class Y { public: void x() const { Y y; y.x(); } };", CallOnVariableY));
1148 EXPECT_TRUE(matches(
1149 "class Y { public: void x(); };"
1150 "class X : public Y { void z() { X y; y.x(); } };", CallOnVariableY));
1151 EXPECT_TRUE(matches(
1152 "class Y { public: void x(); };"
1153 "class X : public Y { void z() { X *y; y->x(); } };", CallOnVariableY));
1154 EXPECT_TRUE(notMatches(
1155 "class Y { public: void x(); };"
1156 "class X : public Y { void z() { unsigned long y; ((X*)y)->x(); } };",
1157 CallOnVariableY));
1158}
1159
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001160TEST(UnaryExprOrTypeTraitExpr, MatchesSizeOfAndAlignOf) {
1161 EXPECT_TRUE(matches("void x() { int a = sizeof(a); }",
1162 unaryExprOrTypeTraitExpr()));
1163 EXPECT_TRUE(notMatches("void x() { int a = sizeof(a); }",
1164 alignOfExpr(anything())));
1165 // FIXME: Uncomment once alignof is enabled.
1166 // EXPECT_TRUE(matches("void x() { int a = alignof(a); }",
1167 // unaryExprOrTypeTraitExpr()));
1168 // EXPECT_TRUE(notMatches("void x() { int a = alignof(a); }",
1169 // sizeOfExpr()));
1170}
1171
1172TEST(UnaryExpressionOrTypeTraitExpression, MatchesCorrectType) {
1173 EXPECT_TRUE(matches("void x() { int a = sizeof(a); }", sizeOfExpr(
1174 hasArgumentOfType(asString("int")))));
1175 EXPECT_TRUE(notMatches("void x() { int a = sizeof(a); }", sizeOfExpr(
1176 hasArgumentOfType(asString("float")))));
1177 EXPECT_TRUE(matches(
1178 "struct A {}; void x() { A a; int b = sizeof(a); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001179 sizeOfExpr(hasArgumentOfType(hasDeclaration(recordDecl(hasName("A")))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001180 EXPECT_TRUE(notMatches("void x() { int a = sizeof(a); }", sizeOfExpr(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001181 hasArgumentOfType(hasDeclaration(recordDecl(hasName("string")))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001182}
1183
Manuel Klimek4da21662012-07-06 05:48:52 +00001184TEST(MemberExpression, DoesNotMatchClasses) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001185 EXPECT_TRUE(notMatches("class Y { void x() {} };", memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001186}
1187
1188TEST(MemberExpression, MatchesMemberFunctionCall) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001189 EXPECT_TRUE(matches("class Y { void x() { x(); } };", memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001190}
1191
1192TEST(MemberExpression, MatchesVariable) {
1193 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001194 matches("class Y { void x() { this->y; } int y; };", memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001195 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001196 matches("class Y { void x() { y; } int y; };", memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001197 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001198 matches("class Y { void x() { Y y; y.y; } int y; };", memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001199}
1200
1201TEST(MemberExpression, MatchesStaticVariable) {
1202 EXPECT_TRUE(matches("class Y { void x() { this->y; } static int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001203 memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001204 EXPECT_TRUE(notMatches("class Y { void x() { y; } static int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001205 memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001206 EXPECT_TRUE(notMatches("class Y { void x() { Y::y; } static int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001207 memberExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00001208}
1209
Daniel Jasper6a124492012-07-12 08:50:38 +00001210TEST(IsInteger, MatchesIntegers) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001211 EXPECT_TRUE(matches("int i = 0;", varDecl(hasType(isInteger()))));
1212 EXPECT_TRUE(matches(
1213 "long long i = 0; void f(long long) { }; void g() {f(i);}",
1214 callExpr(hasArgument(0, declRefExpr(
1215 to(varDecl(hasType(isInteger()))))))));
Daniel Jasper6a124492012-07-12 08:50:38 +00001216}
1217
1218TEST(IsInteger, ReportsNoFalsePositives) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001219 EXPECT_TRUE(notMatches("int *i;", varDecl(hasType(isInteger()))));
Daniel Jasper6a124492012-07-12 08:50:38 +00001220 EXPECT_TRUE(notMatches("struct T {}; T t; void f(T *) { }; void g() {f(&t);}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001221 callExpr(hasArgument(0, declRefExpr(
1222 to(varDecl(hasType(isInteger()))))))));
Daniel Jasper6a124492012-07-12 08:50:38 +00001223}
1224
Manuel Klimek4da21662012-07-06 05:48:52 +00001225TEST(IsArrow, MatchesMemberVariablesViaArrow) {
1226 EXPECT_TRUE(matches("class Y { void x() { this->y; } int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001227 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001228 EXPECT_TRUE(matches("class Y { void x() { y; } 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; } int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001231 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001232}
1233
1234TEST(IsArrow, MatchesStaticMemberVariablesViaArrow) {
1235 EXPECT_TRUE(matches("class Y { void x() { this->y; } static int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001236 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001237 EXPECT_TRUE(notMatches("class Y { void x() { y; } static int y; };",
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() { (*this).y; } static int y; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001240 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001241}
1242
1243TEST(IsArrow, MatchesMemberCallsViaArrow) {
1244 EXPECT_TRUE(matches("class Y { void x() { this->x(); } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001245 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001246 EXPECT_TRUE(matches("class Y { void x() { x(); } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001247 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001248 EXPECT_TRUE(notMatches("class Y { void x() { Y y; y.x(); } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001249 memberExpr(isArrow())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001250}
1251
1252TEST(Callee, MatchesDeclarations) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001253 StatementMatcher CallMethodX = callExpr(callee(methodDecl(hasName("x"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001254
1255 EXPECT_TRUE(matches("class Y { void x() { x(); } };", CallMethodX));
1256 EXPECT_TRUE(notMatches("class Y { void x() {} };", CallMethodX));
1257}
1258
1259TEST(Callee, MatchesMemberExpressions) {
1260 EXPECT_TRUE(matches("class Y { void x() { this->x(); } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001261 callExpr(callee(memberExpr()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001262 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001263 notMatches("class Y { void x() { this->x(); } };", callExpr(callee(callExpr()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001264}
1265
1266TEST(Function, MatchesFunctionDeclarations) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001267 StatementMatcher CallFunctionF = callExpr(callee(functionDecl(hasName("f"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001268
1269 EXPECT_TRUE(matches("void f() { f(); }", CallFunctionF));
1270 EXPECT_TRUE(notMatches("void f() { }", CallFunctionF));
1271
Manuel Klimeke265c872012-07-10 14:21:30 +00001272#if !defined(_MSC_VER)
1273 // FIXME: Make this work for MSVC.
Manuel Klimek4da21662012-07-06 05:48:52 +00001274 // Dependent contexts, but a non-dependent call.
1275 EXPECT_TRUE(matches("void f(); template <int N> void g() { f(); }",
1276 CallFunctionF));
1277 EXPECT_TRUE(
1278 matches("void f(); template <int N> struct S { void g() { f(); } };",
1279 CallFunctionF));
Manuel Klimeke265c872012-07-10 14:21:30 +00001280#endif
Manuel Klimek4da21662012-07-06 05:48:52 +00001281
1282 // Depedent calls don't match.
1283 EXPECT_TRUE(
1284 notMatches("void f(int); template <typename T> void g(T t) { f(t); }",
1285 CallFunctionF));
1286 EXPECT_TRUE(
1287 notMatches("void f(int);"
1288 "template <typename T> struct S { void g(T t) { f(t); } };",
1289 CallFunctionF));
1290}
1291
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00001292TEST(FunctionTemplate, MatchesFunctionTemplateDeclarations) {
1293 EXPECT_TRUE(
1294 matches("template <typename T> void f(T t) {}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001295 functionTemplateDecl(hasName("f"))));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00001296}
1297
1298TEST(FunctionTemplate, DoesNotMatchFunctionDeclarations) {
1299 EXPECT_TRUE(
1300 notMatches("void f(double d); void f(int t) {}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001301 functionTemplateDecl(hasName("f"))));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00001302}
1303
1304TEST(FunctionTemplate, DoesNotMatchFunctionTemplateSpecializations) {
1305 EXPECT_TRUE(
1306 notMatches("void g(); template <typename T> void f(T t) {}"
1307 "template <> void f(int t) { g(); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001308 functionTemplateDecl(hasName("f"),
1309 hasDescendant(declRefExpr(to(
1310 functionDecl(hasName("g"))))))));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00001311}
1312
Manuel Klimek4da21662012-07-06 05:48:52 +00001313TEST(Matcher, Argument) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001314 StatementMatcher CallArgumentY = callExpr(
1315 hasArgument(0, declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001316
1317 EXPECT_TRUE(matches("void x(int) { int y; x(y); }", CallArgumentY));
1318 EXPECT_TRUE(
1319 matches("class X { void x(int) { int y; x(y); } };", CallArgumentY));
1320 EXPECT_TRUE(notMatches("void x(int) { int z; x(z); }", CallArgumentY));
1321
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001322 StatementMatcher WrongIndex = callExpr(
1323 hasArgument(42, declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001324 EXPECT_TRUE(notMatches("void x(int) { int y; x(y); }", WrongIndex));
1325}
1326
1327TEST(Matcher, AnyArgument) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001328 StatementMatcher CallArgumentY = callExpr(
1329 hasAnyArgument(declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001330 EXPECT_TRUE(matches("void x(int, int) { int y; x(1, y); }", CallArgumentY));
1331 EXPECT_TRUE(matches("void x(int, int) { int y; x(y, 42); }", CallArgumentY));
1332 EXPECT_TRUE(notMatches("void x(int, int) { x(1, 2); }", CallArgumentY));
1333}
1334
1335TEST(Matcher, ArgumentCount) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001336 StatementMatcher Call1Arg = callExpr(argumentCountIs(1));
Manuel Klimek4da21662012-07-06 05:48:52 +00001337
1338 EXPECT_TRUE(matches("void x(int) { x(0); }", Call1Arg));
1339 EXPECT_TRUE(matches("class X { void x(int) { x(0); } };", Call1Arg));
1340 EXPECT_TRUE(notMatches("void x(int, int) { x(0, 0); }", Call1Arg));
1341}
1342
Daniel Jasper36e29d62012-12-04 11:54:27 +00001343TEST(Matcher, ParameterCount) {
1344 DeclarationMatcher Function1Arg = functionDecl(parameterCountIs(1));
1345 EXPECT_TRUE(matches("void f(int i) {}", Function1Arg));
1346 EXPECT_TRUE(matches("class X { void f(int i) {} };", Function1Arg));
1347 EXPECT_TRUE(notMatches("void f() {}", Function1Arg));
1348 EXPECT_TRUE(notMatches("void f(int i, int j, int k) {}", Function1Arg));
1349}
1350
Manuel Klimek4da21662012-07-06 05:48:52 +00001351TEST(Matcher, References) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001352 DeclarationMatcher ReferenceClassX = varDecl(
1353 hasType(references(recordDecl(hasName("X")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001354 EXPECT_TRUE(matches("class X {}; void y(X y) { X &x = y; }",
1355 ReferenceClassX));
1356 EXPECT_TRUE(
1357 matches("class X {}; void y(X y) { const X &x = y; }", ReferenceClassX));
1358 EXPECT_TRUE(
1359 notMatches("class X {}; void y(X y) { X x = y; }", ReferenceClassX));
1360 EXPECT_TRUE(
1361 notMatches("class X {}; void y(X *y) { X *&x = y; }", ReferenceClassX));
1362}
1363
Edwin Vane6a19a972013-03-06 17:02:57 +00001364TEST(QualType, hasCanonicalType) {
1365 EXPECT_TRUE(notMatches("typedef int &int_ref;"
1366 "int a;"
1367 "int_ref b = a;",
1368 varDecl(hasType(qualType(referenceType())))));
1369 EXPECT_TRUE(
1370 matches("typedef int &int_ref;"
1371 "int a;"
1372 "int_ref b = a;",
1373 varDecl(hasType(qualType(hasCanonicalType(referenceType()))))));
1374}
1375
Edwin Vane7b69cd02013-04-02 18:15:55 +00001376TEST(QualType, hasLocalQualifiers) {
1377 EXPECT_TRUE(notMatches("typedef const int const_int; const_int i = 1;",
1378 varDecl(hasType(hasLocalQualifiers()))));
1379 EXPECT_TRUE(matches("int *const j = nullptr;",
1380 varDecl(hasType(hasLocalQualifiers()))));
1381 EXPECT_TRUE(matches("int *volatile k;",
1382 varDecl(hasType(hasLocalQualifiers()))));
1383 EXPECT_TRUE(notMatches("int m;",
1384 varDecl(hasType(hasLocalQualifiers()))));
1385}
1386
Manuel Klimek4da21662012-07-06 05:48:52 +00001387TEST(HasParameter, CallsInnerMatcher) {
1388 EXPECT_TRUE(matches("class X { void x(int) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001389 methodDecl(hasParameter(0, varDecl()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001390 EXPECT_TRUE(notMatches("class X { void x(int) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001391 methodDecl(hasParameter(0, hasName("x")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001392}
1393
1394TEST(HasParameter, DoesNotMatchIfIndexOutOfBounds) {
1395 EXPECT_TRUE(notMatches("class X { void x(int) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001396 methodDecl(hasParameter(42, varDecl()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001397}
1398
1399TEST(HasType, MatchesParameterVariableTypesStrictly) {
1400 EXPECT_TRUE(matches("class X { void x(X x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001401 methodDecl(hasParameter(0, hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001402 EXPECT_TRUE(notMatches("class X { void x(const X &x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001403 methodDecl(hasParameter(0, hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001404 EXPECT_TRUE(matches("class X { void x(const X *x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001405 methodDecl(hasParameter(0,
1406 hasType(pointsTo(recordDecl(hasName("X"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001407 EXPECT_TRUE(matches("class X { void x(const X &x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001408 methodDecl(hasParameter(0,
1409 hasType(references(recordDecl(hasName("X"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001410}
1411
1412TEST(HasAnyParameter, MatchesIndependentlyOfPosition) {
1413 EXPECT_TRUE(matches("class Y {}; class X { void x(X x, Y y) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001414 methodDecl(hasAnyParameter(hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001415 EXPECT_TRUE(matches("class Y {}; class X { void x(Y y, X x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001416 methodDecl(hasAnyParameter(hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001417}
1418
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001419TEST(Returns, MatchesReturnTypes) {
1420 EXPECT_TRUE(matches("class Y { int f() { return 1; } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001421 functionDecl(returns(asString("int")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001422 EXPECT_TRUE(notMatches("class Y { int f() { return 1; } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001423 functionDecl(returns(asString("float")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001424 EXPECT_TRUE(matches("class Y { Y getMe() { return *this; } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001425 functionDecl(returns(hasDeclaration(
1426 recordDecl(hasName("Y")))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001427}
1428
Daniel Jasper8cc7efa2012-08-15 18:52:19 +00001429TEST(IsExternC, MatchesExternCFunctionDeclarations) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001430 EXPECT_TRUE(matches("extern \"C\" void f() {}", functionDecl(isExternC())));
1431 EXPECT_TRUE(matches("extern \"C\" { void f() {} }",
1432 functionDecl(isExternC())));
1433 EXPECT_TRUE(notMatches("void f() {}", functionDecl(isExternC())));
Daniel Jasper8cc7efa2012-08-15 18:52:19 +00001434}
1435
Manuel Klimek4da21662012-07-06 05:48:52 +00001436TEST(HasAnyParameter, DoesntMatchIfInnerMatcherDoesntMatch) {
1437 EXPECT_TRUE(notMatches("class Y {}; class X { void x(int) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001438 methodDecl(hasAnyParameter(hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001439}
1440
1441TEST(HasAnyParameter, DoesNotMatchThisPointer) {
1442 EXPECT_TRUE(notMatches("class Y {}; class X { void x() {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001443 methodDecl(hasAnyParameter(hasType(pointsTo(
1444 recordDecl(hasName("X"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001445}
1446
1447TEST(HasName, MatchesParameterVariableDeclartions) {
1448 EXPECT_TRUE(matches("class Y {}; class X { void x(int x) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001449 methodDecl(hasAnyParameter(hasName("x")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001450 EXPECT_TRUE(notMatches("class Y {}; class X { void x(int) {} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001451 methodDecl(hasAnyParameter(hasName("x")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001452}
1453
Daniel Jasper371f9392012-08-01 08:40:24 +00001454TEST(Matcher, MatchesClassTemplateSpecialization) {
1455 EXPECT_TRUE(matches("template<typename T> struct A {};"
1456 "template<> struct A<int> {};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001457 classTemplateSpecializationDecl()));
Daniel Jasper371f9392012-08-01 08:40:24 +00001458 EXPECT_TRUE(matches("template<typename T> struct A {}; A<int> a;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001459 classTemplateSpecializationDecl()));
Daniel Jasper371f9392012-08-01 08:40:24 +00001460 EXPECT_TRUE(notMatches("template<typename T> struct A {};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001461 classTemplateSpecializationDecl()));
Daniel Jasper371f9392012-08-01 08:40:24 +00001462}
1463
Manuel Klimek1a68afd2013-06-20 13:08:29 +00001464TEST(DeclaratorDecl, MatchesDeclaratorDecls) {
1465 EXPECT_TRUE(matches("int x;", declaratorDecl()));
1466 EXPECT_TRUE(notMatches("class A {};", declaratorDecl()));
1467}
1468
1469TEST(ParmVarDecl, MatchesParmVars) {
1470 EXPECT_TRUE(matches("void f(int x);", parmVarDecl()));
1471 EXPECT_TRUE(notMatches("void f();", parmVarDecl()));
1472}
1473
Daniel Jasper371f9392012-08-01 08:40:24 +00001474TEST(Matcher, MatchesTypeTemplateArgument) {
1475 EXPECT_TRUE(matches(
1476 "template<typename T> struct B {};"
1477 "B<int> b;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001478 classTemplateSpecializationDecl(hasAnyTemplateArgument(refersToType(
Daniel Jasper371f9392012-08-01 08:40:24 +00001479 asString("int"))))));
1480}
1481
1482TEST(Matcher, MatchesDeclarationReferenceTemplateArgument) {
1483 EXPECT_TRUE(matches(
1484 "struct B { int next; };"
1485 "template<int(B::*next_ptr)> struct A {};"
1486 "A<&B::next> a;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001487 classTemplateSpecializationDecl(hasAnyTemplateArgument(
1488 refersToDeclaration(fieldDecl(hasName("next")))))));
Daniel Jasperaaa8e452012-09-29 15:55:18 +00001489
1490 EXPECT_TRUE(notMatches(
1491 "template <typename T> struct A {};"
1492 "A<int> a;",
1493 classTemplateSpecializationDecl(hasAnyTemplateArgument(
1494 refersToDeclaration(decl())))));
Daniel Jasper371f9392012-08-01 08:40:24 +00001495}
1496
1497TEST(Matcher, MatchesSpecificArgument) {
1498 EXPECT_TRUE(matches(
1499 "template<typename T, typename U> class A {};"
1500 "A<bool, int> a;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001501 classTemplateSpecializationDecl(hasTemplateArgument(
Daniel Jasper371f9392012-08-01 08:40:24 +00001502 1, refersToType(asString("int"))))));
1503 EXPECT_TRUE(notMatches(
1504 "template<typename T, typename U> class A {};"
1505 "A<int, bool> a;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001506 classTemplateSpecializationDecl(hasTemplateArgument(
Daniel Jasper371f9392012-08-01 08:40:24 +00001507 1, refersToType(asString("int"))))));
1508}
1509
Daniel Jasperf3197e92013-02-25 12:02:08 +00001510TEST(Matcher, MatchesAccessSpecDecls) {
1511 EXPECT_TRUE(matches("class C { public: int i; };", accessSpecDecl()));
1512 EXPECT_TRUE(
1513 matches("class C { public: int i; };", accessSpecDecl(isPublic())));
1514 EXPECT_TRUE(
1515 notMatches("class C { public: int i; };", accessSpecDecl(isProtected())));
1516 EXPECT_TRUE(
1517 notMatches("class C { public: int i; };", accessSpecDecl(isPrivate())));
1518
1519 EXPECT_TRUE(notMatches("class C { int i; };", accessSpecDecl()));
1520}
1521
Edwin Vane5771a2f2013-04-09 20:46:36 +00001522TEST(Matcher, MatchesVirtualMethod) {
1523 EXPECT_TRUE(matches("class X { virtual int f(); };",
1524 methodDecl(isVirtual(), hasName("::X::f"))));
1525 EXPECT_TRUE(notMatches("class X { int f(); };",
1526 methodDecl(isVirtual())));
1527}
1528
Edwin Vane32a6ebc2013-05-09 17:00:17 +00001529TEST(Matcher, MatchesConstMethod) {
1530 EXPECT_TRUE(matches("struct A { void foo() const; };",
1531 methodDecl(isConst())));
1532 EXPECT_TRUE(notMatches("struct A { void foo(); };",
1533 methodDecl(isConst())));
1534}
1535
Edwin Vane5771a2f2013-04-09 20:46:36 +00001536TEST(Matcher, MatchesOverridingMethod) {
1537 EXPECT_TRUE(matches("class X { virtual int f(); }; "
1538 "class Y : public X { int f(); };",
1539 methodDecl(isOverride(), hasName("::Y::f"))));
1540 EXPECT_TRUE(notMatches("class X { virtual int f(); }; "
1541 "class Y : public X { int f(); };",
1542 methodDecl(isOverride(), hasName("::X::f"))));
1543 EXPECT_TRUE(notMatches("class X { int f(); }; "
1544 "class Y : public X { int f(); };",
1545 methodDecl(isOverride())));
1546 EXPECT_TRUE(notMatches("class X { int f(); int f(int); }; ",
1547 methodDecl(isOverride())));
1548}
1549
Manuel Klimek4da21662012-07-06 05:48:52 +00001550TEST(Matcher, ConstructorCall) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001551 StatementMatcher Constructor = constructExpr();
Manuel Klimek4da21662012-07-06 05:48:52 +00001552
1553 EXPECT_TRUE(
1554 matches("class X { public: X(); }; void x() { X x; }", Constructor));
1555 EXPECT_TRUE(
1556 matches("class X { public: X(); }; void x() { X x = X(); }",
1557 Constructor));
1558 EXPECT_TRUE(
1559 matches("class X { public: X(int); }; void x() { X x = 0; }",
1560 Constructor));
1561 EXPECT_TRUE(matches("class X {}; void x(int) { X x; }", Constructor));
1562}
1563
1564TEST(Matcher, ConstructorArgument) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001565 StatementMatcher Constructor = constructExpr(
1566 hasArgument(0, declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001567
1568 EXPECT_TRUE(
1569 matches("class X { public: X(int); }; void x() { int y; X x(y); }",
1570 Constructor));
1571 EXPECT_TRUE(
1572 matches("class X { public: X(int); }; void x() { int y; X x = X(y); }",
1573 Constructor));
1574 EXPECT_TRUE(
1575 matches("class X { public: X(int); }; void x() { int y; X x = y; }",
1576 Constructor));
1577 EXPECT_TRUE(
1578 notMatches("class X { public: X(int); }; void x() { int z; X x(z); }",
1579 Constructor));
1580
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001581 StatementMatcher WrongIndex = constructExpr(
1582 hasArgument(42, declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001583 EXPECT_TRUE(
1584 notMatches("class X { public: X(int); }; void x() { int y; X x(y); }",
1585 WrongIndex));
1586}
1587
1588TEST(Matcher, ConstructorArgumentCount) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001589 StatementMatcher Constructor1Arg = constructExpr(argumentCountIs(1));
Manuel Klimek4da21662012-07-06 05:48:52 +00001590
1591 EXPECT_TRUE(
1592 matches("class X { public: X(int); }; void x() { X x(0); }",
1593 Constructor1Arg));
1594 EXPECT_TRUE(
1595 matches("class X { public: X(int); }; void x() { X x = X(0); }",
1596 Constructor1Arg));
1597 EXPECT_TRUE(
1598 matches("class X { public: X(int); }; void x() { X x = 0; }",
1599 Constructor1Arg));
1600 EXPECT_TRUE(
1601 notMatches("class X { public: X(int, int); }; void x() { X x(0, 0); }",
1602 Constructor1Arg));
1603}
1604
Manuel Klimek70b9db92012-10-23 10:40:50 +00001605TEST(Matcher,ThisExpr) {
1606 EXPECT_TRUE(
1607 matches("struct X { int a; int f () { return a; } };", thisExpr()));
1608 EXPECT_TRUE(
1609 notMatches("struct X { int f () { int a; return a; } };", thisExpr()));
1610}
1611
Manuel Klimek4da21662012-07-06 05:48:52 +00001612TEST(Matcher, BindTemporaryExpression) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001613 StatementMatcher TempExpression = bindTemporaryExpr();
Manuel Klimek4da21662012-07-06 05:48:52 +00001614
1615 std::string ClassString = "class string { public: string(); ~string(); }; ";
1616
1617 EXPECT_TRUE(
1618 matches(ClassString +
1619 "string GetStringByValue();"
1620 "void FunctionTakesString(string s);"
1621 "void run() { FunctionTakesString(GetStringByValue()); }",
1622 TempExpression));
1623
1624 EXPECT_TRUE(
1625 notMatches(ClassString +
1626 "string* GetStringPointer(); "
1627 "void FunctionTakesStringPtr(string* s);"
1628 "void run() {"
1629 " string* s = GetStringPointer();"
1630 " FunctionTakesStringPtr(GetStringPointer());"
1631 " FunctionTakesStringPtr(s);"
1632 "}",
1633 TempExpression));
1634
1635 EXPECT_TRUE(
1636 notMatches("class no_dtor {};"
1637 "no_dtor GetObjByValue();"
1638 "void ConsumeObj(no_dtor param);"
1639 "void run() { ConsumeObj(GetObjByValue()); }",
1640 TempExpression));
1641}
1642
Sam Panzere16acd32012-08-24 22:04:44 +00001643TEST(MaterializeTemporaryExpr, MatchesTemporary) {
1644 std::string ClassString =
1645 "class string { public: string(); int length(); }; ";
1646
1647 EXPECT_TRUE(
1648 matches(ClassString +
1649 "string GetStringByValue();"
1650 "void FunctionTakesString(string s);"
1651 "void run() { FunctionTakesString(GetStringByValue()); }",
1652 materializeTemporaryExpr()));
1653
1654 EXPECT_TRUE(
1655 notMatches(ClassString +
1656 "string* GetStringPointer(); "
1657 "void FunctionTakesStringPtr(string* s);"
1658 "void run() {"
1659 " string* s = GetStringPointer();"
1660 " FunctionTakesStringPtr(GetStringPointer());"
1661 " FunctionTakesStringPtr(s);"
1662 "}",
1663 materializeTemporaryExpr()));
1664
1665 EXPECT_TRUE(
1666 notMatches(ClassString +
1667 "string GetStringByValue();"
1668 "void run() { int k = GetStringByValue().length(); }",
1669 materializeTemporaryExpr()));
1670
1671 EXPECT_TRUE(
1672 notMatches(ClassString +
1673 "string GetStringByValue();"
1674 "void run() { GetStringByValue(); }",
1675 materializeTemporaryExpr()));
1676}
1677
Manuel Klimek4da21662012-07-06 05:48:52 +00001678TEST(ConstructorDeclaration, SimpleCase) {
1679 EXPECT_TRUE(matches("class Foo { Foo(int i); };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001680 constructorDecl(ofClass(hasName("Foo")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001681 EXPECT_TRUE(notMatches("class Foo { Foo(int i); };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001682 constructorDecl(ofClass(hasName("Bar")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001683}
1684
1685TEST(ConstructorDeclaration, IsImplicit) {
1686 // This one doesn't match because the constructor is not added by the
1687 // compiler (it is not needed).
1688 EXPECT_TRUE(notMatches("class Foo { };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001689 constructorDecl(isImplicit())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001690 // The compiler added the implicit default constructor.
1691 EXPECT_TRUE(matches("class Foo { }; Foo* f = new Foo();",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001692 constructorDecl(isImplicit())));
Manuel Klimek4da21662012-07-06 05:48:52 +00001693 EXPECT_TRUE(matches("class Foo { Foo(){} };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001694 constructorDecl(unless(isImplicit()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001695}
1696
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001697TEST(DestructorDeclaration, MatchesVirtualDestructor) {
1698 EXPECT_TRUE(matches("class Foo { virtual ~Foo(); };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001699 destructorDecl(ofClass(hasName("Foo")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001700}
1701
1702TEST(DestructorDeclaration, DoesNotMatchImplicitDestructor) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001703 EXPECT_TRUE(notMatches("class Foo {};",
1704 destructorDecl(ofClass(hasName("Foo")))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001705}
1706
Manuel Klimek4da21662012-07-06 05:48:52 +00001707TEST(HasAnyConstructorInitializer, SimpleCase) {
1708 EXPECT_TRUE(notMatches(
1709 "class Foo { Foo() { } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001710 constructorDecl(hasAnyConstructorInitializer(anything()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001711 EXPECT_TRUE(matches(
1712 "class Foo {"
1713 " Foo() : foo_() { }"
1714 " int foo_;"
1715 "};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001716 constructorDecl(hasAnyConstructorInitializer(anything()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001717}
1718
1719TEST(HasAnyConstructorInitializer, ForField) {
1720 static const char Code[] =
1721 "class Baz { };"
1722 "class Foo {"
1723 " Foo() : foo_() { }"
1724 " Baz foo_;"
1725 " Baz bar_;"
1726 "};";
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001727 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
1728 forField(hasType(recordDecl(hasName("Baz"))))))));
1729 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001730 forField(hasName("foo_"))))));
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001731 EXPECT_TRUE(notMatches(Code, constructorDecl(hasAnyConstructorInitializer(
1732 forField(hasType(recordDecl(hasName("Bar"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001733}
1734
1735TEST(HasAnyConstructorInitializer, WithInitializer) {
1736 static const char Code[] =
1737 "class Foo {"
1738 " Foo() : foo_(0) { }"
1739 " int foo_;"
1740 "};";
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001741 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001742 withInitializer(integerLiteral(equals(0)))))));
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001743 EXPECT_TRUE(notMatches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001744 withInitializer(integerLiteral(equals(1)))))));
1745}
1746
1747TEST(HasAnyConstructorInitializer, IsWritten) {
1748 static const char Code[] =
1749 "struct Bar { Bar(){} };"
1750 "class Foo {"
1751 " Foo() : foo_() { }"
1752 " Bar foo_;"
1753 " Bar bar_;"
1754 "};";
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001755 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001756 allOf(forField(hasName("foo_")), isWritten())))));
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001757 EXPECT_TRUE(notMatches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001758 allOf(forField(hasName("bar_")), isWritten())))));
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001759 EXPECT_TRUE(matches(Code, constructorDecl(hasAnyConstructorInitializer(
Manuel Klimek4da21662012-07-06 05:48:52 +00001760 allOf(forField(hasName("bar_")), unless(isWritten()))))));
1761}
1762
1763TEST(Matcher, NewExpression) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001764 StatementMatcher New = newExpr();
Manuel Klimek4da21662012-07-06 05:48:52 +00001765
1766 EXPECT_TRUE(matches("class X { public: X(); }; void x() { new X; }", New));
1767 EXPECT_TRUE(
1768 matches("class X { public: X(); }; void x() { new X(); }", New));
1769 EXPECT_TRUE(
1770 matches("class X { public: X(int); }; void x() { new X(0); }", New));
1771 EXPECT_TRUE(matches("class X {}; void x(int) { new X; }", New));
1772}
1773
1774TEST(Matcher, NewExpressionArgument) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001775 StatementMatcher New = constructExpr(
1776 hasArgument(0, declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001777
1778 EXPECT_TRUE(
1779 matches("class X { public: X(int); }; void x() { int y; new X(y); }",
1780 New));
1781 EXPECT_TRUE(
1782 matches("class X { public: X(int); }; void x() { int y; new X(y); }",
1783 New));
1784 EXPECT_TRUE(
1785 notMatches("class X { public: X(int); }; void x() { int z; new X(z); }",
1786 New));
1787
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001788 StatementMatcher WrongIndex = constructExpr(
1789 hasArgument(42, declRefExpr(to(varDecl(hasName("y"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00001790 EXPECT_TRUE(
1791 notMatches("class X { public: X(int); }; void x() { int y; new X(y); }",
1792 WrongIndex));
1793}
1794
1795TEST(Matcher, NewExpressionArgumentCount) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001796 StatementMatcher New = constructExpr(argumentCountIs(1));
Manuel Klimek4da21662012-07-06 05:48:52 +00001797
1798 EXPECT_TRUE(
1799 matches("class X { public: X(int); }; void x() { new X(0); }", New));
1800 EXPECT_TRUE(
1801 notMatches("class X { public: X(int, int); }; void x() { new X(0, 0); }",
1802 New));
1803}
1804
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001805TEST(Matcher, DeleteExpression) {
1806 EXPECT_TRUE(matches("struct A {}; void f(A* a) { delete a; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001807 deleteExpr()));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00001808}
1809
Manuel Klimek4da21662012-07-06 05:48:52 +00001810TEST(Matcher, DefaultArgument) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00001811 StatementMatcher Arg = defaultArgExpr();
Manuel Klimek4da21662012-07-06 05:48:52 +00001812
1813 EXPECT_TRUE(matches("void x(int, int = 0) { int y; x(y); }", Arg));
1814 EXPECT_TRUE(
1815 matches("class X { void x(int, int = 0) { int y; x(y); } };", Arg));
1816 EXPECT_TRUE(notMatches("void x(int, int = 0) { int y; x(y, 0); }", Arg));
1817}
1818
1819TEST(Matcher, StringLiterals) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001820 StatementMatcher Literal = stringLiteral();
Manuel Klimek4da21662012-07-06 05:48:52 +00001821 EXPECT_TRUE(matches("const char *s = \"string\";", Literal));
1822 // wide string
1823 EXPECT_TRUE(matches("const wchar_t *s = L\"string\";", Literal));
1824 // with escaped characters
1825 EXPECT_TRUE(matches("const char *s = \"\x05five\";", Literal));
1826 // no matching -- though the data type is the same, there is no string literal
1827 EXPECT_TRUE(notMatches("const char s[1] = {'a'};", Literal));
1828}
1829
1830TEST(Matcher, CharacterLiterals) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001831 StatementMatcher CharLiteral = characterLiteral();
Manuel Klimek4da21662012-07-06 05:48:52 +00001832 EXPECT_TRUE(matches("const char c = 'c';", CharLiteral));
1833 // wide character
1834 EXPECT_TRUE(matches("const char c = L'c';", CharLiteral));
1835 // wide character, Hex encoded, NOT MATCHED!
1836 EXPECT_TRUE(notMatches("const wchar_t c = 0x2126;", CharLiteral));
1837 EXPECT_TRUE(notMatches("const char c = 0x1;", CharLiteral));
1838}
1839
1840TEST(Matcher, IntegerLiterals) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00001841 StatementMatcher HasIntLiteral = integerLiteral();
Manuel Klimek4da21662012-07-06 05:48:52 +00001842 EXPECT_TRUE(matches("int i = 10;", HasIntLiteral));
1843 EXPECT_TRUE(matches("int i = 0x1AB;", HasIntLiteral));
1844 EXPECT_TRUE(matches("int i = 10L;", HasIntLiteral));
1845 EXPECT_TRUE(matches("int i = 10U;", HasIntLiteral));
1846
1847 // Non-matching cases (character literals, float and double)
1848 EXPECT_TRUE(notMatches("int i = L'a';",
1849 HasIntLiteral)); // this is actually a character
1850 // literal cast to int
1851 EXPECT_TRUE(notMatches("int i = 'a';", HasIntLiteral));
1852 EXPECT_TRUE(notMatches("int i = 1e10;", HasIntLiteral));
1853 EXPECT_TRUE(notMatches("int i = 10.0;", HasIntLiteral));
1854}
1855
Daniel Jasper31f7c082012-10-01 13:40:41 +00001856TEST(Matcher, NullPtrLiteral) {
1857 EXPECT_TRUE(matches("int* i = nullptr;", nullPtrLiteralExpr()));
1858}
1859
Daniel Jasperb54b7642012-09-20 14:12:57 +00001860TEST(Matcher, AsmStatement) {
1861 EXPECT_TRUE(matches("void foo() { __asm(\"mov al, 2\"); }", asmStmt()));
1862}
1863
Manuel Klimek4da21662012-07-06 05:48:52 +00001864TEST(Matcher, Conditions) {
1865 StatementMatcher Condition = ifStmt(hasCondition(boolLiteral(equals(true))));
1866
1867 EXPECT_TRUE(matches("void x() { if (true) {} }", Condition));
1868 EXPECT_TRUE(notMatches("void x() { if (false) {} }", Condition));
1869 EXPECT_TRUE(notMatches("void x() { bool a = true; if (a) {} }", Condition));
1870 EXPECT_TRUE(notMatches("void x() { if (true || false) {} }", Condition));
1871 EXPECT_TRUE(notMatches("void x() { if (1) {} }", Condition));
1872}
1873
1874TEST(MatchBinaryOperator, HasOperatorName) {
1875 StatementMatcher OperatorOr = binaryOperator(hasOperatorName("||"));
1876
1877 EXPECT_TRUE(matches("void x() { true || false; }", OperatorOr));
1878 EXPECT_TRUE(notMatches("void x() { true && false; }", OperatorOr));
1879}
1880
1881TEST(MatchBinaryOperator, HasLHSAndHasRHS) {
1882 StatementMatcher OperatorTrueFalse =
1883 binaryOperator(hasLHS(boolLiteral(equals(true))),
1884 hasRHS(boolLiteral(equals(false))));
1885
1886 EXPECT_TRUE(matches("void x() { true || false; }", OperatorTrueFalse));
1887 EXPECT_TRUE(matches("void x() { true && false; }", OperatorTrueFalse));
1888 EXPECT_TRUE(notMatches("void x() { false || true; }", OperatorTrueFalse));
1889}
1890
1891TEST(MatchBinaryOperator, HasEitherOperand) {
1892 StatementMatcher HasOperand =
1893 binaryOperator(hasEitherOperand(boolLiteral(equals(false))));
1894
1895 EXPECT_TRUE(matches("void x() { true || false; }", HasOperand));
1896 EXPECT_TRUE(matches("void x() { false && true; }", HasOperand));
1897 EXPECT_TRUE(notMatches("void x() { true || true; }", HasOperand));
1898}
1899
1900TEST(Matcher, BinaryOperatorTypes) {
1901 // Integration test that verifies the AST provides all binary operators in
1902 // a way we expect.
1903 // FIXME: Operator ','
1904 EXPECT_TRUE(
1905 matches("void x() { 3, 4; }", binaryOperator(hasOperatorName(","))));
1906 EXPECT_TRUE(
1907 matches("bool b; bool c = (b = true);",
1908 binaryOperator(hasOperatorName("="))));
1909 EXPECT_TRUE(
1910 matches("bool b = 1 != 2;", binaryOperator(hasOperatorName("!="))));
1911 EXPECT_TRUE(
1912 matches("bool b = 1 == 2;", binaryOperator(hasOperatorName("=="))));
1913 EXPECT_TRUE(matches("bool b = 1 < 2;", binaryOperator(hasOperatorName("<"))));
1914 EXPECT_TRUE(
1915 matches("bool b = 1 <= 2;", binaryOperator(hasOperatorName("<="))));
1916 EXPECT_TRUE(
1917 matches("int i = 1 << 2;", binaryOperator(hasOperatorName("<<"))));
1918 EXPECT_TRUE(
1919 matches("int i = 1; int j = (i <<= 2);",
1920 binaryOperator(hasOperatorName("<<="))));
1921 EXPECT_TRUE(matches("bool b = 1 > 2;", binaryOperator(hasOperatorName(">"))));
1922 EXPECT_TRUE(
1923 matches("bool b = 1 >= 2;", binaryOperator(hasOperatorName(">="))));
1924 EXPECT_TRUE(
1925 matches("int i = 1 >> 2;", binaryOperator(hasOperatorName(">>"))));
1926 EXPECT_TRUE(
1927 matches("int i = 1; int j = (i >>= 2);",
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 ^= 42);",
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 %= 42);",
1938 binaryOperator(hasOperatorName("%="))));
1939 EXPECT_TRUE(
1940 matches("bool b = 42 &23;", binaryOperator(hasOperatorName("&"))));
1941 EXPECT_TRUE(
1942 matches("bool b = true && false;",
1943 binaryOperator(hasOperatorName("&&"))));
1944 EXPECT_TRUE(
1945 matches("bool b = true; bool c = (b &= false);",
1946 binaryOperator(hasOperatorName("&="))));
1947 EXPECT_TRUE(
1948 matches("bool b = 42 | 23;", binaryOperator(hasOperatorName("|"))));
1949 EXPECT_TRUE(
1950 matches("bool b = true || false;",
1951 binaryOperator(hasOperatorName("||"))));
1952 EXPECT_TRUE(
1953 matches("bool b = true; bool c = (b |= false);",
1954 binaryOperator(hasOperatorName("|="))));
1955 EXPECT_TRUE(
1956 matches("int i = 42 *23;", binaryOperator(hasOperatorName("*"))));
1957 EXPECT_TRUE(
1958 matches("int i = 42; int j = (i *= 23);",
1959 binaryOperator(hasOperatorName("*="))));
1960 EXPECT_TRUE(
1961 matches("int i = 42 / 23;", binaryOperator(hasOperatorName("/"))));
1962 EXPECT_TRUE(
1963 matches("int i = 42; int j = (i /= 23);",
1964 binaryOperator(hasOperatorName("/="))));
1965 EXPECT_TRUE(
1966 matches("int i = 42 + 23;", binaryOperator(hasOperatorName("+"))));
1967 EXPECT_TRUE(
1968 matches("int i = 42; int j = (i += 23);",
1969 binaryOperator(hasOperatorName("+="))));
1970 EXPECT_TRUE(
1971 matches("int i = 42 - 23;", binaryOperator(hasOperatorName("-"))));
1972 EXPECT_TRUE(
1973 matches("int i = 42; int j = (i -= 23);",
1974 binaryOperator(hasOperatorName("-="))));
1975 EXPECT_TRUE(
1976 matches("struct A { void x() { void (A::*a)(); (this->*a)(); } };",
1977 binaryOperator(hasOperatorName("->*"))));
1978 EXPECT_TRUE(
1979 matches("struct A { void x() { void (A::*a)(); ((*this).*a)(); } };",
1980 binaryOperator(hasOperatorName(".*"))));
1981
1982 // Member expressions as operators are not supported in matches.
1983 EXPECT_TRUE(
1984 notMatches("struct A { void x(A *a) { a->x(this); } };",
1985 binaryOperator(hasOperatorName("->"))));
1986
1987 // Initializer assignments are not represented as operator equals.
1988 EXPECT_TRUE(
1989 notMatches("bool b = true;", binaryOperator(hasOperatorName("="))));
1990
1991 // Array indexing is not represented as operator.
1992 EXPECT_TRUE(notMatches("int a[42]; void x() { a[23]; }", unaryOperator()));
1993
1994 // Overloaded operators do not match at all.
1995 EXPECT_TRUE(notMatches(
1996 "struct A { bool operator&&(const A &a) const { return false; } };"
1997 "void x() { A a, b; a && b; }",
1998 binaryOperator()));
1999}
2000
2001TEST(MatchUnaryOperator, HasOperatorName) {
2002 StatementMatcher OperatorNot = unaryOperator(hasOperatorName("!"));
2003
2004 EXPECT_TRUE(matches("void x() { !true; } ", OperatorNot));
2005 EXPECT_TRUE(notMatches("void x() { true; } ", OperatorNot));
2006}
2007
2008TEST(MatchUnaryOperator, HasUnaryOperand) {
2009 StatementMatcher OperatorOnFalse =
2010 unaryOperator(hasUnaryOperand(boolLiteral(equals(false))));
2011
2012 EXPECT_TRUE(matches("void x() { !false; }", OperatorOnFalse));
2013 EXPECT_TRUE(notMatches("void x() { !true; }", OperatorOnFalse));
2014}
2015
2016TEST(Matcher, UnaryOperatorTypes) {
2017 // Integration test that verifies the AST provides all unary operators in
2018 // a way we expect.
2019 EXPECT_TRUE(matches("bool b = !true;", unaryOperator(hasOperatorName("!"))));
2020 EXPECT_TRUE(
2021 matches("bool b; bool *p = &b;", unaryOperator(hasOperatorName("&"))));
2022 EXPECT_TRUE(matches("int i = ~ 1;", unaryOperator(hasOperatorName("~"))));
2023 EXPECT_TRUE(
2024 matches("bool *p; bool b = *p;", unaryOperator(hasOperatorName("*"))));
2025 EXPECT_TRUE(
2026 matches("int i; int j = +i;", unaryOperator(hasOperatorName("+"))));
2027 EXPECT_TRUE(
2028 matches("int i; int j = -i;", unaryOperator(hasOperatorName("-"))));
2029 EXPECT_TRUE(
2030 matches("int i; int j = ++i;", unaryOperator(hasOperatorName("++"))));
2031 EXPECT_TRUE(
2032 matches("int i; int j = i++;", unaryOperator(hasOperatorName("++"))));
2033 EXPECT_TRUE(
2034 matches("int i; int j = --i;", unaryOperator(hasOperatorName("--"))));
2035 EXPECT_TRUE(
2036 matches("int i; int j = i--;", unaryOperator(hasOperatorName("--"))));
2037
2038 // We don't match conversion operators.
2039 EXPECT_TRUE(notMatches("int i; double d = (double)i;", unaryOperator()));
2040
2041 // Function calls are not represented as operator.
2042 EXPECT_TRUE(notMatches("void f(); void x() { f(); }", unaryOperator()));
2043
2044 // Overloaded operators do not match at all.
2045 // FIXME: We probably want to add that.
2046 EXPECT_TRUE(notMatches(
2047 "struct A { bool operator!() const { return false; } };"
2048 "void x() { A a; !a; }", unaryOperator(hasOperatorName("!"))));
2049}
2050
2051TEST(Matcher, ConditionalOperator) {
2052 StatementMatcher Conditional = conditionalOperator(
2053 hasCondition(boolLiteral(equals(true))),
2054 hasTrueExpression(boolLiteral(equals(false))));
2055
2056 EXPECT_TRUE(matches("void x() { true ? false : true; }", Conditional));
2057 EXPECT_TRUE(notMatches("void x() { false ? false : true; }", Conditional));
2058 EXPECT_TRUE(notMatches("void x() { true ? true : false; }", Conditional));
2059
2060 StatementMatcher ConditionalFalse = conditionalOperator(
2061 hasFalseExpression(boolLiteral(equals(false))));
2062
2063 EXPECT_TRUE(matches("void x() { true ? true : false; }", ConditionalFalse));
2064 EXPECT_TRUE(
2065 notMatches("void x() { true ? false : true; }", ConditionalFalse));
2066}
2067
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002068TEST(ArraySubscriptMatchers, ArraySubscripts) {
2069 EXPECT_TRUE(matches("int i[2]; void f() { i[1] = 1; }",
2070 arraySubscriptExpr()));
2071 EXPECT_TRUE(notMatches("int i; void f() { i = 1; }",
2072 arraySubscriptExpr()));
2073}
2074
2075TEST(ArraySubscriptMatchers, ArrayIndex) {
2076 EXPECT_TRUE(matches(
2077 "int i[2]; void f() { i[1] = 1; }",
2078 arraySubscriptExpr(hasIndex(integerLiteral(equals(1))))));
2079 EXPECT_TRUE(matches(
2080 "int i[2]; void f() { 1[i] = 1; }",
2081 arraySubscriptExpr(hasIndex(integerLiteral(equals(1))))));
2082 EXPECT_TRUE(notMatches(
2083 "int i[2]; void f() { i[1] = 1; }",
2084 arraySubscriptExpr(hasIndex(integerLiteral(equals(0))))));
2085}
2086
2087TEST(ArraySubscriptMatchers, MatchesArrayBase) {
2088 EXPECT_TRUE(matches(
2089 "int i[2]; void f() { i[1] = 2; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002090 arraySubscriptExpr(hasBase(implicitCastExpr(
2091 hasSourceExpression(declRefExpr()))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002092}
2093
Manuel Klimek4da21662012-07-06 05:48:52 +00002094TEST(Matcher, HasNameSupportsNamespaces) {
2095 EXPECT_TRUE(matches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002096 recordDecl(hasName("a::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002097 EXPECT_TRUE(matches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002098 recordDecl(hasName("::a::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002099 EXPECT_TRUE(matches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002100 recordDecl(hasName("b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002101 EXPECT_TRUE(matches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002102 recordDecl(hasName("C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002103 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002104 recordDecl(hasName("c::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002105 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002106 recordDecl(hasName("a::c::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002107 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002108 recordDecl(hasName("a::b::A"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002109 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002110 recordDecl(hasName("::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002111 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002112 recordDecl(hasName("::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002113 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002114 recordDecl(hasName("z::a::b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002115 EXPECT_TRUE(notMatches("namespace a { namespace b { class C; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002116 recordDecl(hasName("a+b::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002117 EXPECT_TRUE(notMatches("namespace a { namespace b { class AC; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002118 recordDecl(hasName("C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002119}
2120
2121TEST(Matcher, HasNameSupportsOuterClasses) {
2122 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002123 matches("class A { class B { class C; }; };",
2124 recordDecl(hasName("A::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002125 EXPECT_TRUE(
2126 matches("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 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002129 matches("class A { class B { class C; }; };",
2130 recordDecl(hasName("B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002131 EXPECT_TRUE(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002132 matches("class A { class B { class C; }; };",
2133 recordDecl(hasName("C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002134 EXPECT_TRUE(
2135 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002136 recordDecl(hasName("c::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002137 EXPECT_TRUE(
2138 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002139 recordDecl(hasName("A::c::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002140 EXPECT_TRUE(
2141 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002142 recordDecl(hasName("A::B::A"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002143 EXPECT_TRUE(
2144 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002145 recordDecl(hasName("::C"))));
2146 EXPECT_TRUE(
2147 notMatches("class A { class B { class C; }; };",
2148 recordDecl(hasName("::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002149 EXPECT_TRUE(notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002150 recordDecl(hasName("z::A::B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002151 EXPECT_TRUE(
2152 notMatches("class A { class B { class C; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002153 recordDecl(hasName("A+B::C"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002154}
2155
2156TEST(Matcher, IsDefinition) {
2157 DeclarationMatcher DefinitionOfClassA =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002158 recordDecl(hasName("A"), isDefinition());
Manuel Klimek4da21662012-07-06 05:48:52 +00002159 EXPECT_TRUE(matches("class A {};", DefinitionOfClassA));
2160 EXPECT_TRUE(notMatches("class A;", DefinitionOfClassA));
2161
2162 DeclarationMatcher DefinitionOfVariableA =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002163 varDecl(hasName("a"), isDefinition());
Manuel Klimek4da21662012-07-06 05:48:52 +00002164 EXPECT_TRUE(matches("int a;", DefinitionOfVariableA));
2165 EXPECT_TRUE(notMatches("extern int a;", DefinitionOfVariableA));
2166
2167 DeclarationMatcher DefinitionOfMethodA =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002168 methodDecl(hasName("a"), isDefinition());
Manuel Klimek4da21662012-07-06 05:48:52 +00002169 EXPECT_TRUE(matches("class A { void a() {} };", DefinitionOfMethodA));
2170 EXPECT_TRUE(notMatches("class A { void a(); };", DefinitionOfMethodA));
2171}
2172
2173TEST(Matcher, OfClass) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002174 StatementMatcher Constructor = constructExpr(hasDeclaration(methodDecl(
Manuel Klimek4da21662012-07-06 05:48:52 +00002175 ofClass(hasName("X")))));
2176
2177 EXPECT_TRUE(
2178 matches("class X { public: X(); }; void x(int) { X x; }", Constructor));
2179 EXPECT_TRUE(
2180 matches("class X { public: X(); }; void x(int) { X x = X(); }",
2181 Constructor));
2182 EXPECT_TRUE(
2183 notMatches("class Y { public: Y(); }; void x(int) { Y y; }",
2184 Constructor));
2185}
2186
2187TEST(Matcher, VisitsTemplateInstantiations) {
2188 EXPECT_TRUE(matches(
2189 "class A { public: void x(); };"
2190 "template <typename T> class B { public: void y() { T t; t.x(); } };"
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002191 "void f() { B<A> b; b.y(); }",
2192 callExpr(callee(methodDecl(hasName("x"))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002193
2194 EXPECT_TRUE(matches(
2195 "class A { public: void x(); };"
2196 "class C {"
2197 " public:"
2198 " template <typename T> class B { public: void y() { T t; t.x(); } };"
2199 "};"
2200 "void f() {"
2201 " C::B<A> b; b.y();"
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002202 "}",
2203 recordDecl(hasName("C"),
2204 hasDescendant(callExpr(callee(methodDecl(hasName("x"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002205}
2206
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002207TEST(Matcher, HandlesNullQualTypes) {
2208 // FIXME: Add a Type matcher so we can replace uses of this
2209 // variable with Type(True())
2210 const TypeMatcher AnyType = anything();
2211
2212 // We don't really care whether this matcher succeeds; we're testing that
2213 // it completes without crashing.
2214 EXPECT_TRUE(matches(
2215 "struct A { };"
2216 "template <typename T>"
2217 "void f(T t) {"
2218 " T local_t(t /* this becomes a null QualType in the AST */);"
2219 "}"
2220 "void g() {"
2221 " f(0);"
2222 "}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002223 expr(hasType(TypeMatcher(
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002224 anyOf(
2225 TypeMatcher(hasDeclaration(anything())),
2226 pointsTo(AnyType),
2227 references(AnyType)
2228 // Other QualType matchers should go here.
2229 ))))));
2230}
2231
Manuel Klimek4da21662012-07-06 05:48:52 +00002232// For testing AST_MATCHER_P().
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002233AST_MATCHER_P(Decl, just, internal::Matcher<Decl>, AMatcher) {
Manuel Klimek4da21662012-07-06 05:48:52 +00002234 // Make sure all special variables are used: node, match_finder,
2235 // bound_nodes_builder, and the parameter named 'AMatcher'.
2236 return AMatcher.matches(Node, Finder, Builder);
2237}
2238
2239TEST(AstMatcherPMacro, Works) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002240 DeclarationMatcher HasClassB = just(has(recordDecl(hasName("B")).bind("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002241
2242 EXPECT_TRUE(matchAndVerifyResultTrue("class A { class B {}; };",
Daniel Jaspera7564432012-09-13 13:11:25 +00002243 HasClassB, new VerifyIdIsBoundTo<Decl>("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002244
2245 EXPECT_TRUE(matchAndVerifyResultFalse("class A { class B {}; };",
Daniel Jaspera7564432012-09-13 13:11:25 +00002246 HasClassB, new VerifyIdIsBoundTo<Decl>("a")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002247
2248 EXPECT_TRUE(matchAndVerifyResultFalse("class A { class C {}; };",
Daniel Jaspera7564432012-09-13 13:11:25 +00002249 HasClassB, new VerifyIdIsBoundTo<Decl>("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002250}
2251
2252AST_POLYMORPHIC_MATCHER_P(
Samuel Benzaquenef7eb022013-06-21 15:51:31 +00002253 polymorphicHas,
2254 AST_POLYMORPHIC_SUPPORTED_TYPES_2(Decl, Stmt),
2255 internal::Matcher<Decl>, AMatcher) {
Manuel Klimek4da21662012-07-06 05:48:52 +00002256 return Finder->matchesChildOf(
Manuel Klimeka78d0d62012-09-05 12:12:07 +00002257 Node, AMatcher, Builder,
Manuel Klimek4da21662012-07-06 05:48:52 +00002258 ASTMatchFinder::TK_IgnoreImplicitCastsAndParentheses,
2259 ASTMatchFinder::BK_First);
2260}
2261
2262TEST(AstPolymorphicMatcherPMacro, Works) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002263 DeclarationMatcher HasClassB =
2264 polymorphicHas(recordDecl(hasName("B")).bind("b"));
Manuel Klimek4da21662012-07-06 05:48:52 +00002265
2266 EXPECT_TRUE(matchAndVerifyResultTrue("class A { class B {}; };",
Daniel Jaspera7564432012-09-13 13:11:25 +00002267 HasClassB, new VerifyIdIsBoundTo<Decl>("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002268
2269 EXPECT_TRUE(matchAndVerifyResultFalse("class A { class B {}; };",
Daniel Jaspera7564432012-09-13 13:11:25 +00002270 HasClassB, new VerifyIdIsBoundTo<Decl>("a")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002271
2272 EXPECT_TRUE(matchAndVerifyResultFalse("class A { class C {}; };",
Daniel Jaspera7564432012-09-13 13:11:25 +00002273 HasClassB, new VerifyIdIsBoundTo<Decl>("b")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002274
2275 StatementMatcher StatementHasClassB =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002276 polymorphicHas(recordDecl(hasName("B")));
Manuel Klimek4da21662012-07-06 05:48:52 +00002277
2278 EXPECT_TRUE(matches("void x() { class B {}; }", StatementHasClassB));
2279}
2280
2281TEST(For, FindsForLoops) {
2282 EXPECT_TRUE(matches("void f() { for(;;); }", forStmt()));
2283 EXPECT_TRUE(matches("void f() { if(true) for(;;); }", forStmt()));
Daniel Jasper1a00fee2012-10-01 15:05:34 +00002284 EXPECT_TRUE(notMatches("int as[] = { 1, 2, 3 };"
2285 "void f() { for (auto &a : as); }",
Daniel Jasper31f7c082012-10-01 13:40:41 +00002286 forStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002287}
2288
Daniel Jasper6a124492012-07-12 08:50:38 +00002289TEST(For, ForLoopInternals) {
2290 EXPECT_TRUE(matches("void f(){ int i; for (; i < 3 ; ); }",
2291 forStmt(hasCondition(anything()))));
2292 EXPECT_TRUE(matches("void f() { for (int i = 0; ;); }",
2293 forStmt(hasLoopInit(anything()))));
2294}
2295
2296TEST(For, NegativeForLoopInternals) {
2297 EXPECT_TRUE(notMatches("void f(){ for (int i = 0; ; ++i); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002298 forStmt(hasCondition(expr()))));
Daniel Jasper6a124492012-07-12 08:50:38 +00002299 EXPECT_TRUE(notMatches("void f() {int i; for (; i < 4; ++i) {} }",
2300 forStmt(hasLoopInit(anything()))));
2301}
2302
Manuel Klimek4da21662012-07-06 05:48:52 +00002303TEST(For, ReportsNoFalsePositives) {
2304 EXPECT_TRUE(notMatches("void f() { ; }", forStmt()));
2305 EXPECT_TRUE(notMatches("void f() { if(true); }", forStmt()));
2306}
2307
2308TEST(CompoundStatement, HandlesSimpleCases) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002309 EXPECT_TRUE(notMatches("void f();", compoundStmt()));
2310 EXPECT_TRUE(matches("void f() {}", compoundStmt()));
2311 EXPECT_TRUE(matches("void f() {{}}", compoundStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002312}
2313
2314TEST(CompoundStatement, DoesNotMatchEmptyStruct) {
2315 // It's not a compound statement just because there's "{}" in the source
2316 // text. This is an AST search, not grep.
2317 EXPECT_TRUE(notMatches("namespace n { struct S {}; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002318 compoundStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002319 EXPECT_TRUE(matches("namespace n { struct S { void f() {{}} }; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002320 compoundStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002321}
2322
Daniel Jasper6a124492012-07-12 08:50:38 +00002323TEST(HasBody, FindsBodyOfForWhileDoLoops) {
Manuel Klimek4da21662012-07-06 05:48:52 +00002324 EXPECT_TRUE(matches("void f() { for(;;) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002325 forStmt(hasBody(compoundStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002326 EXPECT_TRUE(notMatches("void f() { for(;;); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002327 forStmt(hasBody(compoundStmt()))));
Daniel Jasper6a124492012-07-12 08:50:38 +00002328 EXPECT_TRUE(matches("void f() { while(true) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002329 whileStmt(hasBody(compoundStmt()))));
Daniel Jasper6a124492012-07-12 08:50:38 +00002330 EXPECT_TRUE(matches("void f() { do {} while(true); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002331 doStmt(hasBody(compoundStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002332}
2333
2334TEST(HasAnySubstatement, MatchesForTopLevelCompoundStatement) {
2335 // The simplest case: every compound statement is in a function
2336 // definition, and the function body itself must be a compound
2337 // statement.
2338 EXPECT_TRUE(matches("void f() { for (;;); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002339 compoundStmt(hasAnySubstatement(forStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002340}
2341
2342TEST(HasAnySubstatement, IsNotRecursive) {
2343 // It's really "has any immediate substatement".
2344 EXPECT_TRUE(notMatches("void f() { if (true) for (;;); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002345 compoundStmt(hasAnySubstatement(forStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002346}
2347
2348TEST(HasAnySubstatement, MatchesInNestedCompoundStatements) {
2349 EXPECT_TRUE(matches("void f() { if (true) { for (;;); } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002350 compoundStmt(hasAnySubstatement(forStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002351}
2352
2353TEST(HasAnySubstatement, FindsSubstatementBetweenOthers) {
2354 EXPECT_TRUE(matches("void f() { 1; 2; 3; for (;;); 4; 5; 6; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002355 compoundStmt(hasAnySubstatement(forStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002356}
2357
2358TEST(StatementCountIs, FindsNoStatementsInAnEmptyCompoundStatement) {
2359 EXPECT_TRUE(matches("void f() { }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002360 compoundStmt(statementCountIs(0))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002361 EXPECT_TRUE(notMatches("void f() {}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002362 compoundStmt(statementCountIs(1))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002363}
2364
2365TEST(StatementCountIs, AppearsToMatchOnlyOneCount) {
2366 EXPECT_TRUE(matches("void f() { 1; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002367 compoundStmt(statementCountIs(1))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002368 EXPECT_TRUE(notMatches("void f() { 1; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002369 compoundStmt(statementCountIs(0))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002370 EXPECT_TRUE(notMatches("void f() { 1; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002371 compoundStmt(statementCountIs(2))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002372}
2373
2374TEST(StatementCountIs, WorksWithMultipleStatements) {
2375 EXPECT_TRUE(matches("void f() { 1; 2; 3; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002376 compoundStmt(statementCountIs(3))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002377}
2378
2379TEST(StatementCountIs, WorksWithNestedCompoundStatements) {
2380 EXPECT_TRUE(matches("void f() { { 1; } { 1; 2; 3; 4; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002381 compoundStmt(statementCountIs(1))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002382 EXPECT_TRUE(matches("void f() { { 1; } { 1; 2; 3; 4; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002383 compoundStmt(statementCountIs(2))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002384 EXPECT_TRUE(notMatches("void f() { { 1; } { 1; 2; 3; 4; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002385 compoundStmt(statementCountIs(3))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002386 EXPECT_TRUE(matches("void f() { { 1; } { 1; 2; 3; 4; } }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002387 compoundStmt(statementCountIs(4))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002388}
2389
2390TEST(Member, WorksInSimplestCase) {
2391 EXPECT_TRUE(matches("struct { int first; } s; int i(s.first);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002392 memberExpr(member(hasName("first")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002393}
2394
2395TEST(Member, DoesNotMatchTheBaseExpression) {
2396 // Don't pick out the wrong part of the member expression, this should
2397 // be checking the member (name) only.
2398 EXPECT_TRUE(notMatches("struct { int i; } first; int i(first.i);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002399 memberExpr(member(hasName("first")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002400}
2401
2402TEST(Member, MatchesInMemberFunctionCall) {
2403 EXPECT_TRUE(matches("void f() {"
2404 " struct { void first() {}; } s;"
2405 " s.first();"
2406 "};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002407 memberExpr(member(hasName("first")))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002408}
2409
Daniel Jasperc711af22012-10-23 15:46:39 +00002410TEST(Member, MatchesMember) {
2411 EXPECT_TRUE(matches(
2412 "struct A { int i; }; void f() { A a; a.i = 2; }",
2413 memberExpr(hasDeclaration(fieldDecl(hasType(isInteger()))))));
2414 EXPECT_TRUE(notMatches(
2415 "struct A { float f; }; void f() { A a; a.f = 2.0f; }",
2416 memberExpr(hasDeclaration(fieldDecl(hasType(isInteger()))))));
2417}
2418
Daniel Jasperf3197e92013-02-25 12:02:08 +00002419TEST(Member, UnderstandsAccess) {
2420 EXPECT_TRUE(matches(
2421 "struct A { int i; };", fieldDecl(isPublic(), hasName("i"))));
2422 EXPECT_TRUE(notMatches(
2423 "struct A { int i; };", fieldDecl(isProtected(), hasName("i"))));
2424 EXPECT_TRUE(notMatches(
2425 "struct A { int i; };", fieldDecl(isPrivate(), hasName("i"))));
2426
2427 EXPECT_TRUE(notMatches(
2428 "class A { int i; };", fieldDecl(isPublic(), hasName("i"))));
2429 EXPECT_TRUE(notMatches(
2430 "class A { int i; };", fieldDecl(isProtected(), hasName("i"))));
2431 EXPECT_TRUE(matches(
2432 "class A { int i; };", fieldDecl(isPrivate(), hasName("i"))));
2433
2434 EXPECT_TRUE(notMatches(
2435 "class A { protected: int i; };", fieldDecl(isPublic(), hasName("i"))));
2436 EXPECT_TRUE(matches("class A { protected: int i; };",
2437 fieldDecl(isProtected(), hasName("i"))));
2438 EXPECT_TRUE(notMatches(
2439 "class A { protected: int i; };", fieldDecl(isPrivate(), hasName("i"))));
2440
2441 // Non-member decls have the AccessSpecifier AS_none and thus aren't matched.
2442 EXPECT_TRUE(notMatches("int i;", varDecl(isPublic(), hasName("i"))));
2443 EXPECT_TRUE(notMatches("int i;", varDecl(isProtected(), hasName("i"))));
2444 EXPECT_TRUE(notMatches("int i;", varDecl(isPrivate(), hasName("i"))));
2445}
2446
Dmitri Gribenko671a0452012-08-18 00:29:27 +00002447TEST(Member, MatchesMemberAllocationFunction) {
Daniel Jasper31f7c082012-10-01 13:40:41 +00002448 // Fails in C++11 mode
2449 EXPECT_TRUE(matchesConditionally(
2450 "namespace std { typedef typeof(sizeof(int)) size_t; }"
2451 "class X { void *operator new(std::size_t); };",
2452 methodDecl(ofClass(hasName("X"))), true, "-std=gnu++98"));
Dmitri Gribenko671a0452012-08-18 00:29:27 +00002453
2454 EXPECT_TRUE(matches("class X { void operator delete(void*); };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002455 methodDecl(ofClass(hasName("X")))));
Dmitri Gribenko671a0452012-08-18 00:29:27 +00002456
Daniel Jasper31f7c082012-10-01 13:40:41 +00002457 // Fails in C++11 mode
2458 EXPECT_TRUE(matchesConditionally(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002459 "namespace std { typedef typeof(sizeof(int)) size_t; }"
2460 "class X { void operator delete[](void*, std::size_t); };",
Daniel Jasper31f7c082012-10-01 13:40:41 +00002461 methodDecl(ofClass(hasName("X"))), true, "-std=gnu++98"));
Dmitri Gribenko671a0452012-08-18 00:29:27 +00002462}
2463
Manuel Klimek4da21662012-07-06 05:48:52 +00002464TEST(HasObjectExpression, DoesNotMatchMember) {
2465 EXPECT_TRUE(notMatches(
2466 "class X {}; struct Z { X m; }; void f(Z z) { z.m; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002467 memberExpr(hasObjectExpression(hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002468}
2469
2470TEST(HasObjectExpression, MatchesBaseOfVariable) {
2471 EXPECT_TRUE(matches(
2472 "struct X { int m; }; void f(X x) { x.m; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002473 memberExpr(hasObjectExpression(hasType(recordDecl(hasName("X")))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002474 EXPECT_TRUE(matches(
2475 "struct X { int m; }; void f(X* x) { x->m; }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002476 memberExpr(hasObjectExpression(
2477 hasType(pointsTo(recordDecl(hasName("X"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002478}
2479
2480TEST(HasObjectExpression,
2481 MatchesObjectExpressionOfImplicitlyFormedMemberExpression) {
2482 EXPECT_TRUE(matches(
2483 "class X {}; struct S { X m; void f() { this->m; } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002484 memberExpr(hasObjectExpression(
2485 hasType(pointsTo(recordDecl(hasName("S"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002486 EXPECT_TRUE(matches(
2487 "class X {}; struct S { X m; void f() { m; } };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002488 memberExpr(hasObjectExpression(
2489 hasType(pointsTo(recordDecl(hasName("S"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002490}
2491
2492TEST(Field, DoesNotMatchNonFieldMembers) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002493 EXPECT_TRUE(notMatches("class X { void m(); };", fieldDecl(hasName("m"))));
2494 EXPECT_TRUE(notMatches("class X { class m {}; };", fieldDecl(hasName("m"))));
2495 EXPECT_TRUE(notMatches("class X { enum { m }; };", fieldDecl(hasName("m"))));
2496 EXPECT_TRUE(notMatches("class X { enum m {}; };", fieldDecl(hasName("m"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002497}
2498
2499TEST(Field, MatchesField) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002500 EXPECT_TRUE(matches("class X { int m; };", fieldDecl(hasName("m"))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002501}
2502
2503TEST(IsConstQualified, MatchesConstInt) {
2504 EXPECT_TRUE(matches("const int i = 42;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002505 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002506}
2507
2508TEST(IsConstQualified, MatchesConstPointer) {
2509 EXPECT_TRUE(matches("int i = 42; int* const p(&i);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002510 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002511}
2512
2513TEST(IsConstQualified, MatchesThroughTypedef) {
2514 EXPECT_TRUE(matches("typedef const int const_int; const_int i = 42;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002515 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002516 EXPECT_TRUE(matches("typedef int* int_ptr; const int_ptr p(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002517 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002518}
2519
2520TEST(IsConstQualified, DoesNotMatchInappropriately) {
2521 EXPECT_TRUE(notMatches("typedef int nonconst_int; nonconst_int i = 42;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002522 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002523 EXPECT_TRUE(notMatches("int const* p;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002524 varDecl(hasType(isConstQualified()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002525}
2526
Sam Panzer089e5b32012-08-16 16:58:10 +00002527TEST(CastExpression, MatchesExplicitCasts) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002528 EXPECT_TRUE(matches("char *p = reinterpret_cast<char *>(&p);",castExpr()));
2529 EXPECT_TRUE(matches("void *p = (void *)(&p);", castExpr()));
2530 EXPECT_TRUE(matches("char q, *p = const_cast<char *>(&q);", castExpr()));
2531 EXPECT_TRUE(matches("char c = char(0);", castExpr()));
Sam Panzer089e5b32012-08-16 16:58:10 +00002532}
2533TEST(CastExpression, MatchesImplicitCasts) {
2534 // This test creates an implicit cast from int to char.
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002535 EXPECT_TRUE(matches("char c = 0;", castExpr()));
Sam Panzer089e5b32012-08-16 16:58:10 +00002536 // This test creates an implicit cast from lvalue to rvalue.
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002537 EXPECT_TRUE(matches("char c = 0, d = c;", castExpr()));
Sam Panzer089e5b32012-08-16 16:58:10 +00002538}
2539
2540TEST(CastExpression, DoesNotMatchNonCasts) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002541 EXPECT_TRUE(notMatches("char c = '0';", castExpr()));
2542 EXPECT_TRUE(notMatches("char c, &q = c;", castExpr()));
2543 EXPECT_TRUE(notMatches("int i = (0);", castExpr()));
2544 EXPECT_TRUE(notMatches("int i = 0;", castExpr()));
Sam Panzer089e5b32012-08-16 16:58:10 +00002545}
2546
Manuel Klimek4da21662012-07-06 05:48:52 +00002547TEST(ReinterpretCast, MatchesSimpleCase) {
2548 EXPECT_TRUE(matches("char* p = reinterpret_cast<char*>(&p);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002549 reinterpretCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002550}
2551
2552TEST(ReinterpretCast, DoesNotMatchOtherCasts) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002553 EXPECT_TRUE(notMatches("char* p = (char*)(&p);", reinterpretCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002554 EXPECT_TRUE(notMatches("char q, *p = const_cast<char*>(&q);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002555 reinterpretCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002556 EXPECT_TRUE(notMatches("void* p = static_cast<void*>(&p);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002557 reinterpretCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002558 EXPECT_TRUE(notMatches("struct B { virtual ~B() {} }; struct D : B {};"
2559 "B b;"
2560 "D* p = dynamic_cast<D*>(&b);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002561 reinterpretCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002562}
2563
2564TEST(FunctionalCast, MatchesSimpleCase) {
2565 std::string foo_class = "class Foo { public: Foo(char*); };";
2566 EXPECT_TRUE(matches(foo_class + "void r() { Foo f = Foo(\"hello world\"); }",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002567 functionalCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002568}
2569
2570TEST(FunctionalCast, DoesNotMatchOtherCasts) {
2571 std::string FooClass = "class Foo { public: Foo(char*); };";
2572 EXPECT_TRUE(
2573 notMatches(FooClass + "void r() { Foo f = (Foo) \"hello world\"; }",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002574 functionalCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002575 EXPECT_TRUE(
2576 notMatches(FooClass + "void r() { Foo f = \"hello world\"; }",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002577 functionalCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002578}
2579
2580TEST(DynamicCast, MatchesSimpleCase) {
2581 EXPECT_TRUE(matches("struct B { virtual ~B() {} }; struct D : B {};"
2582 "B b;"
2583 "D* p = dynamic_cast<D*>(&b);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002584 dynamicCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002585}
2586
2587TEST(StaticCast, MatchesSimpleCase) {
2588 EXPECT_TRUE(matches("void* p(static_cast<void*>(&p));",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002589 staticCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002590}
2591
2592TEST(StaticCast, DoesNotMatchOtherCasts) {
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002593 EXPECT_TRUE(notMatches("char* p = (char*)(&p);", staticCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002594 EXPECT_TRUE(notMatches("char q, *p = const_cast<char*>(&q);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002595 staticCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002596 EXPECT_TRUE(notMatches("void* p = reinterpret_cast<char*>(&p);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002597 staticCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002598 EXPECT_TRUE(notMatches("struct B { virtual ~B() {} }; struct D : B {};"
2599 "B b;"
2600 "D* p = dynamic_cast<D*>(&b);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002601 staticCastExpr()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002602}
2603
Daniel Jaspere6d2a962012-09-18 13:36:17 +00002604TEST(CStyleCast, MatchesSimpleCase) {
2605 EXPECT_TRUE(matches("int i = (int) 2.2f;", cStyleCastExpr()));
2606}
2607
2608TEST(CStyleCast, DoesNotMatchOtherCasts) {
2609 EXPECT_TRUE(notMatches("char* p = static_cast<char*>(0);"
2610 "char q, *r = const_cast<char*>(&q);"
2611 "void* s = reinterpret_cast<char*>(&s);"
2612 "struct B { virtual ~B() {} }; struct D : B {};"
2613 "B b;"
2614 "D* t = dynamic_cast<D*>(&b);",
2615 cStyleCastExpr()));
2616}
2617
Manuel Klimek4da21662012-07-06 05:48:52 +00002618TEST(HasDestinationType, MatchesSimpleCase) {
2619 EXPECT_TRUE(matches("char* p = static_cast<char*>(0);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002620 staticCastExpr(hasDestinationType(
2621 pointsTo(TypeMatcher(anything()))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002622}
2623
Sam Panzer089e5b32012-08-16 16:58:10 +00002624TEST(HasImplicitDestinationType, MatchesSimpleCase) {
2625 // This test creates an implicit const cast.
2626 EXPECT_TRUE(matches("int x; const int i = x;",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002627 implicitCastExpr(
2628 hasImplicitDestinationType(isInteger()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002629 // This test creates an implicit array-to-pointer cast.
2630 EXPECT_TRUE(matches("int arr[3]; int *p = arr;",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002631 implicitCastExpr(hasImplicitDestinationType(
2632 pointsTo(TypeMatcher(anything()))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002633}
2634
2635TEST(HasImplicitDestinationType, DoesNotMatchIncorrectly) {
2636 // This test creates an implicit cast from int to char.
2637 EXPECT_TRUE(notMatches("char c = 0;",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002638 implicitCastExpr(hasImplicitDestinationType(
2639 unless(anything())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002640 // This test creates an implicit array-to-pointer cast.
2641 EXPECT_TRUE(notMatches("int arr[3]; int *p = arr;",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002642 implicitCastExpr(hasImplicitDestinationType(
2643 unless(anything())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002644}
2645
2646TEST(ImplicitCast, MatchesSimpleCase) {
2647 // This test creates an implicit const cast.
2648 EXPECT_TRUE(matches("int x = 0; const int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002649 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002650 // This test creates an implicit cast from int to char.
2651 EXPECT_TRUE(matches("char c = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002652 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002653 // This test creates an implicit array-to-pointer cast.
2654 EXPECT_TRUE(matches("int arr[6]; int *p = arr;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002655 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002656}
2657
2658TEST(ImplicitCast, DoesNotMatchIncorrectly) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002659 // This test verifies that implicitCastExpr() matches exactly when implicit casts
Sam Panzer089e5b32012-08-16 16:58:10 +00002660 // are present, and that it ignores explicit and paren casts.
2661
2662 // These two test cases have no casts.
2663 EXPECT_TRUE(notMatches("int x = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002664 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002665 EXPECT_TRUE(notMatches("int x = 0, &y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002666 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002667
2668 EXPECT_TRUE(notMatches("int x = 0; double d = (double) x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002669 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002670 EXPECT_TRUE(notMatches("const int *p; int *q = const_cast<int *>(p);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002671 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002672
2673 EXPECT_TRUE(notMatches("int x = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002674 varDecl(hasInitializer(implicitCastExpr()))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002675}
2676
2677TEST(IgnoringImpCasts, MatchesImpCasts) {
2678 // This test checks that ignoringImpCasts matches when implicit casts are
2679 // present and its inner matcher alone does not match.
2680 // Note that this test creates an implicit const cast.
2681 EXPECT_TRUE(matches("int x = 0; const int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002682 varDecl(hasInitializer(ignoringImpCasts(
2683 declRefExpr(to(varDecl(hasName("x")))))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002684 // This test creates an implict cast from int to char.
2685 EXPECT_TRUE(matches("char x = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002686 varDecl(hasInitializer(ignoringImpCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002687 integerLiteral(equals(0)))))));
2688}
2689
2690TEST(IgnoringImpCasts, DoesNotMatchIncorrectly) {
2691 // These tests verify that ignoringImpCasts does not match if the inner
2692 // matcher does not match.
2693 // Note that the first test creates an implicit const cast.
2694 EXPECT_TRUE(notMatches("int x; const int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002695 varDecl(hasInitializer(ignoringImpCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002696 unless(anything()))))));
2697 EXPECT_TRUE(notMatches("int x; int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002698 varDecl(hasInitializer(ignoringImpCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002699 unless(anything()))))));
2700
2701 // These tests verify that ignoringImplictCasts does not look through explicit
2702 // casts or parentheses.
2703 EXPECT_TRUE(notMatches("char* p = static_cast<char*>(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002704 varDecl(hasInitializer(ignoringImpCasts(
2705 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002706 EXPECT_TRUE(notMatches("int i = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002707 varDecl(hasInitializer(ignoringImpCasts(
2708 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002709 EXPECT_TRUE(notMatches("float i = (float)0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002710 varDecl(hasInitializer(ignoringImpCasts(
2711 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002712 EXPECT_TRUE(notMatches("float i = float(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002713 varDecl(hasInitializer(ignoringImpCasts(
2714 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002715}
2716
2717TEST(IgnoringImpCasts, MatchesWithoutImpCasts) {
2718 // This test verifies that expressions that do not have implicit casts
2719 // still match the inner matcher.
2720 EXPECT_TRUE(matches("int x = 0; int &y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002721 varDecl(hasInitializer(ignoringImpCasts(
2722 declRefExpr(to(varDecl(hasName("x")))))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002723}
2724
2725TEST(IgnoringParenCasts, MatchesParenCasts) {
2726 // This test checks that ignoringParenCasts matches when parentheses and/or
2727 // casts are present and its inner matcher alone does not match.
2728 EXPECT_TRUE(matches("int x = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002729 varDecl(hasInitializer(ignoringParenCasts(
2730 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002731 EXPECT_TRUE(matches("int x = (((((0)))));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002732 varDecl(hasInitializer(ignoringParenCasts(
2733 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002734
2735 // This test creates an implict cast from int to char in addition to the
2736 // parentheses.
2737 EXPECT_TRUE(matches("char x = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002738 varDecl(hasInitializer(ignoringParenCasts(
2739 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002740
2741 EXPECT_TRUE(matches("char x = (char)0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002742 varDecl(hasInitializer(ignoringParenCasts(
2743 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002744 EXPECT_TRUE(matches("char* p = static_cast<char*>(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002745 varDecl(hasInitializer(ignoringParenCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002746 integerLiteral(equals(0)))))));
2747}
2748
2749TEST(IgnoringParenCasts, MatchesWithoutParenCasts) {
2750 // This test verifies that expressions that do not have any casts still match.
2751 EXPECT_TRUE(matches("int x = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002752 varDecl(hasInitializer(ignoringParenCasts(
2753 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002754}
2755
2756TEST(IgnoringParenCasts, DoesNotMatchIncorrectly) {
2757 // These tests verify that ignoringImpCasts does not match if the inner
2758 // matcher does not match.
2759 EXPECT_TRUE(notMatches("int x = ((0));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002760 varDecl(hasInitializer(ignoringParenCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002761 unless(anything()))))));
2762
2763 // This test creates an implicit cast from int to char in addition to the
2764 // parentheses.
2765 EXPECT_TRUE(notMatches("char x = ((0));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002766 varDecl(hasInitializer(ignoringParenCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002767 unless(anything()))))));
2768
2769 EXPECT_TRUE(notMatches("char *x = static_cast<char *>((0));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002770 varDecl(hasInitializer(ignoringParenCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002771 unless(anything()))))));
2772}
2773
2774TEST(IgnoringParenAndImpCasts, MatchesParenImpCasts) {
2775 // This test checks that ignoringParenAndImpCasts matches when
2776 // parentheses and/or implicit casts are present and its inner matcher alone
2777 // does not match.
2778 // Note that this test creates an implicit const cast.
2779 EXPECT_TRUE(matches("int x = 0; const int y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002780 varDecl(hasInitializer(ignoringParenImpCasts(
2781 declRefExpr(to(varDecl(hasName("x")))))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002782 // This test creates an implicit cast from int to char.
2783 EXPECT_TRUE(matches("const char x = (0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002784 varDecl(hasInitializer(ignoringParenImpCasts(
2785 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002786}
2787
2788TEST(IgnoringParenAndImpCasts, MatchesWithoutParenImpCasts) {
2789 // This test verifies that expressions that do not have parentheses or
2790 // implicit casts still match.
2791 EXPECT_TRUE(matches("int x = 0; int &y = x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002792 varDecl(hasInitializer(ignoringParenImpCasts(
2793 declRefExpr(to(varDecl(hasName("x")))))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002794 EXPECT_TRUE(matches("int x = 0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002795 varDecl(hasInitializer(ignoringParenImpCasts(
2796 integerLiteral(equals(0)))))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002797}
2798
2799TEST(IgnoringParenAndImpCasts, DoesNotMatchIncorrectly) {
2800 // These tests verify that ignoringParenImpCasts does not match if
2801 // the inner matcher does not match.
2802 // This test creates an implicit cast.
2803 EXPECT_TRUE(notMatches("char c = ((3));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002804 varDecl(hasInitializer(ignoringParenImpCasts(
Sam Panzer089e5b32012-08-16 16:58:10 +00002805 unless(anything()))))));
2806 // These tests verify that ignoringParenAndImplictCasts does not look
2807 // through explicit casts.
2808 EXPECT_TRUE(notMatches("float y = (float(0));",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002809 varDecl(hasInitializer(ignoringParenImpCasts(
2810 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002811 EXPECT_TRUE(notMatches("float y = (float)0;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002812 varDecl(hasInitializer(ignoringParenImpCasts(
2813 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002814 EXPECT_TRUE(notMatches("char* p = static_cast<char*>(0);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002815 varDecl(hasInitializer(ignoringParenImpCasts(
2816 integerLiteral())))));
Sam Panzer089e5b32012-08-16 16:58:10 +00002817}
2818
Manuel Klimek715c9562012-07-25 10:02:02 +00002819TEST(HasSourceExpression, MatchesImplicitCasts) {
Manuel Klimek4da21662012-07-06 05:48:52 +00002820 EXPECT_TRUE(matches("class string {}; class URL { public: URL(string s); };"
2821 "void r() {string a_string; URL url = a_string; }",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002822 implicitCastExpr(
2823 hasSourceExpression(constructExpr()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002824}
2825
Manuel Klimek715c9562012-07-25 10:02:02 +00002826TEST(HasSourceExpression, MatchesExplicitCasts) {
2827 EXPECT_TRUE(matches("float x = static_cast<float>(42);",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002828 explicitCastExpr(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002829 hasSourceExpression(hasDescendant(
Daniel Jasper3680b4f2012-09-18 13:09:13 +00002830 expr(integerLiteral()))))));
Manuel Klimek715c9562012-07-25 10:02:02 +00002831}
2832
Manuel Klimek4da21662012-07-06 05:48:52 +00002833TEST(Statement, DoesNotMatchDeclarations) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002834 EXPECT_TRUE(notMatches("class X {};", stmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002835}
2836
2837TEST(Statement, MatchesCompoundStatments) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002838 EXPECT_TRUE(matches("void x() {}", stmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002839}
2840
2841TEST(DeclarationStatement, DoesNotMatchCompoundStatements) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002842 EXPECT_TRUE(notMatches("void x() {}", declStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002843}
2844
2845TEST(DeclarationStatement, MatchesVariableDeclarationStatements) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002846 EXPECT_TRUE(matches("void x() { int a; }", declStmt()));
Manuel Klimek4da21662012-07-06 05:48:52 +00002847}
2848
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002849TEST(InitListExpression, MatchesInitListExpression) {
2850 EXPECT_TRUE(matches("int a[] = { 1, 2 };",
2851 initListExpr(hasType(asString("int [2]")))));
2852 EXPECT_TRUE(matches("struct B { int x, y; }; B b = { 5, 6 };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002853 initListExpr(hasType(recordDecl(hasName("B"))))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002854}
2855
2856TEST(UsingDeclaration, MatchesUsingDeclarations) {
2857 EXPECT_TRUE(matches("namespace X { int x; } using X::x;",
2858 usingDecl()));
2859}
2860
2861TEST(UsingDeclaration, MatchesShadowUsingDelcarations) {
2862 EXPECT_TRUE(matches("namespace f { int a; } using f::a;",
2863 usingDecl(hasAnyUsingShadowDecl(hasName("a")))));
2864}
2865
2866TEST(UsingDeclaration, MatchesSpecificTarget) {
2867 EXPECT_TRUE(matches("namespace f { int a; void b(); } using f::b;",
2868 usingDecl(hasAnyUsingShadowDecl(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002869 hasTargetDecl(functionDecl())))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002870 EXPECT_TRUE(notMatches("namespace f { int a; void b(); } using f::a;",
2871 usingDecl(hasAnyUsingShadowDecl(
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002872 hasTargetDecl(functionDecl())))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002873}
2874
2875TEST(UsingDeclaration, ThroughUsingDeclaration) {
2876 EXPECT_TRUE(matches(
2877 "namespace a { void f(); } using a::f; void g() { f(); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002878 declRefExpr(throughUsingDecl(anything()))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002879 EXPECT_TRUE(notMatches(
2880 "namespace a { void f(); } using a::f; void g() { a::f(); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002881 declRefExpr(throughUsingDecl(anything()))));
Daniel Jaspere0e6b9e2012-07-10 20:20:19 +00002882}
2883
Sam Panzer425f41b2012-08-16 17:20:59 +00002884TEST(SingleDecl, IsSingleDecl) {
2885 StatementMatcher SingleDeclStmt =
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002886 declStmt(hasSingleDecl(varDecl(hasInitializer(anything()))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002887 EXPECT_TRUE(matches("void f() {int a = 4;}", SingleDeclStmt));
2888 EXPECT_TRUE(notMatches("void f() {int a;}", SingleDeclStmt));
2889 EXPECT_TRUE(notMatches("void f() {int a = 4, b = 3;}",
2890 SingleDeclStmt));
2891}
2892
2893TEST(DeclStmt, ContainsDeclaration) {
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002894 DeclarationMatcher MatchesInit = varDecl(hasInitializer(anything()));
Sam Panzer425f41b2012-08-16 17:20:59 +00002895
2896 EXPECT_TRUE(matches("void f() {int a = 4;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002897 declStmt(containsDeclaration(0, MatchesInit))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002898 EXPECT_TRUE(matches("void f() {int a = 4, b = 3;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002899 declStmt(containsDeclaration(0, MatchesInit),
2900 containsDeclaration(1, MatchesInit))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002901 unsigned WrongIndex = 42;
2902 EXPECT_TRUE(notMatches("void f() {int a = 4, b = 3;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002903 declStmt(containsDeclaration(WrongIndex,
Sam Panzer425f41b2012-08-16 17:20:59 +00002904 MatchesInit))));
2905}
2906
2907TEST(DeclCount, DeclCountIsCorrect) {
2908 EXPECT_TRUE(matches("void f() {int i,j;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002909 declStmt(declCountIs(2))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002910 EXPECT_TRUE(notMatches("void f() {int i,j; int k;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002911 declStmt(declCountIs(3))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002912 EXPECT_TRUE(notMatches("void f() {int i,j, k, l;}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002913 declStmt(declCountIs(3))));
Sam Panzer425f41b2012-08-16 17:20:59 +00002914}
2915
Manuel Klimek4da21662012-07-06 05:48:52 +00002916TEST(While, MatchesWhileLoops) {
2917 EXPECT_TRUE(notMatches("void x() {}", whileStmt()));
2918 EXPECT_TRUE(matches("void x() { while(true); }", whileStmt()));
2919 EXPECT_TRUE(notMatches("void x() { do {} while(true); }", whileStmt()));
2920}
2921
2922TEST(Do, MatchesDoLoops) {
2923 EXPECT_TRUE(matches("void x() { do {} while(true); }", doStmt()));
2924 EXPECT_TRUE(matches("void x() { do ; while(false); }", doStmt()));
2925}
2926
2927TEST(Do, DoesNotMatchWhileLoops) {
2928 EXPECT_TRUE(notMatches("void x() { while(true) {} }", doStmt()));
2929}
2930
2931TEST(SwitchCase, MatchesCase) {
2932 EXPECT_TRUE(matches("void x() { switch(42) { case 42:; } }", switchCase()));
2933 EXPECT_TRUE(matches("void x() { switch(42) { default:; } }", switchCase()));
2934 EXPECT_TRUE(matches("void x() { switch(42) default:; }", switchCase()));
2935 EXPECT_TRUE(notMatches("void x() { switch(42) {} }", switchCase()));
2936}
2937
Daniel Jasperb54b7642012-09-20 14:12:57 +00002938TEST(SwitchCase, MatchesSwitch) {
2939 EXPECT_TRUE(matches("void x() { switch(42) { case 42:; } }", switchStmt()));
2940 EXPECT_TRUE(matches("void x() { switch(42) { default:; } }", switchStmt()));
2941 EXPECT_TRUE(matches("void x() { switch(42) default:; }", switchStmt()));
2942 EXPECT_TRUE(notMatches("void x() {}", switchStmt()));
2943}
2944
Peter Collingbourneacf02712013-05-10 11:52:02 +00002945TEST(SwitchCase, MatchesEachCase) {
2946 EXPECT_TRUE(notMatches("void x() { switch(42); }",
2947 switchStmt(forEachSwitchCase(caseStmt()))));
2948 EXPECT_TRUE(matches("void x() { switch(42) case 42:; }",
2949 switchStmt(forEachSwitchCase(caseStmt()))));
2950 EXPECT_TRUE(matches("void x() { switch(42) { case 42:; } }",
2951 switchStmt(forEachSwitchCase(caseStmt()))));
2952 EXPECT_TRUE(notMatches(
2953 "void x() { if (1) switch(42) { case 42: switch (42) { default:; } } }",
2954 ifStmt(has(switchStmt(forEachSwitchCase(defaultStmt()))))));
2955 EXPECT_TRUE(matches("void x() { switch(42) { case 1+1: case 4:; } }",
2956 switchStmt(forEachSwitchCase(
2957 caseStmt(hasCaseConstant(integerLiteral()))))));
2958 EXPECT_TRUE(notMatches("void x() { switch(42) { case 1+1: case 2+2:; } }",
2959 switchStmt(forEachSwitchCase(
2960 caseStmt(hasCaseConstant(integerLiteral()))))));
2961 EXPECT_TRUE(notMatches("void x() { switch(42) { case 1 ... 2:; } }",
2962 switchStmt(forEachSwitchCase(
2963 caseStmt(hasCaseConstant(integerLiteral()))))));
2964 EXPECT_TRUE(matchAndVerifyResultTrue(
2965 "void x() { switch (42) { case 1: case 2: case 3: default:; } }",
2966 switchStmt(forEachSwitchCase(caseStmt().bind("x"))),
2967 new VerifyIdIsBoundTo<CaseStmt>("x", 3)));
2968}
2969
Daniel Jasperb54b7642012-09-20 14:12:57 +00002970TEST(ExceptionHandling, SimpleCases) {
2971 EXPECT_TRUE(matches("void foo() try { } catch(int X) { }", catchStmt()));
2972 EXPECT_TRUE(matches("void foo() try { } catch(int X) { }", tryStmt()));
2973 EXPECT_TRUE(notMatches("void foo() try { } catch(int X) { }", throwExpr()));
2974 EXPECT_TRUE(matches("void foo() try { throw; } catch(int X) { }",
2975 throwExpr()));
2976 EXPECT_TRUE(matches("void foo() try { throw 5;} catch(int X) { }",
2977 throwExpr()));
2978}
2979
Manuel Klimek4da21662012-07-06 05:48:52 +00002980TEST(HasConditionVariableStatement, DoesNotMatchCondition) {
2981 EXPECT_TRUE(notMatches(
2982 "void x() { if(true) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002983 ifStmt(hasConditionVariableStatement(declStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002984 EXPECT_TRUE(notMatches(
2985 "void x() { int x; if((x = 42)) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002986 ifStmt(hasConditionVariableStatement(declStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002987}
2988
2989TEST(HasConditionVariableStatement, MatchesConditionVariables) {
2990 EXPECT_TRUE(matches(
2991 "void x() { if(int* a = 0) {} }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002992 ifStmt(hasConditionVariableStatement(declStmt()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00002993}
2994
2995TEST(ForEach, BindsOneNode) {
2996 EXPECT_TRUE(matchAndVerifyResultTrue("class C { int x; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00002997 recordDecl(hasName("C"), forEach(fieldDecl(hasName("x")).bind("x"))),
Daniel Jaspera7564432012-09-13 13:11:25 +00002998 new VerifyIdIsBoundTo<FieldDecl>("x", 1)));
Manuel Klimek4da21662012-07-06 05:48:52 +00002999}
3000
3001TEST(ForEach, BindsMultipleNodes) {
3002 EXPECT_TRUE(matchAndVerifyResultTrue("class C { int x; int y; int z; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003003 recordDecl(hasName("C"), forEach(fieldDecl().bind("f"))),
Daniel Jaspera7564432012-09-13 13:11:25 +00003004 new VerifyIdIsBoundTo<FieldDecl>("f", 3)));
Manuel Klimek4da21662012-07-06 05:48:52 +00003005}
3006
3007TEST(ForEach, BindsRecursiveCombinations) {
3008 EXPECT_TRUE(matchAndVerifyResultTrue(
3009 "class C { class D { int x; int y; }; class E { int y; int z; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003010 recordDecl(hasName("C"),
3011 forEach(recordDecl(forEach(fieldDecl().bind("f"))))),
Daniel Jaspera7564432012-09-13 13:11:25 +00003012 new VerifyIdIsBoundTo<FieldDecl>("f", 4)));
Manuel Klimek4da21662012-07-06 05:48:52 +00003013}
3014
3015TEST(ForEachDescendant, BindsOneNode) {
3016 EXPECT_TRUE(matchAndVerifyResultTrue("class C { class D { int x; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003017 recordDecl(hasName("C"),
3018 forEachDescendant(fieldDecl(hasName("x")).bind("x"))),
Daniel Jaspera7564432012-09-13 13:11:25 +00003019 new VerifyIdIsBoundTo<FieldDecl>("x", 1)));
Manuel Klimek4da21662012-07-06 05:48:52 +00003020}
3021
Daniel Jasper5f684e92012-11-16 18:39:22 +00003022TEST(ForEachDescendant, NestedForEachDescendant) {
3023 DeclarationMatcher m = recordDecl(
3024 isDefinition(), decl().bind("x"), hasName("C"));
3025 EXPECT_TRUE(matchAndVerifyResultTrue(
3026 "class A { class B { class C {}; }; };",
3027 recordDecl(hasName("A"), anyOf(m, forEachDescendant(m))),
3028 new VerifyIdIsBoundTo<Decl>("x", "C")));
3029
Manuel Klimek054d0492013-06-19 15:42:45 +00003030 // Check that a partial match of 'm' that binds 'x' in the
3031 // first part of anyOf(m, anything()) will not overwrite the
3032 // binding created by the earlier binding in the hasDescendant.
3033 EXPECT_TRUE(matchAndVerifyResultTrue(
3034 "class A { class B { class C {}; }; };",
3035 recordDecl(hasName("A"), allOf(hasDescendant(m), anyOf(m, anything()))),
3036 new VerifyIdIsBoundTo<Decl>("x", "C")));
Daniel Jasper5f684e92012-11-16 18:39:22 +00003037}
3038
Manuel Klimek4da21662012-07-06 05:48:52 +00003039TEST(ForEachDescendant, BindsMultipleNodes) {
3040 EXPECT_TRUE(matchAndVerifyResultTrue(
3041 "class C { class D { int x; int y; }; "
3042 " class E { class F { int y; int z; }; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003043 recordDecl(hasName("C"), forEachDescendant(fieldDecl().bind("f"))),
Daniel Jaspera7564432012-09-13 13:11:25 +00003044 new VerifyIdIsBoundTo<FieldDecl>("f", 4)));
Manuel Klimek4da21662012-07-06 05:48:52 +00003045}
3046
3047TEST(ForEachDescendant, BindsRecursiveCombinations) {
3048 EXPECT_TRUE(matchAndVerifyResultTrue(
3049 "class C { class D { "
3050 " class E { class F { class G { int y; int z; }; }; }; }; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003051 recordDecl(hasName("C"), forEachDescendant(recordDecl(
3052 forEachDescendant(fieldDecl().bind("f"))))),
Daniel Jaspera7564432012-09-13 13:11:25 +00003053 new VerifyIdIsBoundTo<FieldDecl>("f", 8)));
Manuel Klimek4da21662012-07-06 05:48:52 +00003054}
3055
Manuel Klimek054d0492013-06-19 15:42:45 +00003056TEST(ForEachDescendant, BindsCombinations) {
3057 EXPECT_TRUE(matchAndVerifyResultTrue(
3058 "void f() { if(true) {} if (true) {} while (true) {} if (true) {} while "
3059 "(true) {} }",
3060 compoundStmt(forEachDescendant(ifStmt().bind("if")),
3061 forEachDescendant(whileStmt().bind("while"))),
3062 new VerifyIdIsBoundTo<IfStmt>("if", 6)));
3063}
3064
3065TEST(Has, DoesNotDeleteBindings) {
3066 EXPECT_TRUE(matchAndVerifyResultTrue(
3067 "class X { int a; };", recordDecl(decl().bind("x"), has(fieldDecl())),
3068 new VerifyIdIsBoundTo<Decl>("x", 1)));
3069}
3070
3071TEST(LoopingMatchers, DoNotOverwritePreviousMatchResultOnFailure) {
3072 // Those matchers cover all the cases where an inner matcher is called
3073 // and there is not a 1:1 relationship between the match of the outer
3074 // matcher and the match of the inner matcher.
3075 // The pattern to look for is:
3076 // ... return InnerMatcher.matches(...); ...
3077 // In which case no special handling is needed.
3078 //
3079 // On the other hand, if there are multiple alternative matches
3080 // (for example forEach*) or matches might be discarded (for example has*)
3081 // the implementation must make sure that the discarded matches do not
3082 // affect the bindings.
3083 // When new such matchers are added, add a test here that:
3084 // - matches a simple node, and binds it as the first thing in the matcher:
3085 // recordDecl(decl().bind("x"), hasName("X")))
3086 // - uses the matcher under test afterwards in a way that not the first
3087 // alternative is matched; for anyOf, that means the first branch
3088 // would need to return false; for hasAncestor, it means that not
3089 // the direct parent matches the inner matcher.
3090
3091 EXPECT_TRUE(matchAndVerifyResultTrue(
3092 "class X { int y; };",
3093 recordDecl(
3094 recordDecl().bind("x"), hasName("::X"),
3095 anyOf(forEachDescendant(recordDecl(hasName("Y"))), anything())),
3096 new VerifyIdIsBoundTo<CXXRecordDecl>("x", 1)));
3097 EXPECT_TRUE(matchAndVerifyResultTrue(
3098 "class X {};", recordDecl(recordDecl().bind("x"), hasName("::X"),
3099 anyOf(unless(anything()), anything())),
3100 new VerifyIdIsBoundTo<CXXRecordDecl>("x", 1)));
3101 EXPECT_TRUE(matchAndVerifyResultTrue(
3102 "template<typename T1, typename T2> class X {}; X<float, int> x;",
3103 classTemplateSpecializationDecl(
3104 decl().bind("x"),
3105 hasAnyTemplateArgument(refersToType(asString("int")))),
3106 new VerifyIdIsBoundTo<Decl>("x", 1)));
3107 EXPECT_TRUE(matchAndVerifyResultTrue(
3108 "class X { void f(); void g(); };",
3109 recordDecl(decl().bind("x"), hasMethod(hasName("g"))),
3110 new VerifyIdIsBoundTo<Decl>("x", 1)));
3111 EXPECT_TRUE(matchAndVerifyResultTrue(
3112 "class X { X() : a(1), b(2) {} double a; int b; };",
3113 recordDecl(decl().bind("x"),
3114 has(constructorDecl(
3115 hasAnyConstructorInitializer(forField(hasName("b")))))),
3116 new VerifyIdIsBoundTo<Decl>("x", 1)));
3117 EXPECT_TRUE(matchAndVerifyResultTrue(
3118 "void x(int, int) { x(0, 42); }",
3119 callExpr(expr().bind("x"), hasAnyArgument(integerLiteral(equals(42)))),
3120 new VerifyIdIsBoundTo<Expr>("x", 1)));
3121 EXPECT_TRUE(matchAndVerifyResultTrue(
3122 "void x(int, int y) {}",
3123 functionDecl(decl().bind("x"), hasAnyParameter(hasName("y"))),
3124 new VerifyIdIsBoundTo<Decl>("x", 1)));
3125 EXPECT_TRUE(matchAndVerifyResultTrue(
3126 "void x() { return; if (true) {} }",
3127 functionDecl(decl().bind("x"),
3128 has(compoundStmt(hasAnySubstatement(ifStmt())))),
3129 new VerifyIdIsBoundTo<Decl>("x", 1)));
3130 EXPECT_TRUE(matchAndVerifyResultTrue(
3131 "namespace X { void b(int); void b(); }"
3132 "using X::b;",
3133 usingDecl(decl().bind("x"), hasAnyUsingShadowDecl(hasTargetDecl(
3134 functionDecl(parameterCountIs(1))))),
3135 new VerifyIdIsBoundTo<Decl>("x", 1)));
3136 EXPECT_TRUE(matchAndVerifyResultTrue(
3137 "class A{}; class B{}; class C : B, A {};",
3138 recordDecl(decl().bind("x"), isDerivedFrom("::A")),
3139 new VerifyIdIsBoundTo<Decl>("x", 1)));
3140 EXPECT_TRUE(matchAndVerifyResultTrue(
3141 "class A{}; typedef A B; typedef A C; typedef A D;"
3142 "class E : A {};",
3143 recordDecl(decl().bind("x"), isDerivedFrom("C")),
3144 new VerifyIdIsBoundTo<Decl>("x", 1)));
3145 EXPECT_TRUE(matchAndVerifyResultTrue(
3146 "class A { class B { void f() {} }; };",
3147 functionDecl(decl().bind("x"), hasAncestor(recordDecl(hasName("::A")))),
3148 new VerifyIdIsBoundTo<Decl>("x", 1)));
3149 EXPECT_TRUE(matchAndVerifyResultTrue(
3150 "template <typename T> struct A { struct B {"
3151 " void f() { if(true) {} }"
3152 "}; };"
3153 "void t() { A<int>::B b; b.f(); }",
3154 ifStmt(stmt().bind("x"), hasAncestor(recordDecl(hasName("::A")))),
3155 new VerifyIdIsBoundTo<Stmt>("x", 2)));
3156 EXPECT_TRUE(matchAndVerifyResultTrue(
3157 "class A {};",
3158 recordDecl(hasName("::A"), decl().bind("x"), unless(hasName("fooble"))),
3159 new VerifyIdIsBoundTo<Decl>("x", 1)));
3160}
3161
Daniel Jasper11c98772012-11-11 22:14:55 +00003162TEST(ForEachDescendant, BindsCorrectNodes) {
3163 EXPECT_TRUE(matchAndVerifyResultTrue(
3164 "class C { void f(); int i; };",
3165 recordDecl(hasName("C"), forEachDescendant(decl().bind("decl"))),
3166 new VerifyIdIsBoundTo<FieldDecl>("decl", 1)));
3167 EXPECT_TRUE(matchAndVerifyResultTrue(
3168 "class C { void f() {} int i; };",
3169 recordDecl(hasName("C"), forEachDescendant(decl().bind("decl"))),
3170 new VerifyIdIsBoundTo<FunctionDecl>("decl", 1)));
3171}
3172
Manuel Klimek152ea0e2013-02-04 10:59:20 +00003173TEST(FindAll, BindsNodeOnMatch) {
3174 EXPECT_TRUE(matchAndVerifyResultTrue(
3175 "class A {};",
3176 recordDecl(hasName("::A"), findAll(recordDecl(hasName("::A")).bind("v"))),
3177 new VerifyIdIsBoundTo<CXXRecordDecl>("v", 1)));
3178}
3179
3180TEST(FindAll, BindsDescendantNodeOnMatch) {
3181 EXPECT_TRUE(matchAndVerifyResultTrue(
3182 "class A { int a; int b; };",
3183 recordDecl(hasName("::A"), findAll(fieldDecl().bind("v"))),
3184 new VerifyIdIsBoundTo<FieldDecl>("v", 2)));
3185}
3186
3187TEST(FindAll, BindsNodeAndDescendantNodesOnOneMatch) {
3188 EXPECT_TRUE(matchAndVerifyResultTrue(
3189 "class A { int a; int b; };",
3190 recordDecl(hasName("::A"),
3191 findAll(decl(anyOf(recordDecl(hasName("::A")).bind("v"),
3192 fieldDecl().bind("v"))))),
3193 new VerifyIdIsBoundTo<Decl>("v", 3)));
3194
3195 EXPECT_TRUE(matchAndVerifyResultTrue(
3196 "class A { class B {}; class C {}; };",
3197 recordDecl(hasName("::A"), findAll(recordDecl(isDefinition()).bind("v"))),
3198 new VerifyIdIsBoundTo<CXXRecordDecl>("v", 3)));
3199}
3200
Manuel Klimek73876732013-02-04 09:42:38 +00003201TEST(EachOf, TriggersForEachMatch) {
3202 EXPECT_TRUE(matchAndVerifyResultTrue(
3203 "class A { int a; int b; };",
3204 recordDecl(eachOf(has(fieldDecl(hasName("a")).bind("v")),
3205 has(fieldDecl(hasName("b")).bind("v")))),
3206 new VerifyIdIsBoundTo<FieldDecl>("v", 2)));
3207}
3208
3209TEST(EachOf, BehavesLikeAnyOfUnlessBothMatch) {
3210 EXPECT_TRUE(matchAndVerifyResultTrue(
3211 "class A { int a; int c; };",
3212 recordDecl(eachOf(has(fieldDecl(hasName("a")).bind("v")),
3213 has(fieldDecl(hasName("b")).bind("v")))),
3214 new VerifyIdIsBoundTo<FieldDecl>("v", 1)));
3215 EXPECT_TRUE(matchAndVerifyResultTrue(
3216 "class A { int c; int b; };",
3217 recordDecl(eachOf(has(fieldDecl(hasName("a")).bind("v")),
3218 has(fieldDecl(hasName("b")).bind("v")))),
3219 new VerifyIdIsBoundTo<FieldDecl>("v", 1)));
3220 EXPECT_TRUE(notMatches(
3221 "class A { int c; int d; };",
3222 recordDecl(eachOf(has(fieldDecl(hasName("a")).bind("v")),
3223 has(fieldDecl(hasName("b")).bind("v"))))));
3224}
Manuel Klimek4da21662012-07-06 05:48:52 +00003225
3226TEST(IsTemplateInstantiation, MatchesImplicitClassTemplateInstantiation) {
3227 // Make sure that we can both match the class by name (::X) and by the type
3228 // the template was instantiated with (via a field).
3229
3230 EXPECT_TRUE(matches(
3231 "template <typename T> class X {}; class A {}; X<A> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003232 recordDecl(hasName("::X"), isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00003233
3234 EXPECT_TRUE(matches(
3235 "template <typename T> class X { T t; }; class A {}; X<A> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003236 recordDecl(isTemplateInstantiation(), hasDescendant(
3237 fieldDecl(hasType(recordDecl(hasName("A"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00003238}
3239
3240TEST(IsTemplateInstantiation, MatchesImplicitFunctionTemplateInstantiation) {
3241 EXPECT_TRUE(matches(
3242 "template <typename T> void f(T t) {} class A {}; void g() { f(A()); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003243 functionDecl(hasParameter(0, hasType(recordDecl(hasName("A")))),
Manuel Klimek4da21662012-07-06 05:48:52 +00003244 isTemplateInstantiation())));
3245}
3246
3247TEST(IsTemplateInstantiation, MatchesExplicitClassTemplateInstantiation) {
3248 EXPECT_TRUE(matches(
3249 "template <typename T> class X { T t; }; class A {};"
3250 "template class X<A>;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003251 recordDecl(isTemplateInstantiation(), hasDescendant(
3252 fieldDecl(hasType(recordDecl(hasName("A"))))))));
Manuel Klimek4da21662012-07-06 05:48:52 +00003253}
3254
3255TEST(IsTemplateInstantiation,
3256 MatchesInstantiationOfPartiallySpecializedClassTemplate) {
3257 EXPECT_TRUE(matches(
3258 "template <typename T> class X {};"
3259 "template <typename T> class X<T*> {}; class A {}; X<A*> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003260 recordDecl(hasName("::X"), isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00003261}
3262
3263TEST(IsTemplateInstantiation,
3264 MatchesInstantiationOfClassTemplateNestedInNonTemplate) {
3265 EXPECT_TRUE(matches(
3266 "class A {};"
3267 "class X {"
3268 " template <typename U> class Y { U u; };"
3269 " Y<A> y;"
3270 "};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003271 recordDecl(hasName("::X::Y"), isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00003272}
3273
3274TEST(IsTemplateInstantiation, DoesNotMatchInstantiationsInsideOfInstantiation) {
3275 // FIXME: Figure out whether this makes sense. It doesn't affect the
3276 // normal use case as long as the uppermost instantiation always is marked
3277 // as template instantiation, but it might be confusing as a predicate.
3278 EXPECT_TRUE(matches(
3279 "class A {};"
3280 "template <typename T> class X {"
3281 " template <typename U> class Y { U u; };"
3282 " Y<T> y;"
3283 "}; X<A> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003284 recordDecl(hasName("::X<A>::Y"), unless(isTemplateInstantiation()))));
Manuel Klimek4da21662012-07-06 05:48:52 +00003285}
3286
3287TEST(IsTemplateInstantiation, DoesNotMatchExplicitClassTemplateSpecialization) {
3288 EXPECT_TRUE(notMatches(
3289 "template <typename T> class X {}; class A {};"
3290 "template <> class X<A> {}; X<A> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003291 recordDecl(hasName("::X"), isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00003292}
3293
3294TEST(IsTemplateInstantiation, DoesNotMatchNonTemplate) {
3295 EXPECT_TRUE(notMatches(
3296 "class A {}; class Y { A a; };",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003297 recordDecl(isTemplateInstantiation())));
Manuel Klimek4da21662012-07-06 05:48:52 +00003298}
3299
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003300TEST(IsExplicitTemplateSpecialization,
3301 DoesNotMatchPrimaryTemplate) {
3302 EXPECT_TRUE(notMatches(
3303 "template <typename T> class X {};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003304 recordDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003305 EXPECT_TRUE(notMatches(
3306 "template <typename T> void f(T t);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003307 functionDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003308}
3309
3310TEST(IsExplicitTemplateSpecialization,
3311 DoesNotMatchExplicitTemplateInstantiations) {
3312 EXPECT_TRUE(notMatches(
3313 "template <typename T> class X {};"
3314 "template class X<int>; extern template class X<long>;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003315 recordDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003316 EXPECT_TRUE(notMatches(
3317 "template <typename T> void f(T t) {}"
3318 "template void f(int t); extern template void f(long t);",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003319 functionDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003320}
3321
3322TEST(IsExplicitTemplateSpecialization,
3323 DoesNotMatchImplicitTemplateInstantiations) {
3324 EXPECT_TRUE(notMatches(
3325 "template <typename T> class X {}; X<int> x;",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003326 recordDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003327 EXPECT_TRUE(notMatches(
3328 "template <typename T> void f(T t); void g() { f(10); }",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003329 functionDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003330}
3331
3332TEST(IsExplicitTemplateSpecialization,
3333 MatchesExplicitTemplateSpecializations) {
3334 EXPECT_TRUE(matches(
3335 "template <typename T> class X {};"
3336 "template<> class X<int> {};",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003337 recordDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003338 EXPECT_TRUE(matches(
3339 "template <typename T> void f(T t) {}"
3340 "template<> void f(int t) {}",
Daniel Jasper2dc75ed2012-08-24 05:12:34 +00003341 functionDecl(isExplicitTemplateSpecialization())));
Dmitri Gribenko8456ae62012-08-17 18:42:47 +00003342}
3343
Manuel Klimek579b1202012-09-07 09:26:10 +00003344TEST(HasAncenstor, MatchesDeclarationAncestors) {
3345 EXPECT_TRUE(matches(
3346 "class A { class B { class C {}; }; };",
3347 recordDecl(hasName("C"), hasAncestor(recordDecl(hasName("A"))))));
3348}
3349
3350TEST(HasAncenstor, FailsIfNoAncestorMatches) {
3351 EXPECT_TRUE(notMatches(
3352 "class A { class B { class C {}; }; };",
3353 recordDecl(hasName("C"), hasAncestor(recordDecl(hasName("X"))))));
3354}
3355
3356TEST(HasAncestor, MatchesDeclarationsThatGetVisitedLater) {
3357 EXPECT_TRUE(matches(
3358 "class A { class B { void f() { C c; } class C {}; }; };",
3359 varDecl(hasName("c"), hasType(recordDecl(hasName("C"),
3360 hasAncestor(recordDecl(hasName("A"))))))));
3361}
3362
3363TEST(HasAncenstor, MatchesStatementAncestors) {
3364 EXPECT_TRUE(matches(
3365 "void f() { if (true) { while (false) { 42; } } }",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00003366 integerLiteral(equals(42), hasAncestor(ifStmt()))));
Manuel Klimek579b1202012-09-07 09:26:10 +00003367}
3368
3369TEST(HasAncestor, DrillsThroughDifferentHierarchies) {
3370 EXPECT_TRUE(matches(
3371 "void f() { if (true) { int x = 42; } }",
Daniel Jasper3680b4f2012-09-18 13:09:13 +00003372 integerLiteral(equals(42), hasAncestor(functionDecl(hasName("f"))))));
Manuel Klimek579b1202012-09-07 09:26:10 +00003373}
3374
3375TEST(HasAncestor, BindsRecursiveCombinations) {
3376 EXPECT_TRUE(matchAndVerifyResultTrue(
3377 "class C { class D { class E { class F { int y; }; }; }; };",
3378 fieldDecl(hasAncestor(recordDecl(hasAncestor(recordDecl().bind("r"))))),
Daniel Jaspera7564432012-09-13 13:11:25 +00003379 new VerifyIdIsBoundTo<CXXRecordDecl>("r", 1)));
Manuel Klimek579b1202012-09-07 09:26:10 +00003380}
3381
3382TEST(HasAncestor, BindsCombinationsWithHasDescendant) {
3383 EXPECT_TRUE(matchAndVerifyResultTrue(
3384 "class C { class D { class E { class F { int y; }; }; }; };",
3385 fieldDecl(hasAncestor(
3386 decl(
3387 hasDescendant(recordDecl(isDefinition(),
3388 hasAncestor(recordDecl())))
3389 ).bind("d")
3390 )),
Daniel Jaspera7564432012-09-13 13:11:25 +00003391 new VerifyIdIsBoundTo<CXXRecordDecl>("d", "E")));
Manuel Klimek579b1202012-09-07 09:26:10 +00003392}
3393
Manuel Klimek374516c2013-03-14 16:33:21 +00003394TEST(HasAncestor, MatchesClosestAncestor) {
3395 EXPECT_TRUE(matchAndVerifyResultTrue(
3396 "template <typename T> struct C {"
3397 " void f(int) {"
3398 " struct I { void g(T) { int x; } } i; i.g(42);"
3399 " }"
3400 "};"
3401 "template struct C<int>;",
3402 varDecl(hasName("x"),
3403 hasAncestor(functionDecl(hasParameter(
3404 0, varDecl(hasType(asString("int"))))).bind("f"))).bind("v"),
3405 new VerifyIdIsBoundTo<FunctionDecl>("f", "g", 2)));
3406}
3407
Manuel Klimek579b1202012-09-07 09:26:10 +00003408TEST(HasAncestor, MatchesInTemplateInstantiations) {
3409 EXPECT_TRUE(matches(
3410 "template <typename T> struct A { struct B { struct C { T t; }; }; }; "
3411 "A<int>::B::C a;",
3412 fieldDecl(hasType(asString("int")),
3413 hasAncestor(recordDecl(hasName("A"))))));
3414}
3415
3416TEST(HasAncestor, MatchesInImplicitCode) {
3417 EXPECT_TRUE(matches(
3418 "struct X {}; struct A { A() {} X x; };",
3419 constructorDecl(
3420 hasAnyConstructorInitializer(withInitializer(expr(
3421 hasAncestor(recordDecl(hasName("A")))))))));
3422}
3423
Daniel Jasperc99a3ad2012-10-22 16:26:51 +00003424TEST(HasParent, MatchesOnlyParent) {
3425 EXPECT_TRUE(matches(
3426 "void f() { if (true) { int x = 42; } }",
3427 compoundStmt(hasParent(ifStmt()))));
3428 EXPECT_TRUE(notMatches(
3429 "void f() { for (;;) { int x = 42; } }",
3430 compoundStmt(hasParent(ifStmt()))));
3431 EXPECT_TRUE(notMatches(
3432 "void f() { if (true) for (;;) { int x = 42; } }",
3433 compoundStmt(hasParent(ifStmt()))));
3434}
3435
Manuel Klimek30ace372012-12-06 14:42:48 +00003436TEST(HasAncestor, MatchesAllAncestors) {
3437 EXPECT_TRUE(matches(
3438 "template <typename T> struct C { static void f() { 42; } };"
3439 "void t() { C<int>::f(); }",
3440 integerLiteral(
3441 equals(42),
3442 allOf(hasAncestor(recordDecl(isTemplateInstantiation())),
3443 hasAncestor(recordDecl(unless(isTemplateInstantiation())))))));
3444}
3445
3446TEST(HasParent, MatchesAllParents) {
3447 EXPECT_TRUE(matches(
3448 "template <typename T> struct C { static void f() { 42; } };"
3449 "void t() { C<int>::f(); }",
3450 integerLiteral(
3451 equals(42),
3452 hasParent(compoundStmt(hasParent(functionDecl(
3453 hasParent(recordDecl(isTemplateInstantiation())))))))));
3454 EXPECT_TRUE(matches(
3455 "template <typename T> struct C { static void f() { 42; } };"
3456 "void t() { C<int>::f(); }",
3457 integerLiteral(
3458 equals(42),
3459 hasParent(compoundStmt(hasParent(functionDecl(
3460 hasParent(recordDecl(unless(isTemplateInstantiation()))))))))));
3461 EXPECT_TRUE(matches(
3462 "template <typename T> struct C { static void f() { 42; } };"
3463 "void t() { C<int>::f(); }",
3464 integerLiteral(equals(42),
3465 hasParent(compoundStmt(allOf(
3466 hasParent(functionDecl(
3467 hasParent(recordDecl(isTemplateInstantiation())))),
3468 hasParent(functionDecl(hasParent(recordDecl(
3469 unless(isTemplateInstantiation())))))))))));
Manuel Klimek374516c2013-03-14 16:33:21 +00003470 EXPECT_TRUE(
3471 notMatches("template <typename T> struct C { static void f() {} };"
3472 "void t() { C<int>::f(); }",
3473 compoundStmt(hasParent(recordDecl()))));
Manuel Klimek30ace372012-12-06 14:42:48 +00003474}
3475
Daniel Jasperce620072012-10-17 08:52:59 +00003476TEST(TypeMatching, MatchesTypes) {
3477 EXPECT_TRUE(matches("struct S {};", qualType().bind("loc")));
3478}
3479
3480TEST(TypeMatching, MatchesArrayTypes) {
3481 EXPECT_TRUE(matches("int a[] = {2,3};", arrayType()));
3482 EXPECT_TRUE(matches("int a[42];", arrayType()));
3483 EXPECT_TRUE(matches("void f(int b) { int a[b]; }", arrayType()));
3484
3485 EXPECT_TRUE(notMatches("struct A {}; A a[7];",
3486 arrayType(hasElementType(builtinType()))));
3487
3488 EXPECT_TRUE(matches(
3489 "int const a[] = { 2, 3 };",
3490 qualType(arrayType(hasElementType(builtinType())))));
3491 EXPECT_TRUE(matches(
3492 "int const a[] = { 2, 3 };",
3493 qualType(isConstQualified(), arrayType(hasElementType(builtinType())))));
3494 EXPECT_TRUE(matches(
3495 "typedef const int T; T x[] = { 1, 2 };",
3496 qualType(isConstQualified(), arrayType())));
3497
3498 EXPECT_TRUE(notMatches(
3499 "int a[] = { 2, 3 };",
3500 qualType(isConstQualified(), arrayType(hasElementType(builtinType())))));
3501 EXPECT_TRUE(notMatches(
3502 "int a[] = { 2, 3 };",
3503 qualType(arrayType(hasElementType(isConstQualified(), builtinType())))));
3504 EXPECT_TRUE(notMatches(
3505 "int const a[] = { 2, 3 };",
3506 qualType(arrayType(hasElementType(builtinType())),
3507 unless(isConstQualified()))));
3508
3509 EXPECT_TRUE(matches("int a[2];",
3510 constantArrayType(hasElementType(builtinType()))));
3511 EXPECT_TRUE(matches("const int a = 0;", qualType(isInteger())));
3512}
3513
3514TEST(TypeMatching, MatchesComplexTypes) {
3515 EXPECT_TRUE(matches("_Complex float f;", complexType()));
3516 EXPECT_TRUE(matches(
3517 "_Complex float f;",
3518 complexType(hasElementType(builtinType()))));
3519 EXPECT_TRUE(notMatches(
3520 "_Complex float f;",
3521 complexType(hasElementType(isInteger()))));
3522}
3523
3524TEST(TypeMatching, MatchesConstantArrayTypes) {
3525 EXPECT_TRUE(matches("int a[2];", constantArrayType()));
3526 EXPECT_TRUE(notMatches(
3527 "void f() { int a[] = { 2, 3 }; int b[a[0]]; }",
3528 constantArrayType(hasElementType(builtinType()))));
3529
3530 EXPECT_TRUE(matches("int a[42];", constantArrayType(hasSize(42))));
3531 EXPECT_TRUE(matches("int b[2*21];", constantArrayType(hasSize(42))));
3532 EXPECT_TRUE(notMatches("int c[41], d[43];", constantArrayType(hasSize(42))));
3533}
3534
3535TEST(TypeMatching, MatchesDependentSizedArrayTypes) {
3536 EXPECT_TRUE(matches(
3537 "template <typename T, int Size> class array { T data[Size]; };",
3538 dependentSizedArrayType()));
3539 EXPECT_TRUE(notMatches(
3540 "int a[42]; int b[] = { 2, 3 }; void f() { int c[b[0]]; }",
3541 dependentSizedArrayType()));
3542}
3543
3544TEST(TypeMatching, MatchesIncompleteArrayType) {
3545 EXPECT_TRUE(matches("int a[] = { 2, 3 };", incompleteArrayType()));
3546 EXPECT_TRUE(matches("void f(int a[]) {}", incompleteArrayType()));
3547
3548 EXPECT_TRUE(notMatches("int a[42]; void f() { int b[a[0]]; }",
3549 incompleteArrayType()));
3550}
3551
3552TEST(TypeMatching, MatchesVariableArrayType) {
3553 EXPECT_TRUE(matches("void f(int b) { int a[b]; }", variableArrayType()));
3554 EXPECT_TRUE(notMatches("int a[] = {2, 3}; int b[42];", variableArrayType()));
3555
3556 EXPECT_TRUE(matches(
3557 "void f(int b) { int a[b]; }",
3558 variableArrayType(hasSizeExpr(ignoringImpCasts(declRefExpr(to(
3559 varDecl(hasName("b")))))))));
3560}
3561
3562TEST(TypeMatching, MatchesAtomicTypes) {
3563 EXPECT_TRUE(matches("_Atomic(int) i;", atomicType()));
3564
3565 EXPECT_TRUE(matches("_Atomic(int) i;",
3566 atomicType(hasValueType(isInteger()))));
3567 EXPECT_TRUE(notMatches("_Atomic(float) f;",
3568 atomicType(hasValueType(isInteger()))));
3569}
3570
3571TEST(TypeMatching, MatchesAutoTypes) {
3572 EXPECT_TRUE(matches("auto i = 2;", autoType()));
3573 EXPECT_TRUE(matches("int v[] = { 2, 3 }; void f() { for (int i : v) {} }",
3574 autoType()));
3575
Richard Smith9b131752013-04-30 21:23:01 +00003576 // FIXME: Matching against the type-as-written can't work here, because the
3577 // type as written was not deduced.
3578 //EXPECT_TRUE(matches("auto a = 1;",
3579 // autoType(hasDeducedType(isInteger()))));
3580 //EXPECT_TRUE(notMatches("auto b = 2.0;",
3581 // autoType(hasDeducedType(isInteger()))));
Daniel Jasperce620072012-10-17 08:52:59 +00003582}
3583
Daniel Jaspera267cf62012-10-29 10:14:44 +00003584TEST(TypeMatching, MatchesFunctionTypes) {
3585 EXPECT_TRUE(matches("int (*f)(int);", functionType()));
3586 EXPECT_TRUE(matches("void f(int i) {}", functionType()));
3587}
3588
Edwin Vane88be2fd2013-04-01 18:33:34 +00003589TEST(TypeMatching, MatchesParenType) {
3590 EXPECT_TRUE(
3591 matches("int (*array)[4];", varDecl(hasType(pointsTo(parenType())))));
3592 EXPECT_TRUE(notMatches("int *array[4];", varDecl(hasType(parenType()))));
3593
3594 EXPECT_TRUE(matches(
3595 "int (*ptr_to_func)(int);",
3596 varDecl(hasType(pointsTo(parenType(innerType(functionType())))))));
3597 EXPECT_TRUE(notMatches(
3598 "int (*ptr_to_array)[4];",
3599 varDecl(hasType(pointsTo(parenType(innerType(functionType())))))));
3600}
3601
Daniel Jasperce620072012-10-17 08:52:59 +00003602TEST(TypeMatching, PointerTypes) {
Daniel Jasper1802daf2012-10-17 13:35:36 +00003603 // FIXME: Reactive when these tests can be more specific (not matching
3604 // implicit code on certain platforms), likely when we have hasDescendant for
3605 // Types/TypeLocs.
3606 //EXPECT_TRUE(matchAndVerifyResultTrue(
3607 // "int* a;",
3608 // pointerTypeLoc(pointeeLoc(typeLoc().bind("loc"))),
3609 // new VerifyIdIsBoundTo<TypeLoc>("loc", 1)));
3610 //EXPECT_TRUE(matchAndVerifyResultTrue(
3611 // "int* a;",
3612 // pointerTypeLoc().bind("loc"),
3613 // new VerifyIdIsBoundTo<TypeLoc>("loc", 1)));
Daniel Jasperce620072012-10-17 08:52:59 +00003614 EXPECT_TRUE(matches(
3615 "int** a;",
David Blaikie5be093c2013-02-18 19:04:16 +00003616 loc(pointerType(pointee(qualType())))));
Daniel Jasperce620072012-10-17 08:52:59 +00003617 EXPECT_TRUE(matches(
3618 "int** a;",
3619 loc(pointerType(pointee(pointerType())))));
3620 EXPECT_TRUE(matches(
3621 "int* b; int* * const a = &b;",
3622 loc(qualType(isConstQualified(), pointerType()))));
3623
3624 std::string Fragment = "struct A { int i; }; int A::* ptr = &A::i;";
Daniel Jasper1802daf2012-10-17 13:35:36 +00003625 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3626 hasType(blockPointerType()))));
3627 EXPECT_TRUE(matches(Fragment, varDecl(hasName("ptr"),
3628 hasType(memberPointerType()))));
3629 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3630 hasType(pointerType()))));
3631 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3632 hasType(referenceType()))));
Edwin Vanef4b48042013-03-07 15:44:40 +00003633 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3634 hasType(lValueReferenceType()))));
3635 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3636 hasType(rValueReferenceType()))));
Daniel Jasperce620072012-10-17 08:52:59 +00003637
Daniel Jasper1802daf2012-10-17 13:35:36 +00003638 Fragment = "int *ptr;";
3639 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3640 hasType(blockPointerType()))));
3641 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3642 hasType(memberPointerType()))));
3643 EXPECT_TRUE(matches(Fragment, varDecl(hasName("ptr"),
3644 hasType(pointerType()))));
3645 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ptr"),
3646 hasType(referenceType()))));
Daniel Jasperce620072012-10-17 08:52:59 +00003647
Daniel Jasper1802daf2012-10-17 13:35:36 +00003648 Fragment = "int a; int &ref = a;";
3649 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3650 hasType(blockPointerType()))));
3651 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3652 hasType(memberPointerType()))));
3653 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3654 hasType(pointerType()))));
3655 EXPECT_TRUE(matches(Fragment, varDecl(hasName("ref"),
3656 hasType(referenceType()))));
Edwin Vanef4b48042013-03-07 15:44:40 +00003657 EXPECT_TRUE(matches(Fragment, varDecl(hasName("ref"),
3658 hasType(lValueReferenceType()))));
3659 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3660 hasType(rValueReferenceType()))));
3661
3662 Fragment = "int &&ref = 2;";
3663 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3664 hasType(blockPointerType()))));
3665 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3666 hasType(memberPointerType()))));
3667 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3668 hasType(pointerType()))));
3669 EXPECT_TRUE(matches(Fragment, varDecl(hasName("ref"),
3670 hasType(referenceType()))));
3671 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("ref"),
3672 hasType(lValueReferenceType()))));
3673 EXPECT_TRUE(matches(Fragment, varDecl(hasName("ref"),
3674 hasType(rValueReferenceType()))));
3675}
3676
3677TEST(TypeMatching, AutoRefTypes) {
3678 std::string Fragment = "auto a = 1;"
3679 "auto b = a;"
3680 "auto &c = a;"
3681 "auto &&d = c;"
3682 "auto &&e = 2;";
3683 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("a"),
3684 hasType(referenceType()))));
3685 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("b"),
3686 hasType(referenceType()))));
3687 EXPECT_TRUE(matches(Fragment, varDecl(hasName("c"),
3688 hasType(referenceType()))));
3689 EXPECT_TRUE(matches(Fragment, varDecl(hasName("c"),
3690 hasType(lValueReferenceType()))));
3691 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("c"),
3692 hasType(rValueReferenceType()))));
3693 EXPECT_TRUE(matches(Fragment, varDecl(hasName("d"),
3694 hasType(referenceType()))));
3695 EXPECT_TRUE(matches(Fragment, varDecl(hasName("d"),
3696 hasType(lValueReferenceType()))));
3697 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("d"),
3698 hasType(rValueReferenceType()))));
3699 EXPECT_TRUE(matches(Fragment, varDecl(hasName("e"),
3700 hasType(referenceType()))));
3701 EXPECT_TRUE(notMatches(Fragment, varDecl(hasName("e"),
3702 hasType(lValueReferenceType()))));
3703 EXPECT_TRUE(matches(Fragment, varDecl(hasName("e"),
3704 hasType(rValueReferenceType()))));
Daniel Jasperce620072012-10-17 08:52:59 +00003705}
3706
3707TEST(TypeMatching, PointeeTypes) {
3708 EXPECT_TRUE(matches("int b; int &a = b;",
3709 referenceType(pointee(builtinType()))));
3710 EXPECT_TRUE(matches("int *a;", pointerType(pointee(builtinType()))));
3711
3712 EXPECT_TRUE(matches("int *a;",
David Blaikie5be093c2013-02-18 19:04:16 +00003713 loc(pointerType(pointee(builtinType())))));
Daniel Jasperce620072012-10-17 08:52:59 +00003714
3715 EXPECT_TRUE(matches(
3716 "int const *A;",
3717 pointerType(pointee(isConstQualified(), builtinType()))));
3718 EXPECT_TRUE(notMatches(
3719 "int *A;",
3720 pointerType(pointee(isConstQualified(), builtinType()))));
3721}
3722
3723TEST(TypeMatching, MatchesPointersToConstTypes) {
3724 EXPECT_TRUE(matches("int b; int * const a = &b;",
3725 loc(pointerType())));
3726 EXPECT_TRUE(matches("int b; int * const a = &b;",
David Blaikie5be093c2013-02-18 19:04:16 +00003727 loc(pointerType())));
Daniel Jasperce620072012-10-17 08:52:59 +00003728 EXPECT_TRUE(matches(
3729 "int b; const int * a = &b;",
David Blaikie5be093c2013-02-18 19:04:16 +00003730 loc(pointerType(pointee(builtinType())))));
Daniel Jasperce620072012-10-17 08:52:59 +00003731 EXPECT_TRUE(matches(
3732 "int b; const int * a = &b;",
3733 pointerType(pointee(builtinType()))));
3734}
3735
3736TEST(TypeMatching, MatchesTypedefTypes) {
Daniel Jasper1802daf2012-10-17 13:35:36 +00003737 EXPECT_TRUE(matches("typedef int X; X a;", varDecl(hasName("a"),
3738 hasType(typedefType()))));
Daniel Jasperce620072012-10-17 08:52:59 +00003739}
3740
Edwin Vane3abf7782013-02-25 14:49:29 +00003741TEST(TypeMatching, MatchesTemplateSpecializationType) {
Edwin Vane742d9e72013-02-25 20:43:32 +00003742 EXPECT_TRUE(matches("template <typename T> class A{}; A<int> a;",
Edwin Vane3abf7782013-02-25 14:49:29 +00003743 templateSpecializationType()));
3744}
3745
Edwin Vane742d9e72013-02-25 20:43:32 +00003746TEST(TypeMatching, MatchesRecordType) {
3747 EXPECT_TRUE(matches("class C{}; C c;", recordType()));
Manuel Klimek0cc798f2013-02-27 11:56:58 +00003748 EXPECT_TRUE(matches("struct S{}; S s;",
3749 recordType(hasDeclaration(recordDecl(hasName("S"))))));
3750 EXPECT_TRUE(notMatches("int i;",
3751 recordType(hasDeclaration(recordDecl(hasName("S"))))));
Edwin Vane742d9e72013-02-25 20:43:32 +00003752}
3753
3754TEST(TypeMatching, MatchesElaboratedType) {
3755 EXPECT_TRUE(matches(
3756 "namespace N {"
3757 " namespace M {"
3758 " class D {};"
3759 " }"
3760 "}"
3761 "N::M::D d;", elaboratedType()));
3762 EXPECT_TRUE(matches("class C {} c;", elaboratedType()));
3763 EXPECT_TRUE(notMatches("class C {}; C c;", elaboratedType()));
3764}
3765
3766TEST(ElaboratedTypeNarrowing, hasQualifier) {
3767 EXPECT_TRUE(matches(
3768 "namespace N {"
3769 " namespace M {"
3770 " class D {};"
3771 " }"
3772 "}"
3773 "N::M::D d;",
3774 elaboratedType(hasQualifier(hasPrefix(specifiesNamespace(hasName("N")))))));
3775 EXPECT_TRUE(notMatches(
3776 "namespace M {"
3777 " class D {};"
3778 "}"
3779 "M::D d;",
3780 elaboratedType(hasQualifier(hasPrefix(specifiesNamespace(hasName("N")))))));
Edwin Vaneaec89ac2013-03-04 17:51:00 +00003781 EXPECT_TRUE(notMatches(
3782 "struct D {"
3783 "} d;",
3784 elaboratedType(hasQualifier(nestedNameSpecifier()))));
Edwin Vane742d9e72013-02-25 20:43:32 +00003785}
3786
3787TEST(ElaboratedTypeNarrowing, namesType) {
3788 EXPECT_TRUE(matches(
3789 "namespace N {"
3790 " namespace M {"
3791 " class D {};"
3792 " }"
3793 "}"
3794 "N::M::D d;",
3795 elaboratedType(elaboratedType(namesType(recordType(
3796 hasDeclaration(namedDecl(hasName("D")))))))));
3797 EXPECT_TRUE(notMatches(
3798 "namespace M {"
3799 " class D {};"
3800 "}"
3801 "M::D d;",
3802 elaboratedType(elaboratedType(namesType(typedefType())))));
3803}
3804
Daniel Jaspera7564432012-09-13 13:11:25 +00003805TEST(NNS, MatchesNestedNameSpecifiers) {
3806 EXPECT_TRUE(matches("namespace ns { struct A {}; } ns::A a;",
3807 nestedNameSpecifier()));
3808 EXPECT_TRUE(matches("template <typename T> class A { typename T::B b; };",
3809 nestedNameSpecifier()));
3810 EXPECT_TRUE(matches("struct A { void f(); }; void A::f() {}",
3811 nestedNameSpecifier()));
3812
3813 EXPECT_TRUE(matches(
3814 "struct A { static void f() {} }; void g() { A::f(); }",
3815 nestedNameSpecifier()));
3816 EXPECT_TRUE(notMatches(
3817 "struct A { static void f() {} }; void g(A* a) { a->f(); }",
3818 nestedNameSpecifier()));
3819}
3820
Daniel Jasperb54b7642012-09-20 14:12:57 +00003821TEST(NullStatement, SimpleCases) {
3822 EXPECT_TRUE(matches("void f() {int i;;}", nullStmt()));
3823 EXPECT_TRUE(notMatches("void f() {int i;}", nullStmt()));
3824}
3825
Daniel Jaspera7564432012-09-13 13:11:25 +00003826TEST(NNS, MatchesTypes) {
3827 NestedNameSpecifierMatcher Matcher = nestedNameSpecifier(
3828 specifiesType(hasDeclaration(recordDecl(hasName("A")))));
3829 EXPECT_TRUE(matches("struct A { struct B {}; }; A::B b;", Matcher));
3830 EXPECT_TRUE(matches("struct A { struct B { struct C {}; }; }; A::B::C c;",
3831 Matcher));
3832 EXPECT_TRUE(notMatches("namespace A { struct B {}; } A::B b;", Matcher));
3833}
3834
3835TEST(NNS, MatchesNamespaceDecls) {
3836 NestedNameSpecifierMatcher Matcher = nestedNameSpecifier(
3837 specifiesNamespace(hasName("ns")));
3838 EXPECT_TRUE(matches("namespace ns { struct A {}; } ns::A a;", Matcher));
3839 EXPECT_TRUE(notMatches("namespace xx { struct A {}; } xx::A a;", Matcher));
3840 EXPECT_TRUE(notMatches("struct ns { struct A {}; }; ns::A a;", Matcher));
3841}
3842
3843TEST(NNS, BindsNestedNameSpecifiers) {
3844 EXPECT_TRUE(matchAndVerifyResultTrue(
3845 "namespace ns { struct E { struct B {}; }; } ns::E::B b;",
3846 nestedNameSpecifier(specifiesType(asString("struct ns::E"))).bind("nns"),
3847 new VerifyIdIsBoundTo<NestedNameSpecifier>("nns", "ns::struct E::")));
3848}
3849
3850TEST(NNS, BindsNestedNameSpecifierLocs) {
3851 EXPECT_TRUE(matchAndVerifyResultTrue(
3852 "namespace ns { struct B {}; } ns::B b;",
3853 loc(nestedNameSpecifier()).bind("loc"),
3854 new VerifyIdIsBoundTo<NestedNameSpecifierLoc>("loc", 1)));
3855}
3856
3857TEST(NNS, MatchesNestedNameSpecifierPrefixes) {
3858 EXPECT_TRUE(matches(
3859 "struct A { struct B { struct C {}; }; }; A::B::C c;",
3860 nestedNameSpecifier(hasPrefix(specifiesType(asString("struct A"))))));
3861 EXPECT_TRUE(matches(
3862 "struct A { struct B { struct C {}; }; }; A::B::C c;",
Daniel Jasperce620072012-10-17 08:52:59 +00003863 nestedNameSpecifierLoc(hasPrefix(
3864 specifiesTypeLoc(loc(qualType(asString("struct A"))))))));
Daniel Jaspera7564432012-09-13 13:11:25 +00003865}
3866
Daniel Jasperd1ce3c12012-10-30 15:42:00 +00003867TEST(NNS, DescendantsOfNestedNameSpecifiers) {
3868 std::string Fragment =
3869 "namespace a { struct A { struct B { struct C {}; }; }; };"
3870 "void f() { a::A::B::C c; }";
3871 EXPECT_TRUE(matches(
3872 Fragment,
3873 nestedNameSpecifier(specifiesType(asString("struct a::A::B")),
3874 hasDescendant(nestedNameSpecifier(
3875 specifiesNamespace(hasName("a")))))));
3876 EXPECT_TRUE(notMatches(
3877 Fragment,
3878 nestedNameSpecifier(specifiesType(asString("struct a::A::B")),
3879 has(nestedNameSpecifier(
3880 specifiesNamespace(hasName("a")))))));
3881 EXPECT_TRUE(matches(
3882 Fragment,
3883 nestedNameSpecifier(specifiesType(asString("struct a::A")),
3884 has(nestedNameSpecifier(
3885 specifiesNamespace(hasName("a")))))));
3886
3887 // Not really useful because a NestedNameSpecifier can af at most one child,
3888 // but to complete the interface.
3889 EXPECT_TRUE(matchAndVerifyResultTrue(
3890 Fragment,
3891 nestedNameSpecifier(specifiesType(asString("struct a::A::B")),
3892 forEach(nestedNameSpecifier().bind("x"))),
3893 new VerifyIdIsBoundTo<NestedNameSpecifier>("x", 1)));
3894}
3895
3896TEST(NNS, NestedNameSpecifiersAsDescendants) {
3897 std::string Fragment =
3898 "namespace a { struct A { struct B { struct C {}; }; }; };"
3899 "void f() { a::A::B::C c; }";
3900 EXPECT_TRUE(matches(
3901 Fragment,
3902 decl(hasDescendant(nestedNameSpecifier(specifiesType(
3903 asString("struct a::A")))))));
3904 EXPECT_TRUE(matchAndVerifyResultTrue(
3905 Fragment,
3906 functionDecl(hasName("f"),
3907 forEachDescendant(nestedNameSpecifier().bind("x"))),
3908 // Nested names: a, a::A and a::A::B.
3909 new VerifyIdIsBoundTo<NestedNameSpecifier>("x", 3)));
3910}
3911
3912TEST(NNSLoc, DescendantsOfNestedNameSpecifierLocs) {
3913 std::string Fragment =
3914 "namespace a { struct A { struct B { struct C {}; }; }; };"
3915 "void f() { a::A::B::C c; }";
3916 EXPECT_TRUE(matches(
3917 Fragment,
3918 nestedNameSpecifierLoc(loc(specifiesType(asString("struct a::A::B"))),
3919 hasDescendant(loc(nestedNameSpecifier(
3920 specifiesNamespace(hasName("a"))))))));
3921 EXPECT_TRUE(notMatches(
3922 Fragment,
3923 nestedNameSpecifierLoc(loc(specifiesType(asString("struct a::A::B"))),
3924 has(loc(nestedNameSpecifier(
3925 specifiesNamespace(hasName("a"))))))));
3926 EXPECT_TRUE(matches(
3927 Fragment,
3928 nestedNameSpecifierLoc(loc(specifiesType(asString("struct a::A"))),
3929 has(loc(nestedNameSpecifier(
3930 specifiesNamespace(hasName("a"))))))));
3931
3932 EXPECT_TRUE(matchAndVerifyResultTrue(
3933 Fragment,
3934 nestedNameSpecifierLoc(loc(specifiesType(asString("struct a::A::B"))),
3935 forEach(nestedNameSpecifierLoc().bind("x"))),
3936 new VerifyIdIsBoundTo<NestedNameSpecifierLoc>("x", 1)));
3937}
3938
3939TEST(NNSLoc, NestedNameSpecifierLocsAsDescendants) {
3940 std::string Fragment =
3941 "namespace a { struct A { struct B { struct C {}; }; }; };"
3942 "void f() { a::A::B::C c; }";
3943 EXPECT_TRUE(matches(
3944 Fragment,
3945 decl(hasDescendant(loc(nestedNameSpecifier(specifiesType(
3946 asString("struct a::A"))))))));
3947 EXPECT_TRUE(matchAndVerifyResultTrue(
3948 Fragment,
3949 functionDecl(hasName("f"),
3950 forEachDescendant(nestedNameSpecifierLoc().bind("x"))),
3951 // Nested names: a, a::A and a::A::B.
3952 new VerifyIdIsBoundTo<NestedNameSpecifierLoc>("x", 3)));
3953}
3954
Manuel Klimek60969f52013-02-01 13:41:35 +00003955template <typename T> class VerifyMatchOnNode : public BoundNodesCallback {
Manuel Klimek3e2aa992012-10-24 14:47:44 +00003956public:
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003957 VerifyMatchOnNode(StringRef Id, const internal::Matcher<T> &InnerMatcher,
3958 StringRef InnerId)
3959 : Id(Id), InnerMatcher(InnerMatcher), InnerId(InnerId) {
Daniel Jasper452abbc2012-10-29 10:48:25 +00003960 }
3961
Manuel Klimek60969f52013-02-01 13:41:35 +00003962 virtual bool run(const BoundNodes *Nodes) { return false; }
3963
Manuel Klimek3e2aa992012-10-24 14:47:44 +00003964 virtual bool run(const BoundNodes *Nodes, ASTContext *Context) {
3965 const T *Node = Nodes->getNodeAs<T>(Id);
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003966 return selectFirst<const T>(InnerId,
3967 match(InnerMatcher, *Node, *Context)) != NULL;
Manuel Klimek3e2aa992012-10-24 14:47:44 +00003968 }
3969private:
3970 std::string Id;
3971 internal::Matcher<T> InnerMatcher;
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003972 std::string InnerId;
Manuel Klimek3e2aa992012-10-24 14:47:44 +00003973};
3974
3975TEST(MatchFinder, CanMatchDeclarationsRecursively) {
Manuel Klimek60969f52013-02-01 13:41:35 +00003976 EXPECT_TRUE(matchAndVerifyResultTrue(
3977 "class X { class Y {}; };", recordDecl(hasName("::X")).bind("X"),
3978 new VerifyMatchOnNode<clang::Decl>(
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003979 "X", decl(hasDescendant(recordDecl(hasName("X::Y")).bind("Y"))),
3980 "Y")));
Manuel Klimek60969f52013-02-01 13:41:35 +00003981 EXPECT_TRUE(matchAndVerifyResultFalse(
3982 "class X { class Y {}; };", recordDecl(hasName("::X")).bind("X"),
3983 new VerifyMatchOnNode<clang::Decl>(
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003984 "X", decl(hasDescendant(recordDecl(hasName("X::Z")).bind("Z"))),
3985 "Z")));
Manuel Klimek3e2aa992012-10-24 14:47:44 +00003986}
3987
3988TEST(MatchFinder, CanMatchStatementsRecursively) {
Manuel Klimek60969f52013-02-01 13:41:35 +00003989 EXPECT_TRUE(matchAndVerifyResultTrue(
3990 "void f() { if (1) { for (;;) { } } }", ifStmt().bind("if"),
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003991 new VerifyMatchOnNode<clang::Stmt>(
3992 "if", stmt(hasDescendant(forStmt().bind("for"))), "for")));
Manuel Klimek60969f52013-02-01 13:41:35 +00003993 EXPECT_TRUE(matchAndVerifyResultFalse(
3994 "void f() { if (1) { for (;;) { } } }", ifStmt().bind("if"),
Manuel Klimekcf87bff2013-02-06 10:33:21 +00003995 new VerifyMatchOnNode<clang::Stmt>(
3996 "if", stmt(hasDescendant(declStmt().bind("decl"))), "decl")));
Manuel Klimek60969f52013-02-01 13:41:35 +00003997}
3998
3999TEST(MatchFinder, CanMatchSingleNodesRecursively) {
4000 EXPECT_TRUE(matchAndVerifyResultTrue(
4001 "class X { class Y {}; };", recordDecl(hasName("::X")).bind("X"),
4002 new VerifyMatchOnNode<clang::Decl>(
Manuel Klimekcf87bff2013-02-06 10:33:21 +00004003 "X", recordDecl(has(recordDecl(hasName("X::Y")).bind("Y"))), "Y")));
Manuel Klimek60969f52013-02-01 13:41:35 +00004004 EXPECT_TRUE(matchAndVerifyResultFalse(
4005 "class X { class Y {}; };", recordDecl(hasName("::X")).bind("X"),
4006 new VerifyMatchOnNode<clang::Decl>(
Manuel Klimekcf87bff2013-02-06 10:33:21 +00004007 "X", recordDecl(has(recordDecl(hasName("X::Z")).bind("Z"))), "Z")));
Manuel Klimek3e2aa992012-10-24 14:47:44 +00004008}
4009
Manuel Klimekfa37c5c2013-02-07 12:42:10 +00004010template <typename T>
4011class VerifyAncestorHasChildIsEqual : public BoundNodesCallback {
4012public:
4013 virtual bool run(const BoundNodes *Nodes) { return false; }
4014
4015 virtual bool run(const BoundNodes *Nodes, ASTContext *Context) {
4016 const T *Node = Nodes->getNodeAs<T>("");
4017 return verify(*Nodes, *Context, Node);
4018 }
4019
4020 bool verify(const BoundNodes &Nodes, ASTContext &Context, const Stmt *Node) {
4021 return selectFirst<const T>(
4022 "", match(stmt(hasParent(stmt(has(stmt(equalsNode(Node)))).bind(""))),
4023 *Node, Context)) != NULL;
4024 }
4025 bool verify(const BoundNodes &Nodes, ASTContext &Context, const Decl *Node) {
4026 return selectFirst<const T>(
4027 "", match(decl(hasParent(decl(has(decl(equalsNode(Node)))).bind(""))),
4028 *Node, Context)) != NULL;
4029 }
4030};
4031
4032TEST(IsEqualTo, MatchesNodesByIdentity) {
4033 EXPECT_TRUE(matchAndVerifyResultTrue(
4034 "class X { class Y {}; };", recordDecl(hasName("::X::Y")).bind(""),
4035 new VerifyAncestorHasChildIsEqual<Decl>()));
4036 EXPECT_TRUE(
4037 matchAndVerifyResultTrue("void f() { if(true) {} }", ifStmt().bind(""),
4038 new VerifyAncestorHasChildIsEqual<Stmt>()));
4039}
4040
Manuel Klimeke5793282012-11-02 01:31:03 +00004041class VerifyStartOfTranslationUnit : public MatchFinder::MatchCallback {
4042public:
4043 VerifyStartOfTranslationUnit() : Called(false) {}
4044 virtual void run(const MatchFinder::MatchResult &Result) {
4045 EXPECT_TRUE(Called);
4046 }
4047 virtual void onStartOfTranslationUnit() {
4048 Called = true;
4049 }
4050 bool Called;
4051};
4052
4053TEST(MatchFinder, InterceptsStartOfTranslationUnit) {
4054 MatchFinder Finder;
4055 VerifyStartOfTranslationUnit VerifyCallback;
4056 Finder.addMatcher(decl(), &VerifyCallback);
4057 OwningPtr<FrontendActionFactory> Factory(newFrontendActionFactory(&Finder));
4058 ASSERT_TRUE(tooling::runToolOnCode(Factory->create(), "int x;"));
4059 EXPECT_TRUE(VerifyCallback.Called);
4060}
4061
Peter Collingbourne8f9e5902013-05-28 19:21:51 +00004062class VerifyEndOfTranslationUnit : public MatchFinder::MatchCallback {
4063public:
4064 VerifyEndOfTranslationUnit() : Called(false) {}
4065 virtual void run(const MatchFinder::MatchResult &Result) {
4066 EXPECT_FALSE(Called);
4067 }
4068 virtual void onEndOfTranslationUnit() {
4069 Called = true;
4070 }
4071 bool Called;
4072};
4073
4074TEST(MatchFinder, InterceptsEndOfTranslationUnit) {
4075 MatchFinder Finder;
4076 VerifyEndOfTranslationUnit VerifyCallback;
4077 Finder.addMatcher(decl(), &VerifyCallback);
4078 OwningPtr<FrontendActionFactory> Factory(newFrontendActionFactory(&Finder));
4079 ASSERT_TRUE(tooling::runToolOnCode(Factory->create(), "int x;"));
4080 EXPECT_TRUE(VerifyCallback.Called);
4081}
4082
Manuel Klimekcf52ca62013-06-20 14:06:32 +00004083TEST(EqualsBoundNodeMatcher, QualType) {
4084 EXPECT_TRUE(matches(
4085 "int i = 1;", varDecl(hasType(qualType().bind("type")),
4086 hasInitializer(ignoringParenImpCasts(
4087 hasType(qualType(equalsBoundNode("type"))))))));
4088 EXPECT_TRUE(notMatches("int i = 1.f;",
4089 varDecl(hasType(qualType().bind("type")),
4090 hasInitializer(ignoringParenImpCasts(hasType(
4091 qualType(equalsBoundNode("type"))))))));
4092}
4093
4094TEST(EqualsBoundNodeMatcher, NonMatchingTypes) {
4095 EXPECT_TRUE(notMatches(
4096 "int i = 1;", varDecl(namedDecl(hasName("i")).bind("name"),
4097 hasInitializer(ignoringParenImpCasts(
4098 hasType(qualType(equalsBoundNode("type"))))))));
4099}
4100
4101TEST(EqualsBoundNodeMatcher, Stmt) {
4102 EXPECT_TRUE(
4103 matches("void f() { if(true) {} }",
4104 stmt(allOf(ifStmt().bind("if"),
4105 hasParent(stmt(has(stmt(equalsBoundNode("if")))))))));
4106
4107 EXPECT_TRUE(notMatches(
4108 "void f() { if(true) { if (true) {} } }",
4109 stmt(allOf(ifStmt().bind("if"), has(stmt(equalsBoundNode("if")))))));
4110}
4111
4112TEST(EqualsBoundNodeMatcher, Decl) {
4113 EXPECT_TRUE(matches(
4114 "class X { class Y {}; };",
4115 decl(allOf(recordDecl(hasName("::X::Y")).bind("record"),
4116 hasParent(decl(has(decl(equalsBoundNode("record")))))))));
4117
4118 EXPECT_TRUE(notMatches("class X { class Y {}; };",
4119 decl(allOf(recordDecl(hasName("::X")).bind("record"),
4120 has(decl(equalsBoundNode("record")))))));
4121}
4122
4123TEST(EqualsBoundNodeMatcher, Type) {
4124 EXPECT_TRUE(matches(
4125 "class X { int a; int b; };",
4126 recordDecl(
4127 has(fieldDecl(hasName("a"), hasType(type().bind("t")))),
4128 has(fieldDecl(hasName("b"), hasType(type(equalsBoundNode("t"))))))));
4129
4130 EXPECT_TRUE(notMatches(
4131 "class X { int a; double b; };",
4132 recordDecl(
4133 has(fieldDecl(hasName("a"), hasType(type().bind("t")))),
4134 has(fieldDecl(hasName("b"), hasType(type(equalsBoundNode("t"))))))));
4135}
4136
4137TEST(EqualsBoundNodeMatcher, UsingForEachDescendant) {
4138
4139 EXPECT_TRUE(matchAndVerifyResultTrue(
4140 "int f() {"
4141 " if (1) {"
4142 " int i = 9;"
4143 " }"
4144 " int j = 10;"
4145 " {"
4146 " float k = 9.0;"
4147 " }"
4148 " return 0;"
4149 "}",
4150 // Look for variable declarations within functions whose type is the same
4151 // as the function return type.
4152 functionDecl(returns(qualType().bind("type")),
4153 forEachDescendant(varDecl(hasType(
4154 qualType(equalsBoundNode("type")))).bind("decl"))),
4155 // Only i and j should match, not k.
4156 new VerifyIdIsBoundTo<VarDecl>("decl", 2)));
4157}
4158
4159TEST(EqualsBoundNodeMatcher, FiltersMatchedCombinations) {
4160 EXPECT_TRUE(matchAndVerifyResultTrue(
4161 "void f() {"
4162 " int x;"
4163 " double d;"
4164 " x = d + x - d + x;"
4165 "}",
4166 functionDecl(
4167 hasName("f"), forEachDescendant(varDecl().bind("d")),
4168 forEachDescendant(declRefExpr(to(decl(equalsBoundNode("d")))))),
4169 new VerifyIdIsBoundTo<VarDecl>("d", 5)));
4170}
4171
Manuel Klimek4da21662012-07-06 05:48:52 +00004172} // end namespace ast_matchers
4173} // end namespace clang