use of io.stackgres.operatorframework.admissionwebhook.validating.ValidationFailed in project stackgres by ongres.
the class ClusterConstraintValidatorTest method invalidNames_shouldFail.
@ParameterizedTest
@ValueSource(strings = { "stackgres.io/", "*9stackgres", "1143", "1143a", "-1143a", ".demo", "123-primary", "123-primary", "primary*", "stackgres-demo_1" })
void invalidNames_shouldFail(String name) {
StackGresClusterReview review = getValidReview();
review.getRequest().getObject().getMetadata().setName(name);
ValidationFailed message = assertThrows(ValidationFailed.class, () -> validator.validate(review));
assertEquals("Name must consist of lower case alphanumeric " + "characters or '-', start with an alphabetic character, " + "and end with an alphanumeric character", message.getMessage());
}
use of io.stackgres.operatorframework.admissionwebhook.validating.ValidationFailed in project stackgres by ongres.
the class BackupConfigSourceValidatorTest method givenNonExistentAccessKeyIdKeyForS3CompatibleStorageCredentialsOnCreation_shouldFail.
@Test
void givenNonExistentAccessKeyIdKeyForS3CompatibleStorageCredentialsOnCreation_shouldFail() throws ValidationFailed {
final BackupConfigReview review = getEmptyReview();
String namespace = review.getRequest().getObject().getMetadata().getNamespace();
String accessKeyIdName = "secret1";
String accessKeyIdKey = "key1";
String secretAccessKeyName = "secret2";
String secretAccessKeyKey = "key2";
setS3CompatibleCredentials(review, accessKeyIdName, accessKeyIdKey, secretAccessKeyName, secretAccessKeyKey);
when(secretFinder.findByNameAndNamespace(accessKeyIdName, namespace)).thenReturn(Optional.of(new SecretBuilder(secret).withData(ImmutableMap.of(accessKeyIdKey + "-wrong", ResourceUtil.encodeSecret("accessKeyId"))).build()));
ValidationFailed ex = ValidationUtils.assertErrorType(ErrorType.INVALID_SECRET, () -> validator.validate(review));
assertEquals("Invalid backup configuration, key " + accessKeyIdKey + " of secret " + accessKeyIdName + " for accessKeyId of s3compatible credentials not found", ex.getResult().getMessage());
verify(secretFinder).findByNameAndNamespace(eq(accessKeyIdName), eq(namespace));
}
use of io.stackgres.operatorframework.admissionwebhook.validating.ValidationFailed in project stackgres by ongres.
the class BackupConfigSourceValidatorTest method givenNonExistentAccessKeyIdSecretForS3StorageCredentialsOnCreation_shouldFail.
@Test
void givenNonExistentAccessKeyIdSecretForS3StorageCredentialsOnCreation_shouldFail() throws ValidationFailed {
final BackupConfigReview review = getEmptyReview();
String accessKeyIdName = "secret1";
String accessKeyIdKey = "key1";
String secretAccessKeyName = "secret2";
String secretAccessKeyKey = "key2";
setS3Credentials(review, accessKeyIdName, accessKeyIdKey, secretAccessKeyName, secretAccessKeyKey);
ValidationFailed ex = ValidationUtils.assertErrorType(ErrorType.INVALID_SECRET, () -> validator.validate(review));
assertEquals("Invalid backup configuration, secret " + accessKeyIdName + " for accessKeyId of s3 credentials not found", ex.getResult().getMessage());
}
use of io.stackgres.operatorframework.admissionwebhook.validating.ValidationFailed in project stackgres by ongres.
the class BackupConfigSourceValidatorTest method givenNonExistentServiceAccountJsonKeyKeyForGcsStorageCredentialsOnCreation_shouldFail.
@Test
void givenNonExistentServiceAccountJsonKeyKeyForGcsStorageCredentialsOnCreation_shouldFail() throws ValidationFailed {
final BackupConfigReview review = getEmptyReview();
String namespace = review.getRequest().getObject().getMetadata().getNamespace();
String serviceAccountJsonKeyName = "secret1";
String serviceAccountJsonKeyKey = "key1";
setGcsCredentials(review, serviceAccountJsonKeyName, serviceAccountJsonKeyKey);
when(secretFinder.findByNameAndNamespace(serviceAccountJsonKeyName, namespace)).thenReturn(Optional.of(new SecretBuilder(secret).withData(ImmutableMap.of(serviceAccountJsonKeyKey + "-wrong", ResourceUtil.encodeSecret("serviceAccountJsonKey"))).build()));
ValidationFailed ex = ValidationUtils.assertErrorType(ErrorType.INVALID_SECRET, () -> validator.validate(review));
assertEquals("Invalid backup configuration, key " + serviceAccountJsonKeyKey + " of secret " + serviceAccountJsonKeyName + " for serviceAccountJsonKey of gcs credentials not found", ex.getResult().getMessage());
verify(secretFinder).findByNameAndNamespace(eq(serviceAccountJsonKeyName), eq(namespace));
}
use of io.stackgres.operatorframework.admissionwebhook.validating.ValidationFailed in project stackgres by ongres.
the class BackupConfigSourceValidatorTest method givenNonExistentSecretAccountSecretForAzureBlobStorageCredentialsOnCreation_shouldFail.
@Test
void givenNonExistentSecretAccountSecretForAzureBlobStorageCredentialsOnCreation_shouldFail() throws ValidationFailed {
final BackupConfigReview review = getEmptyReview();
String namespace = review.getRequest().getObject().getMetadata().getNamespace();
String accountName = "secret1";
String accountKey = "key1";
String accessKeyName = "secret2";
String accessKeyKey = "key2";
setAzureBlobCredentials(review, accountName, accountKey, accessKeyName, accessKeyKey);
when(secretFinder.findByNameAndNamespace(accountName, namespace)).thenReturn(Optional.of(new SecretBuilder(secret).withData(ImmutableMap.of(accountKey, ResourceUtil.encodeSecret("account"))).build()));
ValidationFailed ex = ValidationUtils.assertErrorType(ErrorType.INVALID_SECRET, () -> validator.validate(review));
assertEquals("Invalid backup configuration, secret " + accessKeyName + " for accessKey of azureblob credentials not found", ex.getResult().getMessage());
verify(secretFinder).findByNameAndNamespace(eq(accountName), eq(namespace));
}
Aggregations