use of org.gluu.oxtrust.model.GluuCustomPerson in project oxTrust by GluuFederation.
the class CopyUtilsTestUpdate method testCopyScim1FilledUpdateExisting.
@Test
public void testCopyScim1FilledUpdateExisting() throws Exception {
GluuCustomPerson destination = new GluuCustomPerson();
destination.setAllowPublication(true);
List<String> associatedClientDNs = new ArrayList<String>();
associatedClientDNs.add("a");
associatedClientDNs.add("b");
associatedClientDNs.add("c");
destination.setAssociatedClient(associatedClientDNs);
destination.setBaseDn("dn");
destination.setAttribute(OX_TRUST_NICK_NAME, "original nickname");
destination.setAttribute(OX_TRUST_PROFILE_URL, "original url");
destination.setCommonName("CN");
destination.setGivenName("original givenname");
destination.setPreferredLanguage("Nederlands");
destination.setAttribute(OX_TRUST_ENTITLEMENTS, "[{\"value\":\"original entitlement_value\"}]");
ScimPerson source = new ScimPerson();
source.setActive("true");
ScimPersonAddresses address = new ScimPersonAddresses();
address.setCountry("country");
address.setFormatted("formatted");
address.setLocality("locality");
address.setPostalCode("postalCode");
address.setPrimary("address_primary");
address.setRegion("region");
address.setStreetAddress("streetAddress");
address.setType("address_type");
List<ScimPersonAddresses> addresses = new ArrayList<ScimPersonAddresses>();
addresses.add(address);
source.setAddresses(addresses);
List<ScimCustomAttributes> customAttributes = new ArrayList<ScimCustomAttributes>();
ScimCustomAttributes customattribute = new ScimCustomAttributes();
customattribute.setName("custom_name");
List<String> values = new ArrayList<String>();
String value = "value";
values.add(value);
customattribute.setValues(values);
customAttributes.add(customattribute);
ScimCustomAttributes customattribute2 = new ScimCustomAttributes();
customattribute2.setName("custom_name2");
List<String> values2 = new ArrayList<String>();
String value2 = "value";
values2.add(value2);
customattribute2.setValues(values2);
customAttributes.add(customattribute2);
source.setCustomAttributes(customAttributes);
source.setDisplayName("displayName");
ScimPersonEmails email = new ScimPersonEmails();
email.setPrimary("email_primary");
email.setType("email_type");
email.setValue("email_value");
List<ScimPersonEmails> emails = new ArrayList<ScimPersonEmails>();
emails.add(email);
source.setEmails(emails);
ScimEntitlements entitlement = new ScimEntitlements();
entitlement.setValue("entitlement_value");
List<ScimEntitlements> entitlements = new ArrayList<ScimEntitlements>();
entitlements.add(entitlement);
source.setEntitlements(entitlements);
source.setExternalId("externalId");
ScimPersonGroups group = new ScimPersonGroups();
group.setDisplay("group_display");
group.setValue("group_value");
List<ScimPersonGroups> groups = new ArrayList<ScimPersonGroups>();
groups.add(group);
source.setGroups(groups);
source.setId("id");
ScimPersonIms personims = new ScimPersonIms();
personims.setType("ims_type");
personims.setValue("ims_value");
List<ScimPersonIms> ims = new ArrayList<ScimPersonIms>();
ims.add(personims);
source.setIms(ims);
source.setLocale("locale");
PersonMeta meta = new PersonMeta();
meta.setCreated("created");
meta.setLastModified("lastModified");
meta.setLocation("location");
meta.setVersion("version");
source.setMeta(meta);
ScimName name = new ScimName();
name.setFamilyName("familyName");
name.setGivenName("givenName");
name.setHonorificPrefix("honorificPrefix");
name.setHonorificSuffix("honorificSuffix");
name.setMiddleName("middleName");
source.setName(name);
source.setNickName("nickName");
source.setPassword("password");
ScimPersonPhones phonenumber = new ScimPersonPhones();
phonenumber.setType("phone_type");
phonenumber.setValue("phone_value");
List<ScimPersonPhones> phoneNumbers = new ArrayList<ScimPersonPhones>();
phoneNumbers.add(phonenumber);
source.setPhoneNumbers(phoneNumbers);
ScimPersonPhotos photo = new ScimPersonPhotos();
photo.setType("photo_type");
photo.setValue("photo_value");
List<ScimPersonPhotos> photos = new ArrayList<ScimPersonPhotos>();
photos.add(photo);
source.setPhotos(photos);
source.setPreferredLanguage("preferredLanguage");
source.setProfileUrl(null);
ScimRoles role = new ScimRoles();
role.setValue("role_value");
List<ScimRoles> roles = new ArrayList<ScimRoles>();
roles.add(role);
source.setRoles(roles);
List<String> schemas = new ArrayList<String>();
schemas.add("shema");
source.setSchemas(schemas);
source.setTimezone("timezone");
source.setTitle("title");
source.setUserName("userName");
source.setUserType("userType");
Scimx509Certificates cert = new Scimx509Certificates();
cert.setValue("cert_value");
List<Scimx509Certificates> x509Certificates = new ArrayList<Scimx509Certificates>();
x509Certificates.add(cert);
source.setX509Certificates(x509Certificates);
GluuCustomPerson copy = copyUtils.copy(source, destination, true);
assertNotNull(copy);
assertEquals(copy.getUid(), "userName");
assertEquals(copy.getGivenName(), "givenName");
assertEquals(copy.getSurname(), "familyName");
assertEquals(copy.getDisplayName(), "displayName");
assertEquals(copy.getPreferredLanguage(), "preferredLanguage");
assertEquals(copy.getTimezone(), "timezone");
assertEquals(copy.getUserPassword(), "password");
assertNotNull(copy.getMemberOf());
assertEquals(copy.getMemberOf().size(), 1);
assertEquals(copy.getMemberOf().get(0), "Mocked DN");
assertEquals(copy.getAttribute(GLUU_STATUS), "true");
assertNull(copy.getAttribute(OX_TRUST_PHOTOS_TYPE));
assertNull(copy.getAttribute(OX_TRUST_PHONE_TYPE));
assertNull(copy.getAttribute(OX_TRUST_ADDRESS_PRIMARY));
assertNull(copy.getAttribute(OX_TRUST_ADDRESS_TYPE));
assertNull(copy.getAttribute(OX_TRUST_COUNTRY));
assertNull(copy.getAttribute(OX_TRUST_POSTAL_CODE));
assertNull(copy.getAttribute(OX_TRUST_REGION));
assertNull(copy.getAttribute(OX_TRUST_LOCALITY));
assertNull(copy.getAttribute(OX_TRUST_ADDRESS_FORMATTED));
assertNull(copy.getAttribute(OX_TRUST_STREET));
assertNull(copy.getAttribute(OX_TRUST_EMAIL_PRIMARY));
assertNull(copy.getAttribute(OX_TRUST_EMAIL_TYPE));
assertEquals(copy.getAttribute(OX_TRUST_META_LOCATION), "location");
assertEquals(copy.getAttribute(OX_TRUST_META_VERSION), "version");
assertEquals(copy.getAttribute(OX_TRUST_META_LAST_MODIFIED), "lastModified");
assertEquals(copy.getAttribute(OX_TRUST_META_CREATED), "created");
assertEquals(copy.getAttribute(OX_TRUSTX509_CERTIFICATE), "[{\"value\":\"cert_value\"}]");
assertEquals(copy.getAttribute(OX_TRUST_ENTITLEMENTS), "[{\"value\":\"entitlement_value\"}]");
assertEquals(copy.getAttribute(OX_TRUST_ROLE), "[{\"value\":\"role_value\"}]");
assertEquals(copy.getAttribute(OX_TRUST_ACTIVE), "true");
assertEquals(copy.getAttribute(OX_TRUST_LOCALE), "locale");
assertEquals(copy.getAttribute(OX_TRUST_TITLE), "title");
assertEquals(copy.getAttribute(OX_TRUST_USER_TYPE), "userType");
assertEquals(copy.getAttribute(OX_TRUST_PHOTOS), "[{\"value\":\"photo_value\",\"type\":\"photo_type\"}]");
assertEquals(copy.getAttribute(OX_TRUST_IMS_VALUE), "[{\"value\":\"ims_value\",\"type\":\"ims_type\"}]");
assertEquals(copy.getAttribute(OX_TRUST_PHONE_VALUE), "[{\"value\":\"phone_value\",\"type\":\"phone_type\"}]");
assertEquals(copy.getAttribute(OX_TRUST_ADDRESSES), "[{\"type\":\"address_type\",\"streetAddress\":\"streetAddress\",\"locality\":\"locality\",\"region\":\"region\",\"postalCode\":\"postalCode\",\"country\":\"country\",\"formatted\":\"formatted\",\"primary\":\"address_primary\"}]");
assertEquals(copy.getAttribute(OX_TRUST_EMAIL), "[{\"value\":\"email_value\",\"type\":\"email_type\",\"primary\":\"email_primary\"}]");
assertNull(copy.getAttribute(OX_TRUST_PROFILE_URL));
assertEquals(copy.getAttribute(OX_TRUST_NICK_NAME), "nickName");
assertEquals(copy.getAttribute(OX_TRUST_EXTERNAL_ID), "externalId");
assertEquals(copy.getAttribute(OX_TRUSTHONORIFIC_SUFFIX), "honorificSuffix");
assertEquals(copy.getAttribute(OX_TRUSTHONORIFIC_PREFIX), "honorificPrefix");
assertEquals(copy.getAttribute(OX_TRUST_MIDDLE_NAME), "middleName");
assertEquals(copy.getAssociatedClient().size(), 3);
assertEquals(copy.getBaseDn(), "dn");
assertEquals(copy.getCommonName(), "CN");
List<GluuCustomAttribute> customAttributes2 = copy.getCustomAttributes();
assertNotNull(customAttributes2);
assertEquals(customAttributes2.size(), 33);
assertEquals(copy.getDisplayName(), "displayName");
assertEquals(copy.getDn(), "dn");
assertEquals(copy.getGivenName(), "givenName");
assertEquals(copy.getGluuAllowPublication(), "true");
GluuCustomAttribute gluuCustomAttribute = copy.getGluuCustomAttribute("custom_name");
assertNotNull(gluuCustomAttribute);
assertEquals(gluuCustomAttribute.getName(), "custom_name");
assertEquals(gluuCustomAttribute.getValue(), "value");
assertNull(gluuCustomAttribute.getDate());
assertEquals(gluuCustomAttribute.getDisplayValue(), "value");
assertNull(gluuCustomAttribute.getMetadata());
assertEquals(gluuCustomAttribute.getValues()[0], "value");
assertNull(copy.getGluuOptOuts());
assertNull(copy.getIname());
assertNull(copy.getMail());
assertEquals(copy.getMemberOf().get(0), "Mocked DN");
assertNull(copy.getNetworkPoken());
assertNull(copy.getCreationDate());
assertEquals(copy.getPreferredLanguage(), "preferredLanguage");
assertNull(copy.getSLAManager());
assertNull(copy.getSourceServerName());
assertNull(copy.getStatus());
assertEquals(copy.getSurname(), "familyName");
assertEquals(copy.getTimezone(), "timezone");
assertEquals(copy.getUid(), "userName");
assertEquals(copy.getUserPassword(), "password");
}
use of org.gluu.oxtrust.model.GluuCustomPerson in project oxTrust by GluuFederation.
the class CopyUtilsTestUpdate method testCopyScim1FilledUpdate.
@Test
public void testCopyScim1FilledUpdate() throws Exception {
GluuCustomPerson destination = new GluuCustomPerson();
ScimPerson source = new ScimPerson();
source.setActive("active");
ScimPersonAddresses address = new ScimPersonAddresses();
address.setCountry("country");
address.setFormatted("formatted");
address.setLocality("locality");
address.setPostalCode("postalCode");
address.setPrimary("address_primary");
address.setRegion("region");
address.setStreetAddress("streetAddress");
address.setType("address_type");
List<ScimPersonAddresses> addresses = new ArrayList<ScimPersonAddresses>();
addresses.add(address);
source.setAddresses(addresses);
List<ScimCustomAttributes> customAttributes = new ArrayList<ScimCustomAttributes>();
ScimCustomAttributes customattribute = new ScimCustomAttributes();
customattribute.setName("custom_name");
List<String> values = new ArrayList<String>();
String value = "value";
values.add(value);
customattribute.setValues(values);
customAttributes.add(customattribute);
source.setCustomAttributes(customAttributes);
source.setDisplayName("displayName");
ScimPersonEmails email = new ScimPersonEmails();
email.setPrimary("email_primary");
email.setType("email_type");
email.setValue("email_value");
List<ScimPersonEmails> emails = new ArrayList<ScimPersonEmails>();
emails.add(email);
source.setEmails(emails);
ScimEntitlements entitlement = new ScimEntitlements();
entitlement.setValue("entitlement_value");
List<ScimEntitlements> entitlements = new ArrayList<ScimEntitlements>();
entitlements.add(entitlement);
source.setEntitlements(entitlements);
source.setExternalId("externalId");
ScimPersonGroups group = new ScimPersonGroups();
group.setDisplay("group_display");
group.setValue("group_value");
List<ScimPersonGroups> groups = new ArrayList<ScimPersonGroups>();
groups.add(group);
source.setGroups(groups);
source.setId("id");
ScimPersonIms personims = new ScimPersonIms();
personims.setType("ims_type");
personims.setValue("ims_value");
List<ScimPersonIms> ims = new ArrayList<ScimPersonIms>();
ims.add(personims);
source.setIms(ims);
source.setLocale("locale");
PersonMeta meta = new PersonMeta();
meta.setCreated("created");
meta.setLastModified("lastModified");
meta.setLocation("location");
meta.setVersion("version");
source.setMeta(meta);
ScimName name = new ScimName();
name.setFamilyName("familyName");
name.setGivenName("givenName");
name.setHonorificPrefix("honorificPrefix");
name.setHonorificSuffix("honorificSuffix");
name.setMiddleName("middleName");
source.setName(name);
source.setNickName("nickName");
source.setPassword("password");
ScimPersonPhones phonenumber = new ScimPersonPhones();
phonenumber.setType("phone_type");
phonenumber.setValue("phone_value");
List<ScimPersonPhones> phoneNumbers = new ArrayList<ScimPersonPhones>();
phoneNumbers.add(phonenumber);
source.setPhoneNumbers(phoneNumbers);
ScimPersonPhotos photo = new ScimPersonPhotos();
photo.setType("photo_type");
photo.setValue("photo_value");
List<ScimPersonPhotos> photos = new ArrayList<ScimPersonPhotos>();
photos.add(photo);
source.setPhotos(photos);
source.setPreferredLanguage("preferredLanguage");
source.setProfileUrl("profileUrl");
ScimRoles role = new ScimRoles();
role.setValue("role_value");
List<ScimRoles> roles = new ArrayList<ScimRoles>();
roles.add(role);
source.setRoles(roles);
List<String> schemas = new ArrayList<String>();
schemas.add("shema");
source.setSchemas(schemas);
source.setTimezone("timezone");
source.setTitle("title");
source.setUserName("userName");
source.setUserType("userType");
Scimx509Certificates cert = new Scimx509Certificates();
cert.setValue("cert_value");
List<Scimx509Certificates> x509Certificates = new ArrayList<Scimx509Certificates>();
x509Certificates.add(cert);
source.setX509Certificates(x509Certificates);
GluuCustomPerson copy = copyUtils.copy(source, destination, true);
assertNotNull(copy);
assertEquals(copy.getUid(), "userName");
assertEquals(copy.getGivenName(), "givenName");
assertEquals(copy.getSurname(), "familyName");
assertEquals(copy.getDisplayName(), "displayName");
assertEquals(copy.getPreferredLanguage(), "preferredLanguage");
assertEquals(copy.getTimezone(), "timezone");
assertEquals(copy.getUserPassword(), "password");
assertNotNull(copy.getMemberOf());
assertEquals(copy.getMemberOf().size(), 1);
assertEquals(copy.getMemberOf().get(0), "Mocked DN");
assertNull(copy.getAttribute(GLUU_STATUS));
assertNull(copy.getAttribute(OX_TRUST_PHOTOS_TYPE));
assertNull(copy.getAttribute(OX_TRUST_PHONE_TYPE));
assertNull(copy.getAttribute(OX_TRUST_ADDRESS_PRIMARY));
assertNull(copy.getAttribute(OX_TRUST_ADDRESS_TYPE));
assertNull(copy.getAttribute(OX_TRUST_COUNTRY));
assertNull(copy.getAttribute(OX_TRUST_POSTAL_CODE));
assertNull(copy.getAttribute(OX_TRUST_REGION));
assertNull(copy.getAttribute(OX_TRUST_LOCALITY));
assertNull(copy.getAttribute(OX_TRUST_ADDRESS_FORMATTED));
assertNull(copy.getAttribute(OX_TRUST_STREET));
assertNull(copy.getAttribute(OX_TRUST_EMAIL_PRIMARY));
assertNull(copy.getAttribute(OX_TRUST_EMAIL_TYPE));
assertEquals(copy.getAttribute(OX_TRUST_META_LOCATION), "location");
assertEquals(copy.getAttribute(OX_TRUST_META_VERSION), "version");
assertEquals(copy.getAttribute(OX_TRUST_META_LAST_MODIFIED), "lastModified");
assertEquals(copy.getAttribute(OX_TRUST_META_CREATED), "created");
assertEquals(copy.getAttribute(OX_TRUSTX509_CERTIFICATE), "[{\"value\":\"cert_value\"}]");
assertEquals(copy.getAttribute(OX_TRUST_ENTITLEMENTS), "[{\"value\":\"entitlement_value\"}]");
assertEquals(copy.getAttribute(OX_TRUST_ROLE), "[{\"value\":\"role_value\"}]");
assertEquals(copy.getAttribute(OX_TRUST_ACTIVE), "active");
assertEquals(copy.getAttribute(OX_TRUST_LOCALE), "locale");
assertEquals(copy.getAttribute(OX_TRUST_TITLE), "title");
assertEquals(copy.getAttribute(OX_TRUST_USER_TYPE), "userType");
assertEquals(copy.getAttribute(OX_TRUST_PHOTOS), "[{\"value\":\"photo_value\",\"type\":\"photo_type\"}]");
assertEquals(copy.getAttribute(OX_TRUST_IMS_VALUE), "[{\"value\":\"ims_value\",\"type\":\"ims_type\"}]");
assertEquals(copy.getAttribute(OX_TRUST_PHONE_VALUE), "[{\"value\":\"phone_value\",\"type\":\"phone_type\"}]");
assertEquals(copy.getAttribute(OX_TRUST_ADDRESSES), "[{\"type\":\"address_type\",\"streetAddress\":\"streetAddress\",\"locality\":\"locality\",\"region\":\"region\",\"postalCode\":\"postalCode\",\"country\":\"country\",\"formatted\":\"formatted\",\"primary\":\"address_primary\"}]");
assertEquals(copy.getAttribute(OX_TRUST_EMAIL), "[{\"value\":\"email_value\",\"type\":\"email_type\",\"primary\":\"email_primary\"}]");
assertEquals(copy.getAttribute(OX_TRUST_PROFILE_URL), "profileUrl");
assertEquals(copy.getAttribute(OX_TRUST_NICK_NAME), "nickName");
assertEquals(copy.getAttribute(OX_TRUST_EXTERNAL_ID), "externalId");
assertEquals(copy.getAttribute(OX_TRUSTHONORIFIC_SUFFIX), "honorificSuffix");
assertEquals(copy.getAttribute(OX_TRUSTHONORIFIC_PREFIX), "honorificPrefix");
assertEquals(copy.getAttribute(OX_TRUST_MIDDLE_NAME), "middleName");
assertNull(copy.getAssociatedClient());
assertNull(copy.getBaseDn());
assertNull(copy.getCommonName());
List<GluuCustomAttribute> customAttributes2 = copy.getCustomAttributes();
assertNotNull(customAttributes2);
assertEquals(customAttributes2.size(), 31);
assertEquals(copy.getDisplayName(), "displayName");
assertNull(copy.getDn());
assertEquals(copy.getGivenName(), "givenName");
assertNull(copy.getGluuAllowPublication());
GluuCustomAttribute gluuCustomAttribute = copy.getGluuCustomAttribute("custom_name");
assertNotNull(gluuCustomAttribute);
assertEquals(gluuCustomAttribute.getName(), "custom_name");
assertEquals(gluuCustomAttribute.getValue(), "value");
assertNull(gluuCustomAttribute.getDate());
assertEquals(gluuCustomAttribute.getDisplayValue(), "value");
assertNull(gluuCustomAttribute.getMetadata());
assertEquals(gluuCustomAttribute.getValues()[0], "value");
assertNull(copy.getGluuOptOuts());
assertNull(copy.getIname());
assertNull(copy.getMail());
assertEquals(copy.getMemberOf().get(0), "Mocked DN");
assertNull(copy.getNetworkPoken());
assertNull(copy.getCreationDate());
assertEquals(copy.getPreferredLanguage(), "preferredLanguage");
assertNull(copy.getSLAManager());
assertNull(copy.getSourceServerName());
assertNull(copy.getStatus());
assertEquals(copy.getSurname(), "familyName");
assertEquals(copy.getTimezone(), "timezone");
assertEquals(copy.getUid(), "userName");
assertEquals(copy.getUserPassword(), "password");
}
use of org.gluu.oxtrust.model.GluuCustomPerson in project oxTrust by GluuFederation.
the class CopyUtilsTestUpdate method testCopyScim1UpdateNullDestination.
@Test
public void testCopyScim1UpdateNullDestination() throws Exception {
GluuCustomPerson destination = null;
ScimPerson source = new ScimPerson();
;
GluuCustomPerson copy = copyUtils.copy(source, destination, true);
assertNotNull(copy);
}
use of org.gluu.oxtrust.model.GluuCustomPerson in project oxTrust by GluuFederation.
the class CopyUtilsTestUpdate method testCopyScim1EmptyCustomAttributeUpdateExisting.
@Test
public void testCopyScim1EmptyCustomAttributeUpdateExisting() throws Exception {
GluuCustomPerson destination = new GluuCustomPerson();
destination.setAllowPublication(true);
List<String> associatedClientDNs = new ArrayList<String>();
associatedClientDNs.add("a");
associatedClientDNs.add("b");
associatedClientDNs.add("c");
destination.setAssociatedClient(associatedClientDNs);
destination.setBaseDn("dn");
destination.setAttribute(OX_TRUST_NICK_NAME, "original nickname");
destination.setAttribute(OX_TRUST_PROFILE_URL, "original url");
destination.setCommonName("CN");
destination.setGivenName("original givenname");
destination.setPreferredLanguage("Nederlands");
destination.setAttribute(OX_TRUST_ENTITLEMENTS, "[{\"value\":\"original entitlement_value\"}]");
ScimPerson source = new ScimPerson();
source.setActive("true");
ScimPersonAddresses address = new ScimPersonAddresses();
address.setCountry("country");
address.setFormatted("formatted");
address.setLocality("locality");
address.setPostalCode("postalCode");
address.setPrimary("address_primary");
address.setRegion("region");
address.setStreetAddress("streetAddress");
address.setType("address_type");
List<ScimPersonAddresses> addresses = new ArrayList<ScimPersonAddresses>();
addresses.add(address);
source.setAddresses(addresses);
List<ScimCustomAttributes> customAttributes = new ArrayList<ScimCustomAttributes>();
ScimCustomAttributes customattribute = new ScimCustomAttributes();
customattribute.setName("custom_name");
List<String> values = new ArrayList<String>();
customattribute.setValues(values);
customAttributes.add(customattribute);
source.setCustomAttributes(customAttributes);
source.setDisplayName(null);
ScimPersonEmails email = new ScimPersonEmails();
email.setPrimary("email_primary");
email.setType("email_type");
email.setValue("email_value");
List<ScimPersonEmails> emails = new ArrayList<ScimPersonEmails>();
emails.add(email);
source.setEmails(emails);
List<ScimPersonGroups> groups = new ArrayList<ScimPersonGroups>();
source.setGroups(groups);
source.setId("id");
ScimPersonIms personims = new ScimPersonIms();
personims.setType("ims_type");
personims.setValue("ims_value");
List<ScimPersonIms> ims = new ArrayList<ScimPersonIms>();
ims.add(personims);
source.setIms(ims);
source.setLocale("locale");
PersonMeta meta = new PersonMeta();
meta.setCreated("created");
meta.setLastModified("lastModified");
meta.setLocation("location");
meta.setVersion("version");
source.setMeta(meta);
ScimName name = new ScimName();
name.setFamilyName("familyName");
name.setGivenName("givenName");
name.setHonorificPrefix("honorificPrefix");
name.setHonorificSuffix("honorificSuffix");
name.setMiddleName("middleName");
source.setName(name);
source.setNickName("nickName");
source.setPassword("password");
ScimPersonPhones phonenumber = new ScimPersonPhones();
phonenumber.setType("phone_type");
phonenumber.setValue("phone_value");
List<ScimPersonPhones> phoneNumbers = new ArrayList<ScimPersonPhones>();
phoneNumbers.add(phonenumber);
source.setPhoneNumbers(phoneNumbers);
ScimPersonPhotos photo = new ScimPersonPhotos();
photo.setType("photo_type");
photo.setValue("photo_value");
List<ScimPersonPhotos> photos = new ArrayList<ScimPersonPhotos>();
photos.add(photo);
source.setPhotos(photos);
source.setPreferredLanguage("preferredLanguage");
source.setProfileUrl(null);
ScimRoles role = new ScimRoles();
role.setValue("role_value");
List<ScimRoles> roles = new ArrayList<ScimRoles>();
roles.add(role);
source.setRoles(roles);
List<String> schemas = new ArrayList<String>();
schemas.add("shema");
source.setSchemas(schemas);
source.setTimezone("timezone");
source.setTitle("title");
source.setUserName("userName");
source.setUserType("userType");
Scimx509Certificates cert = new Scimx509Certificates();
cert.setValue("cert_value");
List<Scimx509Certificates> x509Certificates = new ArrayList<Scimx509Certificates>();
x509Certificates.add(cert);
source.setX509Certificates(x509Certificates);
GluuCustomPerson copy = copyUtils.copy(source, destination, true);
assertNotNull(copy);
assertEquals(copy.getUid(), "userName");
assertEquals(copy.getGivenName(), "givenName");
assertEquals(copy.getSurname(), "familyName");
assertNull(copy.getDisplayName());
assertEquals(copy.getPreferredLanguage(), "preferredLanguage");
assertEquals(copy.getTimezone(), "timezone");
assertEquals(copy.getUserPassword(), "password");
assertNotNull(copy.getMemberOf());
assertEquals(copy.getMemberOf().size(), 0);
assertEquals(copy.getAttribute(GLUU_STATUS), "true");
assertNull(copy.getAttribute(OX_TRUST_PHOTOS_TYPE));
assertNull(copy.getAttribute(OX_TRUST_PHONE_TYPE));
assertNull(copy.getAttribute(OX_TRUST_ADDRESS_PRIMARY));
assertNull(copy.getAttribute(OX_TRUST_ADDRESS_TYPE));
assertNull(copy.getAttribute(OX_TRUST_COUNTRY));
assertNull(copy.getAttribute(OX_TRUST_POSTAL_CODE));
assertNull(copy.getAttribute(OX_TRUST_REGION));
assertNull(copy.getAttribute(OX_TRUST_LOCALITY));
assertNull(copy.getAttribute(OX_TRUST_ADDRESS_FORMATTED));
assertNull(copy.getAttribute(OX_TRUST_STREET));
assertNull(copy.getAttribute(OX_TRUST_EMAIL_PRIMARY));
assertNull(copy.getAttribute(OX_TRUST_EMAIL_TYPE));
assertEquals(copy.getAttribute(OX_TRUST_META_LOCATION), "location");
assertEquals(copy.getAttribute(OX_TRUST_META_VERSION), "version");
assertEquals(copy.getAttribute(OX_TRUST_META_LAST_MODIFIED), "lastModified");
assertEquals(copy.getAttribute(OX_TRUST_META_CREATED), "created");
assertEquals(copy.getAttribute(OX_TRUSTX509_CERTIFICATE), "[{\"value\":\"cert_value\"}]");
assertEquals(copy.getAttribute(OX_TRUST_ENTITLEMENTS), "[]");
assertEquals(copy.getAttribute(OX_TRUST_ROLE), "[{\"value\":\"role_value\"}]");
assertEquals(copy.getAttribute(OX_TRUST_ACTIVE), "true");
assertEquals(copy.getAttribute(OX_TRUST_LOCALE), "locale");
assertEquals(copy.getAttribute(OX_TRUST_TITLE), "title");
assertEquals(copy.getAttribute(OX_TRUST_USER_TYPE), "userType");
assertEquals(copy.getAttribute(OX_TRUST_PHOTOS), "[{\"value\":\"photo_value\",\"type\":\"photo_type\"}]");
assertEquals(copy.getAttribute(OX_TRUST_IMS_VALUE), "[{\"value\":\"ims_value\",\"type\":\"ims_type\"}]");
assertEquals(copy.getAttribute(OX_TRUST_PHONE_VALUE), "[{\"value\":\"phone_value\",\"type\":\"phone_type\"}]");
assertEquals(copy.getAttribute(OX_TRUST_ADDRESSES), "[{\"type\":\"address_type\",\"streetAddress\":\"streetAddress\",\"locality\":\"locality\",\"region\":\"region\",\"postalCode\":\"postalCode\",\"country\":\"country\",\"formatted\":\"formatted\",\"primary\":\"address_primary\"}]");
assertEquals(copy.getAttribute(OX_TRUST_EMAIL), "[{\"value\":\"email_value\",\"type\":\"email_type\",\"primary\":\"email_primary\"}]");
assertNull(copy.getAttribute(OX_TRUST_PROFILE_URL));
assertEquals(copy.getAttribute(OX_TRUST_NICK_NAME), "nickName");
assertEquals(copy.getAttribute(OX_TRUST_EXTERNAL_ID), "");
assertEquals(copy.getAttribute(OX_TRUSTHONORIFIC_SUFFIX), "honorificSuffix");
assertEquals(copy.getAttribute(OX_TRUSTHONORIFIC_PREFIX), "honorificPrefix");
assertEquals(copy.getAttribute(OX_TRUST_MIDDLE_NAME), "middleName");
assertEquals(copy.getAssociatedClient().size(), 3);
assertEquals(copy.getBaseDn(), "dn");
assertEquals(copy.getCommonName(), "CN");
List<GluuCustomAttribute> customAttributes2 = copy.getCustomAttributes();
assertNotNull(customAttributes2);
assertEquals(customAttributes2.size(), 30);
assertNull(copy.getDisplayName());
assertEquals(copy.getDn(), "dn");
assertEquals(copy.getGivenName(), "givenName");
assertEquals(copy.getGluuAllowPublication(), "true");
GluuCustomAttribute gluuCustomAttribute = copy.getGluuCustomAttribute("custom_name");
assertNotNull(gluuCustomAttribute);
assertEquals(gluuCustomAttribute.getName(), "custom_name");
assertNull(gluuCustomAttribute.getValue());
assertNull(gluuCustomAttribute.getDate());
assertEquals(gluuCustomAttribute.getDisplayValue(), "");
assertNull(gluuCustomAttribute.getMetadata());
assertEquals(gluuCustomAttribute.getValues().length, 0);
assertNull(copy.getGluuOptOuts());
assertNull(copy.getIname());
assertNull(copy.getMail());
assertEquals(copy.getMemberOf().size(), 0);
assertNull(copy.getNetworkPoken());
assertNull(copy.getCreationDate());
assertEquals(copy.getPreferredLanguage(), "preferredLanguage");
assertNull(copy.getSLAManager());
assertNull(copy.getSourceServerName());
assertNull(copy.getStatus());
assertEquals(copy.getSurname(), "familyName");
assertEquals(copy.getTimezone(), "timezone");
assertEquals(copy.getUid(), "userName");
assertEquals(copy.getUserPassword(), "password");
}
use of org.gluu.oxtrust.model.GluuCustomPerson in project oxTrust by GluuFederation.
the class GroupService method removeGroup.
/* (non-Javadoc)
* @see org.gluu.oxtrust.ldap.service.IGroupService#removeGroup(org.gluu.oxtrust.model.GluuGroup)
*/
@Override
public void removeGroup(GluuGroup group) {
if (group.getMembers() != null) {
List<String> memberDNs = group.getMembers();
for (String memberDN : memberDNs) {
GluuCustomPerson person = personService.getPersonByDn(memberDN);
List<String> groupDNs = person.getMemberOf();
List<String> updatedGroupDNs = new ArrayList<String>();
updatedGroupDNs.addAll(groupDNs);
updatedGroupDNs.remove(group.getDn());
person.setMemberOf(updatedGroupDNs);
personService.updatePerson(person);
}
}
ldapEntryManager.remove(group);
// clear references in gluuPerson entries
}
Aggregations