/* * Copyright (C) 2023 The Android Open Source Project * * 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. */ #ifndef SRC_BASE_TEST_STATUS_MATCHERS_H_ #define SRC_BASE_TEST_STATUS_MATCHERS_H_ #include <ostream> #include "perfetto/base/status.h" #include "test/gtest_and_gmock.h" namespace perfetto::base { namespace gtest_matchers { // Returns a gMock matcher that matches a Status or StatusOr<> which is OK. MATCHER(IsOk, negation ? "is not OK" : "is OK") { … } // Returns a gMock matcher that matches a Status or StatusOr<> which is an // error. MATCHER(IsError, negation ? "is not error" : "is error") { … } // Macros for testing the results of functions that return base::Status or // base::StatusOr<T> (for any type T). #define EXPECT_OK(expression) … #define ASSERT_OK(expression) … // Macros for testing the results of function returning base::StatusOr<T>. #define PERFETTO_TEST_STATUS_MATCHER_CONCAT(x, y) … #define ASSERT_OK_AND_ASSIGN(lhs, rhs) … } // namespace gtest_matchers // Add a |PrintTo| function to allow easily determining what the cause of the // failure is. inline void PrintTo(const Status& status, std::ostream* os) { … } } // namespace perfetto::base #endif // SRC_BASE_TEST_STATUS_MATCHERS_H_