1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321 |
- //===- unittests/AST/DeclPrinterTest.cpp --- Declaration printer tests ----===//
- //
- // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
- // See https://llvm.org/LICENSE.txt for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- //===----------------------------------------------------------------------===//
- //
- // This file contains tests for Decl::print() and related methods.
- //
- // Search this file for WRONG to see test cases that are producing something
- // completely wrong, invalid C++ or just misleading.
- //
- // These tests have a coding convention:
- // * declaration to be printed is named 'A' unless it should have some special
- // name (e.g., 'operator+');
- // * additional helper declarations are 'Z', 'Y', 'X' and so on.
- //
- //===----------------------------------------------------------------------===//
- #include "clang/AST/ASTContext.h"
- #include "clang/ASTMatchers/ASTMatchFinder.h"
- #include "clang/Tooling/Tooling.h"
- #include "llvm/ADT/SmallString.h"
- #include "gtest/gtest.h"
- using namespace clang;
- using namespace ast_matchers;
- using namespace tooling;
- namespace {
- using PrintingPolicyModifier = void (*)(PrintingPolicy &policy);
- void PrintDecl(raw_ostream &Out, const ASTContext *Context, const Decl *D,
- PrintingPolicyModifier PolicyModifier) {
- PrintingPolicy Policy = Context->getPrintingPolicy();
- Policy.TerseOutput = true;
- if (PolicyModifier)
- PolicyModifier(Policy);
- D->print(Out, Policy, /*Indentation*/ 0, /*PrintInstantiation*/ false);
- }
- class PrintMatch : public MatchFinder::MatchCallback {
- SmallString<1024> Printed;
- unsigned NumFoundDecls;
- PrintingPolicyModifier PolicyModifier;
- public:
- PrintMatch(PrintingPolicyModifier PolicyModifier)
- : NumFoundDecls(0), PolicyModifier(PolicyModifier) {}
- void run(const MatchFinder::MatchResult &Result) override {
- const Decl *D = Result.Nodes.getNodeAs<Decl>("id");
- if (!D || D->isImplicit())
- return;
- NumFoundDecls++;
- if (NumFoundDecls > 1)
- return;
- llvm::raw_svector_ostream Out(Printed);
- PrintDecl(Out, Result.Context, D, PolicyModifier);
- }
- StringRef getPrinted() const {
- return Printed;
- }
- unsigned getNumFoundDecls() const {
- return NumFoundDecls;
- }
- };
- ::testing::AssertionResult
- PrintedDeclMatches(StringRef Code, const std::vector<std::string> &Args,
- const DeclarationMatcher &NodeMatch,
- StringRef ExpectedPrinted, StringRef FileName,
- PrintingPolicyModifier PolicyModifier = nullptr) {
- PrintMatch Printer(PolicyModifier);
- MatchFinder Finder;
- Finder.addMatcher(NodeMatch, &Printer);
- std::unique_ptr<FrontendActionFactory> Factory(
- newFrontendActionFactory(&Finder));
- if (!runToolOnCodeWithArgs(Factory->create(), Code, Args, FileName))
- return testing::AssertionFailure()
- << "Parsing error in \"" << Code.str() << "\"";
- if (Printer.getNumFoundDecls() == 0)
- return testing::AssertionFailure()
- << "Matcher didn't find any declarations";
- if (Printer.getNumFoundDecls() > 1)
- return testing::AssertionFailure()
- << "Matcher should match only one declaration "
- "(found " << Printer.getNumFoundDecls() << ")";
- if (Printer.getPrinted() != ExpectedPrinted)
- return ::testing::AssertionFailure()
- << "Expected \"" << ExpectedPrinted.str() << "\", "
- "got \"" << Printer.getPrinted().str() << "\"";
- return ::testing::AssertionSuccess();
- }
- ::testing::AssertionResult
- PrintedDeclCXX98Matches(StringRef Code, StringRef DeclName,
- StringRef ExpectedPrinted,
- PrintingPolicyModifier PolicyModifier = nullptr) {
- std::vector<std::string> Args(1, "-std=c++98");
- return PrintedDeclMatches(Code,
- Args,
- namedDecl(hasName(DeclName)).bind("id"),
- ExpectedPrinted,
- "input.cc",
- PolicyModifier);
- }
- ::testing::AssertionResult
- PrintedDeclCXX98Matches(StringRef Code, const DeclarationMatcher &NodeMatch,
- StringRef ExpectedPrinted,
- PrintingPolicyModifier PolicyModifier = nullptr) {
- std::vector<std::string> Args(1, "-std=c++98");
- return PrintedDeclMatches(Code,
- Args,
- NodeMatch,
- ExpectedPrinted,
- "input.cc",
- PolicyModifier);
- }
- ::testing::AssertionResult PrintedDeclCXX11Matches(StringRef Code,
- StringRef DeclName,
- StringRef ExpectedPrinted) {
- std::vector<std::string> Args(1, "-std=c++11");
- return PrintedDeclMatches(Code,
- Args,
- namedDecl(hasName(DeclName)).bind("id"),
- ExpectedPrinted,
- "input.cc");
- }
- ::testing::AssertionResult PrintedDeclCXX11Matches(
- StringRef Code,
- const DeclarationMatcher &NodeMatch,
- StringRef ExpectedPrinted) {
- std::vector<std::string> Args(1, "-std=c++11");
- return PrintedDeclMatches(Code,
- Args,
- NodeMatch,
- ExpectedPrinted,
- "input.cc");
- }
- ::testing::AssertionResult PrintedDeclCXX11nonMSCMatches(
- StringRef Code,
- const DeclarationMatcher &NodeMatch,
- StringRef ExpectedPrinted) {
- std::vector<std::string> Args(1, "-std=c++11");
- Args.push_back("-fno-delayed-template-parsing");
- return PrintedDeclMatches(Code,
- Args,
- NodeMatch,
- ExpectedPrinted,
- "input.cc");
- }
- ::testing::AssertionResult
- PrintedDeclCXX1ZMatches(StringRef Code, const DeclarationMatcher &NodeMatch,
- StringRef ExpectedPrinted) {
- std::vector<std::string> Args(1, "-std=c++1z");
- return PrintedDeclMatches(Code,
- Args,
- NodeMatch,
- ExpectedPrinted,
- "input.cc");
- }
- ::testing::AssertionResult PrintedDeclObjCMatches(
- StringRef Code,
- const DeclarationMatcher &NodeMatch,
- StringRef ExpectedPrinted) {
- std::vector<std::string> Args(1, "");
- return PrintedDeclMatches(Code,
- Args,
- NodeMatch,
- ExpectedPrinted,
- "input.m");
- }
- } // unnamed namespace
- TEST(DeclPrinter, TestTypedef1) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "typedef int A;",
- "A",
- "typedef int A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestTypedef2) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "typedef const char *A;",
- "A",
- "typedef const char *A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestTypedef3) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template <typename Y> class X {};"
- "typedef X<int> A;",
- "A",
- "typedef X<int> A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestTypedef4) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "namespace X { class Y {}; }"
- "typedef X::Y A;",
- "A",
- "typedef X::Y A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestNamespace1) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "namespace A { int B; }",
- "A",
- "namespace A {\n}"));
- // Should be: with { ... }
- }
- TEST(DeclPrinter, TestNamespace2) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "inline namespace A { int B; }",
- "A",
- "inline namespace A {\n}"));
- // Should be: with { ... }
- }
- TEST(DeclPrinter, TestNamespaceAlias1) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "namespace Z { }"
- "namespace A = Z;",
- "A",
- "namespace A = Z"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestNamespaceAlias2) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "namespace X { namespace Y {} }"
- "namespace A = X::Y;",
- "A",
- "namespace A = X::Y"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestCXXRecordDecl1) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "class A { int a; };",
- "A",
- "class A {}"));
- }
- TEST(DeclPrinter, TestCXXRecordDecl2) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct A { int a; };",
- "A",
- "struct A {}"));
- }
- TEST(DeclPrinter, TestCXXRecordDecl3) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "union A { int a; };",
- "A",
- "union A {}"));
- }
- TEST(DeclPrinter, TestCXXRecordDecl4) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "class Z { int a; };"
- "class A : Z { int b; };",
- "A",
- "class A : Z {}"));
- }
- TEST(DeclPrinter, TestCXXRecordDecl5) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct Z { int a; };"
- "struct A : Z { int b; };",
- "A",
- "struct A : Z {}"));
- }
- TEST(DeclPrinter, TestCXXRecordDecl6) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "class Z { int a; };"
- "class A : public Z { int b; };",
- "A",
- "class A : public Z {}"));
- }
- TEST(DeclPrinter, TestCXXRecordDecl7) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "class Z { int a; };"
- "class A : protected Z { int b; };",
- "A",
- "class A : protected Z {}"));
- }
- TEST(DeclPrinter, TestCXXRecordDecl8) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "class Z { int a; };"
- "class A : private Z { int b; };",
- "A",
- "class A : private Z {}"));
- }
- TEST(DeclPrinter, TestCXXRecordDecl9) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "class Z { int a; };"
- "class A : virtual Z { int b; };",
- "A",
- "class A : virtual Z {}"));
- }
- TEST(DeclPrinter, TestCXXRecordDecl10) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "class Z { int a; };"
- "class A : virtual public Z { int b; };",
- "A",
- "class A : virtual public Z {}"));
- }
- TEST(DeclPrinter, TestCXXRecordDecl11) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "class Z { int a; };"
- "class Y : virtual public Z { int b; };"
- "class A : virtual public Z, private Y { int c; };",
- "A",
- "class A : virtual public Z, private Y {}"));
- }
- TEST(DeclPrinter, TestFunctionDecl1) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "void A();",
- "A",
- "void A()"));
- }
- TEST(DeclPrinter, TestFreeFunctionDecl_FullyQualifiedName) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "void A();",
- "A",
- "void A()",
- [](PrintingPolicy &Policy){ Policy.FullyQualifiedName = true; }));
- }
- TEST(DeclPrinter, TestFreeFunctionDeclInNamespace_FullyQualifiedName) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "namespace X { void A(); };",
- "A",
- "void X::A()",
- [](PrintingPolicy &Policy){ Policy.FullyQualifiedName = true; }));
- }
- TEST(DeclPrinter, TestMemberFunction_FullyQualifiedName) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct X { void A(); };",
- "A",
- "void X::A()",
- [](PrintingPolicy &Policy){ Policy.FullyQualifiedName = true; }));
- }
- TEST(DeclPrinter, TestMemberFunctionInNamespace_FullyQualifiedName) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "namespace Z { struct X { void A(); }; }",
- "A",
- "void Z::X::A()",
- [](PrintingPolicy &Policy){ Policy.FullyQualifiedName = true; }));
- }
- TEST(DeclPrinter, TestMemberFunctionOutside_FullyQualifiedName) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct X { void A(); };"
- "void X::A() {}",
- functionDecl(hasName("A"), isDefinition()).bind("id"),
- "void X::A()",
- [](PrintingPolicy &Policy){ Policy.FullyQualifiedName = true; }));
- }
- TEST(DeclPrinter, TestFunctionDecl2) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "void A() {}",
- "A",
- "void A()"));
- }
- TEST(DeclPrinter, TestFunctionDecl3) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "void Z();"
- "void A() { Z(); }",
- "A",
- "void A()"));
- }
- TEST(DeclPrinter, TestFunctionDecl4) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "extern void A();",
- "A",
- "extern void A()"));
- }
- TEST(DeclPrinter, TestFunctionDecl5) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "static void A();",
- "A",
- "static void A()"));
- }
- TEST(DeclPrinter, TestFunctionDecl6) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "inline void A();",
- "A",
- "inline void A()"));
- }
- TEST(DeclPrinter, TestFunctionDecl7) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "constexpr int A(int a);",
- "A",
- "constexpr int A(int a)"));
- }
- TEST(DeclPrinter, TestFunctionDecl8) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "void A(int a);",
- "A",
- "void A(int a)"));
- }
- TEST(DeclPrinter, TestFunctionDecl9) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "void A(...);",
- "A",
- "void A(...)"));
- }
- TEST(DeclPrinter, TestFunctionDecl10) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "void A(int a, ...);",
- "A",
- "void A(int a, ...)"));
- }
- TEST(DeclPrinter, TestFunctionDecl11) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "typedef long ssize_t;"
- "typedef int *pInt;"
- "void A(int a, pInt b, ssize_t c);",
- "A",
- "void A(int a, pInt b, ssize_t c)"));
- }
- TEST(DeclPrinter, TestFunctionDecl12) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "void A(int a, int b = 0);",
- "A",
- "void A(int a, int b = 0)"));
- }
- TEST(DeclPrinter, TestFunctionDecl13) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "void (*A(int a))(int b);",
- "A",
- "void (*A(int a))(int)"));
- // Should be: with parameter name (?)
- }
- TEST(DeclPrinter, TestFunctionDecl14) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<typename T>"
- "void A(T t) { }"
- "template<>"
- "void A(int N) { }",
- functionDecl(hasName("A"), isExplicitTemplateSpecialization()).bind("id"),
- "template<> void A<int>(int N)"));
- }
- TEST(DeclPrinter, TestCXXConstructorDecl1) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct A {"
- " A();"
- "};",
- cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
- "A()"));
- }
- TEST(DeclPrinter, TestCXXConstructorDecl2) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct A {"
- " A(int a);"
- "};",
- cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
- "A(int a)"));
- }
- TEST(DeclPrinter, TestCXXConstructorDecl3) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct A {"
- " A(const A &a);"
- "};",
- cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
- "A(const A &a)"));
- }
- TEST(DeclPrinter, TestCXXConstructorDecl4) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct A {"
- " A(const A &a, int = 0);"
- "};",
- cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
- "A(const A &a, int = 0)"));
- }
- TEST(DeclPrinter, TestCXXConstructorDeclWithMemberInitializer) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct A {"
- " int m;"
- " A() : m(2) {}"
- "};",
- cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
- "A()"));
- }
- TEST(DeclPrinter, TestCXXConstructorDeclWithMemberInitializer_NoTerseOutput) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct A {"
- " int m;"
- " A() : m(2) {}"
- "};",
- cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
- "A() : m(2) {\n}\n",
- [](PrintingPolicy &Policy){ Policy.TerseOutput = false; }));
- }
- TEST(DeclPrinter, TestCXXConstructorDecl5) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "struct A {"
- " A(const A &&a);"
- "};",
- cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
- "A(const A &&a)"));
- }
- TEST(DeclPrinter, TestCXXConstructorDecl6) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct A {"
- " explicit A(int a);"
- "};",
- cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
- "explicit A(int a)"));
- }
- TEST(DeclPrinter, TestCXXConstructorDecl7) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "struct A {"
- " constexpr A();"
- "};",
- cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
- "constexpr A()"));
- }
- TEST(DeclPrinter, TestCXXConstructorDecl8) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "struct A {"
- " A() = default;"
- "};",
- cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
- "A() = default"));
- }
- TEST(DeclPrinter, TestCXXConstructorDecl9) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "struct A {"
- " A() = delete;"
- "};",
- cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
- "A() = delete"));
- }
- TEST(DeclPrinter, TestCXXConstructorDecl10) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "template<typename... T>"
- "struct A {"
- " A(const A &a);"
- "};",
- cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
- "A<T...>(const A<T...> &a)"));
- }
- TEST(DeclPrinter, TestCXXConstructorDecl11) {
- ASSERT_TRUE(PrintedDeclCXX11nonMSCMatches(
- "template<typename... T>"
- "struct A : public T... {"
- " A(T&&... ts) : T(ts)... {}"
- "};",
- cxxConstructorDecl(ofClass(hasName("A"))).bind("id"),
- "A<T...>(T &&...ts)"));
- }
- TEST(DeclPrinter, TestCXXDestructorDecl1) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct A {"
- " ~A();"
- "};",
- cxxDestructorDecl(ofClass(hasName("A"))).bind("id"),
- "~A()"));
- }
- TEST(DeclPrinter, TestCXXDestructorDecl2) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct A {"
- " virtual ~A();"
- "};",
- cxxDestructorDecl(ofClass(hasName("A"))).bind("id"),
- "virtual ~A()"));
- }
- TEST(DeclPrinter, TestCXXConversionDecl1) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct A {"
- " operator int();"
- "};",
- cxxMethodDecl(ofClass(hasName("A"))).bind("id"),
- "operator int()"));
- }
- TEST(DeclPrinter, TestCXXConversionDecl2) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct A {"
- " operator bool();"
- "};",
- cxxMethodDecl(ofClass(hasName("A"))).bind("id"),
- "operator bool()"));
- }
- TEST(DeclPrinter, TestCXXConversionDecl3) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct Z {};"
- "struct A {"
- " operator Z();"
- "};",
- cxxMethodDecl(ofClass(hasName("A"))).bind("id"),
- "operator Z()"));
- }
- TEST(DeclPrinter, TestCXXMethodDecl_AllocationFunction1) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "namespace std { typedef decltype(sizeof(int)) size_t; }"
- "struct Z {"
- " void *operator new(std::size_t);"
- "};",
- cxxMethodDecl(ofClass(hasName("Z"))).bind("id"),
- "void *operator new(std::size_t)"));
- }
- TEST(DeclPrinter, TestCXXMethodDecl_AllocationFunction2) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "namespace std { typedef decltype(sizeof(int)) size_t; }"
- "struct Z {"
- " void *operator new[](std::size_t);"
- "};",
- cxxMethodDecl(ofClass(hasName("Z"))).bind("id"),
- "void *operator new[](std::size_t)"));
- }
- TEST(DeclPrinter, TestCXXMethodDecl_AllocationFunction3) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "struct Z {"
- " void operator delete(void *);"
- "};",
- cxxMethodDecl(ofClass(hasName("Z"))).bind("id"),
- "void operator delete(void *) noexcept"));
- // Should be: without noexcept?
- }
- TEST(DeclPrinter, TestCXXMethodDecl_AllocationFunction4) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct Z {"
- " void operator delete(void *);"
- "};",
- cxxMethodDecl(ofClass(hasName("Z"))).bind("id"),
- "void operator delete(void *)"));
- }
- TEST(DeclPrinter, TestCXXMethodDecl_AllocationFunction5) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "struct Z {"
- " void operator delete[](void *);"
- "};",
- cxxMethodDecl(ofClass(hasName("Z"))).bind("id"),
- "void operator delete[](void *) noexcept"));
- // Should be: without noexcept?
- }
- TEST(DeclPrinter, TestCXXMethodDecl_Operator1) {
- const char *OperatorNames[] = {
- "+", "-", "*", "/", "%", "^", "&", "|",
- "=", "<", ">", "+=", "-=", "*=", "/=", "%=",
- "^=", "&=", "|=", "<<", ">>", ">>=", "<<=", "==", "!=",
- "<=", ">=", "&&", "||", ",", "->*",
- "()", "[]"
- };
- for (unsigned i = 0, e = llvm::array_lengthof(OperatorNames); i != e; ++i) {
- SmallString<128> Code;
- Code.append("struct Z { void operator");
- Code.append(OperatorNames[i]);
- Code.append("(Z z); };");
- SmallString<128> Expected;
- Expected.append("void operator");
- Expected.append(OperatorNames[i]);
- Expected.append("(Z z)");
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- Code,
- cxxMethodDecl(ofClass(hasName("Z"))).bind("id"),
- Expected));
- }
- }
- TEST(DeclPrinter, TestCXXMethodDecl_Operator2) {
- const char *OperatorNames[] = {
- "~", "!", "++", "--", "->"
- };
- for (unsigned i = 0, e = llvm::array_lengthof(OperatorNames); i != e; ++i) {
- SmallString<128> Code;
- Code.append("struct Z { void operator");
- Code.append(OperatorNames[i]);
- Code.append("(); };");
- SmallString<128> Expected;
- Expected.append("void operator");
- Expected.append(OperatorNames[i]);
- Expected.append("()");
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- Code,
- cxxMethodDecl(ofClass(hasName("Z"))).bind("id"),
- Expected));
- }
- }
- TEST(DeclPrinter, TestCXXMethodDecl1) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct Z {"
- " void A(int a);"
- "};",
- "A",
- "void A(int a)"));
- }
- TEST(DeclPrinter, TestCXXMethodDecl2) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct Z {"
- " virtual void A(int a);"
- "};",
- "A",
- "virtual void A(int a)"));
- }
- TEST(DeclPrinter, TestCXXMethodDecl3) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct Z {"
- " virtual void A(int a);"
- "};"
- "struct ZZ : Z {"
- " void A(int a);"
- "};",
- "ZZ::A",
- "void A(int a)"));
- // TODO: should we print "virtual"?
- }
- TEST(DeclPrinter, TestCXXMethodDecl4) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct Z {"
- " inline void A(int a);"
- "};",
- "A",
- "inline void A(int a)"));
- }
- TEST(DeclPrinter, TestCXXMethodDecl5) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct Z {"
- " virtual void A(int a) = 0;"
- "};",
- "A",
- "virtual void A(int a) = 0"));
- }
- TEST(DeclPrinter, TestCXXMethodDecl_CVQualifier1) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct Z {"
- " void A(int a) const;"
- "};",
- "A",
- "void A(int a) const"));
- }
- TEST(DeclPrinter, TestCXXMethodDecl_CVQualifier2) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct Z {"
- " void A(int a) volatile;"
- "};",
- "A",
- "void A(int a) volatile"));
- }
- TEST(DeclPrinter, TestCXXMethodDecl_CVQualifier3) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct Z {"
- " void A(int a) const volatile;"
- "};",
- "A",
- "void A(int a) const volatile"));
- }
- TEST(DeclPrinter, TestCXXMethodDecl_RefQualifier1) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "struct Z {"
- " void A(int a) &;"
- "};",
- "A",
- "void A(int a) &"));
- }
- TEST(DeclPrinter, TestCXXMethodDecl_RefQualifier2) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "struct Z {"
- " void A(int a) &&;"
- "};",
- "A",
- "void A(int a) &&"));
- }
- TEST(DeclPrinter, TestFunctionDecl_ExceptionSpecification1) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct Z {"
- " void A(int a) throw();"
- "};",
- "A",
- "void A(int a) throw()"));
- }
- TEST(DeclPrinter, TestFunctionDecl_ExceptionSpecification2) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct Z {"
- " void A(int a) throw(int);"
- "};",
- "A",
- "void A(int a) throw(int)"));
- }
- TEST(DeclPrinter, TestFunctionDecl_ExceptionSpecification3) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "class ZZ {};"
- "struct Z {"
- " void A(int a) throw(ZZ, int);"
- "};",
- "A",
- "void A(int a) throw(ZZ, int)"));
- }
- TEST(DeclPrinter, TestFunctionDecl_ExceptionSpecification4) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "struct Z {"
- " void A(int a) noexcept;"
- "};",
- "A",
- "void A(int a) noexcept"));
- }
- TEST(DeclPrinter, TestFunctionDecl_ExceptionSpecification5) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "struct Z {"
- " void A(int a) noexcept(true);"
- "};",
- "A",
- "void A(int a) noexcept(trueA(int a) noexcept(true)"));
- // WRONG; Should be: "void A(int a) noexcept(true);"
- }
- TEST(DeclPrinter, TestFunctionDecl_ExceptionSpecification6) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "struct Z {"
- " void A(int a) noexcept(1 < 2);"
- "};",
- "A",
- "void A(int a) noexcept(1 < 2A(int a) noexcept(1 < 2)"));
- // WRONG; Should be: "void A(int a) noexcept(1 < 2);"
- }
- TEST(DeclPrinter, TestFunctionDecl_ExceptionSpecification7) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "template<int N>"
- "struct Z {"
- " void A(int a) noexcept(N < 2);"
- "};",
- "A",
- "void A(int a) noexcept(N < 2A(int a) noexcept(N < 2)"));
- // WRONG; Should be: "void A(int a) noexcept(N < 2);"
- }
- TEST(DeclPrinter, TestVarDecl1) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "char *const (*(*A)[5])(int);",
- "A",
- "char *const (*(*A)[5])(int)"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestVarDecl2) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "void (*A)() throw(int);",
- "A",
- "void (*A)() throw(int)"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestVarDecl3) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "void (*A)() noexcept;",
- "A",
- "void (*A)() noexcept"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestFieldDecl1) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<typename T>"
- "struct Z { T A; };",
- "A",
- "T A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestFieldDecl2) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<int N>"
- "struct Z { int A[N]; };",
- "A",
- "int A[N]"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestClassTemplateDecl1) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<typename T>"
- "struct A { T a; };",
- classTemplateDecl(hasName("A")).bind("id"),
- "template <typename T> struct A {}"));
- }
- TEST(DeclPrinter, TestClassTemplateDecl2) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<typename T = int>"
- "struct A { T a; };",
- classTemplateDecl(hasName("A")).bind("id"),
- "template <typename T = int> struct A {}"));
- }
- TEST(DeclPrinter, TestClassTemplateDecl3) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<class T>"
- "struct A { T a; };",
- classTemplateDecl(hasName("A")).bind("id"),
- "template <class T> struct A {}"));
- }
- TEST(DeclPrinter, TestClassTemplateDecl4) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<typename T, typename U>"
- "struct A { T a; U b; };",
- classTemplateDecl(hasName("A")).bind("id"),
- "template <typename T, typename U> struct A {}"));
- }
- TEST(DeclPrinter, TestClassTemplateDecl5) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<int N>"
- "struct A { int a[N]; };",
- classTemplateDecl(hasName("A")).bind("id"),
- "template <int N> struct A {}"));
- }
- TEST(DeclPrinter, TestClassTemplateDecl6) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<int N = 42>"
- "struct A { int a[N]; };",
- classTemplateDecl(hasName("A")).bind("id"),
- "template <int N = 42> struct A {}"));
- }
- TEST(DeclPrinter, TestClassTemplateDecl7) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "typedef int MyInt;"
- "template<MyInt N>"
- "struct A { int a[N]; };",
- classTemplateDecl(hasName("A")).bind("id"),
- "template <MyInt N> struct A {}"));
- }
- TEST(DeclPrinter, TestClassTemplateDecl8) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<template<typename U> class T> struct A { };",
- classTemplateDecl(hasName("A")).bind("id"),
- "template <template <typename U> class T> struct A {}"));
- }
- TEST(DeclPrinter, TestClassTemplateDecl9) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<typename T> struct Z { };"
- "template<template<typename U> class T = Z> struct A { };",
- classTemplateDecl(hasName("A")).bind("id"),
- "template <template <typename U> class T> struct A {}"));
- }
- TEST(DeclPrinter, TestClassTemplateDecl10) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "template<typename... T>"
- "struct A { int a; };",
- classTemplateDecl(hasName("A")).bind("id"),
- "template <typename ...T> struct A {}"));
- }
- TEST(DeclPrinter, TestClassTemplateDecl11) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "template<typename... T>"
- "struct A : public T... { int a; };",
- classTemplateDecl(hasName("A")).bind("id"),
- "template <typename ...T> struct A : public T... {}"));
- }
- TEST(DeclPrinter, TestClassTemplatePartialSpecializationDecl1) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<typename T, typename U>"
- "struct A { T a; U b; };"
- "template<typename T>"
- "struct A<T, int> { T a; };",
- classTemplateSpecializationDecl().bind("id"),
- "template <typename T> struct A<T, int> {}"));
- }
- TEST(DeclPrinter, TestClassTemplatePartialSpecializationDecl2) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<typename T>"
- "struct A { T a; };"
- "template<typename T>"
- "struct A<T *> { T a; };",
- classTemplateSpecializationDecl().bind("id"),
- "template <typename T> struct A<type-parameter-0-0 *> {}"));
- // WRONG; Should be: "template<typename T> struct A<T *> { ... }"
- }
- TEST(DeclPrinter, TestClassTemplateSpecializationDecl1) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<typename T>"
- "struct A { T a; };"
- "template<>"
- "struct A<int> { int a; };",
- classTemplateSpecializationDecl().bind("id"),
- "template<> struct A<int> {}"));
- }
- TEST(DeclPrinter, TestFunctionTemplateDecl1) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<typename T>"
- "void A(T &t);",
- functionTemplateDecl(hasName("A")).bind("id"),
- "template <typename T> void A(T &t)"));
- }
- TEST(DeclPrinter, TestFunctionTemplateDecl2) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<typename T>"
- "void A(T &t) { }",
- functionTemplateDecl(hasName("A")).bind("id"),
- "template <typename T> void A(T &t)"));
- }
- TEST(DeclPrinter, TestFunctionTemplateDecl3) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "template<typename... T>"
- "void A(T... a);",
- functionTemplateDecl(hasName("A")).bind("id"),
- "template <typename ...T> void A(T ...a)"));
- }
- TEST(DeclPrinter, TestFunctionTemplateDecl4) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct Z { template<typename T> void A(T t); };",
- functionTemplateDecl(hasName("A")).bind("id"),
- "template <typename T> void A(T t)"));
- }
- TEST(DeclPrinter, TestFunctionTemplateDecl5) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "struct Z { template<typename T> void A(T t) {} };",
- functionTemplateDecl(hasName("A")).bind("id"),
- "template <typename T> void A(T t)"));
- }
- TEST(DeclPrinter, TestFunctionTemplateDecl6) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<typename T >struct Z {"
- " template<typename U> void A(U t) {}"
- "};",
- functionTemplateDecl(hasName("A")).bind("id"),
- "template <typename U> void A(U t)"));
- }
- TEST(DeclPrinter, TestTemplateArgumentList1) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<typename T> struct Z {};"
- "struct X {};"
- "Z<X> A;",
- "A",
- "Z<X> A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestTemplateArgumentList2) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<typename T, typename U> struct Z {};"
- "struct X {};"
- "typedef int Y;"
- "Z<X, Y> A;",
- "A",
- "Z<X, Y> A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestTemplateArgumentList3) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<typename T> struct Z {};"
- "template<typename T> struct X {};"
- "Z<X<int> > A;",
- "A",
- "Z<X<int> > A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestTemplateArgumentList4) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "template<typename T> struct Z {};"
- "template<typename T> struct X {};"
- "Z<X<int>> A;",
- "A",
- "Z<X<int> > A"));
- // Should be: with semicolon, without extra space in "> >"
- }
- TEST(DeclPrinter, TestTemplateArgumentList5) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<typename T> struct Z {};"
- "template<typename T> struct X { Z<T> A; };",
- "A",
- "Z<T> A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestTemplateArgumentList6) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<template<typename T> class U> struct Z {};"
- "template<typename T> struct X {};"
- "Z<X> A;",
- "A",
- "Z<X> A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestTemplateArgumentList7) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<template<typename T> class U> struct Z {};"
- "template<template<typename T> class U> struct Y {"
- " Z<U> A;"
- "};",
- "A",
- "Z<U> A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestTemplateArgumentList8) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<typename T> struct Z {};"
- "template<template<typename T> class U> struct Y {"
- " Z<U<int> > A;"
- "};",
- "A",
- "Z<U<int> > A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestTemplateArgumentList9) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<unsigned I> struct Z {};"
- "Z<0> A;",
- "A",
- "Z<0> A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestTemplateArgumentList10) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<unsigned I> struct Z {};"
- "template<unsigned I> struct X { Z<I> A; };",
- "A",
- "Z<I> A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestTemplateArgumentList11) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<int I> struct Z {};"
- "Z<42 * 10 - 420 / 1> A;",
- "A",
- "Z<42 * 10 - 420 / 1> A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestTemplateArgumentList12) {
- ASSERT_TRUE(PrintedDeclCXX98Matches(
- "template<const char *p> struct Z {};"
- "extern const char X[] = \"aaa\";"
- "Z<X> A;",
- "A",
- "Z<X> A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestTemplateArgumentList13) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "template<typename... T> struct Z {};"
- "template<typename... T> struct X {"
- " Z<T...> A;"
- "};",
- "A",
- "Z<T...> A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestTemplateArgumentList14) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "template<typename... T> struct Z {};"
- "template<typename T> struct Y {};"
- "template<typename... T> struct X {"
- " Z<Y<T>...> A;"
- "};",
- "A",
- "Z<Y<T>...> A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestTemplateArgumentList15) {
- ASSERT_TRUE(PrintedDeclCXX11Matches(
- "template<unsigned I> struct Z {};"
- "template<typename... T> struct X {"
- " Z<sizeof...(T)> A;"
- "};",
- "A",
- "Z<sizeof...(T)> A"));
- // Should be: with semicolon
- }
- TEST(DeclPrinter, TestStaticAssert1) {
- ASSERT_TRUE(PrintedDeclCXX1ZMatches(
- "static_assert(true);",
- staticAssertDecl().bind("id"),
- "static_assert(true)"));
- }
- TEST(DeclPrinter, TestObjCMethod1) {
- ASSERT_TRUE(PrintedDeclObjCMatches(
- "__attribute__((objc_root_class)) @interface X\n"
- "- (int)A:(id)anObject inRange:(long)range;\n"
- "@end\n"
- "@implementation X\n"
- "- (int)A:(id)anObject inRange:(long)range { int printThis; return 0; }\n"
- "@end\n",
- namedDecl(hasName("A:inRange:"),
- hasDescendant(namedDecl(hasName("printThis")))).bind("id"),
- "- (int)A:(id)anObject inRange:(long)range"));
- }
- TEST(DeclPrinter, TestObjCProtocol1) {
- ASSERT_TRUE(PrintedDeclObjCMatches(
- "@protocol P1, P2;",
- namedDecl(hasName("P1")).bind("id"),
- "@protocol P1;\n"));
- ASSERT_TRUE(PrintedDeclObjCMatches(
- "@protocol P1, P2;",
- namedDecl(hasName("P2")).bind("id"),
- "@protocol P2;\n"));
- }
- TEST(DeclPrinter, TestObjCProtocol2) {
- ASSERT_TRUE(PrintedDeclObjCMatches(
- "@protocol P2 @end"
- "@protocol P1<P2> @end",
- namedDecl(hasName("P1")).bind("id"),
- "@protocol P1<P2>\n@end"));
- }
|