Skip to content
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

AYS-661 | Refactor email validation limits #431

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

m1erla
Copy link

@m1erla m1erla commented Jan 14, 2025

Checklist

Before submitting your pull request, ensure the following:

  • Title and Branch Naming Conventions:

  • Local Testing:

    • I have tested my changes locally on Postman, and they are working as expected.
  • Code Quality:

    • The code is formatted according to the project's coding guidelines and style.
    • The code has been reviewed to ensure its quality.
    • The code does not contain any issues flagged by SonarLint.
  • Documentation:

    • Necessary documentation has been added or existing documentation has been updated, specifically detailing changes made in Postman.
  • Testing:

    • Relevant unit tests have been written and included.
    • Relevant integration tests have been written and included.
  • Reviewers and Assignees:

    • Default reviewers have been assigned to this pull request.
    • Assignees have been added if necessary.
  • Labels and Associations:

    • No specific actions are required in the Labels and Associations section for this pull request.

@agitrubard
Copy link
Collaborator

@m1erla selamlar,
Test'ler geçmiyor sanırım geliştirme de tam olarak tamamlanmadı. Bitene kadar draft'a alabilir misin?

@m1erla m1erla marked this pull request as draft January 15, 2025 13:59
@m1erla
Copy link
Author

m1erla commented Jan 15, 2025

@m1erla selamlar, Test'ler geçmiyor sanırım geliştirme de tam olarak tamamlanmadı. Bitene kadar draft'a alabilir misin?

Ben test ederken, yaptığım düzenlemeler sorunsuz geçti testlerden ama build aldığımda diğer test dosyalarından hata almıştım ama benim düzenlememde olmayan test dosyalarıydı. Onlara ayrı bir issue açmak gerek sanırım.

@agitrubard
Copy link
Collaborator

Ben test ederken, yaptığım düzenlemeler sorunsuz geçti testlerden ama build aldığımda diğer test dosyalarından hata almıştım ama benim düzenlememde olmayan test dosyalarıydı. Onlara ayrı bir issue açmak gerek sanırım.

@m1erla Belli ki yaptığımız geliştirmeler bir şeyleri bozmuş. Bu sebeple oradaki testlerin de düzeltilmesi gerekiyor. Ayrı bir issue açmamız gerekmiyor şu an için. Bu issue kapsamında yapılan değişikliklerin test etkileri olmuş gibi görünüyor.

@m1erla m1erla marked this pull request as ready for review January 15, 2025 19:14
…@SiZe annotations on emailAddress. Added some invalid email value.
Comment on lines 15 to 16
* Extends {@link BaseDomainModel} and includes details such as personal and
* contact information,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Burayi eski haline cevirebiliriz

@@ -72,12 +71,14 @@ public void pending() {
this.referenceNumber = AysRandomUtil.generateNumber(10).toString();
this.status = EmergencyEvacuationApplicationStatus.PENDING;
this.isInPerson = this.applicantPhoneNumber == null;
this.hasObstaclePersonExist = null;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bu degisiklige nicin ihtiyacimiz oldu 🤔

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yaptığım değişikliklerden sonra test'lerden geçemedi. Null set edilmediği için hata almıştım. Bundan kaynaklı null değeri atadım oraya ve testlerden sorunsuz geçti.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bu alanla alakali degisiklikleri bu issue ozelinde yapmamiza gerek olmadigi icin, degisiklikleri ve testlerdeki eklemeleri geri alabiliriz

Comment on lines 80 to 81
* @param institutionId the ID of the institution to associate with the
* application.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Burayi eski haline cevirebiliriz

Comment on lines 24 to 25
* The emergency evacuation applications are defined in the
* AYS_EMERGENCY_EVACUATION_APPLICATION table in the database.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Burayi eski haline cevirebiliriz

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@agitrubard son requested changes'larına göre düzenledim. Tekrar bu haline mi çevireyim?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bu javadoc'larin degistirilmesine gerek yok, maindeki haline cevirebiliriz eger @agitrubard icin de uygunsa

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bunları kullandığım formatter dan kaynaklı bozulmuştu. @agitrubard saten bana geri çevirmem için uyardı ama ben bunları gözden kaçırmışım hemen hallediyorum.

@@ -98,7 +99,6 @@ public class EmergencyEvacuationApplicationEntity extends BaseEntity {
@Column(name = "NOTES")
private String notes;


Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Burayi eski haline cevirebiliriz

@@ -76,22 +76,24 @@ public class EmergencyEvacuationApplicationRequest {
@Valid
private AysPhoneNumberRequest applicantPhoneNumber;

private Boolean hasObstaclePersonExist;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bu degisiklige nicin ihtiyacimiz oldu 🤔

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

testleri build ederken hasObstaclePersonExist olmadığına dair ve bundan kaynaklı hata almıştım. Attribute olarak eklediğimde testlerden geçti.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Testlerin tamami mainde geciyor. Yaptigin baska degisiklikler sonucu bu hatalari almis olmalisin. Bu alan 661 issue'sunun scope'unda olmadigi icin bunlari kaldirip testleri de ona gore duzeltebilir misin?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tamam dır. Şeyi sormak isterim ben 609 issue'sunu yaparken bu değişiklikleri yapmıştım. Bu değişiklikleri 609 branch'ine alıp tekrar commit atayım mı? Yoksa 609 issue'suna dokunmayayım mı?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bu degisiklikler baska bir issue'ya aitse onun branch'inde olmasi gerekir, ancak 609 su an icin backlog'da. Ready'de olan issue'lari kendimize assign edip calismaya oyle basliyoruz. Eger ek sorularin olursa jira'da issue uzerinden konusalim beni etiketleyebilirsin

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Teşekkürler.

@@ -42,7 +43,6 @@ public class EmergencyEvacuationApplication extends BaseDomainModel {

private Institution institution;


Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Burayi eski haline cevirebiliriz

@@ -62,7 +62,6 @@ public boolean isInstitutionOwner(final String institutionId) {
return this.institution.getId().equals(institutionId);
}


Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Burayi eski haline cevirebiliriz

@@ -13,10 +13,11 @@
import org.ays.common.util.validation.Name;
import org.hibernate.validator.constraints.Range;


Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Burayi eski haline cevirebiliriz

@@ -64,7 +65,6 @@ public class EmergencyEvacuationApplicationRequest {
@Size(min = 2, max = 100)
private String targetDistrict;


Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Burayi eski haline cevirebiliriz

Copy link
Contributor

@egehanasal egehanasal left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Request changes yerine approve'a tiklamisim son eklememi yaparken, duzeltiyorum.

@@ -12,7 +12,6 @@ public class AysPasswordForgotRequest {

@EmailAddress
@NotBlank
@Size(min = 2, max = 255)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Size kontrolu buradan kaldirilmis ancak @EmailAddress anotasyonu icerisine eklenmemis, o eklemeyi yapabilir miyiz?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Size kontrolünü'de @agitrubard isteği üzerine kaldırdım. Kontrol saten EmailAddress içinde yapılıyormuş. Ekstra bir şey eklememe gerek var mı yine de?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Onceki commitinde hem burada @Size anotasyonu eklenmis hem de @EmailAddress anotasyonunun icerisine size kontrolu eklenmisti. Dolayisiyla @Size anotasyonunu kaldirmak yeterli olacakti ancak sonraki committe ikisi birden kaldirilmis. @EmailAddress anotasyonunun icerisine tekrar ekleme yapabilir misin?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tamamdır gözümden kaçmış affola.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hic onemli degil, yardimci olabildiysem ne mutlu bana 🙌

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@emailaddress interface sınıfına hiç dokunmamıştım. Eğer commit mesajımla alakalı bahsetmişseniz ben orada emailAddress attribute'unun üstündeki anatasyon olarak belirtmek istedim. Eğer yanlışım varsa düzeltin çünkü commitlerimin hepsine baktım ama hiç ellememişim interface sınıfını.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

EmailAddressValidator sınıfındaki bu değişiklikleri kastetmiştim
IMG-20250117-WA0016.jpg

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Kusuruma bakmayın gözümden kaçmış şimdi düzelttim commit ettim.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rica ederim eline saglik 🙌🏼

…me classes, revert withSeatingCount method on withValidValues in EmergencyEvacuationRequestBuilder.
if (email.length() < 6 || email.length() > 254) {
return this.buildViolation(constraintValidatorContext, "length must be between 6 and 254 characters");
}

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Size kontrolü ilk başta olabilir, çünkü size'dan geçemezse en başta bunu tespit edebiliyor olmamız gerekiyor

@@ -68,6 +69,10 @@ public boolean isValid(String email, ConstraintValidatorContext constraintValida
return this.buildViolation(constraintValidatorContext, "email is not in a valid format");
}

if (email.length() < 6 || email.length() > 254) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if (email.length() < 6 || email.length() > 254) {
if (email.length() <= 6 || email.length() >= 254) {

@@ -39,10 +39,8 @@ public class EmergencyEvacuationApplication extends BaseDomainModel {
private Boolean isInPerson;
private Boolean hasObstaclePersonExist;
private String notes;

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@egehanasal'ın yazdıklarına ek olarak burayı da eski hâline alabiliriz

@@ -76,22 +74,22 @@ public class EmergencyEvacuationApplicationRequest {
@Valid
private AysPhoneNumberRequest applicantPhoneNumber;


@JsonIgnore
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@egehanasal 'ın söylediklerine ek olarak burayı da eski hâline alabiliriz. Üstünde bir boşluk vardı bu silinmiş

Suggested change
@JsonIgnore
@JsonIgnore

Comment on lines +82 to +83
if (StringUtils.isEmpty(this.applicantFirstName) &&
StringUtils.isEmpty(this.applicantLastName) && this.applicantPhoneNumber == null) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Burayı da eski hâline alabilir miyiz?

Suggested change
if (StringUtils.isEmpty(this.applicantFirstName) &&
StringUtils.isEmpty(this.applicantLastName) && this.applicantPhoneNumber == null) {
if (StringUtils.isEmpty(this.applicantFirstName) && StringUtils.isEmpty(this.applicantLastName) && this.applicantPhoneNumber == null) {

Comment on lines +91 to +92
!(StringUtils.isBlank(this.applicantPhoneNumber.getCountryCode()) &&
StringUtils.isBlank(this.applicantPhoneNumber.getLineNumber()));
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Burayı da eski hâline alabilir miyiz?

Suggested change
!(StringUtils.isBlank(this.applicantPhoneNumber.getCountryCode()) &&
StringUtils.isBlank(this.applicantPhoneNumber.getLineNumber()));
!(StringUtils.isBlank(this.applicantPhoneNumber.getCountryCode()) && StringUtils.isBlank(this.applicantPhoneNumber.getLineNumber()));

Comment on lines +104 to +105
if (StringUtils.isEmpty(this.applicantPhoneNumber.getLineNumber()) ||
StringUtils.isEmpty(this.phoneNumber.getLineNumber())) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Burayı da eski hâline alabilir miyiz?

Suggested change
if (StringUtils.isEmpty(this.applicantPhoneNumber.getLineNumber()) ||
StringUtils.isEmpty(this.phoneNumber.getLineNumber())) {
if (StringUtils.isEmpty(this.applicantPhoneNumber.getLineNumber()) || StringUtils.isEmpty(this.phoneNumber.getLineNumber())) {

Comment on lines +122 to +123
if (this.sourceCity == null || this.sourceDistrict == null || this.targetCity == null
|| this.targetDistrict == null) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bu format düzenlemesi henüz yapılmamış

Assertions.assertNotNull(applicationFromDatabase.get().getUpdatedUser());
Assertions.assertNotNull(applicationFromDatabase.get().getUpdatedAt());
Assertions.assertTrue(UUIDTestUtil.isValid(applicationFromDatabase.get().getUpdatedUser()));
}

}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Özel bir formatter kullanıyosun sanırım, herkes default IntellIJ formatter'ını kullanıyor bu sebeple burayı eski hâline alabiliriz

.withAddress("Lorem Ipsum is simply dummy text of the printing and typesetting industry.");
.withAddress("Lorem Ipsum is simply dummy text of the printing and typesetting industry.")
.withSeatingCount(1)
.withApplicantPhoneNumber(new AysPhoneNumberRequestBuilder().withValidValues().build());
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Burayı eski hâline alabilir miyiz?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants