-
Notifications
You must be signed in to change notification settings - Fork 24.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add unit tests for BorderRadiusStyle (#44964)
Summary: Pull Request resolved: #44964 Testing property priority and correct setting percentages for business logic of `BorderRadiusStyle.kt` To prevent issues like the one fixed by D57473482 Changelog: [Internal] Reviewed By: javache Differential Revision: D58602799 fbshipit-source-id: 605bc384267d9f4ae5a051e76c1a4d862fe54039
- Loading branch information
1 parent
4792671
commit 8c7c6f3
Showing
2 changed files
with
203 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
186 changes: 186 additions & 0 deletions
186
...t-native/ReactAndroid/src/test/java/com/facebook/react/uimanager/BorderRadiusStyleTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,186 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
package com.facebook.react.uimanager | ||
|
||
import android.content.Context | ||
import com.facebook.react.uimanager.style.BorderRadiusProp | ||
import com.facebook.react.uimanager.style.BorderRadiusStyle | ||
import com.facebook.react.uimanager.style.ComputedBorderRadiusProp | ||
import org.assertj.core.api.Assertions.* | ||
import org.junit.Test | ||
import org.junit.runner.RunWith | ||
import org.robolectric.RobolectricTestRunner | ||
import org.robolectric.RuntimeEnvironment | ||
|
||
/** Tests for [BorderRadiusStyle] */ | ||
@RunWith(RobolectricTestRunner::class) | ||
class BorderRadiusStyleTest { | ||
|
||
private val ctx: Context = RuntimeEnvironment.getApplication() | ||
|
||
@Test | ||
fun testCorrectPriorityLTR() { | ||
val propertyOrderMap = | ||
mapOf( | ||
ComputedBorderRadiusProp.COMPUTED_BORDER_TOP_LEFT_RADIUS to | ||
arrayOf( | ||
BorderRadiusProp.BORDER_RADIUS, | ||
BorderRadiusProp.BORDER_TOP_LEFT_RADIUS, | ||
BorderRadiusProp.BORDER_TOP_START_RADIUS, | ||
BorderRadiusProp.BORDER_START_START_RADIUS), | ||
ComputedBorderRadiusProp.COMPUTED_BORDER_TOP_RIGHT_RADIUS to | ||
arrayOf( | ||
BorderRadiusProp.BORDER_RADIUS, | ||
BorderRadiusProp.BORDER_TOP_RIGHT_RADIUS, | ||
BorderRadiusProp.BORDER_TOP_END_RADIUS, | ||
BorderRadiusProp.BORDER_END_START_RADIUS), | ||
ComputedBorderRadiusProp.COMPUTED_BORDER_BOTTOM_LEFT_RADIUS to | ||
arrayOf( | ||
BorderRadiusProp.BORDER_RADIUS, | ||
BorderRadiusProp.BORDER_BOTTOM_LEFT_RADIUS, | ||
BorderRadiusProp.BORDER_BOTTOM_START_RADIUS, | ||
BorderRadiusProp.BORDER_START_END_RADIUS), | ||
ComputedBorderRadiusProp.COMPUTED_BORDER_BOTTOM_RIGHT_RADIUS to | ||
arrayOf( | ||
BorderRadiusProp.BORDER_RADIUS, | ||
BorderRadiusProp.BORDER_BOTTOM_RIGHT_RADIUS, | ||
BorderRadiusProp.BORDER_BOTTOM_END_RADIUS, | ||
BorderRadiusProp.BORDER_END_END_RADIUS), | ||
) | ||
|
||
propertyOrderMap.forEach { order -> | ||
val borderRadiusStyle = BorderRadiusStyle() | ||
// Starting count on 3 to test 0 override | ||
var count = 3f | ||
for (prop in order.value) { | ||
borderRadiusStyle.set(prop, LengthPercentage(count, LengthPercentageType.POINT)) | ||
val resolved = borderRadiusStyle.resolve(0, context = ctx, width = 100f, height = 100f) | ||
assertThat(resolved.get(order.key)).isEqualTo(count) | ||
count -= 1f | ||
} | ||
} | ||
} | ||
|
||
@Test | ||
fun testCorrectPriorityRTL() { | ||
setContextLeftAndRightSwap(ctx, true) | ||
val propertyOrderMap = | ||
mapOf( | ||
ComputedBorderRadiusProp.COMPUTED_BORDER_TOP_LEFT_RADIUS to | ||
arrayOf( | ||
BorderRadiusProp.BORDER_RADIUS, | ||
BorderRadiusProp.BORDER_TOP_RIGHT_RADIUS, | ||
BorderRadiusProp.BORDER_TOP_END_RADIUS, | ||
BorderRadiusProp.BORDER_END_START_RADIUS), | ||
ComputedBorderRadiusProp.COMPUTED_BORDER_TOP_RIGHT_RADIUS to | ||
arrayOf( | ||
BorderRadiusProp.BORDER_RADIUS, | ||
BorderRadiusProp.BORDER_TOP_LEFT_RADIUS, | ||
BorderRadiusProp.BORDER_TOP_START_RADIUS, | ||
BorderRadiusProp.BORDER_START_START_RADIUS), | ||
ComputedBorderRadiusProp.COMPUTED_BORDER_BOTTOM_LEFT_RADIUS to | ||
arrayOf( | ||
BorderRadiusProp.BORDER_RADIUS, | ||
BorderRadiusProp.BORDER_BOTTOM_RIGHT_RADIUS, | ||
BorderRadiusProp.BORDER_BOTTOM_START_RADIUS, | ||
BorderRadiusProp.BORDER_END_END_RADIUS), | ||
ComputedBorderRadiusProp.COMPUTED_BORDER_BOTTOM_RIGHT_RADIUS to | ||
arrayOf( | ||
BorderRadiusProp.BORDER_RADIUS, | ||
BorderRadiusProp.BORDER_BOTTOM_LEFT_RADIUS, | ||
BorderRadiusProp.BORDER_BOTTOM_END_RADIUS, | ||
BorderRadiusProp.BORDER_START_END_RADIUS), | ||
) | ||
|
||
propertyOrderMap.forEach { order -> | ||
val borderRadiusStyle = BorderRadiusStyle() | ||
// Starting count on 3 to test 0 override | ||
var count = 3f | ||
for (prop in order.value) { | ||
borderRadiusStyle.set(prop, LengthPercentage(count, LengthPercentageType.POINT)) | ||
val resolved = borderRadiusStyle.resolve(1, context = ctx, width = 100f, height = 100f) | ||
assertThat(resolved.get(order.key)).isEqualTo(count) | ||
count -= 1f | ||
} | ||
} | ||
} | ||
|
||
@Test | ||
fun testCorrectPriorityRTLNoSwap() { | ||
setContextLeftAndRightSwap(ctx, false) | ||
val propertyOrderMap = | ||
mapOf( | ||
ComputedBorderRadiusProp.COMPUTED_BORDER_TOP_LEFT_RADIUS to | ||
arrayOf( | ||
BorderRadiusProp.BORDER_RADIUS, | ||
BorderRadiusProp.BORDER_TOP_LEFT_RADIUS, | ||
BorderRadiusProp.BORDER_TOP_END_RADIUS, | ||
BorderRadiusProp.BORDER_END_START_RADIUS), | ||
ComputedBorderRadiusProp.COMPUTED_BORDER_TOP_RIGHT_RADIUS to | ||
arrayOf( | ||
BorderRadiusProp.BORDER_RADIUS, | ||
BorderRadiusProp.BORDER_TOP_RIGHT_RADIUS, | ||
BorderRadiusProp.BORDER_TOP_START_RADIUS, | ||
BorderRadiusProp.BORDER_START_START_RADIUS), | ||
ComputedBorderRadiusProp.COMPUTED_BORDER_BOTTOM_LEFT_RADIUS to | ||
arrayOf( | ||
BorderRadiusProp.BORDER_RADIUS, | ||
BorderRadiusProp.BORDER_BOTTOM_LEFT_RADIUS, | ||
BorderRadiusProp.BORDER_BOTTOM_START_RADIUS, | ||
BorderRadiusProp.BORDER_END_END_RADIUS), | ||
ComputedBorderRadiusProp.COMPUTED_BORDER_BOTTOM_RIGHT_RADIUS to | ||
arrayOf( | ||
BorderRadiusProp.BORDER_RADIUS, | ||
BorderRadiusProp.BORDER_BOTTOM_RIGHT_RADIUS, | ||
BorderRadiusProp.BORDER_BOTTOM_END_RADIUS, | ||
BorderRadiusProp.BORDER_START_END_RADIUS), | ||
) | ||
|
||
propertyOrderMap.forEach { order -> | ||
val borderRadiusStyle = BorderRadiusStyle() | ||
// Starting count on 3 to test 0 override | ||
var count = 3f | ||
for (prop in order.value) { | ||
borderRadiusStyle.set(prop, LengthPercentage(count, LengthPercentageType.POINT)) | ||
val resolved = borderRadiusStyle.resolve(1, context = ctx, width = 100f, height = 100f) | ||
assertThat(resolved.get(order.key)).isEqualTo(count) | ||
count -= 1f | ||
} | ||
} | ||
} | ||
|
||
@Test | ||
fun testBorderRadiusPercentages() { | ||
val borderRadiusStyle = | ||
BorderRadiusStyle( | ||
topLeft = LengthPercentage(0f, LengthPercentageType.PERCENT), | ||
topRight = LengthPercentage(10f, LengthPercentageType.PERCENT), | ||
bottomLeft = LengthPercentage(20f, LengthPercentageType.PERCENT), | ||
bottomRight = LengthPercentage(30f, LengthPercentageType.PERCENT), | ||
) | ||
val resolved = borderRadiusStyle.resolve(0, context = ctx, width = 1000f, height = 1000f) | ||
|
||
assertThat(resolved.topLeft).isEqualTo(0f) | ||
assertThat(resolved.topRight).isEqualTo(100f) | ||
assertThat(resolved.bottomLeft).isEqualTo(200f) | ||
assertThat(resolved.bottomRight).isEqualTo(300f) | ||
} | ||
|
||
/* | ||
* Make I18nUtil.instance.doLeftAndRightSwapInRTL(context) return false | ||
* by setting context preference | ||
*/ | ||
private fun setContextLeftAndRightSwap(context: Context, leftAndRightSwap: Boolean) { | ||
val sharedPrefs = | ||
context.getSharedPreferences( | ||
"com.facebook.react.modules.i18nmanager.I18nUtil", Context.MODE_PRIVATE) | ||
val editor = sharedPrefs.edit() | ||
editor.putBoolean("RCTI18nUtil_makeRTLFlipLeftAndRightStyles", leftAndRightSwap) | ||
editor.apply() | ||
} | ||
} |