Files
carbon-lang/migrate_cpp/cpp_refactoring/fn_inserter_test.cpp
T
Jon Meow 4f1b2198ff Refactor Matcher code to reduce per-Matcher boilerplate (#615)
This is in part to eliminate the "sm" and "lang_opts" variables that received comment, but also cuts back on the use of auto.
2021-07-08 12:42:24 -07:00

94 lines
2.2 KiB
C++

// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#include "migrate_cpp/cpp_refactoring/fn_inserter.h"
#include "migrate_cpp/cpp_refactoring/matcher_test_base.h"
namespace Carbon {
namespace {
class FnInserterTest : public MatcherTestBase<FnInserterFactory> {};
TEST_F(FnInserterTest, TrailingReturn) {
constexpr char Before[] = "auto A() -> int;";
constexpr char After[] = "fn A() -> int;";
ExpectReplacement(Before, After);
}
TEST_F(FnInserterTest, Inline) {
constexpr char Before[] = "inline auto A() -> int;";
constexpr char After[] = "fn inline A() -> int;";
ExpectReplacement(Before, After);
}
TEST_F(FnInserterTest, Void) {
constexpr char Before[] = "void A();";
constexpr char After[] = "fn A();";
ExpectReplacement(Before, After);
}
TEST_F(FnInserterTest, Methods) {
constexpr char Before[] = R"cpp(
class Shape {
public:
virtual void Draw() = 0;
virtual auto NumSides() -> int = 0;
};
class Circle : public Shape {
public:
void Draw() override;
auto NumSides() -> int override;
auto Radius() -> double { return radius_; }
private:
double radius_;
};
void Shape::Draw() {}
)cpp";
constexpr char After[] = R"(
class Shape {
public:
fn virtual Draw() = 0;
fn virtual NumSides() -> int = 0;
};
class Circle : public Shape {
public:
fn Draw() override;
fn NumSides() -> int override;
fn Radius() -> double { return radius_; }
private:
double radius_;
};
fn Shape::Draw() {}
)";
ExpectReplacement(Before, After);
}
TEST_F(FnInserterTest, ConstructorDestructor) {
constexpr char Before[] = R"cpp(
class Shape {
public:
Shape() {}
~Shape() {}
};
)cpp";
ExpectReplacement(Before, Before);
}
TEST_F(FnInserterTest, LegacyReturn) {
// Code should be migrated to trailing returns by clang-tidy, so this is okay
// to miss.
constexpr char Before[] = "int A();";
ExpectReplacement(Before, Before);
}
} // namespace
} // namespace Carbon