You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
ghost
changed the title
Strict Length Validation for Local is split by numbers
Strict Length Validation for Local is valid when split by numbers
Feb 26, 2020
Hey @egulias. Just looked at creating the test. Unfortunatly I cannot replicate the failing issue through unit tests. Perhaps it is an issue with laravel's integration.
Using the laravel form validation set to strict mode we are coming accross an issue with length checking.
It seems like numbers chars are acting as a divider causing the the second half to validate successfully as it's then under the char limit.
Case 1
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa@example.com
Expected: Invalid
Result: Invalid
Case 2
a5aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa@example.com
Expected: Invalid
Result: Valid
Case 3
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa@example.com
Expected: Valid
Result: Valid
The text was updated successfully, but these errors were encountered: