summaryrefslogtreecommitdiff
path: root/unittests/ASTMatchers/Dynamic/VariantValueTest.cpp
blob: 6c202e52fa485465df4de0880b79695836b1353d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
//===- unittest/ASTMatchers/Dynamic/VariantValueTest.cpp - VariantValue unit tests -===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-----------------------------------------------------------------------------===//

#include "../ASTMatchersTest.h"
#include "clang/ASTMatchers/Dynamic/VariantValue.h"
#include "gtest/gtest.h"

namespace clang {
namespace ast_matchers {
namespace dynamic {
namespace {

using ast_matchers::internal::DynTypedMatcher;
using ast_matchers::internal::Matcher;

TEST(VariantValueTest, String) {
  const ::std::string kString = "string";
  VariantValue Value = kString;

  EXPECT_TRUE(Value.isString());
  EXPECT_EQ(kString, Value.getString());

  EXPECT_FALSE(Value.isMatcher());
  EXPECT_FALSE(Value.isTypedMatcher<clang::Decl>());
  EXPECT_FALSE(Value.isTypedMatcher<clang::UnaryOperator>());
}

TEST(VariantValueTest, DynTypedMatcher) {
  VariantValue Value = stmt();

  EXPECT_FALSE(Value.isString());

  EXPECT_TRUE(Value.isMatcher());
  EXPECT_TRUE(Value.isTypedMatcher<clang::Decl>());
  EXPECT_TRUE(Value.isTypedMatcher<clang::UnaryOperator>());

  // Conversion to any type of matcher works.
  // If they are not compatible it would just return a matcher that matches
  // nothing. We test this below.
  Value = recordDecl();
  EXPECT_TRUE(Value.isMatcher());
  EXPECT_TRUE(Value.isTypedMatcher<clang::Decl>());
  EXPECT_TRUE(Value.isTypedMatcher<clang::UnaryOperator>());

  Value = unaryOperator();
  EXPECT_TRUE(Value.isMatcher());
  EXPECT_TRUE(Value.isTypedMatcher<clang::Decl>());
  EXPECT_TRUE(Value.isTypedMatcher<clang::Stmt>());
  EXPECT_TRUE(Value.isTypedMatcher<clang::UnaryOperator>());
}

TEST(VariantValueTest, Assignment) {
  VariantValue Value = std::string("A");
  EXPECT_TRUE(Value.isString());
  EXPECT_EQ("A", Value.getString());
  EXPECT_FALSE(Value.isMatcher());

  Value = recordDecl();
  EXPECT_FALSE(Value.isString());
  EXPECT_TRUE(Value.isMatcher());
  EXPECT_TRUE(Value.isTypedMatcher<clang::Decl>());
  EXPECT_TRUE(Value.isTypedMatcher<clang::UnaryOperator>());

  Value = VariantValue();
  EXPECT_FALSE(Value.isString());
  EXPECT_FALSE(Value.isMatcher());
}

TEST(GeneicValueTest, Matcher) {
  EXPECT_TRUE(matchesDynamic(
      "class X {};", VariantValue(recordDecl(hasName("X"))).getMatcher()));
  EXPECT_TRUE(matchesDynamic(
      "int x;", VariantValue(varDecl()).getTypedMatcher<clang::Decl>()));
  EXPECT_TRUE(matchesDynamic("int foo() { return 1 + 1; }",
                             VariantValue(functionDecl()).getMatcher()));
  // Going through the wrong Matcher<T> will fail to match, even if the
  // underlying matcher is correct.
  EXPECT_FALSE(matchesDynamic(
      "int x;", VariantValue(varDecl()).getTypedMatcher<clang::Stmt>()));

  EXPECT_FALSE(
      matchesDynamic("int x;", VariantValue(functionDecl()).getMatcher()));
  EXPECT_FALSE(matchesDynamic(
      "int foo() { return 1 + 1; }",
      VariantValue(declRefExpr()).getTypedMatcher<clang::DeclRefExpr>()));
}

} // end anonymous namespace
} // end namespace dynamic
} // end namespace ast_matchers
} // end namespace clang