use of com.sequenceiq.cloudbreak.validation.ValidationResult.ValidationResultBuilder in project cloudbreak by hortonworks.
the class AzureEnvironmentNetworkValidatorTest method testValidateDuringRequestWhenNoNetworkCidrAndNetworkId.
@Test
void testValidateDuringRequestWhenNoNetworkCidrAndNetworkId() {
AzureParams azureParams = NetworkTestUtils.getAzureParams(true, true, true);
NetworkDto networkDto = NetworkTestUtils.getNetworkDto(azureParams, null, null, azureParams.getNetworkId(), null, 1);
ValidationResultBuilder resultBuilder = new ValidationResultBuilder();
underTest.validateDuringRequest(networkDto, resultBuilder);
ValidationResult validationResult = resultBuilder.build();
assertFalse(validationResult.hasError());
}
use of com.sequenceiq.cloudbreak.validation.ValidationResult.ValidationResultBuilder in project cloudbreak by hortonworks.
the class AzureEnvironmentNetworkValidatorTest method testValidateDuringRequestWhenSubnetsWithNoNetworkId.
@Test
void testValidateDuringRequestWhenSubnetsWithNoNetworkId() {
AzureParams azureParams = NetworkTestUtils.getAzureParams(true, false, true);
NetworkDto networkDto = NetworkTestUtils.getNetworkDto(azureParams, null, null, null, null, 2);
ValidationResultBuilder resultBuilder = new ValidationResultBuilder();
underTest.validateDuringRequest(networkDto, resultBuilder);
NetworkTestUtils.checkErrorsPresent(resultBuilder, List.of("Either the AZURE network id or cidr needs to be defined!", "If resourceGroupName is specified, then networkId must be specified too.", "If subnetIds are specified, then networkId must be specified too."));
}
use of com.sequenceiq.cloudbreak.validation.ValidationResult.ValidationResultBuilder in project cloudbreak by hortonworks.
the class AzureEnvironmentNetworkValidatorTest method testValidateDuringRequestWhenNoNetworkCidrAndNoResourceGroupName.
@Test
void testValidateDuringRequestWhenNoNetworkCidrAndNoResourceGroupName() {
AzureParams azureParams = NetworkTestUtils.getAzureParams(true, true, false);
NetworkDto networkDto = NetworkTestUtils.getNetworkDto(azureParams, null, null, azureParams.getNetworkId(), null, 1);
ValidationResultBuilder resultBuilder = new ValidationResultBuilder();
underTest.validateDuringRequest(networkDto, resultBuilder);
NetworkTestUtils.checkErrorsPresent(resultBuilder, List.of("If networkId is specified, then resourceGroupName must be specified too."));
}
use of com.sequenceiq.cloudbreak.validation.ValidationResult.ValidationResultBuilder in project cloudbreak by hortonworks.
the class AwsEnvironmentSecurityGroupValidatorTest method testValidationWhenOnlyOneGroupDefinedReturnInValid.
@Test
public void testValidationWhenOnlyOneGroupDefinedReturnInValid() {
Region region = getRegion();
String sec1 = null;
String sec2 = "sec-2";
String vpcId = "vpc-123";
when(platformParameterService.getSecurityGroups(any(PlatformResourceRequest.class))).thenReturn(cloudSecurityGroups(region.getName(), vpcId, sec1, sec2));
EnvironmentDto environmentDto = EnvironmentDto.builder().withRegions(Set.of(region)).withSecurityAccess(getSecurityAccessDto(sec1, sec2)).withNetwork(getNetworkDto(vpcId)).withCredential(getCredential()).build();
EnvironmentValidationDto environmentValidationDto = EnvironmentValidationDto.builder().withEnvironmentDto(environmentDto).build();
ValidationResultBuilder builder = ValidationResult.builder();
underTest.validate(environmentValidationDto, builder);
requestIsInvalid(builder);
}
use of com.sequenceiq.cloudbreak.validation.ValidationResult.ValidationResultBuilder in project cloudbreak by hortonworks.
the class AwsEnvironmentSecurityGroupValidatorTest method testValidationWhenGroupsInDifferentVpcReturnInValid.
@Test
public void testValidationWhenGroupsInDifferentVpcReturnInValid() {
Region region = getRegion();
String sec1 = "sec-1,sec-2";
String sec2 = "sec-2";
String vpcId = "vpc-123";
String requestVpcId = "vpc-124";
when(platformParameterService.getSecurityGroups(any(PlatformResourceRequest.class))).thenReturn(cloudSecurityGroups(region.getName(), vpcId, "sec-1", "sec-2"));
EnvironmentDto environmentDto = EnvironmentDto.builder().withRegions(Set.of(region)).withSecurityAccess(getSecurityAccessDto(sec1, sec2)).withNetwork(getNetworkDto(requestVpcId)).withCredential(getCredential()).build();
EnvironmentValidationDto environmentValidationDto = EnvironmentValidationDto.builder().withEnvironmentDto(environmentDto).build();
ValidationResultBuilder builder = ValidationResult.builder();
underTest.validate(environmentValidationDto, builder);
requestIsInvalid(builder);
}
Aggregations