teamcodeyard / tir-api

Web gateway for project TIR
1 stars 1 forks source link

POST - Login user - Incorrect Message for Passwords when does not meet the password criteria #8

Open QArolandczegledi opened 9 months ago

QArolandczegledi commented 9 months ago

It this case when attempting to log in with a wrong password that is shorter than 10 characters, the system is displaying an incorrect error message and sending the wrong response code. The same issue occurs if the password is longer than 10 characters but does not meet the password validation criteria

Precondition: Existing registered user

  1. Local dev environment must be running
  2. From Postman sending the following request to the given endpoint: /login (email: {{registeredEmail}}, password: {{shorterThan10Chars}}

Expected Result: Message: Invalid e-mail or password and 422 response code

Actual Result: Message: "The password must be at least 10 characters, must contain numeric characters, minimum 1 uppercase letter [A-Z] and minimum 1 special character" and 400 responce code

Please find the attachment 2023-11-03 11_11_11-Login_Wrong_Password - My Workspace