StruckCroissant / Game-DB

Game-DB is a game database search engine deployed on Docker and powered by Java Spring Boot and AngularJS
GNU General Public License v3.0
1 stars 0 forks source link

@NotBlank validation not applying to new entries on User table #16

Closed StruckCroissant closed 2 years ago

StruckCroissant commented 2 years ago

When inserting a new user into the User's table, the username is allowed to be blank - despite the @NotBlank annotation on the username field in the User class.

StruckCroissant commented 2 years ago

Added @Valid notation to RegistrationController.registerUser to enforce @NotBlank constraint. Test present in RegistrationControllerTest.whenBlankValueRegister_thenReturns400