2013-05-14 17:13:00 +08:00
|
|
|
//===- unittest/ASTMatchers/Dynamic/RegistryTest.cpp - Registry unit tests -===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===-----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "../ASTMatchersTest.h"
|
|
|
|
#include "clang/ASTMatchers/Dynamic/Registry.h"
|
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace ast_matchers {
|
|
|
|
namespace dynamic {
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
using ast_matchers::internal::Matcher;
|
|
|
|
|
2013-06-20 22:28:32 +08:00
|
|
|
class RegistryTest : public ::testing::Test {
|
|
|
|
public:
|
|
|
|
std::vector<ParserValue> Args() { return std::vector<ParserValue>(); }
|
|
|
|
std::vector<ParserValue> Args(const VariantValue &Arg1) {
|
|
|
|
std::vector<ParserValue> Out(1);
|
|
|
|
Out[0].Value = Arg1;
|
|
|
|
return Out;
|
|
|
|
}
|
|
|
|
std::vector<ParserValue> Args(const VariantValue &Arg1,
|
|
|
|
const VariantValue &Arg2) {
|
|
|
|
std::vector<ParserValue> Out(2);
|
|
|
|
Out[0].Value = Arg1;
|
|
|
|
Out[1].Value = Arg2;
|
|
|
|
return Out;
|
|
|
|
}
|
|
|
|
|
2013-07-16 03:25:06 +08:00
|
|
|
MatcherList constructMatcher(StringRef MatcherName,
|
|
|
|
Diagnostics *Error = NULL) {
|
|
|
|
Diagnostics DummyError;
|
|
|
|
if (!Error) Error = &DummyError;
|
|
|
|
const MatcherList Out =
|
|
|
|
Registry::constructMatcher(MatcherName, SourceRange(), Args(), Error);
|
|
|
|
EXPECT_EQ("", DummyError.ToStringFull());
|
|
|
|
return Out;
|
2013-06-20 22:28:32 +08:00
|
|
|
}
|
|
|
|
|
2013-07-16 03:25:06 +08:00
|
|
|
MatcherList constructMatcher(StringRef MatcherName, const VariantValue &Arg1,
|
|
|
|
Diagnostics *Error = NULL) {
|
|
|
|
Diagnostics DummyError;
|
|
|
|
if (!Error) Error = &DummyError;
|
|
|
|
const MatcherList Out = Registry::constructMatcher(
|
|
|
|
MatcherName, SourceRange(), Args(Arg1), Error);
|
|
|
|
EXPECT_EQ("", DummyError.ToStringFull());
|
|
|
|
return Out;
|
2013-06-20 22:28:32 +08:00
|
|
|
}
|
|
|
|
|
2013-07-16 03:25:06 +08:00
|
|
|
MatcherList constructMatcher(StringRef MatcherName, const VariantValue &Arg1,
|
|
|
|
const VariantValue &Arg2,
|
|
|
|
Diagnostics *Error = NULL) {
|
|
|
|
Diagnostics DummyError;
|
|
|
|
if (!Error) Error = &DummyError;
|
|
|
|
const MatcherList Out = Registry::constructMatcher(
|
|
|
|
MatcherName, SourceRange(), Args(Arg1, Arg2), Error);
|
|
|
|
EXPECT_EQ("", DummyError.ToStringFull());
|
|
|
|
return Out;
|
2013-06-20 22:28:32 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST_F(RegistryTest, CanConstructNoArgs) {
|
2013-07-16 03:25:06 +08:00
|
|
|
Matcher<Stmt> IsArrowValue = constructMatcher(
|
|
|
|
"memberExpr", constructMatcher("isArrow")).getTypedMatcher<Stmt>();
|
|
|
|
Matcher<Stmt> BoolValue =
|
|
|
|
constructMatcher("boolLiteral").getTypedMatcher<Stmt>();
|
2013-05-14 17:13:00 +08:00
|
|
|
|
|
|
|
const std::string ClassSnippet = "struct Foo { int x; };\n"
|
|
|
|
"Foo *foo = new Foo;\n"
|
|
|
|
"int i = foo->x;\n";
|
|
|
|
const std::string BoolSnippet = "bool Foo = true;\n";
|
|
|
|
|
2013-06-20 22:28:32 +08:00
|
|
|
EXPECT_TRUE(matches(ClassSnippet, IsArrowValue));
|
|
|
|
EXPECT_TRUE(matches(BoolSnippet, BoolValue));
|
|
|
|
EXPECT_FALSE(matches(ClassSnippet, BoolValue));
|
|
|
|
EXPECT_FALSE(matches(BoolSnippet, IsArrowValue));
|
2013-05-14 17:13:00 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 22:28:32 +08:00
|
|
|
TEST_F(RegistryTest, ConstructWithSimpleArgs) {
|
2013-07-16 03:25:06 +08:00
|
|
|
Matcher<Decl> Value = constructMatcher(
|
|
|
|
"namedDecl", constructMatcher("hasName", std::string("X")))
|
|
|
|
.getTypedMatcher<Decl>();
|
2013-06-20 22:28:32 +08:00
|
|
|
EXPECT_TRUE(matches("class X {};", Value));
|
|
|
|
EXPECT_FALSE(matches("int x;", Value));
|
|
|
|
|
2013-07-16 03:25:06 +08:00
|
|
|
Value = functionDecl(constructMatcher("parameterCountIs", 2)
|
|
|
|
.getTypedMatcher<FunctionDecl>());
|
2013-06-20 22:28:32 +08:00
|
|
|
EXPECT_TRUE(matches("void foo(int,int);", Value));
|
|
|
|
EXPECT_FALSE(matches("void foo(int);", Value));
|
2013-05-14 17:13:00 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 22:28:32 +08:00
|
|
|
TEST_F(RegistryTest, ConstructWithMatcherArgs) {
|
2013-07-16 03:25:06 +08:00
|
|
|
Matcher<Decl> HasInitializerSimple =
|
|
|
|
constructMatcher("varDecl", constructMatcher("hasInitializer", stmt()))
|
|
|
|
.getTypedMatcher<Decl>();
|
|
|
|
Matcher<Decl> HasInitializerComplex = constructMatcher(
|
|
|
|
"varDecl", constructMatcher("hasInitializer", callExpr()))
|
|
|
|
.getTypedMatcher<Decl>();
|
2013-05-14 17:13:00 +08:00
|
|
|
|
|
|
|
std::string code = "int i;";
|
2013-06-20 22:28:32 +08:00
|
|
|
EXPECT_FALSE(matches(code, HasInitializerSimple));
|
|
|
|
EXPECT_FALSE(matches(code, HasInitializerComplex));
|
2013-05-14 17:13:00 +08:00
|
|
|
|
|
|
|
code = "int i = 1;";
|
2013-06-20 22:28:32 +08:00
|
|
|
EXPECT_TRUE(matches(code, HasInitializerSimple));
|
|
|
|
EXPECT_FALSE(matches(code, HasInitializerComplex));
|
2013-05-14 17:13:00 +08:00
|
|
|
|
|
|
|
code = "int y(); int i = y();";
|
2013-06-20 22:28:32 +08:00
|
|
|
EXPECT_TRUE(matches(code, HasInitializerSimple));
|
|
|
|
EXPECT_TRUE(matches(code, HasInitializerComplex));
|
2013-06-04 23:46:22 +08:00
|
|
|
|
2013-07-16 03:25:06 +08:00
|
|
|
Matcher<Decl> HasParameter = functionDecl(constructMatcher(
|
|
|
|
"hasParameter", 1, hasName("x")).getTypedMatcher<FunctionDecl>());
|
2013-06-20 22:28:32 +08:00
|
|
|
EXPECT_TRUE(matches("void f(int a, int x);", HasParameter));
|
|
|
|
EXPECT_FALSE(matches("void f(int x, int a);", HasParameter));
|
2013-05-14 17:13:00 +08:00
|
|
|
}
|
|
|
|
|
2013-06-21 23:51:31 +08:00
|
|
|
TEST_F(RegistryTest, PolymorphicMatchers) {
|
2013-07-16 03:25:06 +08:00
|
|
|
const MatcherList IsDefinition = constructMatcher("isDefinition");
|
|
|
|
Matcher<Decl> Var =
|
|
|
|
constructMatcher("varDecl", IsDefinition).getTypedMatcher<Decl>();
|
2013-06-21 23:51:31 +08:00
|
|
|
Matcher<Decl> Class =
|
2013-07-16 03:25:06 +08:00
|
|
|
constructMatcher("recordDecl", IsDefinition).getTypedMatcher<Decl>();
|
2013-06-21 23:51:31 +08:00
|
|
|
Matcher<Decl> Func =
|
2013-07-16 03:25:06 +08:00
|
|
|
constructMatcher("functionDecl", IsDefinition).getTypedMatcher<Decl>();
|
2013-06-21 23:51:31 +08:00
|
|
|
EXPECT_TRUE(matches("int a;", Var));
|
|
|
|
EXPECT_FALSE(matches("extern int a;", Var));
|
|
|
|
EXPECT_TRUE(matches("class A {};", Class));
|
|
|
|
EXPECT_FALSE(matches("class A;", Class));
|
|
|
|
EXPECT_TRUE(matches("void f(){};", Func));
|
|
|
|
EXPECT_FALSE(matches("void f();", Func));
|
|
|
|
|
2013-07-16 03:25:06 +08:00
|
|
|
Matcher<Decl> Anything = constructMatcher("anything").getTypedMatcher<Decl>();
|
2013-06-21 23:51:31 +08:00
|
|
|
Matcher<Decl> RecordDecl =
|
2013-07-16 03:25:06 +08:00
|
|
|
constructMatcher("recordDecl", Anything).getTypedMatcher<Decl>();
|
2013-06-21 23:51:31 +08:00
|
|
|
|
|
|
|
EXPECT_TRUE(matches("int a;", Anything));
|
|
|
|
EXPECT_TRUE(matches("class A {};", Anything));
|
|
|
|
EXPECT_TRUE(matches("void f(){};", Anything));
|
2013-06-24 21:19:26 +08:00
|
|
|
// FIXME: A couple of tests have been suppressed.
|
|
|
|
// I know it'd be bad with _MSC_VER here, though.
|
|
|
|
#if !defined(_MSC_VER)
|
2013-06-21 23:51:31 +08:00
|
|
|
EXPECT_FALSE(matches("int a;", RecordDecl));
|
2013-06-24 21:19:26 +08:00
|
|
|
#endif
|
2013-06-21 23:51:31 +08:00
|
|
|
EXPECT_TRUE(matches("class A {};", RecordDecl));
|
2013-06-24 21:19:26 +08:00
|
|
|
#if !defined(_MSC_VER)
|
2013-06-21 23:51:31 +08:00
|
|
|
EXPECT_FALSE(matches("void f(){};", RecordDecl));
|
2013-06-24 21:19:26 +08:00
|
|
|
#endif
|
2013-06-21 23:51:31 +08:00
|
|
|
}
|
|
|
|
|
2013-07-16 03:25:06 +08:00
|
|
|
TEST_F(RegistryTest, TypeTraversal) {
|
|
|
|
Matcher<Type> M = constructMatcher(
|
|
|
|
"pointerType",
|
|
|
|
constructMatcher("pointee", constructMatcher("isConstQualified"),
|
|
|
|
constructMatcher("isInteger"))).getTypedMatcher<Type>();
|
|
|
|
EXPECT_FALSE(matches("int *a;", M));
|
|
|
|
EXPECT_TRUE(matches("int const *b;", M));
|
|
|
|
|
|
|
|
M = constructMatcher(
|
|
|
|
"arrayType",
|
|
|
|
constructMatcher("hasElementType", constructMatcher("builtinType")))
|
|
|
|
.getTypedMatcher<Type>();
|
|
|
|
EXPECT_FALSE(matches("struct A{}; A a[7];;", M));
|
|
|
|
EXPECT_TRUE(matches("int b[7];", M));
|
|
|
|
}
|
|
|
|
|
2013-06-20 22:28:32 +08:00
|
|
|
TEST_F(RegistryTest, Errors) {
|
2013-05-14 17:13:00 +08:00
|
|
|
// Incorrect argument count.
|
|
|
|
OwningPtr<Diagnostics> Error(new Diagnostics());
|
2013-07-16 03:25:06 +08:00
|
|
|
EXPECT_TRUE(constructMatcher("hasInitializer", Error.get()).empty());
|
2013-05-14 17:13:00 +08:00
|
|
|
EXPECT_EQ("Incorrect argument count. (Expected = 1) != (Actual = 0)",
|
|
|
|
Error->ToString());
|
|
|
|
Error.reset(new Diagnostics());
|
2013-07-16 03:25:06 +08:00
|
|
|
EXPECT_TRUE(constructMatcher("isArrow", std::string(), Error.get()).empty());
|
2013-05-14 17:13:00 +08:00
|
|
|
EXPECT_EQ("Incorrect argument count. (Expected = 0) != (Actual = 1)",
|
|
|
|
Error->ToString());
|
|
|
|
|
|
|
|
// Bad argument type
|
|
|
|
Error.reset(new Diagnostics());
|
2013-07-16 03:25:06 +08:00
|
|
|
EXPECT_TRUE(constructMatcher("ofClass", std::string(), Error.get()).empty());
|
2013-06-20 22:28:32 +08:00
|
|
|
EXPECT_EQ("Incorrect type for arg 1. (Expected = Matcher<CXXRecordDecl>) != "
|
|
|
|
"(Actual = String)",
|
|
|
|
Error->ToString());
|
2013-05-14 17:13:00 +08:00
|
|
|
Error.reset(new Diagnostics());
|
2013-07-16 03:25:06 +08:00
|
|
|
EXPECT_TRUE(constructMatcher("recordDecl", recordDecl(), parameterCountIs(3),
|
|
|
|
Error.get()).empty());
|
2013-06-20 22:28:32 +08:00
|
|
|
EXPECT_EQ("Incorrect type for arg 2. (Expected = Matcher<CXXRecordDecl>) != "
|
|
|
|
"(Actual = Matcher<FunctionDecl>)",
|
2013-05-14 17:13:00 +08:00
|
|
|
Error->ToString());
|
|
|
|
}
|
|
|
|
|
|
|
|
} // end anonymous namespace
|
|
|
|
} // end namespace dynamic
|
|
|
|
} // end namespace ast_matchers
|
|
|
|
} // end namespace clang
|