0
Files
src/base/component_export_unittest.cc
Peter Kasting 134ef9afca [cleanup] clang-format base.
Produced with:

find base -name \"*.cc\" -o -name \"*.h\" -o -name \"*.mm\" | xargs clang-format -i

base/third_party was then manually reset.

R=pbos@chromium.org

NO_IFTTT=Reformat only

Bug: none
Change-Id: Ie567eb767d41315fd60e8a17c6aee8a90ff6a3ec
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6117971
Commit-Queue: Peter Kasting <pkasting@chromium.org>
Owners-Override: Peter Boström <pbos@chromium.org>
Auto-Submit: Peter Kasting <pkasting@chromium.org>
Reviewed-by: Peter Boström <pbos@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1400624}
2024-12-27 18:30:09 -08:00

84 lines
2.0 KiB
C++

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/component_export.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace base {
namespace {
using ComponentExportTest = testing::Test;
#define IS_TEST_COMPONENT_A_IMPL 1
#define IS_TEST_COMPONENT_B_IMPL
#define IS_TEST_COMPONENT_C_IMPL 0
#define IS_TEST_COMPONENT_D_IMPL 2
#define IS_TEST_COMPONENT_E_IMPL xyz
TEST(ComponentExportTest, ImportExport) {
// Defined as 1. Treat as export.
EXPECT_EQ(1, INSIDE_COMPONENT_IMPL(TEST_COMPONENT_A));
// Defined, but empty. Treat as import.
EXPECT_EQ(0, INSIDE_COMPONENT_IMPL(TEST_COMPONENT_B));
// Defined, but 0. Treat as import.
EXPECT_EQ(0, INSIDE_COMPONENT_IMPL(TEST_COMPONENT_C));
// Defined, but some other arbitrary thing that isn't 1. Treat as import.
EXPECT_EQ(0, INSIDE_COMPONENT_IMPL(TEST_COMPONENT_D));
EXPECT_EQ(0, INSIDE_COMPONENT_IMPL(TEST_COMPONENT_E));
// Undefined. Treat as import.
EXPECT_EQ(0, INSIDE_COMPONENT_IMPL(TEST_COMPONENT_F));
// And just for good measure, ensure that the macros evaluate properly in the
// context of preprocessor #if blocks.
#if INSIDE_COMPONENT_IMPL(TEST_COMPONENT_A)
EXPECT_TRUE(true);
#else
EXPECT_TRUE(false);
#endif
#if !INSIDE_COMPONENT_IMPL(TEST_COMPONENT_B)
EXPECT_TRUE(true);
#else
EXPECT_TRUE(false);
#endif
#if !INSIDE_COMPONENT_IMPL(TEST_COMPONENT_C)
EXPECT_TRUE(true);
#else
EXPECT_TRUE(false);
#endif
#if !INSIDE_COMPONENT_IMPL(TEST_COMPONENT_D)
EXPECT_TRUE(true);
#else
EXPECT_TRUE(false);
#endif
#if !INSIDE_COMPONENT_IMPL(TEST_COMPONENT_E)
EXPECT_TRUE(true);
#else
EXPECT_TRUE(false);
#endif
#if !INSIDE_COMPONENT_IMPL(TEST_COMPONENT_F)
EXPECT_TRUE(true);
#else
EXPECT_TRUE(false);
#endif
}
#undef IS_TEST_COMPONENT_A_IMPL
#undef IS_TEST_COMPONENT_B_IMPL
#undef IS_TEST_COMPONENT_C_IMPL
#undef IS_TEST_COMPONENT_D_IMPL
#undef IS_TEST_COMPONENT_E_IMPL
} // namespace
} // namespace base