blob: 5d6cd1bb222f64f565c146133fd7c8802ab5f7c8 [file] [log] [blame]
/* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/compiler/mlir/tensorflow/utils/error_util.h"
#include "llvm/ADT/Twine.h"
#include "mlir/IR/Builders.h" // TF:local_config_mlir
#include "mlir/IR/MLIRContext.h" // TF:local_config_mlir
#include "tensorflow/compiler/xla/test.h"
#include "tensorflow/core/lib/core/errors.h"
#include "tensorflow/core/lib/core/status_test_util.h"
namespace mlir {
namespace {
using testing::HasSubstr;
TEST(ErrorUtilTest, StatusScopedDiagnosticHandler) {
MLIRContext context;
auto emit_error = [&](const std::string& msg) {
emitError(FileLineColLoc::get(Identifier::get("test.cc", &context), 10, 32,
&context),
msg);
};
// Test OK without diagnostic gets passed through.
{
TF_ASSERT_OK(StatusScopedDiagnosticHandler(&context).Combine(Status::OK()));
}
// Verify diagnostics are captured as Unknown status.
{
StatusScopedDiagnosticHandler handler(&context);
emit_error("Diagnostic message");
ASSERT_TRUE(tensorflow::errors::IsUnknown(handler.ConsumeStatus()));
}
// Verify passed in errors are propagated.
{
Status err = tensorflow::errors::Internal("Passed in error");
ASSERT_TRUE(tensorflow::errors::IsInternal(
StatusScopedDiagnosticHandler(&context).Combine(err)));
}
// Verify diagnostic reported are append to passed in error.
{
auto function = [&]() {
emit_error("Diagnostic message reported");
emit_error("Second diagnostic message reported");
return tensorflow::errors::Internal("Passed in error");
};
Status s = StatusScopedDiagnosticHandler(&context).Combine(function());
ASSERT_TRUE(tensorflow::errors::IsInternal(s));
EXPECT_THAT(s.error_message(), HasSubstr("Passed in error"));
EXPECT_THAT(s.error_message(), HasSubstr("Diagnostic message reported"));
EXPECT_THAT(s.error_message(),
HasSubstr("Second diagnostic message reported"));
}
}
} // namespace
} // namespace mlir