use of com.venafi.vcert.sdk.policy.domain.PolicySpecification in project vcert-java by Venafi.
the class CloudConnectorTest method testExceptionValidatingMaxValidDays.
@Test
@DisplayName("Cloud - Testing Exception in Validation of MaxValidDays")
public void testExceptionValidatingMaxValidDays() throws VCertException {
classUnderTest.authenticate(new Authentication(null, null, "12345678-1234-1234-1234-123456789012"));
PolicySpecification policySpecification = CloudTestUtils.getPolicySpecification();
// setting the maxValidDays to null to validate that the related VCertException is thrown
policySpecification.policy().maxValidDays(-10);
Exception exception = assertThrows(VCertException.class, () -> classUnderTest.setPolicy(CloudTestUtils.getRandomZone(), policySpecification));
assertEquals(CloudTestUtils.getVCertExceptionMessage(CloudPolicySpecificationValidator.MAX_VALID_DAYS_EXCEPTION_MESSAGE), exception.getMessage());
}
use of com.venafi.vcert.sdk.policy.domain.PolicySpecification in project vcert-java by Venafi.
the class CloudConnectorTest method testExceptionValidatingPolicyKeyTypeContainsInvalidValue.
@Test
@DisplayName("Cloud - Testing Exception in Validation of Policy KeyType")
public void testExceptionValidatingPolicyKeyTypeContainsInvalidValue() throws VCertException {
classUnderTest.authenticate(new Authentication(null, null, "12345678-1234-1234-1234-123456789012"));
PolicySpecification policySpecification = CloudTestUtils.getPolicySpecification();
// setting the keypair to a list of values which contains not only "RSA" to validate that the related VCertException is thrown
policySpecification.policy().keyPair().keyTypes(new String[] { "RSA", "ECDSA" });
Exception exception = assertThrows(VCertException.class, () -> classUnderTest.setPolicy(CloudTestUtils.getRandomZone(), policySpecification));
assertEquals(CloudTestUtils.getVCertExceptionMessage(CloudPolicySpecificationValidator.ATTRIBUTE_DOESNT_MATCH_WITH_ACCEPTED_VALUES_EXCEPTION_MESSAGE, PolicySpecificationConst.ATT_POLICY_KEYPAIR_KEY_TYPES), exception.getMessage());
}
use of com.venafi.vcert.sdk.policy.domain.PolicySpecification in project vcert-java by Venafi.
the class CloudConnectorPolicyAT method createAndGetPolicyForDigicert.
@Test
@DisplayName("Cloud - Testing the setPolicy() and getPolicy() methods for Digicert CA")
public void createAndGetPolicyForDigicert() throws VCertException {
CloudConnector connector = connectorResource.connector();
String policyName = CloudTestUtils.getRandomZone();
PolicySpecification policySpecification = CloudTestUtils.getPolicySpecification();
policySpecification.policy().certificateAuthority(TestUtils.CLOUD_DIGICERT_CA_NAME);
connector.setPolicy(policyName, policySpecification);
PolicySpecification policySpecificationReturned = connector.getPolicy(policyName);
// The returned policySpecification will have the policy's name so it will copied to the source policySpecification
// due it doesn't contain it
policySpecification.name(policySpecificationReturned.name());
assertEquals(policySpecification, policySpecificationReturned);
}
use of com.venafi.vcert.sdk.policy.domain.PolicySpecification in project vcert-java by Venafi.
the class CloudConnectorPolicyAT method createAndGetPolicy.
@Test
@DisplayName("Cloud - Testing the setPolicy() and getPolicy() methods")
public void createAndGetPolicy() throws VCertException {
CloudConnector connector = connectorResource.connector();
String policyName = CloudTestUtils.getRandomZone();
PolicySpecification policySpecification = CloudTestUtils.getPolicySpecification();
connector.setPolicy(policyName, policySpecification);
PolicySpecification policySpecificationReturned = connector.getPolicy(policyName);
// The returned policySpecification will have the policy's name so it will copied to the source policySpecification
// due it doesn't contain it
policySpecification.name(policySpecificationReturned.name());
// The returned policySpecification will contains the default cloud CA, then it will needed
// to set it to the policySpecification source
policySpecification.policy().certificateAuthority(VCertConstants.CLOUD_DEFAULT_CA);
assertEquals(policySpecification, policySpecificationReturned);
}
use of com.venafi.vcert.sdk.policy.domain.PolicySpecification in project vcert-java by Venafi.
the class CloudConnectorTest method testExceptionValidatingDefaultKeySizeDoesntMatchWithPolicyKeySizes.
@Test
@DisplayName("Cloud - Testing Exception in Validation of Default KeySize with a value not matching with the Policy KeySizes")
public void testExceptionValidatingDefaultKeySizeDoesntMatchWithPolicyKeySizes() throws VCertException {
classUnderTest.authenticate(new Authentication(null, null, "12345678-1234-1234-1234-123456789012"));
PolicySpecification policySpecification = CloudTestUtils.getPolicySpecification();
// setting the default keysize to a value which is not matching with
// the Policy KeySizes to validate that the related VCertException is thrown
policySpecification.defaults().keyPair().rsaKeySize(4096);
Exception exception = assertThrows(VCertException.class, () -> classUnderTest.setPolicy(CloudTestUtils.getRandomZone(), policySpecification));
assertEquals(CloudTestUtils.getVCertExceptionMessage(CloudPolicySpecificationValidator.DEFAULT_ATTRIBUTE_DOESNT_MATCH_EXCEPTION_MESSAGE, PolicySpecificationConst.ATT_DEFAULTS_KEYPAIR_RSA_KEY_SIZE, PolicySpecificationConst.ATT_POLICY_KEYPAIR_RSA_KEY_SIZES), exception.getMessage());
}
Aggregations