Search in sources :

Example 31 with Violation

use of com.nexblocks.authguard.api.dto.validation.violations.Violation in project AuthGuard by AuthGuard.

the class CreateCredentialsRequestValidatorTest method validateValid.

@Test
void validateValid() {
    final CreateCredentialsRequestDTO request = CreateCredentialsRequestDTO.builder().accountId("account").addIdentifiers(UserIdentifierDTO.builder().type(UserIdentifier.Type.USERNAME).identifier("username").build()).plainPassword("password").domain("main").build();
    final Validator<CreateCredentialsRequestDTO> validator = Validators.getForClass(CreateCredentialsRequestDTO.class);
    final List<Violation> violations = validator.validate(request);
    assertThat(violations).isEmpty();
}
Also used : Violation(com.nexblocks.authguard.api.dto.validation.violations.Violation) CreateCredentialsRequestDTO(com.nexblocks.authguard.api.dto.requests.CreateCredentialsRequestDTO) Test(org.junit.jupiter.api.Test)

Example 32 with Violation

use of com.nexblocks.authguard.api.dto.validation.violations.Violation in project AuthGuard by AuthGuard.

the class CreatePermissionRequestValidatorTest method validateNoFields.

@Test
void validateNoFields() {
    final CreatePermissionRequestDTO request = CreatePermissionRequestDTO.builder().build();
    final Validator<CreatePermissionRequestDTO> validator = Validators.getForClass(CreatePermissionRequestDTO.class);
    final List<Violation> violations = validator.validate(request);
    assertThat(violations).containsExactlyInAnyOrder(new Violation("name", ViolationType.MISSING_REQUIRED_VALUE), new Violation("group", ViolationType.MISSING_REQUIRED_VALUE), new Violation("domain", ViolationType.MISSING_REQUIRED_VALUE));
}
Also used : Violation(com.nexblocks.authguard.api.dto.validation.violations.Violation) CreatePermissionRequestDTO(com.nexblocks.authguard.api.dto.requests.CreatePermissionRequestDTO) Test(org.junit.jupiter.api.Test)

Example 33 with Violation

use of com.nexblocks.authguard.api.dto.validation.violations.Violation in project AuthGuard by AuthGuard.

the class CreateRoleRequestValidatorTest method validateValidRequest.

@Test
void validateValidRequest() {
    final CreateRoleRequestDTO request = CreateRoleRequestDTO.builder().name("test-role").domain("main").build();
    final Validator<CreateRoleRequestDTO> validator = Validators.getForClass(CreateRoleRequestDTO.class);
    final List<Violation> violations = validator.validate(request);
    assertThat(violations).isEmpty();
}
Also used : Violation(com.nexblocks.authguard.api.dto.validation.violations.Violation) CreateRoleRequestDTO(com.nexblocks.authguard.api.dto.requests.CreateRoleRequestDTO) Test(org.junit.jupiter.api.Test)

Example 34 with Violation

use of com.nexblocks.authguard.api.dto.validation.violations.Violation in project AuthGuard by AuthGuard.

the class OtpRequestValidatorTest method validateMissingFields.

@Test
void validateMissingFields() {
    final OtpRequestDTO request = OtpRequestDTO.builder().build();
    final Validator<OtpRequestDTO> validator = Validators.getForClass(OtpRequestDTO.class);
    final List<Violation> violations = validator.validate(request);
    assertThat(violations).containsExactlyInAnyOrder(new Violation("password", ViolationType.MISSING_REQUIRED_VALUE), new Violation("passwordId", ViolationType.MISSING_REQUIRED_VALUE));
}
Also used : Violation(com.nexblocks.authguard.api.dto.validation.violations.Violation) OtpRequestDTO(com.nexblocks.authguard.api.dto.requests.OtpRequestDTO) Test(org.junit.jupiter.api.Test)

Example 35 with Violation

use of com.nexblocks.authguard.api.dto.validation.violations.Violation in project AuthGuard by AuthGuard.

the class OtpRequestValidatorTest method validateValid.

@Test
void validateValid() {
    final OtpRequestDTO request = OtpRequestDTO.builder().passwordId("password-id").password("password").build();
    final Validator<OtpRequestDTO> validator = Validators.getForClass(OtpRequestDTO.class);
    final List<Violation> violations = validator.validate(request);
    assertThat(violations).isEmpty();
}
Also used : Violation(com.nexblocks.authguard.api.dto.validation.violations.Violation) OtpRequestDTO(com.nexblocks.authguard.api.dto.requests.OtpRequestDTO) Test(org.junit.jupiter.api.Test)

Aggregations

Violation (com.nexblocks.authguard.api.dto.validation.violations.Violation)44 Test (org.junit.jupiter.api.Test)40 CreateAccountRequestDTO (com.nexblocks.authguard.api.dto.requests.CreateAccountRequestDTO)6 PasswordResetRequestDTO (com.nexblocks.authguard.api.dto.requests.PasswordResetRequestDTO)5 UpdateAccountRequestDTO (com.nexblocks.authguard.api.dto.requests.UpdateAccountRequestDTO)5 AuthRequestDTO (com.nexblocks.authguard.api.dto.requests.AuthRequestDTO)4 RequestValidationError (com.nexblocks.authguard.api.dto.entities.RequestValidationError)3 CreateCredentialsRequestDTO (com.nexblocks.authguard.api.dto.requests.CreateCredentialsRequestDTO)3 PermissionsRequestDTO (com.nexblocks.authguard.api.dto.requests.PermissionsRequestDTO)3 AccountEmailsRequestDTO (com.nexblocks.authguard.api.dto.requests.AccountEmailsRequestDTO)2 CreateAppRequestDTO (com.nexblocks.authguard.api.dto.requests.CreateAppRequestDTO)2 CreatePermissionRequestDTO (com.nexblocks.authguard.api.dto.requests.CreatePermissionRequestDTO)2 CreateRoleRequestDTO (com.nexblocks.authguard.api.dto.requests.CreateRoleRequestDTO)2 OtpRequestDTO (com.nexblocks.authguard.api.dto.requests.OtpRequestDTO)2 PasswordlessRequestDTO (com.nexblocks.authguard.api.dto.requests.PasswordlessRequestDTO)2 RolesRequestDTO (com.nexblocks.authguard.api.dto.requests.RolesRequestDTO)2 UserIdentifiersRequestDTO (com.nexblocks.authguard.api.dto.requests.UserIdentifiersRequestDTO)1 RequestValidationException (com.nexblocks.authguard.rest.exceptions.RequestValidationException)1