Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1 | //===- unittests/AST/DeclPrinterTest.cpp --- Declaration printer 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 | // This file contains tests for Decl::print() and related methods. |
| 11 | // |
| 12 | // Search this file for WRONG to see test cases that are producing something |
| 13 | // completely wrong, invalid C++ or just misleading. |
| 14 | // |
| 15 | // These tests have a coding convention: |
| 16 | // * declaration to be printed is named 'A' unless it should have some special |
| 17 | // name (e.g., 'operator+'); |
| 18 | // * additional helper declarations are 'Z', 'Y', 'X' and so on. |
| 19 | // |
| 20 | //===----------------------------------------------------------------------===// |
| 21 | |
| 22 | #include "clang/AST/ASTContext.h" |
| 23 | #include "clang/ASTMatchers/ASTMatchFinder.h" |
| 24 | #include "clang/Tooling/Tooling.h" |
Daniel Jasper | 7fd90b0 | 2012-08-24 05:50:27 +0000 | [diff] [blame] | 25 | #include "llvm/ADT/SmallString.h" |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 26 | #include "gtest/gtest.h" |
| 27 | |
| 28 | using namespace clang; |
| 29 | using namespace ast_matchers; |
| 30 | using namespace tooling; |
| 31 | |
| 32 | namespace { |
| 33 | |
| 34 | void PrintDecl(raw_ostream &Out, const ASTContext *Context, const Decl *D) { |
| 35 | PrintingPolicy Policy = Context->getPrintingPolicy(); |
Dmitri Gribenko | d1fc82e | 2012-08-21 17:36:32 +0000 | [diff] [blame] | 36 | Policy.TerseOutput = true; |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 37 | D->print(Out, Policy, /*Indentation*/ 0, /*PrintInstantiation*/ false); |
| 38 | } |
| 39 | |
| 40 | class PrintMatch : public MatchFinder::MatchCallback { |
| 41 | SmallString<1024> Printed; |
| 42 | unsigned NumFoundDecls; |
| 43 | |
| 44 | public: |
| 45 | PrintMatch() : NumFoundDecls(0) {} |
| 46 | |
| 47 | virtual void run(const MatchFinder::MatchResult &Result) { |
| 48 | const Decl *D = Result.Nodes.getDeclAs<Decl>("id"); |
| 49 | if (!D || D->isImplicit()) |
| 50 | return; |
| 51 | NumFoundDecls++; |
| 52 | if (NumFoundDecls > 1) |
| 53 | return; |
| 54 | |
| 55 | llvm::raw_svector_ostream Out(Printed); |
| 56 | PrintDecl(Out, Result.Context, D); |
| 57 | } |
| 58 | |
| 59 | StringRef getPrinted() const { |
| 60 | return Printed; |
| 61 | } |
| 62 | |
| 63 | unsigned getNumFoundDecls() const { |
| 64 | return NumFoundDecls; |
| 65 | } |
| 66 | }; |
| 67 | |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 68 | ::testing::AssertionResult PrintedDeclMatches( |
| 69 | StringRef Code, |
Dmitri Gribenko | 976f118 | 2012-08-31 03:23:26 +0000 | [diff] [blame] | 70 | const std::vector<std::string> &Args, |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 71 | const DeclarationMatcher &NodeMatch, |
Fariborz Jahanian | a7a68b6 | 2012-10-18 19:12:17 +0000 | [diff] [blame^] | 72 | StringRef ExpectedPrinted, |
| 73 | StringRef FileName) { |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 74 | PrintMatch Printer; |
| 75 | MatchFinder Finder; |
| 76 | Finder.addMatcher(NodeMatch, &Printer); |
| 77 | OwningPtr<FrontendActionFactory> Factory(newFrontendActionFactory(&Finder)); |
| 78 | |
Fariborz Jahanian | a7a68b6 | 2012-10-18 19:12:17 +0000 | [diff] [blame^] | 79 | if (!runToolOnCodeWithArgs(Factory->create(), Code, Args, FileName)) |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 80 | return testing::AssertionFailure() << "Parsing error in \"" << Code << "\""; |
| 81 | |
| 82 | if (Printer.getNumFoundDecls() == 0) |
| 83 | return testing::AssertionFailure() |
| 84 | << "Matcher didn't find any declarations"; |
| 85 | |
| 86 | if (Printer.getNumFoundDecls() > 1) |
| 87 | return testing::AssertionFailure() |
| 88 | << "Matcher should match only one declaration " |
| 89 | "(found " << Printer.getNumFoundDecls() << ")"; |
| 90 | |
| 91 | if (Printer.getPrinted() != ExpectedPrinted) |
| 92 | return ::testing::AssertionFailure() |
| 93 | << "Expected \"" << ExpectedPrinted << "\", " |
| 94 | "got \"" << Printer.getPrinted() << "\""; |
| 95 | |
| 96 | return ::testing::AssertionSuccess(); |
| 97 | } |
| 98 | |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 99 | ::testing::AssertionResult PrintedDeclCXX98Matches(StringRef Code, |
| 100 | StringRef DeclName, |
| 101 | StringRef ExpectedPrinted) { |
Dmitri Gribenko | 976f118 | 2012-08-31 03:23:26 +0000 | [diff] [blame] | 102 | std::vector<std::string> Args(1, "-std=c++98"); |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 103 | return PrintedDeclMatches(Code, |
Dmitri Gribenko | 976f118 | 2012-08-31 03:23:26 +0000 | [diff] [blame] | 104 | Args, |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 105 | namedDecl(hasName(DeclName)).bind("id"), |
Fariborz Jahanian | a7a68b6 | 2012-10-18 19:12:17 +0000 | [diff] [blame^] | 106 | ExpectedPrinted, |
| 107 | "input.cc"); |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 108 | } |
| 109 | |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 110 | ::testing::AssertionResult PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 111 | StringRef Code, |
| 112 | const DeclarationMatcher &NodeMatch, |
| 113 | StringRef ExpectedPrinted) { |
Dmitri Gribenko | 976f118 | 2012-08-31 03:23:26 +0000 | [diff] [blame] | 114 | std::vector<std::string> Args(1, "-std=c++98"); |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 115 | return PrintedDeclMatches(Code, |
Dmitri Gribenko | 976f118 | 2012-08-31 03:23:26 +0000 | [diff] [blame] | 116 | Args, |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 117 | NodeMatch, |
Fariborz Jahanian | a7a68b6 | 2012-10-18 19:12:17 +0000 | [diff] [blame^] | 118 | ExpectedPrinted, |
| 119 | "input.cc"); |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | ::testing::AssertionResult PrintedDeclCXX11Matches(StringRef Code, |
| 123 | StringRef DeclName, |
| 124 | StringRef ExpectedPrinted) { |
Dmitri Gribenko | 976f118 | 2012-08-31 03:23:26 +0000 | [diff] [blame] | 125 | std::vector<std::string> Args(1, "-std=c++11"); |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 126 | return PrintedDeclMatches(Code, |
Dmitri Gribenko | 976f118 | 2012-08-31 03:23:26 +0000 | [diff] [blame] | 127 | Args, |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 128 | namedDecl(hasName(DeclName)).bind("id"), |
Fariborz Jahanian | a7a68b6 | 2012-10-18 19:12:17 +0000 | [diff] [blame^] | 129 | ExpectedPrinted, |
| 130 | "input.cc"); |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | ::testing::AssertionResult PrintedDeclCXX11Matches( |
| 134 | StringRef Code, |
| 135 | const DeclarationMatcher &NodeMatch, |
| 136 | StringRef ExpectedPrinted) { |
Dmitri Gribenko | 976f118 | 2012-08-31 03:23:26 +0000 | [diff] [blame] | 137 | std::vector<std::string> Args(1, "-std=c++11"); |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 138 | return PrintedDeclMatches(Code, |
Dmitri Gribenko | 976f118 | 2012-08-31 03:23:26 +0000 | [diff] [blame] | 139 | Args, |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 140 | NodeMatch, |
Fariborz Jahanian | a7a68b6 | 2012-10-18 19:12:17 +0000 | [diff] [blame^] | 141 | ExpectedPrinted, |
| 142 | "input.cc"); |
| 143 | } |
| 144 | |
| 145 | ::testing::AssertionResult PrintedDeclObjCMatches( |
| 146 | StringRef Code, |
| 147 | const DeclarationMatcher &NodeMatch, |
| 148 | StringRef ExpectedPrinted) { |
| 149 | std::vector<std::string> Args(1, ""); |
| 150 | return PrintedDeclMatches(Code, |
| 151 | Args, |
| 152 | NodeMatch, |
| 153 | ExpectedPrinted, |
| 154 | "input.m"); |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | } // unnamed namespace |
| 158 | |
| 159 | TEST(DeclPrinter, TestNamespace1) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 160 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 161 | "namespace A { int B; }", |
| 162 | "A", |
| 163 | "namespace A {\n}")); |
| 164 | // Should be: with { ... } |
| 165 | } |
| 166 | |
| 167 | TEST(DeclPrinter, TestNamespace2) { |
| 168 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 169 | "inline namespace A { int B; }", |
| 170 | "A", |
| 171 | "inline namespace A {\n}")); |
| 172 | // Should be: with { ... } |
| 173 | } |
| 174 | |
| 175 | TEST(DeclPrinter, TestNamespaceAlias1) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 176 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 177 | "namespace Z { }" |
| 178 | "namespace A = Z;", |
| 179 | "A", |
| 180 | "namespace A = Z")); |
| 181 | // Should be: with semicolon |
| 182 | } |
| 183 | |
| 184 | TEST(DeclPrinter, TestNamespaceAlias2) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 185 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 186 | "namespace X { namespace Y {} }" |
| 187 | "namespace A = X::Y;", |
| 188 | "A", |
| 189 | "namespace A = X::Y")); |
| 190 | // Should be: with semicolon |
| 191 | } |
| 192 | |
| 193 | TEST(DeclPrinter, TestCXXRecordDecl1) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 194 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 195 | "class A { int a; };", |
| 196 | "A", |
| 197 | "class A {\n}")); |
| 198 | // Should be: with semicolon, with { ... } |
| 199 | } |
| 200 | |
| 201 | TEST(DeclPrinter, TestCXXRecordDecl2) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 202 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 203 | "struct A { int a; };", |
| 204 | "A", |
| 205 | "struct A {\n}")); |
| 206 | // Should be: with semicolon, with { ... } |
| 207 | } |
| 208 | |
| 209 | TEST(DeclPrinter, TestCXXRecordDecl3) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 210 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 211 | "union A { int a; };", |
| 212 | "A", |
| 213 | "union A {\n}")); |
| 214 | // Should be: with semicolon, with { ... } |
| 215 | } |
| 216 | |
| 217 | TEST(DeclPrinter, TestCXXRecordDecl4) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 218 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 219 | "class Z { int a; };" |
| 220 | "class A : Z { int b; };", |
| 221 | "A", |
| 222 | "class A : Z {\n}")); |
| 223 | // Should be: with semicolon, with { ... }, without two spaces |
| 224 | } |
| 225 | |
| 226 | TEST(DeclPrinter, TestCXXRecordDecl5) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 227 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 228 | "struct Z { int a; };" |
| 229 | "struct A : Z { int b; };", |
| 230 | "A", |
| 231 | "struct A : Z {\n}")); |
| 232 | // Should be: with semicolon, with { ... }, without two spaces |
| 233 | } |
| 234 | |
| 235 | TEST(DeclPrinter, TestCXXRecordDecl6) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 236 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 237 | "class Z { int a; };" |
| 238 | "class A : public Z { int b; };", |
| 239 | "A", |
| 240 | "class A : public Z {\n}")); |
| 241 | // Should be: with semicolon, with { ... } |
| 242 | } |
| 243 | |
| 244 | TEST(DeclPrinter, TestCXXRecordDecl7) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 245 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 246 | "class Z { int a; };" |
| 247 | "class A : protected Z { int b; };", |
| 248 | "A", |
| 249 | "class A : protected Z {\n}")); |
| 250 | // Should be: with semicolon, with { ... } |
| 251 | } |
| 252 | |
| 253 | TEST(DeclPrinter, TestCXXRecordDecl8) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 254 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 255 | "class Z { int a; };" |
| 256 | "class A : private Z { int b; };", |
| 257 | "A", |
| 258 | "class A : private Z {\n}")); |
| 259 | // Should be: with semicolon, with { ... } |
| 260 | } |
| 261 | |
| 262 | TEST(DeclPrinter, TestCXXRecordDecl9) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 263 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 264 | "class Z { int a; };" |
| 265 | "class A : virtual Z { int b; };", |
| 266 | "A", |
| 267 | "class A : virtual Z {\n}")); |
| 268 | // Should be: with semicolon, with { ... }, without two spaces |
| 269 | } |
| 270 | |
| 271 | TEST(DeclPrinter, TestCXXRecordDecl10) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 272 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 273 | "class Z { int a; };" |
| 274 | "class A : virtual public Z { int b; };", |
| 275 | "A", |
| 276 | "class A : virtual public Z {\n}")); |
| 277 | // Should be: with semicolon, with { ... } |
| 278 | } |
| 279 | |
| 280 | TEST(DeclPrinter, TestCXXRecordDecl11) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 281 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 282 | "class Z { int a; };" |
| 283 | "class Y : virtual public Z { int b; };" |
| 284 | "class A : virtual public Z, private Y { int c; };", |
| 285 | "A", |
| 286 | "class A : virtual public Z, private Y {\n}")); |
| 287 | // Should be: with semicolon, with { ... } |
| 288 | } |
| 289 | |
| 290 | TEST(DeclPrinter, TestFunctionDecl1) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 291 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 292 | "void A();", |
| 293 | "A", |
| 294 | "void A()")); |
| 295 | // Should be: with semicolon |
| 296 | } |
| 297 | |
| 298 | TEST(DeclPrinter, TestFunctionDecl2) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 299 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 2e0b8d9 | 2012-08-21 17:47:24 +0000 | [diff] [blame] | 300 | "void A() {}", |
| 301 | "A", |
| 302 | "void A()")); |
| 303 | // Should be: with semicolon |
| 304 | } |
| 305 | |
| 306 | TEST(DeclPrinter, TestFunctionDecl3) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 307 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 2e0b8d9 | 2012-08-21 17:47:24 +0000 | [diff] [blame] | 308 | "void Z();" |
| 309 | "void A() { Z(); }", |
| 310 | "A", |
| 311 | "void A()")); |
| 312 | // Should be: with semicolon |
| 313 | } |
| 314 | |
| 315 | TEST(DeclPrinter, TestFunctionDecl4) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 316 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 317 | "extern void A();", |
| 318 | "A", |
| 319 | "extern void A()")); |
| 320 | // Should be: with semicolon |
| 321 | } |
| 322 | |
Dmitri Gribenko | 2e0b8d9 | 2012-08-21 17:47:24 +0000 | [diff] [blame] | 323 | TEST(DeclPrinter, TestFunctionDecl5) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 324 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 325 | "static void A();", |
| 326 | "A", |
| 327 | "static void A()")); |
| 328 | // Should be: with semicolon |
| 329 | } |
| 330 | |
Dmitri Gribenko | 2e0b8d9 | 2012-08-21 17:47:24 +0000 | [diff] [blame] | 331 | TEST(DeclPrinter, TestFunctionDecl6) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 332 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 333 | "inline void A();", |
| 334 | "A", |
| 335 | "inline void A()")); |
| 336 | // Should be: with semicolon |
| 337 | } |
| 338 | |
Dmitri Gribenko | 2e0b8d9 | 2012-08-21 17:47:24 +0000 | [diff] [blame] | 339 | TEST(DeclPrinter, TestFunctionDecl7) { |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 340 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 341 | "constexpr int A(int a);", |
| 342 | "A", |
| 343 | "int A(int a)")); |
| 344 | // WRONG; Should be: "constexpr int A(int a);" |
| 345 | } |
| 346 | |
Dmitri Gribenko | 2e0b8d9 | 2012-08-21 17:47:24 +0000 | [diff] [blame] | 347 | TEST(DeclPrinter, TestFunctionDecl8) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 348 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 349 | "void A(int a);", |
| 350 | "A", |
| 351 | "void A(int a)")); |
| 352 | // Should be: with semicolon |
| 353 | } |
| 354 | |
Dmitri Gribenko | 2e0b8d9 | 2012-08-21 17:47:24 +0000 | [diff] [blame] | 355 | TEST(DeclPrinter, TestFunctionDecl9) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 356 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 357 | "void A(...);", |
| 358 | "A", |
| 359 | "void A(...)")); |
| 360 | // Should be: with semicolon |
| 361 | } |
| 362 | |
Dmitri Gribenko | 2e0b8d9 | 2012-08-21 17:47:24 +0000 | [diff] [blame] | 363 | TEST(DeclPrinter, TestFunctionDecl10) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 364 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 365 | "void A(int a, ...);", |
| 366 | "A", |
| 367 | "void A(int a, ...)")); |
| 368 | // Should be: with semicolon |
| 369 | } |
| 370 | |
Dmitri Gribenko | 2e0b8d9 | 2012-08-21 17:47:24 +0000 | [diff] [blame] | 371 | TEST(DeclPrinter, TestFunctionDecl11) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 372 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 373 | "typedef long size_t;" |
| 374 | "typedef int *pInt;" |
| 375 | "void A(int a, pInt b, size_t c);", |
| 376 | "A", |
| 377 | "void A(int a, pInt b, size_t c)")); |
| 378 | // Should be: with semicolon |
| 379 | } |
| 380 | |
Dmitri Gribenko | 2e0b8d9 | 2012-08-21 17:47:24 +0000 | [diff] [blame] | 381 | TEST(DeclPrinter, TestFunctionDecl12) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 382 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 383 | "void A(int a, int b = 0);", |
| 384 | "A", |
| 385 | "void A(int a, int b = 0)")); |
| 386 | // Should be: with semicolon |
| 387 | } |
| 388 | |
Dmitri Gribenko | 2e0b8d9 | 2012-08-21 17:47:24 +0000 | [diff] [blame] | 389 | TEST(DeclPrinter, TestFunctionDecl13) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 390 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 391 | "void (*A(int a))(int b);", |
| 392 | "A", |
| 393 | "void (*A(int a))(int)")); |
| 394 | // Should be: with semicolon, with parameter name (?) |
| 395 | } |
| 396 | |
Dmitri Gribenko | 2e0b8d9 | 2012-08-21 17:47:24 +0000 | [diff] [blame] | 397 | TEST(DeclPrinter, TestFunctionDecl14) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 398 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 399 | "template<typename T>" |
| 400 | "void A(T t) { }" |
| 401 | "template<>" |
| 402 | "void A(int N) { }", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 403 | functionDecl(hasName("A"), isExplicitTemplateSpecialization()).bind("id"), |
Dmitri Gribenko | 2e0b8d9 | 2012-08-21 17:47:24 +0000 | [diff] [blame] | 404 | "void A(int N)")); |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 405 | // WRONG; Should be: "template <> void A(int N);")); |
| 406 | } |
| 407 | |
| 408 | |
| 409 | TEST(DeclPrinter, TestCXXConstructorDecl1) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 410 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 411 | "struct A {" |
| 412 | " A();" |
| 413 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 414 | constructorDecl(ofClass(hasName("A"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 415 | "")); |
| 416 | // WRONG; Should be: "A();" |
| 417 | } |
| 418 | |
| 419 | TEST(DeclPrinter, TestCXXConstructorDecl2) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 420 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 421 | "struct A {" |
| 422 | " A(int a);" |
| 423 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 424 | constructorDecl(ofClass(hasName("A"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 425 | "")); |
| 426 | // WRONG; Should be: "A(int a);" |
| 427 | } |
| 428 | |
| 429 | TEST(DeclPrinter, TestCXXConstructorDecl3) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 430 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 431 | "struct A {" |
| 432 | " A(const A &a);" |
| 433 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 434 | constructorDecl(ofClass(hasName("A"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 435 | "")); |
| 436 | // WRONG; Should be: "A(const A &a);" |
| 437 | } |
| 438 | |
| 439 | TEST(DeclPrinter, TestCXXConstructorDecl4) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 440 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 441 | "struct A {" |
| 442 | " A(const A &a, int = 0);" |
| 443 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 444 | constructorDecl(ofClass(hasName("A"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 445 | "")); |
| 446 | // WRONG; Should be: "A(const A &a, int = 0);" |
| 447 | } |
| 448 | |
| 449 | TEST(DeclPrinter, TestCXXConstructorDecl5) { |
| 450 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 451 | "struct A {" |
| 452 | " A(const A &&a);" |
| 453 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 454 | constructorDecl(ofClass(hasName("A"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 455 | "")); |
| 456 | // WRONG; Should be: "A(const A &&a);" |
| 457 | } |
| 458 | |
| 459 | TEST(DeclPrinter, TestCXXConstructorDecl6) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 460 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 461 | "struct A {" |
| 462 | " explicit A(int a);" |
| 463 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 464 | constructorDecl(ofClass(hasName("A"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 465 | "")); |
| 466 | // WRONG; Should be: "explicit A(int a);" |
| 467 | } |
| 468 | |
| 469 | TEST(DeclPrinter, TestCXXConstructorDecl7) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 470 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 471 | "struct A {" |
| 472 | " constexpr A();" |
| 473 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 474 | constructorDecl(ofClass(hasName("A"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 475 | "")); |
| 476 | // WRONG; Should be: "constexpr A();" |
| 477 | } |
| 478 | |
| 479 | TEST(DeclPrinter, TestCXXConstructorDecl8) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 480 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 481 | "struct A {" |
| 482 | " A() = default;" |
| 483 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 484 | constructorDecl(ofClass(hasName("A"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 485 | "")); |
| 486 | // WRONG; Should be: "A() = default;" |
| 487 | } |
| 488 | |
| 489 | TEST(DeclPrinter, TestCXXConstructorDecl9) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 490 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 491 | "struct A {" |
| 492 | " A() = delete;" |
| 493 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 494 | constructorDecl(ofClass(hasName("A"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 495 | " = delete")); |
| 496 | // WRONG; Should be: "A() = delete;" |
| 497 | } |
| 498 | |
Dmitri Gribenko | c468424 | 2012-08-24 00:26:25 +0000 | [diff] [blame] | 499 | TEST(DeclPrinter, TestCXXConstructorDecl10) { |
| 500 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 501 | "template<typename... T>" |
| 502 | "struct A {" |
| 503 | " A(const A &a);" |
| 504 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 505 | constructorDecl(ofClass(hasName("A"))).bind("id"), |
Dmitri Gribenko | c468424 | 2012-08-24 00:26:25 +0000 | [diff] [blame] | 506 | "")); |
| 507 | // WRONG; Should be: "A(const A &a);" |
| 508 | } |
| 509 | |
NAKAMURA Takumi | 29b1f68 | 2012-08-25 00:05:56 +0000 | [diff] [blame] | 510 | #if !defined(_MSC_VER) |
Dmitri Gribenko | c468424 | 2012-08-24 00:26:25 +0000 | [diff] [blame] | 511 | TEST(DeclPrinter, TestCXXConstructorDecl11) { |
| 512 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 513 | "template<typename... T>" |
| 514 | "struct A : public T... {" |
| 515 | " A(T&&... ts) : T(ts)... {}" |
| 516 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 517 | constructorDecl(ofClass(hasName("A"))).bind("id"), |
Dmitri Gribenko | c468424 | 2012-08-24 00:26:25 +0000 | [diff] [blame] | 518 | "A<T...>(T &&ts...) : T(ts)")); |
Dmitri Gribenko | f6ec15a | 2012-08-24 00:27:50 +0000 | [diff] [blame] | 519 | // WRONG; Should be: "A(T&&... ts) : T(ts)..." |
Dmitri Gribenko | c468424 | 2012-08-24 00:26:25 +0000 | [diff] [blame] | 520 | } |
NAKAMURA Takumi | 29b1f68 | 2012-08-25 00:05:56 +0000 | [diff] [blame] | 521 | #endif |
Dmitri Gribenko | c468424 | 2012-08-24 00:26:25 +0000 | [diff] [blame] | 522 | |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 523 | TEST(DeclPrinter, TestCXXDestructorDecl1) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 524 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 525 | "struct A {" |
| 526 | " ~A();" |
| 527 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 528 | destructorDecl(ofClass(hasName("A"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 529 | "void ~A()")); |
| 530 | // WRONG; Should be: "~A();" |
| 531 | } |
| 532 | |
| 533 | TEST(DeclPrinter, TestCXXDestructorDecl2) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 534 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 535 | "struct A {" |
| 536 | " virtual ~A();" |
| 537 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 538 | destructorDecl(ofClass(hasName("A"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 539 | "virtual void ~A()")); |
| 540 | // WRONG; Should be: "virtual ~A();" |
| 541 | } |
| 542 | |
| 543 | TEST(DeclPrinter, TestCXXConversionDecl1) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 544 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 545 | "struct A {" |
| 546 | " operator int();" |
| 547 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 548 | methodDecl(ofClass(hasName("A"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 549 | "int operator int()")); |
| 550 | // WRONG; Should be: "operator int();" |
| 551 | } |
| 552 | |
| 553 | TEST(DeclPrinter, TestCXXConversionDecl2) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 554 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 555 | "struct A {" |
| 556 | " operator bool();" |
| 557 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 558 | methodDecl(ofClass(hasName("A"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 559 | "bool operator _Bool()")); |
| 560 | // WRONG; Should be: "operator bool();" |
| 561 | } |
| 562 | |
| 563 | TEST(DeclPrinter, TestCXXConversionDecl3) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 564 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 565 | "struct Z {};" |
| 566 | "struct A {" |
| 567 | " operator Z();" |
| 568 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 569 | methodDecl(ofClass(hasName("A"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 570 | "Z operator struct Z()")); |
| 571 | // WRONG; Should be: "operator Z();" |
| 572 | } |
| 573 | |
| 574 | TEST(DeclPrinter, TestCXXMethodDecl_AllocationFunction1) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 575 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 576 | "namespace std { typedef decltype(sizeof(int)) size_t; }" |
| 577 | "struct Z {" |
| 578 | " void *operator new(std::size_t);" |
| 579 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 580 | methodDecl(ofClass(hasName("Z"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 581 | "void *operator new(std::size_t)")); |
| 582 | // Should be: with semicolon |
| 583 | } |
| 584 | |
| 585 | TEST(DeclPrinter, TestCXXMethodDecl_AllocationFunction2) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 586 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 587 | "namespace std { typedef decltype(sizeof(int)) size_t; }" |
| 588 | "struct Z {" |
| 589 | " void *operator new[](std::size_t);" |
| 590 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 591 | methodDecl(ofClass(hasName("Z"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 592 | "void *operator new[](std::size_t)")); |
| 593 | // Should be: with semicolon |
| 594 | } |
| 595 | |
| 596 | TEST(DeclPrinter, TestCXXMethodDecl_AllocationFunction3) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 597 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 598 | "struct Z {" |
| 599 | " void operator delete(void *);" |
| 600 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 601 | methodDecl(ofClass(hasName("Z"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 602 | "void operator delete(void *) noexcept")); |
| 603 | // Should be: with semicolon, without noexcept? |
| 604 | } |
| 605 | |
| 606 | TEST(DeclPrinter, TestCXXMethodDecl_AllocationFunction4) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 607 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 608 | "struct Z {" |
| 609 | " void operator delete(void *);" |
| 610 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 611 | methodDecl(ofClass(hasName("Z"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 612 | "void operator delete(void *)")); |
| 613 | // Should be: with semicolon |
| 614 | } |
| 615 | |
| 616 | TEST(DeclPrinter, TestCXXMethodDecl_AllocationFunction5) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 617 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 618 | "struct Z {" |
| 619 | " void operator delete[](void *);" |
| 620 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 621 | methodDecl(ofClass(hasName("Z"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 622 | "void operator delete[](void *) noexcept")); |
| 623 | // Should be: with semicolon, without noexcept? |
| 624 | } |
| 625 | |
| 626 | TEST(DeclPrinter, TestCXXMethodDecl_Operator1) { |
| 627 | const char *OperatorNames[] = { |
| 628 | "+", "-", "*", "/", "%", "^", "&", "|", |
| 629 | "=", "<", ">", "+=", "-=", "*=", "/=", "%=", |
| 630 | "^=", "&=", "|=", "<<", ">>", ">>=", "<<=", "==", "!=", |
| 631 | "<=", ">=", "&&", "||", ",", "->*", |
| 632 | "()", "[]" |
| 633 | }; |
| 634 | |
| 635 | for (unsigned i = 0, e = llvm::array_lengthof(OperatorNames); i != e; ++i) { |
| 636 | SmallString<128> Code; |
| 637 | Code.append("struct Z { void operator"); |
| 638 | Code.append(OperatorNames[i]); |
| 639 | Code.append("(Z z); };"); |
| 640 | |
| 641 | SmallString<128> Expected; |
| 642 | Expected.append("void operator"); |
| 643 | Expected.append(OperatorNames[i]); |
| 644 | Expected.append("(Z z)"); |
| 645 | // Should be: with semicolon |
| 646 | |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 647 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 648 | Code, |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 649 | methodDecl(ofClass(hasName("Z"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 650 | Expected)); |
| 651 | } |
| 652 | } |
| 653 | |
| 654 | TEST(DeclPrinter, TestCXXMethodDecl_Operator2) { |
| 655 | const char *OperatorNames[] = { |
| 656 | "~", "!", "++", "--", "->" |
| 657 | }; |
| 658 | |
| 659 | for (unsigned i = 0, e = llvm::array_lengthof(OperatorNames); i != e; ++i) { |
| 660 | SmallString<128> Code; |
| 661 | Code.append("struct Z { void operator"); |
| 662 | Code.append(OperatorNames[i]); |
| 663 | Code.append("(); };"); |
| 664 | |
| 665 | SmallString<128> Expected; |
| 666 | Expected.append("void operator"); |
| 667 | Expected.append(OperatorNames[i]); |
| 668 | Expected.append("()"); |
| 669 | // Should be: with semicolon |
| 670 | |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 671 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 672 | Code, |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 673 | methodDecl(ofClass(hasName("Z"))).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 674 | Expected)); |
| 675 | } |
| 676 | } |
| 677 | |
| 678 | TEST(DeclPrinter, TestCXXMethodDecl1) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 679 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 680 | "struct Z {" |
| 681 | " void A(int a);" |
| 682 | "};", |
| 683 | "A", |
| 684 | "void A(int a)")); |
| 685 | // Should be: with semicolon |
| 686 | } |
| 687 | |
| 688 | TEST(DeclPrinter, TestCXXMethodDecl2) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 689 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 690 | "struct Z {" |
| 691 | " virtual void A(int a);" |
| 692 | "};", |
| 693 | "A", |
| 694 | "virtual void A(int a)")); |
| 695 | // Should be: with semicolon |
| 696 | } |
| 697 | |
| 698 | TEST(DeclPrinter, TestCXXMethodDecl3) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 699 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 700 | "struct Z {" |
| 701 | " virtual void A(int a);" |
| 702 | "};" |
| 703 | "struct ZZ : Z {" |
| 704 | " void A(int a);" |
| 705 | "};", |
| 706 | "ZZ::A", |
| 707 | "void A(int a)")); |
| 708 | // Should be: with semicolon |
| 709 | // TODO: should we print "virtual"? |
| 710 | } |
| 711 | |
| 712 | TEST(DeclPrinter, TestCXXMethodDecl4) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 713 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 714 | "struct Z {" |
| 715 | " inline void A(int a);" |
| 716 | "};", |
| 717 | "A", |
| 718 | "inline void A(int a)")); |
| 719 | // Should be: with semicolon |
| 720 | } |
| 721 | |
| 722 | TEST(DeclPrinter, TestCXXMethodDecl5) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 723 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 724 | "struct Z {" |
| 725 | " virtual void A(int a) = 0;" |
| 726 | "};", |
| 727 | "A", |
| 728 | "virtual void A(int a) = 0")); |
| 729 | // Should be: with semicolon |
| 730 | } |
| 731 | |
| 732 | TEST(DeclPrinter, TestCXXMethodDecl_CVQualifier1) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 733 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 734 | "struct Z {" |
| 735 | " void A(int a) const;" |
| 736 | "};", |
| 737 | "A", |
| 738 | "void A(int a) const")); |
| 739 | // Should be: with semicolon |
| 740 | } |
| 741 | |
| 742 | TEST(DeclPrinter, TestCXXMethodDecl_CVQualifier2) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 743 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 744 | "struct Z {" |
| 745 | " void A(int a) volatile;" |
| 746 | "};", |
| 747 | "A", |
| 748 | "void A(int a) volatile")); |
| 749 | // Should be: with semicolon |
| 750 | } |
| 751 | |
| 752 | TEST(DeclPrinter, TestCXXMethodDecl_CVQualifier3) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 753 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 754 | "struct Z {" |
| 755 | " void A(int a) const volatile;" |
| 756 | "};", |
| 757 | "A", |
| 758 | "void A(int a) const volatile")); |
| 759 | // Should be: with semicolon |
| 760 | } |
| 761 | |
| 762 | TEST(DeclPrinter, TestCXXMethodDecl_RefQualifier1) { |
| 763 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 764 | "struct Z {" |
| 765 | " void A(int a) &;" |
| 766 | "};", |
| 767 | "A", |
| 768 | "void A(int a)")); |
| 769 | // WRONG; Should be: "void A(int a) &;" |
| 770 | } |
| 771 | |
| 772 | TEST(DeclPrinter, TestCXXMethodDecl_RefQualifier2) { |
| 773 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 774 | "struct Z {" |
| 775 | " void A(int a) &&;" |
| 776 | "};", |
| 777 | "A", |
| 778 | "void A(int a)")); |
| 779 | // WRONG; Should be: "void A(int a) &&;" |
| 780 | } |
| 781 | |
| 782 | TEST(DeclPrinter, TestFunctionDecl_ExceptionSpecification1) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 783 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 784 | "struct Z {" |
| 785 | " void A(int a) throw();" |
| 786 | "};", |
| 787 | "A", |
| 788 | "void A(int a) throw()")); |
| 789 | // Should be: with semicolon |
| 790 | } |
| 791 | |
| 792 | TEST(DeclPrinter, TestFunctionDecl_ExceptionSpecification2) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 793 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 794 | "struct Z {" |
| 795 | " void A(int a) throw(int);" |
| 796 | "};", |
| 797 | "A", |
| 798 | "void A(int a) throw(int)")); |
| 799 | // Should be: with semicolon |
| 800 | } |
| 801 | |
| 802 | TEST(DeclPrinter, TestFunctionDecl_ExceptionSpecification3) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 803 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 804 | "class ZZ {};" |
| 805 | "struct Z {" |
| 806 | " void A(int a) throw(ZZ, int);" |
| 807 | "};", |
| 808 | "A", |
| 809 | "void A(int a) throw(ZZ, int)")); |
| 810 | // Should be: with semicolon |
| 811 | } |
| 812 | |
| 813 | TEST(DeclPrinter, TestFunctionDecl_ExceptionSpecification4) { |
| 814 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 815 | "struct Z {" |
| 816 | " void A(int a) noexcept;" |
| 817 | "};", |
| 818 | "A", |
| 819 | "void A(int a) noexcept")); |
| 820 | // Should be: with semicolon |
| 821 | } |
| 822 | |
| 823 | TEST(DeclPrinter, TestFunctionDecl_ExceptionSpecification5) { |
| 824 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 825 | "struct Z {" |
| 826 | " void A(int a) noexcept(true);" |
| 827 | "};", |
| 828 | "A", |
| 829 | "void A(int a) noexcept(trueA(int a) noexcept(true)")); |
| 830 | // WRONG; Should be: "void A(int a) noexcept(true);" |
| 831 | } |
| 832 | |
| 833 | TEST(DeclPrinter, TestFunctionDecl_ExceptionSpecification6) { |
| 834 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 835 | "struct Z {" |
| 836 | " void A(int a) noexcept(1 < 2);" |
| 837 | "};", |
| 838 | "A", |
| 839 | "void A(int a) noexcept(1 < 2A(int a) noexcept(1 < 2)")); |
| 840 | // WRONG; Should be: "void A(int a) noexcept(1 < 2);" |
| 841 | } |
| 842 | |
| 843 | TEST(DeclPrinter, TestFunctionDecl_ExceptionSpecification7) { |
| 844 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 845 | "template<int N>" |
| 846 | "struct Z {" |
| 847 | " void A(int a) noexcept(N < 2);" |
| 848 | "};", |
| 849 | "A", |
| 850 | "void A(int a) noexcept(N < 2A(int a) noexcept(N < 2)")); |
| 851 | // WRONG; Should be: "void A(int a) noexcept(N < 2);" |
| 852 | } |
| 853 | |
| 854 | TEST(DeclPrinter, TestVarDecl1) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 855 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 856 | "char *const (*(*A)[5])(int);", |
| 857 | "A", |
| 858 | "char *const (*(*A)[5])(int)")); |
| 859 | // Should be: with semicolon |
| 860 | } |
| 861 | |
| 862 | TEST(DeclPrinter, TestVarDecl2) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 863 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 864 | "void (*A)() throw(int);", |
| 865 | "A", |
| 866 | "void (*A)() throw(int)")); |
| 867 | // Should be: with semicolon |
| 868 | } |
| 869 | |
| 870 | TEST(DeclPrinter, TestVarDecl3) { |
| 871 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 872 | "void (*A)() noexcept;", |
| 873 | "A", |
| 874 | "void (*A)() noexcept")); |
| 875 | // Should be: with semicolon |
| 876 | } |
| 877 | |
| 878 | TEST(DeclPrinter, TestFieldDecl1) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 879 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 880 | "template<typename T>" |
| 881 | "struct Z { T A; };", |
| 882 | "A", |
| 883 | "T A")); |
| 884 | // Should be: with semicolon |
| 885 | } |
| 886 | |
| 887 | TEST(DeclPrinter, TestFieldDecl2) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 888 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 889 | "template<int N>" |
| 890 | "struct Z { int A[N]; };", |
| 891 | "A", |
| 892 | "int A[N]")); |
| 893 | // Should be: with semicolon |
| 894 | } |
| 895 | |
| 896 | TEST(DeclPrinter, TestClassTemplateDecl1) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 897 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 898 | "template<typename T>" |
| 899 | "struct A { T a; };", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 900 | classTemplateDecl(hasName("A")).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 901 | "template <typename T> struct A {\n}")); |
| 902 | // Should be: with semicolon, with { ... } |
| 903 | } |
| 904 | |
| 905 | TEST(DeclPrinter, TestClassTemplateDecl2) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 906 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 907 | "template<typename T = int>" |
| 908 | "struct A { T a; };", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 909 | classTemplateDecl(hasName("A")).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 910 | "template <typename T = int> struct A {\n}")); |
| 911 | // Should be: with semicolon, with { ... } |
| 912 | } |
| 913 | |
| 914 | TEST(DeclPrinter, TestClassTemplateDecl3) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 915 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 916 | "template<class T>" |
| 917 | "struct A { T a; };", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 918 | classTemplateDecl(hasName("A")).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 919 | "template <class T> struct A {\n}")); |
| 920 | // Should be: with semicolon, with { ... } |
| 921 | } |
| 922 | |
| 923 | TEST(DeclPrinter, TestClassTemplateDecl4) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 924 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 925 | "template<typename T, typename U>" |
| 926 | "struct A { T a; U b; };", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 927 | classTemplateDecl(hasName("A")).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 928 | "template <typename T, typename U> struct A {\n}")); |
| 929 | // Should be: with semicolon, with { ... } |
| 930 | } |
| 931 | |
| 932 | TEST(DeclPrinter, TestClassTemplateDecl5) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 933 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 934 | "template<int N>" |
| 935 | "struct A { int a[N]; };", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 936 | classTemplateDecl(hasName("A")).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 937 | "template <int N> struct A {\n}")); |
| 938 | // Should be: with semicolon, with { ... } |
| 939 | } |
| 940 | |
| 941 | TEST(DeclPrinter, TestClassTemplateDecl6) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 942 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 943 | "template<int N = 42>" |
| 944 | "struct A { int a[N]; };", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 945 | classTemplateDecl(hasName("A")).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 946 | "template <int N = 42> struct A {\n}")); |
| 947 | // Should be: with semicolon, with { ... } |
| 948 | } |
| 949 | |
| 950 | TEST(DeclPrinter, TestClassTemplateDecl7) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 951 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 952 | "typedef int MyInt;" |
| 953 | "template<MyInt N>" |
| 954 | "struct A { int a[N]; };", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 955 | classTemplateDecl(hasName("A")).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 956 | "template <MyInt N> struct A {\n}")); |
| 957 | // Should be: with semicolon, with { ... } |
| 958 | } |
| 959 | |
| 960 | TEST(DeclPrinter, TestClassTemplateDecl8) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 961 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 962 | "template<template<typename U> class T> struct A { };", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 963 | classTemplateDecl(hasName("A")).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 964 | "template <template <typename U> class T> struct A {\n}")); |
| 965 | // Should be: with semicolon, with { ... } |
| 966 | } |
| 967 | |
| 968 | TEST(DeclPrinter, TestClassTemplateDecl9) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 969 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 970 | "template<typename T> struct Z { };" |
| 971 | "template<template<typename U> class T = Z> struct A { };", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 972 | classTemplateDecl(hasName("A")).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 973 | "template <template <typename U> class T> struct A {\n}")); |
| 974 | // Should be: with semicolon, with { ... } |
| 975 | } |
| 976 | |
| 977 | TEST(DeclPrinter, TestClassTemplateDecl10) { |
| 978 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 979 | "template<typename... T>" |
| 980 | "struct A { int a; };", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 981 | classTemplateDecl(hasName("A")).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 982 | "template <typename ... T> struct A {\n}")); |
| 983 | // Should be: with semicolon, with { ... }, without spaces before '...' |
| 984 | } |
| 985 | |
| 986 | TEST(DeclPrinter, TestClassTemplateDecl11) { |
| 987 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 988 | "template<typename... T>" |
| 989 | "struct A : public T... { int a; };", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 990 | classTemplateDecl(hasName("A")).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 991 | "template <typename ... T> struct A : public T... {\n}")); |
| 992 | // Should be: with semicolon, with { ... }, without spaces before '...' |
| 993 | } |
| 994 | |
| 995 | TEST(DeclPrinter, TestClassTemplatePartialSpecializationDecl1) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 996 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 997 | "template<typename T, typename U>" |
| 998 | "struct A { T a; U b; };" |
| 999 | "template<typename T>" |
| 1000 | "struct A<T, int> { T a; };", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 1001 | classTemplateSpecializationDecl().bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1002 | "struct A {\n}")); |
| 1003 | // WRONG; Should be: "template<typename T> struct A<T, int> { ... }" |
| 1004 | } |
| 1005 | |
| 1006 | TEST(DeclPrinter, TestClassTemplatePartialSpecializationDecl2) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1007 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1008 | "template<typename T>" |
| 1009 | "struct A { T a; };" |
| 1010 | "template<typename T>" |
| 1011 | "struct A<T *> { T a; };", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 1012 | classTemplateSpecializationDecl().bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1013 | "struct A {\n}")); |
| 1014 | // WRONG; Should be: "template<typename T> struct A<T *> { ... }" |
| 1015 | } |
| 1016 | |
| 1017 | TEST(DeclPrinter, TestClassTemplateSpecializationDecl1) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1018 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1019 | "template<typename T>" |
| 1020 | "struct A { T a; };" |
| 1021 | "template<>" |
| 1022 | "struct A<int> { int a; };", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 1023 | classTemplateSpecializationDecl().bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1024 | "struct A {\n}")); |
| 1025 | // WRONG; Should be: "template<> struct A<int> { ... }" |
| 1026 | } |
| 1027 | |
| 1028 | TEST(DeclPrinter, TestFunctionTemplateDecl1) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1029 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1030 | "template<typename T>" |
| 1031 | "void A(T &t);", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 1032 | functionTemplateDecl(hasName("A")).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1033 | "template <typename T> void A(T &t)")); |
| 1034 | // Should be: with semicolon |
| 1035 | } |
| 1036 | |
| 1037 | TEST(DeclPrinter, TestFunctionTemplateDecl2) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1038 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1039 | "template<typename T>" |
| 1040 | "void A(T &t) { }", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 1041 | functionTemplateDecl(hasName("A")).bind("id"), |
Dmitri Gribenko | 2e0b8d9 | 2012-08-21 17:47:24 +0000 | [diff] [blame] | 1042 | "template <typename T> void A(T &t)")); |
| 1043 | // Should be: with semicolon |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1044 | } |
| 1045 | |
| 1046 | TEST(DeclPrinter, TestFunctionTemplateDecl3) { |
| 1047 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 1048 | "template<typename... T>" |
| 1049 | "void A(T... a);", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 1050 | functionTemplateDecl(hasName("A")).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1051 | "template <typename ... T> void A(T a...)")); |
| 1052 | // WRONG; Should be: "template <typename ... T> void A(T... a)" |
| 1053 | // (not "T a...") |
| 1054 | // Should be: with semicolon. |
| 1055 | } |
| 1056 | |
| 1057 | TEST(DeclPrinter, TestFunctionTemplateDecl4) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1058 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1059 | "struct Z { template<typename T> void A(T t); };", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 1060 | functionTemplateDecl(hasName("A")).bind("id"), |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1061 | "template <typename T> void A(T t)")); |
| 1062 | // Should be: with semicolon |
| 1063 | } |
| 1064 | |
| 1065 | TEST(DeclPrinter, TestFunctionTemplateDecl5) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1066 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1067 | "struct Z { template<typename T> void A(T t) {} };", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 1068 | functionTemplateDecl(hasName("A")).bind("id"), |
Dmitri Gribenko | 2e0b8d9 | 2012-08-21 17:47:24 +0000 | [diff] [blame] | 1069 | "template <typename T> void A(T t)")); |
| 1070 | // Should be: with semicolon |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1071 | } |
| 1072 | |
| 1073 | TEST(DeclPrinter, TestFunctionTemplateDecl6) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1074 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1075 | "template<typename T >struct Z {" |
| 1076 | " template<typename U> void A(U t) {}" |
| 1077 | "};", |
Daniel Jasper | 2dc75ed | 2012-08-24 05:12:34 +0000 | [diff] [blame] | 1078 | functionTemplateDecl(hasName("A")).bind("id"), |
Dmitri Gribenko | 2e0b8d9 | 2012-08-21 17:47:24 +0000 | [diff] [blame] | 1079 | "template <typename U> void A(U t)")); |
| 1080 | // Should be: with semicolon |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1081 | } |
| 1082 | |
| 1083 | TEST(DeclPrinter, TestTemplateArgumentList1) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1084 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1085 | "template<typename T> struct Z {};" |
| 1086 | "struct X {};" |
| 1087 | "Z<X> A;", |
| 1088 | "A", |
| 1089 | "Z<X> A")); |
| 1090 | // Should be: with semicolon |
| 1091 | } |
| 1092 | |
| 1093 | TEST(DeclPrinter, TestTemplateArgumentList2) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1094 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1095 | "template<typename T, typename U> struct Z {};" |
| 1096 | "struct X {};" |
| 1097 | "typedef int Y;" |
| 1098 | "Z<X, Y> A;", |
| 1099 | "A", |
| 1100 | "Z<X, Y> A")); |
| 1101 | // Should be: with semicolon |
| 1102 | } |
| 1103 | |
| 1104 | TEST(DeclPrinter, TestTemplateArgumentList3) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1105 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1106 | "template<typename T> struct Z {};" |
| 1107 | "template<typename T> struct X {};" |
| 1108 | "Z<X<int> > A;", |
| 1109 | "A", |
| 1110 | "Z<X<int> > A")); |
| 1111 | // Should be: with semicolon |
| 1112 | } |
| 1113 | |
| 1114 | TEST(DeclPrinter, TestTemplateArgumentList4) { |
| 1115 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 1116 | "template<typename T> struct Z {};" |
| 1117 | "template<typename T> struct X {};" |
| 1118 | "Z<X<int>> A;", |
| 1119 | "A", |
| 1120 | "Z<X<int> > A")); |
| 1121 | // Should be: with semicolon, without extra space in "> >" |
| 1122 | } |
| 1123 | |
| 1124 | TEST(DeclPrinter, TestTemplateArgumentList5) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1125 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1126 | "template<typename T> struct Z {};" |
| 1127 | "template<typename T> struct X { Z<T> A; };", |
| 1128 | "A", |
| 1129 | "Z<T> A")); |
| 1130 | // Should be: with semicolon |
| 1131 | } |
| 1132 | |
| 1133 | TEST(DeclPrinter, TestTemplateArgumentList6) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1134 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1135 | "template<template<typename T> class U> struct Z {};" |
| 1136 | "template<typename T> struct X {};" |
| 1137 | "Z<X> A;", |
| 1138 | "A", |
| 1139 | "Z<X> A")); |
| 1140 | // Should be: with semicolon |
| 1141 | } |
| 1142 | |
| 1143 | TEST(DeclPrinter, TestTemplateArgumentList7) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1144 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1145 | "template<template<typename T> class U> struct Z {};" |
| 1146 | "template<template<typename T> class U> struct Y {" |
| 1147 | " Z<U> A;" |
| 1148 | "};", |
| 1149 | "A", |
| 1150 | "Z<U> A")); |
| 1151 | // Should be: with semicolon |
| 1152 | } |
| 1153 | |
| 1154 | TEST(DeclPrinter, TestTemplateArgumentList8) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1155 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1156 | "template<typename T> struct Z {};" |
| 1157 | "template<template<typename T> class U> struct Y {" |
| 1158 | " Z<U<int> > A;" |
| 1159 | "};", |
| 1160 | "A", |
| 1161 | "Z<U<int> > A")); |
| 1162 | // Should be: with semicolon |
| 1163 | } |
| 1164 | |
| 1165 | TEST(DeclPrinter, TestTemplateArgumentList9) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1166 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1167 | "template<unsigned I> struct Z {};" |
| 1168 | "Z<0> A;", |
| 1169 | "A", |
| 1170 | "Z<0> A")); |
| 1171 | // Should be: with semicolon |
| 1172 | } |
| 1173 | |
| 1174 | TEST(DeclPrinter, TestTemplateArgumentList10) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1175 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1176 | "template<unsigned I> struct Z {};" |
| 1177 | "template<unsigned I> struct X { Z<I> A; };", |
| 1178 | "A", |
| 1179 | "Z<I> A")); |
| 1180 | // Should be: with semicolon |
| 1181 | } |
| 1182 | |
| 1183 | TEST(DeclPrinter, TestTemplateArgumentList11) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1184 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1185 | "template<int I> struct Z {};" |
| 1186 | "Z<42 * 10 - 420 / 1> A;", |
| 1187 | "A", |
| 1188 | "Z<42 * 10 - 420 / 1> A")); |
| 1189 | // Should be: with semicolon |
| 1190 | } |
| 1191 | |
| 1192 | TEST(DeclPrinter, TestTemplateArgumentList12) { |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1193 | ASSERT_TRUE(PrintedDeclCXX98Matches( |
Dmitri Gribenko | 49795ae | 2012-08-20 23:39:06 +0000 | [diff] [blame] | 1194 | "template<const char *p> struct Z {};" |
| 1195 | "extern const char X[] = \"aaa\";" |
| 1196 | "Z<X> A;", |
| 1197 | "A", |
| 1198 | "Z<X> A")); |
| 1199 | // Should be: with semicolon |
| 1200 | } |
| 1201 | |
| 1202 | TEST(DeclPrinter, TestTemplateArgumentList13) { |
| 1203 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 1204 | "template<typename... T> struct Z {};" |
| 1205 | "template<typename... T> struct X {" |
| 1206 | " Z<T...> A;" |
| 1207 | "};", |
| 1208 | "A", |
| 1209 | "Z<T...> A")); |
| 1210 | // Should be: with semicolon, without extra space in "> >" |
| 1211 | } |
| 1212 | |
| 1213 | TEST(DeclPrinter, TestTemplateArgumentList14) { |
| 1214 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 1215 | "template<typename... T> struct Z {};" |
| 1216 | "template<typename T> struct Y {};" |
| 1217 | "template<typename... T> struct X {" |
| 1218 | " Z<Y<T>...> A;" |
| 1219 | "};", |
| 1220 | "A", |
| 1221 | "Z<Y<T>...> A")); |
| 1222 | // Should be: with semicolon, without extra space in "> >" |
| 1223 | } |
| 1224 | |
| 1225 | TEST(DeclPrinter, TestTemplateArgumentList15) { |
| 1226 | ASSERT_TRUE(PrintedDeclCXX11Matches( |
| 1227 | "template<unsigned I> struct Z {};" |
| 1228 | "template<typename... T> struct X {" |
| 1229 | " Z<sizeof...(T)> A;" |
| 1230 | "};", |
| 1231 | "A", |
| 1232 | "Z<sizeof...(T)> A")); |
| 1233 | // Should be: with semicolon, without extra space in "> >" |
| 1234 | } |
Dmitri Gribenko | 44470ef | 2012-08-31 03:05:44 +0000 | [diff] [blame] | 1235 | |
Fariborz Jahanian | a7a68b6 | 2012-10-18 19:12:17 +0000 | [diff] [blame^] | 1236 | TEST(DeclPrinter, TestObjCMethod1) { |
| 1237 | ASSERT_TRUE(PrintedDeclObjCMatches( |
| 1238 | "__attribute__((objc_root_class)) @interface X\n" |
| 1239 | "- (int)A:(id)anObject inRange:(long)range;\n" |
| 1240 | "@end\n" |
| 1241 | "@implementation X\n" |
| 1242 | "- (int)A:(id)anObject inRange:(long)range { int printThis; return 0; }\n" |
| 1243 | "@end\n", |
| 1244 | namedDecl(hasName("A:inRange:"), |
| 1245 | hasDescendant(namedDecl(hasName("printThis")))).bind("id"), |
| 1246 | "- (int) A:(id)anObject inRange:(long)range")); |
| 1247 | } |
| 1248 | |