use of org.keycloak.userprofile.config.UPConfig in project keycloak by keycloak.
the class UPConfigParserTest method validateConfiguration_attributeAnnotationsErrors.
private static void validateConfiguration_attributeAnnotationsErrors(KeycloakSession session) throws IOException {
UPConfig config = loadValidConfig();
// attribute references group that is not configured
UPAttribute att = config.getAttributes().get(1);
att.getAnnotations().put("inputOptions", "");
att.getAnnotations().put("inputOptionLabels", "");
List<String> errors = validate(session, config);
Assert.assertEquals(2, errors.size());
}
use of org.keycloak.userprofile.config.UPConfig in project keycloak by keycloak.
the class UPConfigParserTest method validateConfiguration_attributeGroupConfigurationErrors.
private static void validateConfiguration_attributeGroupConfigurationErrors(KeycloakSession session) throws IOException {
UPConfig config = loadValidConfig();
// add a group without name
UPGroup groupWithoutName = new UPGroup();
config.addGroup(groupWithoutName);
List<String> errors = validate(session, config);
Assert.assertEquals(1, errors.size());
Assert.assertEquals("Name is mandatory for groups, found 1 group(s) without name.", errors.get(0));
}
use of org.keycloak.userprofile.config.UPConfig in project keycloak by keycloak.
the class UPConfigParserTest method validateConfiguration_attributeGroupReferenceErrors.
private static void validateConfiguration_attributeGroupReferenceErrors(KeycloakSession session) throws IOException {
UPConfig config = loadValidConfig();
// attribute references group that is not configured
UPAttribute firstAttribute = config.getAttributes().get(0);
firstAttribute.setGroup("non-existing-group");
List<String> errors = validate(session, config);
Assert.assertEquals(1, errors.size());
Assert.assertEquals("Attribute 'username' references unknown group 'non-existing-group'", errors.get(0));
}
use of org.keycloak.userprofile.config.UPConfig in project keycloak by keycloak.
the class UserProfileTest method testCustomAttributeRequired.
private static void testCustomAttributeRequired(KeycloakSession session) throws IOException {
DeclarativeUserProfileProvider provider = getDynamicUserProfileProvider(session);
ComponentModel component = provider.getComponentModel();
assertNotNull(component);
UPConfig config = new UPConfig();
UPAttribute attribute = new UPAttribute();
attribute.setName(ATT_ADDRESS);
Map<String, Object> validatorConfig = new HashMap<>();
validatorConfig.put(LengthValidator.KEY_MIN, 4);
attribute.addValidation(LengthValidator.ID, validatorConfig);
// make it ALWAYS required
UPAttributeRequired requirements = new UPAttributeRequired();
attribute.setRequired(requirements);
UPAttributePermissions permissions = new UPAttributePermissions();
permissions.setEdit(Collections.singleton(ROLE_USER));
attribute.setPermissions(permissions);
config.addAttribute(attribute);
provider.setConfiguration(JsonSerialization.writeValueAsString(config));
Map<String, Object> attributes = new HashMap<>();
attributes.put(UserModel.USERNAME, "user");
UserProfile profile = provider.create(UserProfileContext.UPDATE_PROFILE, attributes);
// fails on required validation
try {
profile.validate();
fail("Should fail validation");
} catch (ValidationException ve) {
assertTrue(ve.isAttributeOnError(ATT_ADDRESS));
}
// fails on length validation
attributes.put(ATT_ADDRESS, "adr");
profile = provider.create(UserProfileContext.UPDATE_PROFILE, attributes);
try {
profile.validate();
fail("Should fail validation");
} catch (ValidationException ve) {
assertTrue(ve.isAttributeOnError(ATT_ADDRESS));
}
// all OK
attributes.put(ATT_ADDRESS, "adress ok");
attributes.put(UserModel.FIRST_NAME, "Joe");
attributes.put(UserModel.LAST_NAME, "Doe");
profile = provider.create(UserProfileContext.UPDATE_PROFILE, attributes);
profile.validate();
}
use of org.keycloak.userprofile.config.UPConfig in project keycloak by keycloak.
the class UserProfileTest method testCustomAttributeOptional.
private static void testCustomAttributeOptional(KeycloakSession session) throws IOException {
DeclarativeUserProfileProvider provider = getDynamicUserProfileProvider(session);
ComponentModel component = provider.getComponentModel();
assertNotNull(component);
UPConfig config = new UPConfig();
UPAttribute attribute = new UPAttribute();
attribute.setName(ATT_ADDRESS);
Map<String, Object> validatorConfig = new HashMap<>();
validatorConfig.put(LengthValidator.KEY_MIN, 4);
attribute.addValidation(LengthValidator.ID, validatorConfig);
config.addAttribute(attribute);
provider.setConfiguration(JsonSerialization.writeValueAsString(config));
Map<String, Object> attributes = new HashMap<>();
attributes.put(UserModel.USERNAME, "user");
// null is OK as attribute is optional
UserProfile profile = provider.create(UserProfileContext.UPDATE_PROFILE, attributes);
profile.validate();
// blank String have to be OK as it is what UI forms send for not filled in optional attributes
attributes.put(ATT_ADDRESS, "");
profile = provider.create(UserProfileContext.UPDATE_PROFILE, attributes);
profile.validate();
// fails on length validation
attributes.put(ATT_ADDRESS, "adr");
profile = provider.create(UserProfileContext.UPDATE_PROFILE, attributes);
try {
profile.validate();
fail("Should fail validation");
} catch (ValidationException ve) {
assertTrue(ve.isAttributeOnError(ATT_ADDRESS));
}
// all OK
attributes.put(ATT_ADDRESS, "adress ok");
profile = provider.create(UserProfileContext.UPDATE_PROFILE, attributes);
profile.validate();
}
Aggregations