This replaces the old macros LIBC_COPT_TEST_USE_FUCHSIA and LIBC_COPT_TEST_USE_PIGWEED with LIBC_COPT_TEST_ZXTEST and LIBC_COPT_TEST_GTEST, respectively. These are really not about whether the code is in the Fuchsia build or in the Pigweed build, but just about what test framework is being used. The gtest framework can be used in many contexts, and the zxtest framework is not always what's used in the Fuchsia build. The test/UnitTest/Test.h wrapper header now provides the macro LIBC_TEST_HAS_MATCHERS() for use in `#if` conditionals on use of gmock-style matchers, replacing `#if` conditionals that test the framework selection macros directly.
70 lines
2.5 KiB
C++
70 lines
2.5 KiB
C++
//===-- MemoryMatcher.h -----------------------------------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_LIBC_TEST_UNITTEST_MEMORYMATCHER_H
|
|
#define LLVM_LIBC_TEST_UNITTEST_MEMORYMATCHER_H
|
|
|
|
#include "src/__support/CPP/span.h"
|
|
|
|
#include "test/UnitTest/Test.h"
|
|
|
|
namespace LIBC_NAMESPACE {
|
|
namespace testing {
|
|
|
|
using MemoryView = LIBC_NAMESPACE::cpp::span<const char>;
|
|
|
|
} // namespace testing
|
|
} // namespace LIBC_NAMESPACE
|
|
|
|
#if !LIBC_TEST_HAS_MATCHERS()
|
|
|
|
#define EXPECT_MEM_EQ(expected, actual) \
|
|
do { \
|
|
LIBC_NAMESPACE::testing::MemoryView e = (expected); \
|
|
LIBC_NAMESPACE::testing::MemoryView a = (actual); \
|
|
ASSERT_EQ(e.size(), a.size()); \
|
|
EXPECT_BYTES_EQ(e.data(), a.data(), e.size()); \
|
|
} while (0)
|
|
|
|
#define ASSERT_MEM_EQ(expected, actual) \
|
|
do { \
|
|
LIBC_NAMESPACE::testing::MemoryView e = (expected); \
|
|
LIBC_NAMESPACE::testing::MemoryView a = (actual); \
|
|
ASSERT_EQ(e.size(), a.size()); \
|
|
ASSERT_BYTES_EQ(e.data(), a.data(), e.size()); \
|
|
} while (0)
|
|
|
|
#else // LIBC_TEST_HAS_MATCHERS()
|
|
|
|
namespace LIBC_NAMESPACE::testing {
|
|
|
|
class MemoryMatcher : public Matcher<MemoryView> {
|
|
MemoryView expected;
|
|
MemoryView actual;
|
|
bool mismatch_size = false;
|
|
size_t mismatch_index = -1;
|
|
|
|
public:
|
|
MemoryMatcher(MemoryView expectedValue) : expected(expectedValue) {}
|
|
|
|
bool match(MemoryView actualValue);
|
|
|
|
void explainError() override;
|
|
};
|
|
|
|
} // namespace LIBC_NAMESPACE::testing
|
|
|
|
#define EXPECT_MEM_EQ(expected, actual) \
|
|
EXPECT_THAT(actual, LIBC_NAMESPACE::testing::MemoryMatcher(expected))
|
|
#define ASSERT_MEM_EQ(expected, actual) \
|
|
ASSERT_THAT(actual, LIBC_NAMESPACE::testing::MemoryMatcher(expected))
|
|
|
|
#endif // !LIBC_TEST_HAS_MATCHERS()
|
|
|
|
#endif // LLVM_LIBC_TEST_UNITTEST_MEMORYMATCHER_H
|