-
Notifications
You must be signed in to change notification settings - Fork 659
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[stripe-ui-core] Fix phone number length #6771
Conversation
@stripe/stripe-identity-observers |
stripe-ui-core/src/main/java/com/stripe/android/uicore/elements/PhoneNumberFormatter.kt
Outdated
Show resolved
Hide resolved
@@ -163,3 +168,6 @@ fun PhoneNumberElementUI( | |||
} | |||
} | |||
} | |||
|
|||
@RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) | |||
const val PHONE_NUMBER_FIELD_TAG = "phone_number" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this used anywhere?
@@ -39,6 +40,9 @@ import kotlinx.coroutines.job | |||
import kotlinx.coroutines.launch | |||
import com.stripe.android.core.R as CoreR | |||
|
|||
@RestrictTo(RestrictTo.Scope.LIBRARY_GROUP) | |||
const val PHONE_NUMBER_TEXT_FIELD_TAG = "PhoneNumberTextField" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where is this being used? If it is not being used externally, can we keep this internal?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It allows us to write test to programatically input a valid/invalid phone number and assert other states, such as this
@@ -8,7 +8,7 @@ internal class PhoneNumberFormatterTest { | |||
|
|||
@Test | |||
fun `Phone number is correctly formatted for US locale`() { | |||
val formatter = PhoneNumberFormatter.forCountry("US") | |||
val formatter = PhoneNumberFormatter.forCountry("US") // "(###) ###-####" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we test every phone number that we support? If not, can we add tests for them? Do you think it is valuable to add tests for each country?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm what we changed is just limiting the length of converted phone number, which is covered by the test, not sure adding a single test for each region adds too much value here, instead I added another test for a customized pattern
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, can we add an entry to the changelog?
done |
Summary
Correctly calculate the phone number based on the pattern for known regions.
Motivation
Testing
Screenshots
Changelog
[Fixed] Fixed the length of phone number field.