Fix CircleCI Android GTest Build (#44562)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/44562

D56963463 deleted some tests for code it also deleted. This broke the Android GTest OSS build, which is a centralized list of these test files. Remove from there as well.

Changelog: [Internal]

Reviewed By: joevilches, realsoelynn

Differential Revision: D57299969

fbshipit-source-id: 1bf0b718ca5fcee03272dd0142f80ea2f8257902
This commit is contained in:
Nick Gerleman
2024-05-13 15:42:56 -07:00
committed by Facebook GitHub Bot
parent 062205ba50
commit 5a100ae3fe
3 changed files with 0 additions and 71 deletions
@@ -146,14 +146,9 @@ add_executable(reactnative_unittest
${REACT_COMMON_DIR}/cxxreact/tests/RecoverableErrorTest.cpp
${REACT_COMMON_DIR}/react/bridging/tests/BridgingTest.cpp
${REACT_COMMON_DIR}/react/renderer/attributedstring/tests/AttributedStringBoxTest.cpp
${REACT_COMMON_DIR}/react/renderer/attributedstring/tests/AttributedStringTest.cpp
${REACT_COMMON_DIR}/react/renderer/attributedstring/tests/ParagraphAttributesTest.cpp
${REACT_COMMON_DIR}/react/renderer/attributedstring/tests/TextAttributesTest.cpp
${REACT_COMMON_DIR}/react/renderer/components/image/tests/ImageTest.cpp
${REACT_COMMON_DIR}/react/renderer/components/root/tests/RootShadowNodeTest.cpp
${REACT_COMMON_DIR}/react/renderer/components/scrollview/tests/ScrollViewTest.cpp
${REACT_COMMON_DIR}/react/renderer/components/text/tests/ParagraphLocalDataTest.cpp
${REACT_COMMON_DIR}/react/renderer/components/text/tests/TextTest.cpp
${REACT_COMMON_DIR}/react/renderer/components/view/tests/LayoutTest.cpp
${REACT_COMMON_DIR}/react/renderer/components/view/tests/ViewTest.cpp
${REACT_COMMON_DIR}/react/renderer/core/tests/DynamicPropsUtilitiesTest.cpp
@@ -1,52 +0,0 @@
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#include <memory>
#include <assert.h>
#include <gtest/gtest.h>
#include <react/renderer/attributedstring/AttributedString.h>
#include <react/renderer/attributedstring/TextAttributes.h>
#include <react/renderer/attributedstring/primitives.h>
#include <react/renderer/components/text/ParagraphState.h>
#include <react/renderer/components/text/conversions.h>
namespace facebook::react {
#ifdef ANDROID
TEST(ParagraphLocalDataTest, testSomething) {
auto attributedString = AttributedString();
auto fragment = AttributedString::Fragment();
fragment.string = "test";
auto text = TextAttributes();
text.foregroundColor = {
colorFromComponents({100 / 255.0, 153 / 255.0, 253 / 255.0, 1.0})};
text.opacity = 0.5;
text.fontStyle = FontStyle::Italic;
text.fontWeight = FontWeight::Thin;
text.fontVariant = FontVariant::TabularNums;
fragment.textAttributes = text;
attributedString.prependFragment(fragment);
auto paragraphState = ParagraphState{};
paragraphState.attributedString = attributedString;
auto result = toDynamic(paragraphState)["attributedString"];
EXPECT_EQ(result["string"], fragment.string);
auto textAttribute = result["fragments"][0]["textAttributes"];
EXPECT_EQ(textAttribute["foregroundColor"], toDynamic(text.foregroundColor));
EXPECT_EQ(textAttribute["opacity"], text.opacity);
EXPECT_EQ(textAttribute["fontStyle"], toString(*text.fontStyle));
EXPECT_EQ(textAttribute["fontWeight"], toString(*text.fontWeight));
}
#endif
} // namespace facebook::react
@@ -1,14 +0,0 @@
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#include <memory>
#include <gtest/gtest.h>
TEST(TextTest, testSomething) {
// TODO:
}