Files
carbon-lang/toolchain/diagnostics/diagnostic_emitter_test.cpp
T
Jon Ross-Perkins b9df8ca765 Manual cleanup of toolchain clang-tidy/clangd warnings. (#3157)
A lot of this is more boring "remove unused header", plus some other
minor cleanups. I think the most significant changes were:

- yaml_test_helpers.cpp is doing a switch on an unsigned int, comparing
to enum values.
-
[bugprone-switch-missing-default-case](https://clang.llvm.org/extra/clang-tidy/checks/bugprone/switch-missing-default-case.html)
is unhappy with EnumBase, but correctly identified
yaml_test_helpers.cpp, so I'm opting to address it rather than disabling
it even though it needs NOLINT in several locations as a result, in
addition to what I think are some low-value `default` cases. I'd be fine
going the other way with this too and disabling it globally (I could see
it being noisier in the explorer).
- MarkInitializerFor swaps the argument names between the .h and .cpp. I
think the .cpp had the order as intended.
- There's a new-ish
[performance-enum-size](https://clang.llvm.org/extra/clang-tidy/checks/performance/enum-size.html)
which I'm basically treating as "add int8_t to enums".

My main motivation here is to just clean up as many of these as I can so
that I stop seeing them in vscode.
2023-08-25 22:45:57 +00:00

72 lines
2.7 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 "toolchain/diagnostics/diagnostic_emitter.h"
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include "llvm/ADT/StringRef.h"
#include "toolchain/diagnostics/mocks.h"
namespace Carbon::Testing {
namespace {
struct FakeDiagnosticLocationTranslator : DiagnosticLocationTranslator<int> {
auto GetLocation(int n) -> DiagnosticLocation override {
return {.line_number = 1, .column_number = n};
}
};
class DiagnosticEmitterTest : public ::testing::Test {
protected:
DiagnosticEmitterTest() : emitter_(translator_, consumer_) {}
FakeDiagnosticLocationTranslator translator_;
Testing::MockDiagnosticConsumer consumer_;
DiagnosticEmitter<int> emitter_;
};
TEST_F(DiagnosticEmitterTest, EmitSimpleError) {
CARBON_DIAGNOSTIC(TestDiagnostic, Error, "simple error");
EXPECT_CALL(consumer_, HandleDiagnostic(IsDiagnostic(
DiagnosticKind::TestDiagnostic,
DiagnosticLevel::Error, 1, 1, "simple error")));
EXPECT_CALL(consumer_, HandleDiagnostic(IsDiagnostic(
DiagnosticKind::TestDiagnostic,
DiagnosticLevel::Error, 1, 2, "simple error")));
emitter_.Emit(1, TestDiagnostic);
emitter_.Emit(2, TestDiagnostic);
}
TEST_F(DiagnosticEmitterTest, EmitSimpleWarning) {
CARBON_DIAGNOSTIC(TestDiagnostic, Warning, "simple warning");
EXPECT_CALL(consumer_,
HandleDiagnostic(IsDiagnostic(DiagnosticKind::TestDiagnostic,
DiagnosticLevel::Warning, 1, 1,
"simple warning")));
emitter_.Emit(1, TestDiagnostic);
}
TEST_F(DiagnosticEmitterTest, EmitOneArgDiagnostic) {
CARBON_DIAGNOSTIC(TestDiagnostic, Error, "arg: `{0}`", llvm::StringRef);
EXPECT_CALL(consumer_, HandleDiagnostic(IsDiagnostic(
DiagnosticKind::TestDiagnostic,
DiagnosticLevel::Error, 1, 1, "arg: `str`")));
emitter_.Emit(1, TestDiagnostic, "str");
}
TEST_F(DiagnosticEmitterTest, EmitNote) {
CARBON_DIAGNOSTIC(TestDiagnostic, Warning, "simple warning");
CARBON_DIAGNOSTIC(TestDiagnosticNote, Note, "note");
EXPECT_CALL(consumer_,
HandleDiagnostic(IsDiagnostic(DiagnosticKind::TestDiagnostic,
DiagnosticLevel::Warning, 1, 1,
"simple warning")));
emitter_.Build(1, TestDiagnostic).Note(2, TestDiagnosticNote).Emit();
}
} // namespace
} // namespace Carbon::Testing