mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:40:11 +01:00
I'm doing this to avoid macro name conflicts, following https://google.github.io/styleguide/cppguide.html#Preprocessor_Macros: "If you do export a macro from a header, it must have a globally unique name. To achieve this, it must be named with a prefix consisting of your project's namespace name (but upper case)." Commands run: ``` sed -i 's/\(DCHECK\|CHECK\|FATAL\|MAKE_UNIQUE_NAME\|MAKE_UNIQUE_NAME_IMPL\|RAW_EXITING_STREAM\|RETURN_IF_ERROR\|RETURN_IF_ERROR_IMPL\|ASSIGN_OR_RETURN\|ASSIGN_OR_RETURN_IMPL\|DIAGNOSTIC_KIND\|RETURN_IF_STACK_LIMITED\)(/CARBON_\1(/g' $(git ls-files *.cpp *.h *.lpp *.ypp *.def ':!third_party') sed -i 's/#undef DIAGNOSTIC_KIND/#undef CARBON_DIAGNOSTIC_KIND/' toolchain/diagnostics/diagnostic_registry.def ``` Note this isn't *quite* everything, but it's intended to be a large pass at everything: ``` ╚╡git grep '#define ' *.cpp *.h *.lpp *.ypp *.def ':!third_party' | grep -v '#define CARBON' | grep -v _H_ explorer/syntax/lexer.lpp: #define YY_USER_ACTION \ explorer/syntax/lexer.lpp: #define SIMPLE_TOKEN(name) \ explorer/syntax/lexer.lpp: #define ARG_TOKEN(name, arg) \ explorer/syntax/parse_and_lex_context.h:#define YY_DECL \ migrate_cpp/cpp_refactoring/var_decl.cpp:#define ABSTRACT_TYPE(Class, Base) migrate_cpp/cpp_refactoring/var_decl.cpp:#define TYPE(Class, Base) \ ``` We may in particular want to do a pass to clean up #ifdef guards and make them be CARBON_ rooted.
102 lines
2.6 KiB
C++
102 lines
2.6 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 "common/error.h"
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
namespace Carbon::Testing {
|
|
namespace {
|
|
|
|
TEST(ErrorTest, Error) {
|
|
Error err("test");
|
|
EXPECT_EQ(err.message(), "test");
|
|
}
|
|
|
|
TEST(ErrorTest, ErrorEmptyString) {
|
|
ASSERT_DEATH({ Error err(""); }, "CHECK failure at");
|
|
}
|
|
|
|
auto IndirectError() -> Error { return Error("test"); }
|
|
|
|
TEST(ErrorTest, IndirectError) { EXPECT_EQ(IndirectError().message(), "test"); }
|
|
|
|
TEST(ErrorTest, ErrorOr) {
|
|
ErrorOr<int> err(Error("test"));
|
|
EXPECT_FALSE(err.ok());
|
|
EXPECT_EQ(err.error().message(), "test");
|
|
}
|
|
|
|
TEST(ErrorTest, ErrorOrValue) { EXPECT_TRUE(ErrorOr<int>(0).ok()); }
|
|
|
|
auto IndirectErrorOrTest() -> ErrorOr<int> { return Error("test"); }
|
|
|
|
TEST(ErrorTest, IndirectErrorOr) { EXPECT_FALSE(IndirectErrorOrTest().ok()); }
|
|
|
|
struct Val {
|
|
int val;
|
|
};
|
|
|
|
TEST(ErrorTest, ErrorOrArrowOp) {
|
|
ErrorOr<Val> err({1});
|
|
EXPECT_EQ(err->val, 1);
|
|
}
|
|
|
|
auto IndirectErrorOrSuccessTest() -> ErrorOr<Success> { return Success(); }
|
|
|
|
TEST(ErrorTest, IndirectErrorOrSuccess) {
|
|
EXPECT_TRUE(IndirectErrorOrSuccessTest().ok());
|
|
}
|
|
|
|
TEST(ErrorTest, ReturnIfErrorNoError) {
|
|
auto result = []() -> ErrorOr<Success> {
|
|
CARBON_RETURN_IF_ERROR(ErrorOr<Success>(Success()));
|
|
CARBON_RETURN_IF_ERROR(ErrorOr<Success>(Success()));
|
|
return Success();
|
|
}();
|
|
EXPECT_TRUE(result.ok());
|
|
}
|
|
|
|
TEST(ErrorTest, ReturnIfErrorHasError) {
|
|
auto result = []() -> ErrorOr<Success> {
|
|
CARBON_RETURN_IF_ERROR(ErrorOr<Success>(Success()));
|
|
CARBON_RETURN_IF_ERROR(ErrorOr<Success>(Error("error")));
|
|
return Success();
|
|
}();
|
|
ASSERT_FALSE(result.ok());
|
|
EXPECT_EQ(result.error().message(), "error");
|
|
}
|
|
|
|
TEST(ErrorTest, AssignOrReturnNoError) {
|
|
auto result = []() -> ErrorOr<int> {
|
|
CARBON_ASSIGN_OR_RETURN(int a, ErrorOr<int>(1));
|
|
CARBON_ASSIGN_OR_RETURN(const int b, ErrorOr<int>(2));
|
|
int c = 0;
|
|
CARBON_ASSIGN_OR_RETURN(c, ErrorOr<int>(3));
|
|
return a + b + c;
|
|
}();
|
|
ASSERT_TRUE(result.ok());
|
|
EXPECT_EQ(6, *result);
|
|
}
|
|
|
|
TEST(ErrorTest, AssignOrReturnHasDirectError) {
|
|
auto result = []() -> ErrorOr<int> {
|
|
CARBON_RETURN_IF_ERROR(ErrorOr<int>(Error("error")));
|
|
return 0;
|
|
}();
|
|
ASSERT_FALSE(result.ok());
|
|
}
|
|
|
|
TEST(ErrorTest, AssignOrReturnHasErrorInExpected) {
|
|
auto result = []() -> ErrorOr<int> {
|
|
CARBON_ASSIGN_OR_RETURN(int a, ErrorOr<int>(Error("error")));
|
|
return a;
|
|
}();
|
|
ASSERT_FALSE(result.ok());
|
|
EXPECT_EQ(result.error().message(), "error");
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace Carbon::Testing
|